Darwin Neuroevolution Framework
game.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include "board.h"
18 
19 #include <core/properties.h>
20 #include <core/tournament_implementations.h>
21 
22 #include <random>
23 #include <string>
24 #include <vector>
25 using namespace std;
26 
27 namespace conquest {
28 
29 class Player;
30 
32 struct Config : public core::PropertySet {
33  PROPERTY(calibration_matches, int, 100, "Number of calibration matches");
34 
35  PROPERTY(board,
36  BoardConfiguration,
37  BoardConfiguration::Hexagon,
38  "Board configuration name");
39 
40  PROPERTY(max_steps, int, 2500, "If no one wins before max_steps, the game is a tie");
41 
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");
45 
46  PROPERTY(int_unit_scale, float, 10.0f, "A scaling factor to display units as integers");
47 
48  // units parameters
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");
52 
53  // order (attack) parameters
54  PROPERTY(deploy_min,
55  float,
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]");
61 
62  VARIANT(tournament_type,
65  "Tournament type");
66 };
67 
68 extern Config g_config;
69 
70 class Game : public core::NonCopyable {
71  public:
72  enum class State { None, InProgress, BlueWins, RedWins, Draw };
73 
74  struct Stats {
75  // abs(total units, including in-flight deployments)
76  float blue_units;
77  float red_units;
78 
79  // controlled nodes
80  int blue_nodes;
81  int red_nodes;
82 
83  // in flight deployments
84  int blue_orders;
85  int red_orders;
86  };
87 
88  struct Deployment {
89  float size;
90  float position;
91  };
92 
93  public:
94  Game(int max_steps, const Board* board);
95 
96  void newGame(Player* blue_player, Player* red_player);
97  void rematch();
98  bool gameStep();
99  void order(int arc_index);
100 
101  const Board* board() const { return board_; }
102  const Player* bluePlayer() const { return blue_player_; }
103  const Player* redPlayer() const { return red_player_; }
104 
105  State state() const { return state_; }
106  int currentStep() const { return step_; }
107  bool finished() const;
108 
109  Stats computeStats() const;
110 
111  float nodeUnits(int index) const;
112  const Deployment& deployment(int index) const;
113 
114  const vector<float>& nodeUnits() const { return node_units_; }
115  const vector<Deployment>& deployments() const { return deployments_; }
116 
117  private:
118  void resetGame();
119 
120  private:
121  State state_ = State::None;
122 
123  vector<float> node_units_;
124  vector<Deployment> deployments_;
125 
126  int step_ = -1;
127  const int max_steps_ = -1;
128 
129  Player* blue_player_ = nullptr;
130  Player* red_player_ = nullptr;
131 
132  int blue_start_node_ = -1;
133  int red_start_node_ = -1;
134 
135  default_random_engine rnd_{ random_device{}() };
136 
137  const Board* const board_ = nullptr;
138 };
139 
140 class ConquestRules : public tournament::GameRules {
141  public:
142  explicit ConquestRules(const Board* board) : board_(board) {}
143 
144  tournament::Scores scores(tournament::GameOutcome outcome) const override;
145 
146  tournament::GameOutcome play(Player* player1, Player* player2) const;
147 
148  tournament::GameOutcome play(const darwin::Genotype* player1,
149  const darwin::Genotype* player2) const override;
150 
151  private:
152  const Board* board_ = nullptr;
153 };
154 
155 } // namespace conquest
Conquest domain configuration.
Definition: game.h:32
Definition: ann_player.cpp:25
STL namespace.
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
Swiss-system tournament.
The interface to the population-specific "genetic material", the Genotype
Definition: darwin.h:126
GameOutcome
Game outcome.
Definition: tournament.h:32