Darwin Neuroevolution Framework
ann_player.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 "player.h"
18 
19 #include <core/darwin.h>
20 
21 namespace pong {
22 
23 class AnnPlayer : public Player {
24  public:
25  static constexpr int kInputs = 6;
26  static constexpr int kOutputs = 2;
27 
28  struct Stats {
29  int won = 0;
30  int lost = 0;
31  int drawn = 0;
32  };
33 
34  private:
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;
41 
42  static constexpr int kOutputMoveUp = 0;
43  static constexpr int kOutputMoveDown = 1;
44 
45  public:
46  unique_ptr<darwin::Brain> brain;
47  const darwin::Genotype* genotype = nullptr;
48  Stats stats;
49  int generation = -1;
50 
51  public:
52  Action action() override;
53  string name() const override;
54  void newGame(const Game* game, Side side) override;
55 
56  void grow(const darwin::Genotype* genotype);
57 };
58 
59 } // namespace pong
Definition: player.cpp:18
The interface to the population-specific "genetic material", the Genotype
Definition: darwin.h:126