17 #include <core/properties.h> 18 #include <core/tournament_implementations.h> 34 PROPERTY(
paddle_offset,
float, 0.04f,
"Horizontal distance from the board edge");
38 PROPERTY(
serve_speed,
float, 0.04f,
"Ball speed before first return");
42 PROPERTY(
max_steps,
int, 2500,
"If no one scores before max_steps, the game is a draw");
69 explicit Game(
int max_steps) : max_steps_(max_steps) {}
72 void newGame(Player* player1, Player* player2);
76 int scoreP1()
const {
return score_p1_; }
77 int scoreP2()
const {
return score_p2_; }
79 int currentSet()
const {
return set_; }
80 int currentStep()
const {
return step_; }
82 float paddlePosP1()
const {
return paddle_pos_p1_; }
83 float paddlePosP2()
const {
return paddle_pos_p2_; }
85 const Ball& ball()
const {
return ball_; }
87 const Player* player1()
const {
return player1_; }
88 const Player* player2()
const {
return player2_; }
91 bool moveBall(
float dt);
97 float ball_speed_ = 0;
104 float paddle_pos_p1_ = 0;
105 float paddle_pos_p2_ = 0;
109 Player* player1_ =
nullptr;
110 Player* player2_ =
nullptr;
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
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