This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
DamesEtCo/src/Safari/PieceSafari.cpp

32 lines
717 B
C++
Raw Normal View History

#include "../../includes/Safari/PieceSafari.hpp"
2023-12-10 15:03:07 +01:00
2023-12-29 02:09:11 +01:00
PieceSafari::PieceSafari(const enum Categorie cat, const int posX,
const int posY)
: Piece(to_string(cat), posX, posY) {
std::cout << "pièce - " << categorie << "\n";
2023-12-10 15:03:07 +01:00
}
PieceSafari::~PieceSafari() {}
std::string PieceSafari::to_string(const enum Categorie cat) const {
switch (cat) {
case Barriere:
return "Barrière";
case Elephant:
return "Éléphant";
case Rhinoceros:
return "Rhinocéros";
case Lion:
return "Lion";
default:
2023-12-27 21:39:18 +01:00
std::cerr << "Catégorie inconnue (PieceSafari).\n";
exit(EXIT_FAILURE);
}
}
2023-12-28 22:05:00 +01:00
sf::Color PieceSafari::getScreenColor() const {
// TODO
return sf::Color::White;
}