Browse Source

Merge branch 'main' of gitlab.cs.hs-fulda.de:fdai7834/taktikmeister

main
Emman Mensdorf 11 months ago
parent
commit
0f3f2db095
  1. 11
      src/SimpleKI.c
  2. 11
      src/SimpleKI.h
  3. 14
      test/test_Moving.c
  4. 21
      test/test_SimpleKI.c

11
src/SimpleKI.c

@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include "Spieler.h"
#include "Moving.h"
#include "Schachbrett"
bool einfache_KI(Brett, startX,startY,endX,endY,player){
// Funktion für KI-Gegner
}

11
src/SimpleKI.h

@ -0,0 +1,11 @@
#ifndef SIMPLEKI_H
#define SIMPKLEKI_H
#include <stdio.h>
#inlude "Moving.h"
#include <stdbool.h>
#include "Schachbrett.h"
#include "Spieler.h"
bool einfache_KI(Brett, startX,startY,endX,endY,player);
#endif

14
test/test_Moving.c

@ -145,5 +145,19 @@ void test_istzugerlaubt_Turm(void){
}
free(brett);
}
void test_Laeufer_black_Moving(void) {
char** brett = Schachbrett_erstellen();
Player player = PLAYER_BLACK;
// Prüfen, ob der Zug eine Diagonale ist == true
brett[6][6] = 'b';
TEST_ASSERT_TRUE(istzugerlaubt(brett, 6, 6, 3, 3, player));
for (int i = 0; i < 8; i++) {
free(brett[i]);
}
free(brett);
}
#endif // TEST

21
test/test_SimpleKI.c

@ -0,0 +1,21 @@
#ifdef TEST
#include "unity.h"
#include "Schachbrett.h"
#include "Moving.h"
#include "Spieler.h"
#include "Turm.h"
#include "Bauer.h"
#include "Koenig.h"
#include "Springer.h"
#include "Dame.h"
#include "Laeufer.h"
#include <stdlib.h>
void setUp(void) {
}
void tearDown(void) {
}
#endif // TEST
Loading…
Cancel
Save