summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/game.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/game.c b/lib/game.c
index 6fcc0c5..b3eb677 100644
--- a/lib/game.c
+++ b/lib/game.c
@@ -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;
}
nihil fit ex nihilo