-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChambre.cpp
91 lines (60 loc) · 1.36 KB
/
Chambre.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Chambre.cpp: implementation of the Chambre class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Chambre.h"
#include<iostream>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
using namespace std;
Chambre::Chambre()
{
Porte p1;
p1.setVerouillage(true);
p1.setDirection(ouest);
collporte.push_back(p1);
Porte p2;
p2.setVerouillage(true);
p2.setDirection(nord);
collporte.push_back(p2);
Porte p3;
p3.setVerouillage(true);
p3.setDirection(est);
collporte.push_back(p3);
Porte p4;
p4.setVerouillage(true);
p4.setDirection(sud);
collporte.push_back(p4);
}
Chambre::~Chambre()
{
}
void Chambre::modifierVerouillage(Direction d, bool verr)
{
vector<Porte >::iterator it;
for(it=collporte.begin();it!=collporte.end();it++)
{
if(it->getDirection()==d)
it->setVerouillage(verr);
}
}
int Chambre::nbPorteverrouille()
{
vector<Porte>::iterator k;
int cpt=0;
for (int i=0;i<collporte.size();++i)
{
if(k->getVerouillage())
cpt++;
k++;
}
return cpt;
}
bool Chambre::estVerouillee(Direction d)
{
vector<Porte >::iterator it;
for(it=collporte.begin();it!=collporte.end();it++)
if(it->getDirection()==d)
return it->getVerouillage();
}