Author: crab
Date: Sat Apr 11 23:44:20 2009
New Revision: 34739

URL: http://svn.gna.org/viewcvs/wesnoth?rev=34739&view=rev
Log:
Added a new src file ai_actions.[ch]pp , modified 4 build configurations.

Added:
    trunk/src/ai_actions.cpp
    trunk/src/ai_actions.hpp
Modified:
    trunk/projectfiles/VC9/wesnoth.vcproj
    trunk/src/CMakeLists.txt
    trunk/src/Makefile.am
    trunk/src/SConscript

Modified: trunk/projectfiles/VC9/wesnoth.vcproj
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/projectfiles/VC9/wesnoth.vcproj?rev=34739&r1=34738&r2=34739&view=diff
==============================================================================
--- trunk/projectfiles/VC9/wesnoth.vcproj (original)
+++ trunk/projectfiles/VC9/wesnoth.vcproj Sat Apr 11 23:44:20 2009
@@ -279,6 +279,10 @@
                                >
                        </File>
                        <File
+                               RelativePath="..\..\src\ai_actions.cpp"
+                               >
+                       </File>
+                       <File
                                RelativePath="..\..\src\ai_configuration.cpp"
                                >
                        </File>
@@ -2754,6 +2758,10 @@
                                >
                        </File>
                        <File
+                               RelativePath="..\..\src\ai_actions.hpp"
+                               >
+                       </File>
+                       <File
                                RelativePath="..\..\src\ai2.hpp"
                                >
                        </File>

Modified: trunk/src/CMakeLists.txt
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/CMakeLists.txt?rev=34739&r1=34738&r2=34739&view=diff
==============================================================================
--- trunk/src/CMakeLists.txt (original)
+++ trunk/src/CMakeLists.txt Sat Apr 11 23:44:20 2009
@@ -206,6 +206,7 @@
     addon_checks.cpp
     addon_management.cpp
     ai.cpp
+    ai_actions.cpp
     ai_dfool.cpp
     ai_attack.cpp
     ai_configuration.cpp

Modified: trunk/src/Makefile.am
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/Makefile.am?rev=34739&r1=34738&r2=34739&view=diff
==============================================================================
--- trunk/src/Makefile.am (original)
+++ trunk/src/Makefile.am Sat Apr 11 23:44:20 2009
@@ -43,6 +43,7 @@
        addon_checks.cpp \
        addon_management.cpp \
        ai.cpp \
+       ai_actions.cpp \
        ai_attack.cpp \
        ai_configuration.cpp \
        ai_dfool.cpp \

Modified: trunk/src/SConscript
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/SConscript?rev=34739&r1=34738&r2=34739&view=diff
==============================================================================
--- trunk/src/SConscript (original)
+++ trunk/src/SConscript Sat Apr 11 23:44:20 2009
@@ -150,6 +150,7 @@
     addon_management.cpp
     ai_dfool.cpp
     ai_attack.cpp
+    ai_actions.cpp
     ai_configuration.cpp
     ai_manager.cpp
     ai_move.cpp

Added: trunk/src/ai_actions.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/ai_actions.cpp?rev=34739&view=auto
==============================================================================
--- trunk/src/ai_actions.cpp (added)
+++ trunk/src/ai_actions.cpp Sat Apr 11 23:44:20 2009
@@ -1,0 +1,30 @@
+/* $Id: ai_actions.cpp   $ */
+/*
+   Copyright (C) 2009 by Yurii Chernyi <[email protected]>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
+/**
+ * Managing the AI-Game interaction - AI actions and their results
+ * @file ai_actions.cpp
+ */
+
+#include "ai_actions.hpp"
+
+#define DBG_AI_ACTIONS LOG_STREAM(debug, ai_actions)
+#define LOG_AI_ACTIONS LOG_STREAM(info, ai_actions)
+#define WRN_AI_ACTIONS LOG_STREAM(warn, ai_actions)
+#define ERR_AI_ACTIONS LOG_STREAM(err, ai_actions)
+
+// =======================================================================
+// 
+// =======================================================================
+

Added: trunk/src/ai_actions.hpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/ai_actions.hpp?rev=34739&view=auto
==============================================================================
--- trunk/src/ai_actions.hpp (added)
+++ trunk/src/ai_actions.hpp Sat Apr 11 23:44:20 2009
@@ -1,0 +1,29 @@
+/* $Id: ai_actions.hpp   $ */
+/*
+   Copyright (C) 2009 by Yurii Chernyi <[email protected]>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
+/**
+ * Managing the AI-Game interaction - AI actions and their results
+ * @file ai_actions.hpp
+ * */
+
+#ifndef AI_ACTIONS_HPP_INCLUDED
+#define AI_ACTIONS_HPP_INCLUDED
+
+#include "global.hpp"
+
+       // 
=======================================================================
+       // 
+       // 
=======================================================================
+
+#endif


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to