wesnoth-cvs-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Wesnoth-cvs-commits] wesnoth/src Makefile.am ai.cpp ai_attack.cpp ai...


From: Yann Dirson
Subject: [Wesnoth-cvs-commits] wesnoth/src Makefile.am ai.cpp ai_attack.cpp ai...
Date: Wed, 09 Mar 2005 16:21:38 -0500

CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     Yann Dirson <address@hidden>    05/03/09 21:21:38

Modified files:
        src            : Makefile.am ai.cpp ai_attack.cpp 
                         ai_interface.hpp ai_move.cpp 
Removed files:
        src            : ai_attack.hpp ai_move.hpp 

Log message:
        include cleanup: ai*

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/Makefile.am.diff?tr1=1.80&tr2=1.81&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/ai.cpp.diff?tr1=1.141&tr2=1.142&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/ai_attack.cpp.diff?tr1=1.58&tr2=1.59&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/ai_interface.hpp.diff?tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/ai_move.cpp.diff?tr1=1.57&tr2=1.58&r1=text&r2=text

Patches:
Index: wesnoth/src/Makefile.am
diff -u wesnoth/src/Makefile.am:1.80 wesnoth/src/Makefile.am:1.81
--- wesnoth/src/Makefile.am:1.80        Sun Mar  6 18:12:16 2005
+++ wesnoth/src/Makefile.am     Wed Mar  9 21:21:37 2005
@@ -124,9 +124,7 @@
        actions.hpp \
        ai.hpp \
        ai2.hpp \
-       ai_attack.hpp \
        ai_interface.hpp \
-       ai_move.hpp \
        animated.hpp \
        array.hpp \
        astarnode.hpp \
@@ -306,8 +304,6 @@
        about.hpp \
        actions.hpp \
        ai.hpp \
-       ai_attack.hpp \
-       ai_move.hpp \
        animated.hpp \
        array.hpp \
        astarnode.hpp \
Index: wesnoth/src/ai.cpp
diff -u wesnoth/src/ai.cpp:1.141 wesnoth/src/ai.cpp:1.142
--- wesnoth/src/ai.cpp:1.141    Sun Feb 27 18:15:20 2005
+++ wesnoth/src/ai.cpp  Wed Mar  9 21:21:37 2005
@@ -1,4 +1,4 @@
-/* $Id: ai.cpp,v 1.141 2005/02/27 18:15:20 ydirson Exp $ */
+/* $Id: ai.cpp,v 1.142 2005/03/09 21:21:37 ydirson Exp $ */
 /*
    Copyright (C) 2003 by David White <address@hidden>
    Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -17,8 +17,6 @@
 #include "ai.hpp"
 #include "ai2.hpp"
 //#include "advanced_ai.hpp"
-#include "ai_attack.hpp"
-#include "ai_move.hpp"
 #include "dialogs.hpp"
 #include "game_config.hpp"
 #include "game_events.hpp"
Index: wesnoth/src/ai_attack.cpp
diff -u wesnoth/src/ai_attack.cpp:1.58 wesnoth/src/ai_attack.cpp:1.59
--- wesnoth/src/ai_attack.cpp:1.58      Fri Dec 31 21:01:37 2004
+++ wesnoth/src/ai_attack.cpp   Wed Mar  9 21:21:37 2005
@@ -1,4 +1,4 @@
-/* $Id: ai_attack.cpp,v 1.58 2004/12/31 21:01:37 isaaccp Exp $ */
+/* $Id: ai_attack.cpp,v 1.59 2005/03/09 21:21:37 ydirson Exp $ */
 /*
    Copyright (C) 2003 by David White <address@hidden>
    Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -14,7 +14,7 @@
 #include "global.hpp"
 
 #include "actions.hpp"
-#include "ai_attack.hpp"
+#include "ai.hpp"
 #include "game_config.hpp"
 #include "log.hpp"
 #include "pathfind.hpp"
Index: wesnoth/src/ai_interface.hpp
diff -u wesnoth/src/ai_interface.hpp:1.3 wesnoth/src/ai_interface.hpp:1.4
--- wesnoth/src/ai_interface.hpp:1.3    Sun Feb 27 18:15:20 2005
+++ wesnoth/src/ai_interface.hpp        Wed Mar  9 21:21:37 2005
@@ -1,4 +1,4 @@
-/* $Id: ai_interface.hpp,v 1.3 2005/02/27 18:15:20 ydirson Exp $ */
+/* $Id: ai_interface.hpp,v 1.4 2005/03/09 21:21:37 ydirson Exp $ */
 /*
    Copyright (C) 2003 by David White <address@hidden>
    Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -13,8 +13,9 @@
 #ifndef AI_INTERFACE_HPP_INCLUDED
 #define AI_INTERFACE_HPP_INCLUDED
 
-#include "display.hpp"
-#include "map.hpp"
+class display;
+class gamemap;
+#include "pathfind.hpp"
 #include "unit.hpp"
 
 class ai_interface {
Index: wesnoth/src/ai_move.cpp
diff -u wesnoth/src/ai_move.cpp:1.57 wesnoth/src/ai_move.cpp:1.58
--- wesnoth/src/ai_move.cpp:1.57        Wed Mar  9 16:29:52 2005
+++ wesnoth/src/ai_move.cpp     Wed Mar  9 21:21:37 2005
@@ -1,4 +1,4 @@
-/* $Id: ai_move.cpp,v 1.57 2005/03/09 16:29:52 ydirson Exp $ */
+/* $Id: ai_move.cpp,v 1.58 2005/03/09 21:21:37 ydirson Exp $ */
 /*
    Copyright (C) 2003 by David White <address@hidden>
    Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -13,7 +13,7 @@
 
 #include "global.hpp"
 
-#include "ai_move.hpp"
+#include "ai.hpp"
 #include "game_config.hpp"
 #include "log.hpp"
 #include "map.hpp"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]