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 <core/properties.h>
18 #include <core/tournament_implementations.h>
19 
20 namespace pong {
21 
22 class Player;
23 
24 // Game rules
25 // 1. player 2 serves first
26 // 2. the player who won the last set serves
27 // 3. whoever reaches "targetScore" first wins the game
28 // 4. if no one scores within "max_steps" the set is a tie, each player scores one point
29 
31 struct Config : public core::PropertySet {
32  PROPERTY(paddle_size, float, 0.1f, "(0, 1)");
33  PROPERTY(paddle_speed, float, 0.02f, "(0, inf)");
34  PROPERTY(paddle_offset, float, 0.04f, "Horizontal distance from the board edge");
35 
36  PROPERTY(ball_radius, float, 0.01f, "Ball size");
37  PROPERTY(ball_speed, float, 0.04f, "Ball speed");
38  PROPERTY(serve_speed, float, 0.04f, "Ball speed before first return");
39 
40  PROPERTY(calibration_games, int, 100, "Number of calibration games");
41 
42  PROPERTY(max_steps, int, 2500, "If no one scores before max_steps, the game is a draw");
43  PROPERTY(sets_per_game, int, 10, "Sets per game");
44  PROPERTY(sets_required_to_win, int, 6, "The minimum number of sets required to win");
45  PROPERTY(simple_serve, bool, false, "Fixed serving angle");
46 
47  PROPERTY(points_win, float, 1.0f, "Points for a win");
48  PROPERTY(points_lose, float, 0, "Points for a lost game");
49  PROPERTY(points_draw, float, 0.4f, "Points for a tie");
50 
51  VARIANT(tournament_type,
54  "Tournament type");
55 };
56 
57 extern Config g_config;
58 
59 class Game : public core::NonCopyable {
60  public:
61  struct Ball {
62  float x = 0;
63  float y = 0;
64  float vx = 0;
65  float vy = 0;
66  };
67 
68  public:
69  explicit Game(int max_steps) : max_steps_(max_steps) {}
70 
71  void reset();
72  void newGame(Player* player1, Player* player2);
73  void newSet();
74  bool gameStep();
75 
76  int scoreP1() const { return score_p1_; }
77  int scoreP2() const { return score_p2_; }
78 
79  int currentSet() const { return set_; }
80  int currentStep() const { return step_; }
81 
82  float paddlePosP1() const { return paddle_pos_p1_; }
83  float paddlePosP2() const { return paddle_pos_p2_; }
84 
85  const Ball& ball() const { return ball_; }
86 
87  const Player* player1() const { return player1_; }
88  const Player* player2() const { return player2_; }
89 
90  private:
91  bool moveBall(float dt);
92 
93  private:
94  int set_ = -1;
95  int step_ = -1;
96  int max_steps_ = -1;
97  float ball_speed_ = 0;
98 
99  // scores
100  int score_p1_ = -1;
101  int score_p2_ = -1;
102 
103  // paddles
104  float paddle_pos_p1_ = 0;
105  float paddle_pos_p2_ = 0;
106 
107  Ball ball_;
108 
109  Player* player1_ = nullptr;
110  Player* player2_ = nullptr;
111 };
112 
113 class PongRules : public tournament::GameRules {
114  public:
115  tournament::Scores scores(tournament::GameOutcome outcome) const override;
116 
117  tournament::GameOutcome play(Player* player1, Player* player2) const;
118 
119  tournament::GameOutcome play(const darwin::Genotype* player1_genotype,
120  const darwin::Genotype* player2_genotype) const override;
121 };
122 
123 } // namespace pong
Pong domain configuration.
Definition: game.h:31
int calibration_games
"Number of calibration games"
Definition: game.h:40
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
int sets_per_game
"Sets per game"
Definition: game.h:43
int sets_required_to_win
"The minimum number of sets required to win"
Definition: game.h:44
int max_steps
"If no one scores before max_steps, the game is a draw"
Definition: game.h:42
Tournament configurations.
Definition: tournament_implementations.h:42
Final game scores.
Definition: tournament.h:25
float paddle_size
"(0, 1)"
Definition: game.h:32
float paddle_offset
"Horizontal distance from the board edge"
Definition: game.h:34
float points_win
"Points for a win"
Definition: game.h:47
Game rules abstraction (used to run the tournament)
Definition: tournament.h:40
Definition: player.cpp:18
float serve_speed
"Ball speed before first return"
Definition: game.h:38
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
tournament::TournamentVariant tournament_type
"Tournament type"
Definition: game.h:54
bool simple_serve
"Fixed serving angle"
Definition: game.h:45
Swiss-system tournament.
float paddle_speed
"(0, inf)"
Definition: game.h:33
float ball_speed
"Ball speed"
Definition: game.h:37
float points_lose
"Points for a lost game"
Definition: game.h:48
The interface to the population-specific "genetic material", the Genotype
Definition: darwin.h:126
float points_draw
"Points for a tie"
Definition: game.h:49
float ball_radius
"Ball size"
Definition: game.h:36
GameOutcome
Game outcome.
Definition: tournament.h:32