The Battle for Wesnoth
1.19.5+dev
ai
formula
stage_unit_formulas.hpp
Go to the documentation of this file.
1
/*
2
Copyright (C) 2009 - 2024
3
by Yurii Chernyi <terraninfo@terraninfo.net>
4
Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5
6
This program is free software; you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation; either version 2 of the License, or
9
(at your option) any later version.
10
This program is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY.
12
13
See the COPYING file for more details.
14
*/
15
16
/**
17
* @file
18
* Stage which executes unit formulas
19
* */
20
21
#pragma once
22
23
#include "
ai/composite/stage.hpp
"
24
25
namespace
ai
{
26
27
class
formula_ai;
28
29
class
stage_unit_formulas
:
public
stage
{
30
public
:
31
stage_unit_formulas
(
ai_context
&context,
const
config
&cfg,
formula_ai
&fai );
32
33
virtual
~stage_unit_formulas
();
34
35
bool
do_play_stage
();
36
37
void
on_create
();
38
39
config
to_config
()
const
;
40
41
private
:
42
formula_ai
&
fai_
;
43
44
};
45
46
}
//end of namespace ai
ai::ai_context
Definition:
contexts.hpp:28
ai::formula_ai
Definition:
ai.hpp:68
ai::stage_unit_formulas
Definition:
stage_unit_formulas.hpp:29
ai::stage_unit_formulas::~stage_unit_formulas
virtual ~stage_unit_formulas()
Definition:
stage_unit_formulas.cpp:49
ai::stage_unit_formulas::fai_
formula_ai & fai_
Definition:
stage_unit_formulas.hpp:42
ai::stage_unit_formulas::to_config
config to_config() const
serialize
Definition:
stage_unit_formulas.cpp:151
ai::stage_unit_formulas::do_play_stage
bool do_play_stage()
Play the turn - implementation.
Definition:
stage_unit_formulas.cpp:53
ai::stage_unit_formulas::on_create
void on_create()
Initialization.
Definition:
stage_unit_formulas.cpp:145
ai::stage_unit_formulas::stage_unit_formulas
stage_unit_formulas(ai_context &context, const config &cfg, formula_ai &fai)
Definition:
stage_unit_formulas.cpp:39
ai::stage
Definition:
stage.hpp:29
config
A config object defines a single node in a WML file, with access to child nodes.
Definition:
config.hpp:172
ai
A small explanation about what's going on here: Each action has access to two game_info objects First...
Definition:
actions.cpp:59
stage.hpp
Composite AI stages.
Generated by
1.9.1