17 #include <domains/tic_tac_toe/player.h> 21 class HumanPlayer :
public tic_tac_toe::Player {
24 auto move = selected_move_;
25 selected_move_ = tic_tac_toe::Board::kNoSquare;
29 void selectMove(
int move) {
30 CHECK(move >= 0 && move < tic_tac_toe::Board::kSize);
31 CHECK(selected_move_ == tic_tac_toe::Board::kNoSquare);
33 const auto& board = *board_;
34 if (board[move] == tic_tac_toe::Board::Piece::Empty &&
35 board.state() == tic_tac_toe::Board::State::Undecided) {
36 selected_move_ = move;
40 string name()
const override {
return "Human"; }
43 int selected_move_ = tic_tac_toe::Board::kNoSquare;
Definition: board_widget.cpp:26