Darwin Neuroevolution Framework
board.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 <core/properties.h>
18 
19 #include <array>
20 using namespace std;
21 
22 namespace tic_tac_toe {
23 
24 // A 3x3 tic-tac-toe board, with the following layout:
25 //
26 // 0 | 1 | 2
27 // ----+---+----
28 // 3 | 4 | 5
29 // ----+---+----
30 // 6 | 7 | 8
31 //
32 // TODO: outcome checks can be made faster by using row/col/diag counters
33 //
34 class Board {
35  public:
36  static constexpr int kLines[][3] = {
37  // rows
38  { 0, 1, 2 },
39  { 3, 4, 5 },
40  { 6, 7, 8 },
41  // columns
42  { 0, 3, 6 },
43  { 1, 4, 7 },
44  { 2, 5, 8 },
45  // diagonals
46  { 0, 4, 8 },
47  { 2, 4, 6 },
48  };
49 
50  enum class Piece : char { Empty, X, Zero };
51  enum class State { Undecided, X_Wins, Zero_Wins, Draw };
52 
53  static constexpr int kSize = 9;
54  static constexpr int kNoSquare = -1;
55 
56  public:
57  Board() { reset(); }
58 
59  void reset() {
60  for (auto& square : board_)
61  square = Piece::Empty;
62  }
63 
64  Piece& operator[](int index) { return board_[index]; }
65 
66  const Piece& operator[](int index) const { return board_[index]; }
67 
68  State state() const;
69 
70  static Piece otherSide(Piece piece);
71 
72  private:
73  array<Piece, kSize> board_;
74 };
75 
76 } // namespace tic_tac_toe
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
STL namespace.
Definition: ann_player.cpp:24
Game ended up in a draw.