endgame todo

This commit is contained in:
Mylloon 2024-01-07 03:16:13 +01:00
parent 604e66c30c
commit d5776ac144
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -214,14 +214,20 @@ void Safari::event(const int x, const int y) {
}
if (deplacerAnimal && placerBarriere) {
// Le joueur a fini son tour
// Réinitialise les variables
deplacerAnimal = false;
placerBarriere = false;
// TODO: Vérification partie terminée
if (false) {
etape = Fini;
Ecran::printMessage("Partie terminée !");
} else {
// Le joueur a fini son tour
// Réinitialise les variables
deplacerAnimal = false;
placerBarriere = false;
// Donne la main au joueur suivant
changerJoueurCourant();
Ecran::printMessage(msgTonTour());
// Donne la main au joueur suivant
changerJoueurCourant();
Ecran::printMessage(msgTonTour());
}
}
break;
}