-
Notifications
You must be signed in to change notification settings - Fork 0
/
OOP-construction.cc
219 lines (186 loc) · 4.45 KB
/
OOP-construction.cc
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#include <iostream>
#include <string>
#include <vector>
using namespace std;
// Pour simplifier
typedef string Forme ;
typedef string Couleur ;
class Brique
{
private:
Forme forme ;
Couleur couleur ;
public:
/*****************************************************
Compléter le code à partir d'ici
*******************************************************/
Brique(Forme(forme),Couleur(couleur)):forme(forme),couleur(couleur){}
ostream& afficher(ostream& sortie) const{
if (couleur.empty() )
return sortie<<forme;
else
return sortie<<"("<<forme<<", "<<couleur<<")";
}
};
ostream& operator << (ostream& o, Brique const& b){
return b.afficher(o);
}
class Construction
{
friend class Grader;
vector<vector<vector<Brique>>> contenu;
public:
Construction(Brique const & b){
vector<Brique> temp(1,b);
vector<vector<Brique>> tmp(1,temp);
contenu.push_back(tmp);
}
ostream& afficher(ostream& sortie) const {
for(int i=contenu.size()-1;i>=0;--i){
sortie << "Couche "<< i <<" :" << endl;
for(auto const& j: contenu[i]){
for(auto const& k: j){
sortie << k;
}
sortie << endl;
}
//sortie << endl;
}
return sortie;
}
Construction & operator ^= (Construction const &c){
for (unsigned int i=0;i<c.contenu.size();i++){
contenu.push_back(c.contenu[i]);
}/*
for (auto const& i: c.contenu){
contenu.push_back(i);
}*/
return *this;
}
Construction & operator -= (Construction const &c){
if (c.contenu.size()>=contenu.size()){
for (unsigned int i=0;i<contenu.size();i++){
for (unsigned int j=0;j<c.contenu[i].size();j++)
contenu[i].push_back(c.contenu[i][j]);
}
}
return *this;
}
Construction & operator += (Construction const &c){
int flag = 1;
if (c.contenu.size()<contenu.size())
flag = 0;
else {
for (unsigned int i=0;i<contenu.size();i++){
if (c.contenu[i].size() < contenu[i].size())
flag = 0;
break;
}
}
if (flag == 1) {
for (unsigned int i=0;i<contenu.size();i++){
for (unsigned int j=0;j<contenu[i].size();j++){
for (unsigned int k=0;k<c.contenu[i][j].size();k++)
contenu[i][j].push_back(c.contenu[i][j][k]);
}
}
}
return *this;
}
};
const Construction operator^(Construction a, Construction const& b){
a ^= b;
return a;
}
Construction operator - (Construction a, Construction const & b){
a -= b;
return a;
}
Construction operator + (Construction a, Construction const & b){
a += b;
return a;
}
ostream& operator << (ostream & o, Construction & c){
return c.afficher(o);
}
const Construction operator*(unsigned int n, Construction const& a)
{
Construction b = a;
for (unsigned int i = 1;i!=n;i++){
b += a;
}
return b;
}
const Construction operator/(unsigned int n, Construction const& a)
{ Construction b = a;
for (unsigned int i = 1;i!=n;i++){
b ^= a;
}
return b;
}
const Construction operator%(unsigned int n, Construction const& a)
{
Construction b = a;
for (unsigned int i = 1;i!=n;i++){
b -= a;
}
return b;
}
const Construction operator*(unsigned int n, Brique const& a)
{
Construction b(a);
return n*b;
}
const Construction operator/(unsigned int n, Brique const& a)
{
Construction b(a);
return n/b;
}
const Construction operator%(unsigned int n, Brique const& a)
{
Construction b(a);
return n%b;
}
const Construction operator^(Brique a, Brique const& b){
Construction c(b);
Construction ca(a);
ca ^= b;
return ca;
}
Construction operator - (Brique a, Brique const & b){
Construction c(b);
Construction ca(a);
ca -= b;
return ca;
}
Construction operator + (Brique a, Brique const & b){
Construction c(b);
Construction ca(a);
ca += b;
return ca;
}
/*******************************************
* Ne rien modifier après cette ligne.
*******************************************/
int main()
{
// Modèles de briques
Brique toitD("obliqueD", "rouge");
Brique toitG("obliqueG", "rouge");
Brique toitM(" pleine ", "rouge");
Brique mur (" pleine ", "blanc");
Brique vide (" ", "");
unsigned int largeur(4);
unsigned int profondeur(3);
unsigned int hauteur(3); // sans le toit
// on construit les murs
Construction maison( hauteur / ( profondeur % (largeur * mur) ) );
// on construit le toit
Construction toit(profondeur % ( toitG + 2*toitM + toitD ));
toit ^= profondeur % (vide + toitG + toitD);
// on pose le toit sur les murs
maison ^= toit;
// on admire notre construction
cout << maison << endl;
return 0;
}