diff options
| -rw-r--r-- | include/game.h | 5 | ||||
| -rw-r--r-- | lib/game.c | 11 | 
2 files changed, 15 insertions, 1 deletions
diff --git a/include/game.h b/include/game.h index 61239e7..5ab589b 100644 --- a/include/game.h +++ b/include/game.h @@ -8,4 +8,9 @@   */  Board game_loop(Board); +/* + * Return 1 if the received player is checkmated. Returns 0 otherwise. + */ +int game_is_checkmate(Board board, Color color); +  #endif @@ -13,12 +13,19 @@ static Color _toggle_current_player(Color c) {          return WHITE;  } +/* + * TODO + */ +int game_is_checkmate(Board board, Color color) { +    return 0; +} +  Board game_loop(Board board) {      Board b = board;      Color current_player = WHITE;      Coord orig, dest; -    while (1) { +    while (!game_is_checkmate(b, current_player)) {          print_board(b, current_player);          putchar('\n'); @@ -33,4 +40,6 @@ Board game_loop(Board board) {          b = board_make_move(b, move_init(orig, dest));          current_player = _toggle_current_player(current_player);      } + +    return 0;  }  | 
