-
Notifications
You must be signed in to change notification settings - Fork 0
/
gestionnaireTerrain.cpp
332 lines (314 loc) · 8.55 KB
/
gestionnaireTerrain.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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
#include "gestionnaireTerrain.h"
#include <iostream>
#include <vector>
#include <fstream>
#include "json.hpp"
#include "terrain.h"
#include "type.h"
using namespace TYPE;
/* INCLUDE OBJETS */
#include "mur.h"
#include "vide.h"
#include "laser.h"
#include "cible.h"
gestionnaireTerrain::gestionnaireTerrain(const string& nomFichier) :
d_Terrains{initialisation(nomFichier)}, d_Filename{nomFichier}
{}
void gestionnaireTerrain::execute() {
auto choix = choixMenu();
while(choix != 5) {
switch(choix)
{
case 1: creerTerrain(); break;
case 2: supprimerTerrain(); break;
case 3: saveToJSON(d_Terrains); break;
case 4: visualisation(d_Terrains); break;
case 5: break;
}
choix = choixMenu();
}
}
int gestionnaireTerrain::choixMenu() {
int choix = -1;
do {
system("cls");
cout << " +--------------------------+ \n";
cout << " | GESTIONNAIRE DE TERRAINS | \n";
cout << " +--------------------------+ \n\n";
cout << "Voulez vous : \n";
cout << "(1) Creer un terrain" << '\n';
cout << "(2) Supprimer un terrain" << '\n';
cout << "(3) Sauvegarder" << '\n';
cout << "(4) Visualiser les terrains" << '\n';
cout << "(5) Quitter" << '\n';
cin >> choix;
}
while(choix < 0 || choix > 5);
return choix;
}
void gestionnaireTerrain::creerTerrain() {
int largeur, hauteur, choix, x, y, dir;
cout << "Largeur du terrain : "; cin >> largeur; cout << endl;
cout << "Hauteur du terrain : "; cin >> hauteur; cout << endl;
terrain T = terrain::terrainBase(largeur, hauteur);
bool stop = false;
bool placerCible = false, placerLaser = false;
while (!stop) {
T.affiche(cout);
cout << "(1) PLACER UN MUR\n(2) PLACER LE LASER\n(3) PLACER LA CIBLE\n(4) SUPPRIMER UN ELEMENT\n(5) QUITTER\n"; cin >> choix;
switch (choix) {
case 1: {
cout << "Coordonnees du mur " << largeur << "x" << hauteur << ": "; cin >> x >> y;
geom::point
p1{
static_cast<double>(x*terrain::TAILLECASE),
static_cast<double>(y*terrain::TAILLECASE)
},
p2{
static_cast<double>((x+1)*terrain::TAILLECASE),
static_cast<double>((y+1)*terrain::TAILLECASE)
};
mur m{p1,p2,OBJET::MUR,false};
T.insertCase(
x, y,
make_unique<mur>(
m.getP1(),
m.getP2(),
m.getType(),
m.estTouche()
)
);
break;
}
case 2:
{
if (!placerLaser) {
cout << "Coordonnees du laser : "; cin >> x >> y;
geom::point
p1{
static_cast<double>(x*terrain::TAILLECASE),
static_cast<double>(y*terrain::TAILLECASE)
},
p2{
static_cast<double>((x+1)*terrain::TAILLECASE),
static_cast<double>((y+1)*terrain::TAILLECASE)
};
cout << "Direction du laser (0=DROITE, 1=HAUT, 2=GAUCHE, 3=BAS) : "; cin >> dir;
laser l{ p1,p2,OBJET::LASER, dir };
T.insertCase(
x, y,
make_unique<laser>(
l.getP1(),
l.getP2(),
l.getType(),
l.getDirection()
)
);
placerLaser = true;
}
else {
cout << "Vous avez deja place un laser" << endl;
system("timeout /t 3");
}
break;
}
case 3: {
if (!placerCible) {
cout << "Coordonnees de la cible : "; cin >> x >> y;
geom::point
p1{
static_cast<double>(x*terrain::TAILLECASE),
static_cast<double>(y*terrain::TAILLECASE)
},
p2{
static_cast<double>((x+1)*terrain::TAILLECASE),
static_cast<double>((y+1)*terrain::TAILLECASE)
};
cible c{ p1,p2,OBJET::CIBLE };
T.insertCase(
x, y,
make_unique<cible>(
c.getP1(),
c.getP2(),
c.getType()
)
);
placerCible = true;
}
else {
cout << "Vous avez deja place une cible" << endl;
system("timeout /t 3");
}
break;
}
case 4: {
cout << "Coordonnees : "; cin >> x >> y;
geom::point
p1{
static_cast<double>(x*terrain::TAILLECASE),
static_cast<double>(y*terrain::TAILLECASE)
},
p2{
static_cast<double>((x+1)*terrain::TAILLECASE),
static_cast<double>((y+1)*terrain::TAILLECASE)
};
vide v{ p1,p2,OBJET::VIDE };
T.insertCase(
x, y,
make_unique<vide>(
v.getP1(),
v.getP2(),
v.getType()
)
);
break;
}
case 5: {
stop = true;
break;
}
}
}
d_Terrains.push_back(std::move(T));
}
void gestionnaireTerrain::saveToJSON(vector<terrain>& tTerrain) {
vector<nlohmann::json> tJSON;
for (unsigned i = 0; i < tTerrain.size(); ++i) {
tJSON.push_back(tTerrain[i].creerTerrainJSON());
}
std::ofstream fOUT(d_Filename);
fOUT.seekp(0, std::ios::beg);
nlohmann::json j = tJSON;
fOUT << j.dump(4);
}
void gestionnaireTerrain::supprimerTerrain() {
int i = 0;
cout << "Il y a " << d_Terrains.size() << " terrains.\nIndex : "; cin >> i;
d_Terrains.erase(d_Terrains.begin() + (i-1));
}
void gestionnaireTerrain::visualisation(const vector<terrain>& tTerrain) {
int n = 0;
for (const auto& t : tTerrain) {
cout << "Terrain n." << ++n << endl;
t.affiche(cout);
cout << endl;
}
system("pause");
}
vector<terrain> gestionnaireTerrain::initialisation(const string& nomFichier) {
std::ifstream fIN(nomFichier);
auto json = nlohmann::json::parse(fIN);
int nombreTerrain = json.size();
vector<terrain> tabTerrain;
for (int k = 0; k < nombreTerrain; ++k) {
vector<vector<string>> TerrainTxt = json[k]["Terrain"].get<vector<vector<string>>>();
int nbLignes = json[k]["NbLignes"].get<int>();
int nbColonnes = json[k]["NbColonnes"].get<int>();
terrain tB{ nbLignes, nbColonnes };
for (unsigned i = 0; i < TerrainTxt.size(); ++i) {
for (unsigned j = 0; j < TerrainTxt[i].size(); j++) {
if (TerrainTxt[i][j] == "X") {
geom::point
p1{
static_cast<double>(i*terrain::TAILLECASE),
static_cast<double>(j*terrain::TAILLECASE)
},
p2{
static_cast<double>((i+1)*terrain::TAILLECASE),
static_cast<double>((j+1)*terrain::TAILLECASE)
};
mur m{ p1,p2,OBJET::MUR,false };
tB.insertCase(
i, j,
make_unique<mur>(
m.getP1(),
m.getP2(),
m.getType(),
m.estTouche()
)
);
}
else if (TerrainTxt[i][j] == " ") {
geom::point
p1{
static_cast<double>(i*terrain::TAILLECASE),
static_cast<double>(j*terrain::TAILLECASE)
},
p2{
static_cast<double>((i+1)*terrain::TAILLECASE),
static_cast<double>((j+1)*terrain::TAILLECASE)
};
vide v{ p1,p2,OBJET::VIDE };
tB.insertCase(
i, j,
make_unique<vide>(
v.getP1(),
v.getP2(),
v.getType()
)
);
}
else if (TerrainTxt[i][j] == "=") {
geom::point
p1{
static_cast<double>(i*terrain::TAILLECASE),
static_cast<double>(j*terrain::TAILLECASE)
},
p2{
static_cast<double>((i+1)*terrain::TAILLECASE),
static_cast<double>((j+1)*terrain::TAILLECASE)
};
unsigned dir = -1;
// Le laser est place sur le mur de gauche donc on part vers la droite
if (j == 0)
dir = DIRECTION::DROITE;
// Le laser est place sur le mur de droite donc on part vers la gauche
if (j == TerrainTxt[i].size() - 1)
dir = DIRECTION::GAUCHE;
// Le laser est place sur le mur d'en haut donc on part vers la bas
if (i == 0)
dir = DIRECTION::BAS;
// Le laser est place sur le mur d'en bas donc on part vers le haut
if (i == TerrainTxt.size() - 1)
dir = DIRECTION::HAUT;
laser l{ p1,p2,OBJET::LASER, static_cast<int>(dir) };
tB.insertCase(
i, j,
make_unique<laser>(
l.getP1(),
l.getP2(),
l.getType(),
l.getDirection()
)
);
}
else if (TerrainTxt[i][j] == "@") {
geom::point
p1{
static_cast<double>(i*terrain::TAILLECASE),
static_cast<double>(j*terrain::TAILLECASE)
},
p2{
static_cast<double>((i+1)*terrain::TAILLECASE),
static_cast<double>((j+1)*terrain::TAILLECASE)
};
cible c{ p1,p2,OBJET::CIBLE };
tB.insertCase(
i, j,
make_unique<cible>(
c.getP1(),
c.getP2(),
c.getType()
)
);
}
}
}
tabTerrain.push_back(std::move(tB));
}
return tabTerrain;
}
vector<terrain> gestionnaireTerrain::getTerrains()
{
return std::move(d_Terrains);
}