summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2021-11-21 16:08:23 -0500
committerRobby Zambito <contact@robbyzambito.me>2021-11-21 16:08:23 -0500
commit0ed931c4ff167c957c0b772b7d3c73a7e6dcb403 (patch)
tree7fa39a7b91b632aa00bfd3e4f92620b6bf8d5474 /src
parent941b48199327eb25bafed119ded73fa16f63e1ae (diff)
Added function pointer for getting the player move.
If the player is an AI one, it will point to a function that will return the move from the AI. If the player is a human, it will point to a function that will prompt the user for input.
Diffstat (limited to 'src')
-rw-r--r--src/game_loop.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game_loop.c b/src/game_loop.c
index 409e384..bcf7eb7 100644
--- a/src/game_loop.c
+++ b/src/game_loop.c
@@ -27,6 +27,11 @@
#define STREQ(a, b) (strcmp(a, b) == 0)
+struct move (*player_one_get_move)(enum player_color board[8][8],
+ enum player_color current_player);
+struct move (*player_two_get_move)(enum player_color board[8][8],
+ enum player_color current_player);
+
static enum player_color other_player(enum player_color current_player) {
switch (current_player) {
case WHITE: