jsp
This commit is contained in:
parent
ea40b23ad8
commit
23080fc7d0
1 changed files with 8 additions and 0 deletions
|
@ -72,6 +72,14 @@ void Plateau::afficherPlateau(std::ostream &out, const bool d) const {
|
||||||
if (p->isSelectionnee()) {
|
if (p->isSelectionnee()) {
|
||||||
piece.setOutlineColor(sf::Color::Green);
|
piece.setOutlineColor(sf::Color::Green);
|
||||||
}
|
}
|
||||||
|
// TODO(Idée): Au lieu de demander une couleur on pourait demander
|
||||||
|
// directement une forme/texture à la pièce
|
||||||
|
// Avantage : A la place d'une forme on pourrait mettre une image, pour
|
||||||
|
// Safari par exemple
|
||||||
|
// Inconvénient : Ca va potentiellement créer plusieurs fois la même
|
||||||
|
// chose en mémoire pour rien du tout
|
||||||
|
//
|
||||||
|
// A méditer
|
||||||
piece.setFillColor(p->getScreenColor());
|
piece.setFillColor(p->getScreenColor());
|
||||||
Ecran::window.draw(piece);
|
Ecran::window.draw(piece);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue