-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcartesVilles.c
473 lines (370 loc) · 12.9 KB
/
cartesVilles.c
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
#include <windows.h>
#include "cartesVilles.h"
#define tailleCarre 6
#define decal 78
///////////////////////// TUTORAT /////////////////////////////////
void setConsoleSize(short width, short height)
{
HANDLE hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
COORD coord = {.X=width, .Y=height};
SMALL_RECT rect = {.Left=0, .Top=0, .Right=width-1, .Bottom=height-1};
SetConsoleScreenBufferSize(hStdout, coord);
SetConsoleWindowInfo(hStdout, 1, &rect);
}
////////////////////// Viens du Sujet///////////////////////////////////////////////////
void gotoligcol( int lig, int col )
{
// ressources
COORD mycoord;
mycoord.X = col;
mycoord.Y = lig;
SetConsoleCursorPosition( GetStdHandle( STD_OUTPUT_HANDLE ), mycoord );
}
///////////////////////////////////////////////////////////////////////////////////
void Color(int couleurDuTexte,int couleurDeFond) // fonction d'affichage de couleurs
{
HANDLE H=GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(H,couleurDeFond*16+couleurDuTexte);
}
void setConsoleFullscreen()
{
HANDLE hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
COORD maxi = GetLargestConsoleWindowSize(hStdout);
SMALL_RECT rect = {.Left=0, .Top=0, .Right=maxi.X-1, .Bottom=maxi.Y-1};
SetConsoleScreenBufferSize(hStdout, maxi);
SetConsoleWindowInfo(hStdout, 1, &rect);
}
////////////////////////////////////////////////////////////////////////////////////
/* ENTREES : AUCUNE
SORTIES : AUCUNE
BUT DE CETTE FONCTION : CREER LE CONTOUR D'UNE CARTE
*/
void creationContourCarte()
{
int i = 0;
int j = 0;
int k = 9;
int l = 9;
int m = 24;
gotoligcol(10,65);
for(i = 0; i <55; i++)
{
printf("%c", 0xC4);
}
gotoligcol(10,65);
printf("%c", 0xDA);
gotoligcol(10,120);
printf("%c", 0xBF);
gotoligcol(20,65);
for(j = 0; j <4; j++)
{
for(i = 0; i < 7; i++)
{
gotoligcol((2+k),65);
printf("%c", 0xB3);
k = k+1;
}
}
for(i = 0; i < 5; i++)
{
gotoligcol((2+m),65);
printf("%c", 0xB3);
m = m+1;
}
gotoligcol(40, 65);
printf("%c", 0xC0);
for(i = 0; i < 55; i++)
{
printf("%c", 0xC4);
}
gotoligcol(40, 120);
printf("%c", 0xD9);
gotoligcol(10, 120);
for(j = 0; j < 4; j++)
{
for(i = 0; i < tailleCarre; i++)
{
gotoligcol((2+l),120);
printf("%c", 0xB3);
l = l+1;
}
}
for(i = 0; i < 4; i++)
{
gotoligcol((2+l),120);
printf("%c", 0xB3);
l = l+1;
}
//////////////////////////// OBLIGATOIRE SINON BUG///////////
gotoligcol(39,65);
printf("%c", 0xB3);
gotoligcol(39,120);
printf("%c", 0xB3);
////////////////////////////////////////////////////////////
}
/* ENTREES : LE NOMBRE ALEATOIRE ENTRE PAR L'UTILISATEUR, LE TABLEAU DE 15 CARTES
SORTIES : AUCUNE
BUT DE LA FONCTION : AFFICHER UNE CARTE DANS LA CONSOLE
*/
void affichageCartesVilles(int aleatoire, CartePlanete tabCartesPlanetes[])
{
int i = 0;
int j = 0;
int k = 0;
char turquoise[] = "turquoise";
char bleuClair[] = "bleu clair";
char rougeFonce[] = "rouge fonce";
char rouge[] = "rouge";
char jaune[] = "jaune";
char vert[] = "vert";
char bleuFonce[] = "bleu fonce";
if(strcmp(tabCartesPlanetes[aleatoire].couleur,turquoise) == 0){
Color(11,0);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,bleuClair) == 0){
Color(9,0);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,rougeFonce) == 0){
Color(4,0);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,rouge) == 0){
Color(12,0);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,jaune) == 0){
Color(14,0);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,vert) == 0){
Color(10,0);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,bleuFonce) == 0){
Color(11,0);
}
//Color(9,0);
///////////////////// BANDEAU COULEUR //////////////////////////////
gotoligcol(11, 65);
for(j = 0; j < 6; j++)
{
for(i = 0; i < 56; i++)
{
printf("%c", 0xDB);
}
k += 1;
gotoligcol((11 + k), 65);
}
gotoligcol(10,65);
for(i = 0; i < 56; i++)
{
printf("%c", 0xDC);
}
////////////////////////////////////////////////////////////////////////
gotoligcol(14, 85);
if(strcmp(tabCartesPlanetes[aleatoire].couleur,turquoise) == 0){
Color(0,11);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,bleuClair) == 0){
Color(0,9);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,rougeFonce) == 0){
Color(0,4);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,rouge) == 0){
Color(0,12);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,jaune) == 0){
Color(0,14);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,vert) == 0){
Color(0,10);
}
else if(strcmp(tabCartesPlanetes[aleatoire].couleur,bleuFonce) == 0){
Color(0,11);
}
//Color(0,9);
printf("%s", tabCartesPlanetes[aleatoire].nom);
Color(15,0);
gotoligcol(20, 85);
printf("LOYER : %d M $", tabCartesPlanetes[aleatoire].loyer);
gotoligcol(24, decal);
printf("LOYER AVEC UNE MAISON : %d M $", tabCartesPlanetes[aleatoire].loyer1);
gotoligcol(26, decal);
printf("LOYER AVEC DEUX MAISONS : %d M $", tabCartesPlanetes[aleatoire].loyer2);
gotoligcol(28, decal);
printf("LOYER AVEC TROIS MAISONS : 120 M $", tabCartesPlanetes[aleatoire].loyer3);
gotoligcol(30, decal);
printf("LOYER AVEC QUATRE MAISONS : %d M $", tabCartesPlanetes[aleatoire].loyer4);
gotoligcol(32, decal);
printf("LOYER AVEC UN HOTEL : %d M $", tabCartesPlanetes[aleatoire].loyer5);
gotoligcol(36, decal);
printf("VALEUR HYPOTHEQUE : %d M $", tabCartesPlanetes[aleatoire].hypo);
}
/* ENTREES : TABLEAU DE 15 CARTES
SORTIES : AUCUNE
BUT DE LA FONCTION : CREER LES 15 CARTES DIFFERENTES AVEC LEURS CARACTERISTIQUES.
*/
void creationCartesPlanetes(CartePlanete tabCartesPlanetes[]){
char planete0[] = "M E R C U R E";
strcpy(tabCartesPlanetes[0].nom, planete0);
char couleur0[] = "turquoise";
strcpy(tabCartesPlanetes[0].couleur, couleur0);
tabCartesPlanetes[0].loyer = 60;
tabCartesPlanetes[0].loyer1 = 80;
tabCartesPlanetes[0].loyer2 = 100;
tabCartesPlanetes[0].loyer3 = 120;
tabCartesPlanetes[0].loyer4 = 140;
tabCartesPlanetes[0].loyer5 = 160;
tabCartesPlanetes[0].hypo = 40;
char planete1[] = "V E N U S";
strcpy(tabCartesPlanetes[1].nom, planete1);
char couleur1[] = "turquoise";
strcpy(tabCartesPlanetes[1].couleur, couleur1);
tabCartesPlanetes[1].loyer = 60;
tabCartesPlanetes[1].loyer1 = 80;
tabCartesPlanetes[1].loyer2 = 100;
tabCartesPlanetes[1].loyer3 = 120;
tabCartesPlanetes[1].loyer4 = 140;
tabCartesPlanetes[1].loyer5 = 160;
tabCartesPlanetes[1].hypo = 40;
char planete2[] = "L U N E";
strcpy(tabCartesPlanetes[2].nom, planete2);
char couleur2[] = "bleu clair";
strcpy(tabCartesPlanetes[2].couleur, couleur2);
tabCartesPlanetes[2].loyer = 100;
tabCartesPlanetes[2].loyer1 = 120;
tabCartesPlanetes[2].loyer2 = 140;
tabCartesPlanetes[2].loyer3 = 160;
tabCartesPlanetes[2].loyer4 = 180;
tabCartesPlanetes[2].loyer5 = 200;
tabCartesPlanetes[2].hypo = 80;
char planete3[] = "T E R R E";
strcpy(tabCartesPlanetes[3].nom, planete3);
char couleur3[] = "bleu clair";
strcpy(tabCartesPlanetes[3].couleur, couleur3);
tabCartesPlanetes[3].loyer = 120;
tabCartesPlanetes[3].loyer1 = 140;
tabCartesPlanetes[3].loyer2 = 180;
tabCartesPlanetes[3].loyer3 = 200;
tabCartesPlanetes[3].loyer4 = 220;
tabCartesPlanetes[3].loyer5 = 240;
tabCartesPlanetes[3].hypo = 100;
char planete4[] = "P H O B O S";
strcpy(tabCartesPlanetes[4].nom, planete4);
char couleur4[] = "rouge fonce";
strcpy(tabCartesPlanetes[4].couleur, couleur4);
tabCartesPlanetes[4].loyer = 140;
tabCartesPlanetes[4].loyer1 = 160;
tabCartesPlanetes[4].loyer2 = 180;
tabCartesPlanetes[4].loyer3 = 200;
tabCartesPlanetes[4].loyer4 = 220;
tabCartesPlanetes[4].loyer5 = 240;
tabCartesPlanetes[4].hypo = 120;
char planete5[] = "M A R S";
strcpy(tabCartesPlanetes[5].nom, planete5);
char couleur5[] = "rouge fonce";
strcpy(tabCartesPlanetes[5].couleur, couleur5);
tabCartesPlanetes[5].loyer = 150;
tabCartesPlanetes[5].loyer1 = 170;
tabCartesPlanetes[5].loyer2 = 190;
tabCartesPlanetes[5].loyer3 = 210;
tabCartesPlanetes[5].loyer4 = 230;
tabCartesPlanetes[5].loyer5 = 250;
tabCartesPlanetes[5].hypo = 130;
char planete6[] = "T R I T O N";
strcpy(tabCartesPlanetes[6].nom, planete6);
char couleur6[] = "rouge";
strcpy(tabCartesPlanetes[6].couleur, couleur6);
tabCartesPlanetes[6].loyer = 180;
tabCartesPlanetes[6].loyer1 = 200;
tabCartesPlanetes[6].loyer2 = 220;
tabCartesPlanetes[6].loyer3 = 240;
tabCartesPlanetes[6].loyer4 = 260;
tabCartesPlanetes[6].loyer5 = 280;
tabCartesPlanetes[6].hypo = 160;
char planete7[] = "N E P T U N E";
strcpy(tabCartesPlanetes[7].nom, planete7);
char couleur7[] = "rouge";
strcpy(tabCartesPlanetes[7].couleur, couleur7);
tabCartesPlanetes[7].loyer = 200;
tabCartesPlanetes[7].loyer1 = 220;
tabCartesPlanetes[7].loyer2 = 240;
tabCartesPlanetes[7].loyer3 = 260;
tabCartesPlanetes[7].loyer4 = 280;
tabCartesPlanetes[7].loyer5 = 300;
tabCartesPlanetes[7].hypo = 180;
char planete8[] = "T I T A N I A";
strcpy(tabCartesPlanetes[8].nom, planete8);
char couleur8[] = "jaune";
strcpy(tabCartesPlanetes[8].couleur, couleur8);
tabCartesPlanetes[8].loyer = 220;
tabCartesPlanetes[8].loyer1 = 240;
tabCartesPlanetes[8].loyer2 = 260;
tabCartesPlanetes[8].loyer3 = 280;
tabCartesPlanetes[8].loyer4 = 300;
tabCartesPlanetes[8].loyer5 = 320;
tabCartesPlanetes[8].hypo = 200;
char planete9[] = "U R A N U S";
strcpy(tabCartesPlanetes[9].nom, planete9);
char couleur9[] = "jaune";
strcpy(tabCartesPlanetes[9].couleur, couleur9);
tabCartesPlanetes[9].loyer = 240;
tabCartesPlanetes[9].loyer1 = 260;
tabCartesPlanetes[9].loyer2 = 280;
tabCartesPlanetes[9].loyer3 = 300;
tabCartesPlanetes[9].loyer4 = 320;
tabCartesPlanetes[9].loyer5 = 340;
tabCartesPlanetes[9].hypo = 220;
char planete10[] = "T I T A N";
strcpy(tabCartesPlanetes[10].nom, planete10);
char couleur10[] = "vert";
strcpy(tabCartesPlanetes[10].couleur, couleur10);
tabCartesPlanetes[10].loyer = 260;
tabCartesPlanetes[10].loyer1 = 280;
tabCartesPlanetes[10].loyer2 = 300;
tabCartesPlanetes[10].loyer3 = 320;
tabCartesPlanetes[10].loyer4 = 340;
tabCartesPlanetes[10].loyer5 = 360;
tabCartesPlanetes[10].hypo = 240;
char planete11[] = "S A T U R N E";
strcpy(tabCartesPlanetes[11].nom, planete11);
char couleur11[] = "vert";
strcpy(tabCartesPlanetes[11].couleur, couleur11);
tabCartesPlanetes[11].loyer = 280;
tabCartesPlanetes[11].loyer1 = 300;
tabCartesPlanetes[11].loyer2 = 320;
tabCartesPlanetes[11].loyer3 = 340;
tabCartesPlanetes[11].loyer4 = 360;
tabCartesPlanetes[11].loyer5 = 380;
tabCartesPlanetes[11].hypo = 260;
char planete12[] = "E U R O P E";
strcpy(tabCartesPlanetes[12].nom, planete12);
char couleur12[] = "bleu fonce";
strcpy(tabCartesPlanetes[12].couleur, couleur12);
tabCartesPlanetes[12].loyer = 300;
tabCartesPlanetes[12].loyer1 = 320;
tabCartesPlanetes[12].loyer2 = 340;
tabCartesPlanetes[12].loyer3 = 360;
tabCartesPlanetes[12].loyer4 = 380;
tabCartesPlanetes[12].loyer5 = 400;
tabCartesPlanetes[12].hypo = 280;
char planete13[] = "G A N Y M E D E";
strcpy(tabCartesPlanetes[13].nom, planete13);
char couleur13[] = "bleu fonce";
strcpy(tabCartesPlanetes[13].couleur, couleur13);
tabCartesPlanetes[13].loyer = 350;
tabCartesPlanetes[13].loyer1 = 370;
tabCartesPlanetes[13].loyer2 = 390;
tabCartesPlanetes[13].loyer3 = 410;
tabCartesPlanetes[13].loyer4 = 430;
tabCartesPlanetes[13].loyer5 = 450;
tabCartesPlanetes[13].hypo = 330;
char planete14[] = "J U P I T E R";
strcpy(tabCartesPlanetes[14].nom, planete14);
char couleur14[] = "bleu fonce";
strcpy(tabCartesPlanetes[14].couleur, couleur14);
tabCartesPlanetes[14].loyer = 400;
tabCartesPlanetes[14].loyer1 = 420;
tabCartesPlanetes[14].loyer2 = 440;
tabCartesPlanetes[14].loyer3 = 460;
tabCartesPlanetes[14].loyer4 = 480;
tabCartesPlanetes[14].loyer5 = 500;
tabCartesPlanetes[14].hypo = 380;
}