The Battle for Wesnoth  1.13.4+dev
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
engine_cpp.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2009 - 2016 by Yurii Chernyi <[email protected]>
3  Part of the Battle for Wesnoth Project http://www.wesnoth.org/
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details.
13 */
14 
15 /**
16  * CPP AI Support engine - creating specific ai components from config
17  * @file
18  */
19 
20 #ifndef AI_COMPOSITE_ENGINE_DEFAULT_HPP_INCLUDED
21 #define AI_COMPOSITE_ENGINE_DEFAULT_HPP_INCLUDED
22 
23 #include "ai/composite/engine.hpp"
24 
25 //============================================================================
26 namespace ai {
27 
28 class engine_cpp : public engine {
29 public:
30  engine_cpp( readonly_context &context, const config &cfg );
31 
32 
33  virtual ~engine_cpp();
34 
35 
36  void do_parse_aspect_from_config( const config &cfg, const std::string &id, std::back_insert_iterator<std::vector< aspect_ptr > > b );
37 
38 
39  virtual void do_parse_candidate_action_from_config( rca_context &context, const config &cfg, std::back_insert_iterator<std::vector< candidate_action_ptr > > b );
40 
41 
42  virtual void do_parse_stage_from_config( ai_context &context, const config &cfg, std::back_insert_iterator<std::vector< stage_ptr > > b );
43 
44 
45  virtual void do_parse_goal_from_config(const config &cfg, std::back_insert_iterator<std::vector< goal_ptr > > b );
46 
47  virtual void do_parse_engine_from_config(const config &cfg, std::back_insert_iterator<std::vector< engine_ptr > > b );
48 
49 };
50 
51 } //end of namespace ai
52 
53 #endif
virtual void do_parse_candidate_action_from_config(rca_context &context, const config &cfg, std::back_insert_iterator< std::vector< candidate_action_ptr > > b)
Definition: engine_cpp.cpp:65
virtual ~engine_cpp()
Definition: engine_cpp.cpp:41
void do_parse_aspect_from_config(const config &cfg, const std::string &id, std::back_insert_iterator< std::vector< aspect_ptr > > b)
Definition: engine_cpp.cpp:46
AI Support engine - creating specific ai components from config.
GLdouble GLdouble GLdouble b
Definition: glew.h:6966
virtual void do_parse_stage_from_config(ai_context &context, const config &cfg, std::back_insert_iterator< std::vector< stage_ptr > > b)
Definition: engine_cpp.cpp:82
A small explanation about what's going on here: Each action has access to two game_info objects First...
Definition: actions.cpp:57
engine_cpp(readonly_context &context, const config &cfg)
Definition: engine_cpp.cpp:35
virtual void do_parse_engine_from_config(const config &cfg, std::back_insert_iterator< std::vector< engine_ptr > > b)
Definition: engine_cpp.cpp:118
virtual void do_parse_goal_from_config(const config &cfg, std::back_insert_iterator< std::vector< goal_ptr > > b)
Definition: engine_cpp.cpp:100
A config object defines a single node in a WML file, with access to child nodes.
Definition: config.hpp:83
GLsizei const GLcharARB ** string
Definition: glew.h:4503