forked from LiangChenDLJ/OthelloMonter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
64 lines (60 loc) · 1.35 KB
/
main.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include<iostream>
#include<stdlib.h>
#include<time.h>
#include"Othello.h"
#include"MNode.h"
using namespace std;
int main() {
char c;
int a, b;
Othello* othello = new Othello();
othello->showboard();
MNode *mtree= new MNode(othello);
const int COMPUTER = Othello::WHITE;
srand(time(0));
while (mtree->othello->boardstate == Othello::PLAYING) {
if (mtree->othello->turn == COMPUTER) {
mtree = mtree->SearchAndPlay();
}
else {
/*
srand(time(0));
mtree = mtree->Play(rand() % mtree->othello->playset.size());
*/
std::cin >> a;
if (a == -1) {
srand(time(0));
mtree = mtree->Play(rand() % mtree->othello->playset.size());
}
else {
std::cin >> b;
mtree = mtree->Play(a, b);
}
}
mtree->othello->showboard();
}
if (mtree->othello->boardstate == Othello::WHITE) {
std::cout << "WINNER IS WHITE!" << std::endl;
}
else if (mtree->othello->boardstate == Othello::BLACK) {
std::cout << "WINNER IS BLACK!" << std::endl;
}else {
std::cout << "DRAW!" << std::endl;
}
std::cin >> c;
/*
while (1) {
cin >> c;
if (c == 'p') {
othello->randomplay(); othello->showboard();
othello = new Othello(*othello);
mtree->freetree();
mtree = new MNode(othello);
}
else if (c == 's'){
mtree->SearchOnce();
mtree->showtree(0);
}
}
*/
}