Prise OK
This commit is contained in:
parent
9cf5a55bf2
commit
b63658c58f
2 changed files with 5 additions and 5 deletions
|
@ -69,12 +69,12 @@ void Dames::event(const int x, const int y) {
|
|||
Ecran::printMessage("Vous devez forcément faire une prise.");
|
||||
if (plateau.priseValide(posCurseur.first, posCurseur.second)) {
|
||||
if (p == nullptr) {
|
||||
plateau.moveSelection(posCurseur.first, posCurseur.second);
|
||||
// On efface la piece prise du plateau
|
||||
Piece *pieceEffacee =
|
||||
plateau.piecePrise(posCurseur.first, posCurseur.second);
|
||||
plateau.modifierPlateau(pieceEffacee->getPos().first,
|
||||
pieceEffacee->getPos().second, nullptr);
|
||||
plateau.moveSelection(posCurseur.first, posCurseur.second);
|
||||
// Donne la main au joueur suivant
|
||||
changerJoueurCourant();
|
||||
Ecran::printMessage(msgTonTour());
|
||||
|
|
|
@ -28,16 +28,16 @@ PlateauDames::~PlateauDames() {}
|
|||
Piece *PlateauDames::piecePrise(const int x, const int y) const {
|
||||
const Position posInitiale = selection->getPos();
|
||||
if (x == posInitiale.first + 2 && y == posInitiale.second + 2) {
|
||||
return plateau[x + 1][y + 1];
|
||||
return plateau[posInitiale.first + 1][posInitiale.second + 1];
|
||||
}
|
||||
if (x == posInitiale.first - 2 && y == posInitiale.second - 2) {
|
||||
return plateau[x - 1][y - 1];
|
||||
return plateau[posInitiale.first - 1][posInitiale.second - 1];
|
||||
}
|
||||
if (x == posInitiale.first + 2 && y == posInitiale.second - 2) {
|
||||
return plateau[x + 1][y - 1];
|
||||
return plateau[posInitiale.first + 1][posInitiale.second - 1];
|
||||
}
|
||||
if (x == posInitiale.first - 2 && y == posInitiale.second + 2) {
|
||||
return plateau[x - 1][y + 1];
|
||||
return plateau[posInitiale.first - 1][posInitiale.second + 1];
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
|
Reference in a new issue