From 30036b38ed835a1a851910a5e786d0b90c943488 Mon Sep 17 00:00:00 2001 From: fdai7492 Date: Fri, 2 Feb 2024 05:32:49 +0000 Subject: [PATCH] Hardcode von print_Schachfeld, Anton Lohrey --- src/Schachbrett.c | 6 +++--- src/Schachbrett.h | 2 +- src/main.c | 2 +- test/test_Bauer.c | 2 +- test/test_Moving.c | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Schachbrett.c b/src/Schachbrett.c index a4ba5ea..a707b25 100644 --- a/src/Schachbrett.c +++ b/src/Schachbrett.c @@ -46,9 +46,9 @@ char** Schachbrett_erstellen() { return Brett; } -void print_Schachfeld(char** Brett, int Reihen, int Spalten) { - for (int i = 0; i < Reihen; i++) { - for (int j = 0; j < Spalten; j++) { +void print_Schachfeld(char** Brett) { + for (int i = 0; i < 8; i++) { + for (int j = 0; j < 8; j++) { printf(" %c ", Brett[i][j]); } printf("\n"); diff --git a/src/Schachbrett.h b/src/Schachbrett.h index f5e8f99..980975d 100644 --- a/src/Schachbrett.h +++ b/src/Schachbrett.h @@ -2,7 +2,7 @@ #define SCHACHBRETT_H char** Schachbrett_erstellen(); -void print_Schachfeld(char** Brett, int Reihen, int Spalten); +void print_Schachfeld(char** Brett); void Schachbrettspeicher_freigeben(char** Brett); #endif // SCHACHBRETT_H diff --git a/src/main.c b/src/main.c index 5b6b7db..2c88941 100644 --- a/src/main.c +++ b/src/main.c @@ -8,7 +8,7 @@ int main() { int spieler = 0; char** Spielfeld = create_Schachfeld(x, y); while (checkmate() == 0){ - print_Schachfeld(Spielfeld, x, y); + print_Schachfeld(Spielfeld); if(spieler % 2 == 0){ choose_Figur('w', Spielfeld);//weiß diff --git a/test/test_Bauer.c b/test/test_Bauer.c index 567a1e4..657545b 100644 --- a/test/test_Bauer.c +++ b/test/test_Bauer.c @@ -48,7 +48,7 @@ void test_Bauer_Schlag_Bewegung(void) { brett[startY][startX] = 'P'; brett[endY][endX] = 'p'; - print_Schachfeld(brett,8,8); + print_Schachfeld(brett); TEST_ASSERT_FALSE(istzugerlaubt_Bauer( brett, startX, startY, endX, endY, player)); diff --git a/test/test_Moving.c b/test/test_Moving.c index 9a49832..fdf9a48 100644 --- a/test/test_Moving.c +++ b/test/test_Moving.c @@ -24,7 +24,7 @@ void test_Bauern_bewegen(void) { machezug( brett, startX, startY, endX, endY, player); - print_Schachfeld(brett,8,8); + print_Schachfeld(brett); TEST_ASSERT_EQUAL('P', brett[2][0]); TEST_ASSERT_EQUAL(' ', brett[1][0]);