endgame todo
This commit is contained in:
parent
604e66c30c
commit
d5776ac144
1 changed files with 13 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Reference in a new issue