Darwin Neuroevolution Framework
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 "board.h"
18 
19 #include <core/utils.h>
20 
21 namespace tic_tac_toe {
22 
23 class Player {
24  public:
25  Player() = default;
26  virtual ~Player() = default;
27 
28  // start a new game
29  virtual void newGame(const Board* board, Board::Piece side) {
30  CHECK(side != Board::Piece::Empty);
31  board_ = board;
32  side_ = side;
33  }
34 
35  // returns the index of the selected board square, or Board::kNoSquare if not ready
36  virtual int move() = 0;
37 
38  virtual string name() const = 0;
39 
40  Board::Piece side() const { return side_; }
41 
42  protected:
43  const Board* board_ = nullptr;
44  Board::Piece side_ = Board::Piece::Empty;
45 };
46 
47 } // namespace tic_tac_toe
Definition: ann_player.cpp:24