From 835263468894976068e199d20fd9ee82068b8ea9 Mon Sep 17 00:00:00 2001 From: fdai7892 Date: Wed, 7 Feb 2024 16:24:09 +0100 Subject: [PATCH] =?UTF-8?q?Funktion,=20=C3=9Cberpr=C3=BCfung=20ob=20Feld?= =?UTF-8?q?=20voll=20ist?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/duellist-spielesammlung-projekt.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index c36416c..0e4eb35 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -58,6 +58,20 @@ int getNumberOfMoves(const TicTacToeGame* game) { return moves; } +int isBoardFull(const TicTacToeGame* game) { + for (int i = 0; i < 3; ++i) { + for (int j = 0; j < 3; ++j) { + if (game->board[i][j] == EMPTY) { + return 0; // Das Spielfeld ist nicht vollständig gefüllt + } + } + } + return 1; // Das Spielfeld ist vollständig gefüllt +} + + + +