19 #include <core/darwin.h> 23 class AnnPlayer :
public Player {
25 static constexpr
int kInputs = 6;
26 static constexpr
int kOutputs = 2;
35 static constexpr
int kInputMyPaddlePos = 0;
36 static constexpr
int kInputOpponentPaddlePos = 1;
37 static constexpr
int kInputBallX = 2;
38 static constexpr
int kInputBallY = 3;
39 static constexpr
int kInputBallVx = 4;
40 static constexpr
int kInputBallVy = 5;
42 static constexpr
int kOutputMoveUp = 0;
43 static constexpr
int kOutputMoveDown = 1;
46 unique_ptr<darwin::Brain> brain;
52 Action action()
override;
53 string name()
const override;
54 void newGame(
const Game* game, Side side)
override;
Definition: player.cpp:18
The interface to the population-specific "genetic material", the Genotype
Definition: darwin.h:126