19 #include <core/properties.h> 20 #include <core/tournament_implementations.h> 33 PROPERTY(calibration_matches,
int, 100,
"Number of calibration matches");
37 BoardConfiguration::Hexagon,
38 "Board configuration name");
40 PROPERTY(max_steps,
int, 2500,
"If no one wins before max_steps, the game is a tie");
42 PROPERTY(points_win,
float, 1.0f,
"Points for a win");
43 PROPERTY(points_lose,
float, 0.0f,
"Points for a lost game");
44 PROPERTY(points_draw,
float, 0.4f,
"Points for a draw");
46 PROPERTY(int_unit_scale,
float, 10.0f,
"A scaling factor to display units as integers");
49 PROPERTY(initial_units,
float, 0.1f,
"Initial units");
50 PROPERTY(production_cap,
float, 1.05f,
"Production cap per node");
51 PROPERTY(production_step,
float, 0.005f,
"Production step");
56 1.0f / int_unit_scale,
57 "Minimum units required to deploy an attack");
58 PROPERTY(deploy_resolution,
float, deploy_min,
"Deployment resolution");
59 PROPERTY(units_speed,
float, 1.0f,
"Units move speed");
60 PROPERTY(deploy_percent,
float, 0.99f,
"What % of units are deployed? (0..1]");
62 VARIANT(tournament_type,
72 enum class State { None, InProgress, BlueWins, RedWins, Draw };
94 Game(
int max_steps,
const Board* board);
96 void newGame(Player* blue_player, Player* red_player);
99 void order(
int arc_index);
101 const Board* board()
const {
return board_; }
102 const Player* bluePlayer()
const {
return blue_player_; }
103 const Player* redPlayer()
const {
return red_player_; }
105 State state()
const {
return state_; }
106 int currentStep()
const {
return step_; }
107 bool finished()
const;
109 Stats computeStats()
const;
111 float nodeUnits(
int index)
const;
112 const Deployment& deployment(
int index)
const;
114 const vector<float>& nodeUnits()
const {
return node_units_; }
115 const vector<Deployment>& deployments()
const {
return deployments_; }
121 State state_ = State::None;
123 vector<float> node_units_;
124 vector<Deployment> deployments_;
127 const int max_steps_ = -1;
129 Player* blue_player_ =
nullptr;
130 Player* red_player_ =
nullptr;
132 int blue_start_node_ = -1;
133 int red_start_node_ = -1;
135 default_random_engine rnd_{ random_device{}() };
137 const Board*
const board_ =
nullptr;
142 explicit ConquestRules(
const Board* board) : board_(board) {}
152 const Board* board_ =
nullptr;
Conquest domain configuration.
Definition: game.h:32
Definition: ann_player.cpp:25
Tournament configurations.
Definition: tournament_implementations.h:42
Final game scores.
Definition: tournament.h:25
Game rules abstraction (used to run the tournament)
Definition: tournament.h:40
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Classes derived from this are not copyable or movable.
Definition: utils.h:69
The interface to the population-specific "genetic material", the Genotype
Definition: darwin.h:126
GameOutcome
Game outcome.
Definition: tournament.h:32