-
Notifications
You must be signed in to change notification settings - Fork 0
/
piece.cpp
70 lines (61 loc) · 1.64 KB
/
piece.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
* Implementation de la classe d'une Piece
* \file piece.cpp
* \author Taylor et Alaa-Eddine
* \date 22 decembre 2021
* Créé le 3 decembre 2021
*/
#include "piece.hpp"
#include "pieceCache.hpp"
Piece::Piece(const string& nom, const string& description) : nom_(nom), description_(description)
{}
void Piece::setVoisins(string direction, Piece* piece)
{
voisins_[direction] = piece;
}
void Piece::setVoisins(map<string, Piece*> voisins)
{
for (auto& v : voisins)
voisins_[v.first] = v.second;
}
Piece* Piece::getVoisin(string direction) const
{
auto it = voisins_.find(direction);
if (it == voisins_.end() || (dynamic_cast<PieceCache*>(it->second) != nullptr && dynamic_cast<PieceCache*>(it->second)->getEstCache()))
return nullptr;
return it->second;
}
Objet* Piece::getObjet(string objet) const
{
for (auto& a : objets_) {
for (auto& b : a.first)
if (objet.find(b) != string::npos)
return a.second;
}
return nullptr;
}
ostream& Piece::afficher(ostream& os)
{
os << "--- " << nom_ << " ---" << endl;
os << description_ << endl;
if (objets_.size() != 0)
{
os << "Vous appercevez : " << endl;
for (auto& objet : objets_)
{
if (!objet.second->getEstCache())
os << "\t" << objet.second->getNom() << endl;
}
}
for (auto& v : voisins_)
{
auto pieceCache = dynamic_cast<PieceCache*>(v.second);
if ((dynamic_cast<Piece*>(v.second) && pieceCache == nullptr) || (pieceCache != nullptr && !pieceCache->getEstCache()))
os << v.second->nom_ << " est vers " << v.first << " (" << v.first[0] << ")\n";
}
return os;
}
void Piece::setObjet(map< vector<string>, Objet*> objet)
{
objets_.insert(objet.begin(), objet.end());
}