3 #include "MoveHistoryEntry.h"
4 #include "RandomEnemy.h"
5 #include "MinimaxEnemy.h"
11 /* nome do arquivo de log */
12 #define LOG_FILE "log.txt"
13 /* número máximo de movimentos de uma partida */
14 #define MAX_MOVES 1000
18 assert(sizeof(Board::ImpComp
) == 8);
20 _board
->initial_position();
22 _move_count
= _current_move
= 0;
24 _move_history
= new MoveHistoryEntry
[MAX_MOVES
];
25 _move_history
[_move_count
= _current_move
++] = MoveHistoryEntry(_board
, -1, -1, -1, -1);
26 _out
= fopen(LOG_FILE
, "a");
28 _enemy
[0] = new MinimaxEnemy(0, _minimax_depth
);
29 _enemy
[1] = new MinimaxEnemy(1, _minimax_depth
);
30 //_enemy[1] = new RandomEnemy(1, _minimax_depth);
33 char charTime
[100] = {0};
35 strftime(charTime
,sizeof(charTime
)-1,"%c",localtime(&currtime
));
36 fprintf(_out
, "time: %s\n", charTime
);
46 void Game::move(int fromX
, int fromY
, int toX
, int toY
)
48 _board
->move(_player
, Board::Move(INDEX(fromX
, fromY
), INDEX(toX
, toY
)));
51 //fprintf(_out, "back: %i\n", _move_count - _current_move + 1);
52 //_move_history[_move_count = _current_move++] = MoveHistoryEntry(_board, fromX, fromY, toX, toY);
53 //fprintf(_out, "%i: %i %i %i %i\n", _move_count, fromX, fromY, toX, toY);
59 if(_computer_color
& (1 << _player
)) {
60 //printf("Computer Turn\n");
62 int fromX
, fromY
, toX
, toY
;
63 _enemy
[_player
]->move(_board
, fromX
, fromY
, toX
, toY
);
64 move(fromX
, fromY
, toX
, toY
);
67 //printf("Player Turn\n");
72 void Game::fill_moves(int x
, int y
, bool *to
)
74 Board::MoveList moveList
;
75 _board
->moves(_player
, x
, y
, moveList
);
78 to
[(int) moveList
[i
].second
] = 1;
82 bool Game::can_move(int x
, int y
)
84 return _board
->get(_player
, x
, y
);
87 void Game::fill_pieces(bool *isEmpty
, char *piece
)
91 isEmpty
[INDEX(i
, j
)] = !(_board
->get(0, i
, j
) || _board
->get(1, i
, j
));
95 if(_board
->get(1, i
, j
))
96 piece
[INDEX(i
, j
)] = 1;
97 else piece
[INDEX(i
, j
)] = 0;
100 void Game::set_player(bool player
)
103 fprintf(_out
, "player: %i\n", _player
? 1 : 0);
109 _enemy
[0]->undo(_board
);
110 _enemy
[1]->undo(_board
);
111 set(_move_history
[--_current_move
- 1]);
119 set(_move_history
[_current_move
++]);
124 void Game::set(MoveHistoryEntry entry
) {
126 _board
= entry
.board()->copy();
129 void Game::get_last_move(int& fromX
, int &fromY
, int& toX
, int& toY
)
131 MoveHistoryEntry e
= _move_history
[_current_move
- 1];
138 void Game::load(FILE *in
)
140 int back
, eof
, player
, fromX
, fromY
, toX
, toY
;
142 if(0 != (eof
= fscanf(in
, "%*i: %i %i %i %i", &fromX
, &fromY
, &toX
, &toY
))) {
143 if(eof
== EOF
) break;
144 printf("move: %i %i %i %i\n", fromX
, fromY
, toX
, toY
);
145 move(fromX
, fromY
, toX
, toY
);
146 } else if(0 != (eof
= fscanf(in
, "time: %*[^\n]"))) {
147 if(eof
== EOF
) break;
149 } else if(0 != (eof
= fscanf(in
, "back: %i", &back
))) {
150 if(eof
== EOF
) break;
151 printf("back: %i\n", back
);
152 for(int i
= 0; i
< back
; i
++)
154 } else if(0 != (eof
= fscanf(in
, "player: %i", &player
))) {
155 if(eof
== EOF
) break;
156 printf("player: %i\n", player
);
162 void Game::set_minimax_depth(int minimaxDepth
)
164 _enemy
[0]->set_minimax_depth(minimaxDepth
);
165 _enemy
[1]->set_minimax_depth(minimaxDepth
);
170 bool res
= _board
->is_end();
171 //if(res) ;//fflush(_out);
175 void Game::set_players(Enemy
*a
, Enemy
*b
)
185 _board
->initial_position();
193 if(_board
->get(0, i
, j
)) printf("x");
194 else if(_board
->get(1, i
, j
)) printf("o");