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 <domains/tic_tac_toe/board.h>
18 #include <domains/tic_tac_toe/player.h>
19 
20 #include <vector>
21 using namespace std;
22 
23 namespace tic_tac_toe_ui {
24 
25 class Game {
26  public:
27  // game setup
28  void newGame(tic_tac_toe::Player* x_player, tic_tac_toe::Player* o_player);
29  void reset();
30 
31  // current player's turn, returns true if the game made progress
32  bool takeTurn();
33 
34  const tic_tac_toe::Board& board() const { return board_; }
35 
36  tic_tac_toe::Player* currentPlayer() const;
37 
38  // navigating game history
39  void historyToFirst();
40  void historyToLast();
41  void historyToPrevious();
42  void historyToNext();
43 
44  // most current move, or Board::kNoSquare
45  int lastMove() const;
46 
47  private:
48  void applyMove(int move);
49  void undoMove(int move);
50 
51  private:
52  tic_tac_toe::Player* x_player_ = nullptr;
53  tic_tac_toe::Player* o_player_ = nullptr;
54 
55  tic_tac_toe::Board board_;
56 
57  // game history
58  vector<int> moves_history_;
59  size_t active_moves_ = 0;
60 };
61 
62 } // namespace tic_tac_toe_ui
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
STL namespace.
Definition: board_widget.cpp:26