You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
726 B
35 lines
726 B
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include "Moving.h"
|
|
#include "Schachbrett.h"
|
|
#include "Spieler.h"
|
|
|
|
bool king_alive(char** brett) {
|
|
bool white_king_found = false;
|
|
bool black_king_found = false;
|
|
|
|
for(int i = 0; i < 8; i++) {
|
|
for(int j = 0; j < 8; j++) {
|
|
if(brett[i][j] == 'K') {
|
|
white_king_found = true;
|
|
} else if(brett[i][j] == 'k') {
|
|
black_king_found = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return white_king_found && black_king_found;
|
|
}
|
|
void spiel(char** brett) {
|
|
|
|
|
|
if(king_alive(brett)) {
|
|
// spiel läuft noch
|
|
} else {
|
|
// Spielende
|
|
}
|
|
|
|
|
|
}
|
|
|
|
// Während der Laufzeit des Spiels neue Features hinzufügen
|