From 569d456751e2e9b0b00400587a37e4bb9446d5fa Mon Sep 17 00:00:00 2001 From: fdai7892 Date: Wed, 7 Feb 2024 16:13:19 +0100 Subject: [PATCH] Funktion Anzahl der Felder --- src/main/duellist-spielesammlung-projekt.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index baf17b9..c36416c 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -46,7 +46,17 @@ Player getCurrentPlayer(const TicTacToeGame * game) { return game->currentPlayer; } - +int getNumberOfMoves(const TicTacToeGame* game) { + int moves = 0; + for (int i = 0; i < 3; ++i) { + for (int j = 0; j < 3; ++j) { + if (game->board[i][j] != EMPTY) { + moves++; + } + } + } + return moves; +}