forked from InfiniBrains/SDL2-CPM-CMake-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal.cpp
42 lines (38 loc) · 935 Bytes
/
terminal.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <iostream>
#include <vector>
#include "MCTS.h"
int main() {
Board board;
board.set_turn(Square::O);
while(!board.is_terminal()){
board.print_board();
MCTS mcts = MCTS(1000);
if(board.get_turn()==Square::X){
std::cout<<"X's turn"<<std::endl;
board = mcts.search(board);
board.set_turn(Square::X);
} else {
std::cout<<"O's turn"<<std::endl;
board = mcts.search(board);
board.set_turn(Square::O);
}
// check if the game is over
if(board.have_winner(Square::X)){
std::cout<<"X wins"<<std::endl;
break;
}
if(board.have_winner(Square::O)){
std::cout<<"O wins"<<std::endl;
break;
}
if(board.is_full()){
std::cout<<"Draw"<<std::endl;
break;
}
// change the turns
board.set_turn((Square)(!(bool)board.get_turn()));
}
std::cout << "Final board"<<std::endl;
board.print_board();
return 0;
}