-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.c
591 lines (483 loc) · 17 KB
/
menu.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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
#include "menu.h"
int screen_1() {
S_parameter parameter;
parameter.gridWidth = 60;
parameter.gridLength = 40;
parameter.appleAmount = 5;
parameter.barrierAmount = 0;
parameter.snakeSize = 10;
parameter.snakeSpeed = SPEED;
S_player player;
player.score = 0;
player.level = 1;
player.watch[0] = '0';
player.watch[1] = '0';
player.watch[2] = ':';
player.watch[3] = '0';
player.watch[4] = '0';
player.watch[5] = '\0';
InitialiserGraphique();
CreerFenetre(5,5,500,500);
int x1 = TailleChaineEcran("SNAKE", 2);
int x2 = TailleChaineEcran("click or press a key to continue", 1);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
ChoisirCouleurDessin(CouleurParNom("white"));
EcrireTexte(250-x1/2, 250, "SNAKE", 2);
EcrireTexte(250-x2/2, 280, "click or press a key to continue", 1);
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
while (!ToucheEnAttente() && !SourisCliquee()){}
screen_help();
return screen_2(¶meter, &player);
}
void screen_help() {
int x1 = TailleChaineEcran("COMMANDS", 2);
int x2 = TailleChaineEcran("press h to display this page again", 0);
ChoisirEcran(7);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(250-x1/2, 50, "COMMANDS", 2);
EcrireTexte(50, 100, "In Menu :", 1);
EcrireTexte(150, 100, "confirm : RIGHTARROW", 0);
EcrireTexte(150, 125, "cancel : LEFTARROW", 0);
EcrireTexte(150, 150, "increase : UPARROW", 0);
EcrireTexte(150, 175, "decrease : DOWNARROW", 0);
EcrireTexte(150, 200, "You can also use the mouse", 0);
EcrireTexte(50, 275, "In Game :", 1);
EcrireTexte(150, 275, "move snake rightward : RIGHTARROW", 0);
EcrireTexte(150, 300, "move snake leftward : LEFTARROW", 0);
EcrireTexte(150, 325, "move snake upward : UPARROW", 0);
EcrireTexte(150, 350, "move snake downward : DOWNARROW", 0);
EcrireTexte(150, 375, "You can also use the mouse", 0);
EcrireTexte(490-x2, 450, "press h to display this page again", 0);
EcrireTexte(490-x2, 475, "press s to display your stats", 0);
CopierZone(7, 0, 0, 0, 500, 500, 0, 0);
unsigned long time = Microsecondes();
while(!(Microsecondes() > time + 10*SECONDE || ToucheEnAttente() || SourisCliquee())) {}
//vidage buffer clavier
while (ToucheEnAttente())
Touche();
}
int screen_2(S_parameter* parameter, S_player* player) {
int y2sup = TailleSupPolice(2);
int y2inf = TailleInfPolice(2);
int x12 = TailleChaineEcran("START", 2);
int x22 = TailleChaineEcran("SETTINGS", 2);
int x32 = TailleChaineEcran("QUIT", 2);
int x11 = TailleChaineEcran("START", 1);
int x21 = TailleChaineEcran("SETTINGS", 1);
int x31 = TailleChaineEcran("QUIT", 1);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu", 0);
EcrireTexte(250-x12/2, 200, "START", 2);
EcrireTexte(250-x21/2, 250, "SETTINGS", 1);
EcrireTexte(250-x31/2, 300, "QUIT", 1);
ChoisirEcran(2);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu", 0);
EcrireTexte(250-x11/2, 200, "START", 1);
EcrireTexte(250-x22/2, 250, "SETTINGS", 2);
EcrireTexte(250-x31/2, 300, "QUIT", 1);
ChoisirEcran(3);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu", 0);
EcrireTexte(250-x11/2, 200, "START", 1);
EcrireTexte(250-x21/2, 250, "SETTINGS", 1);
EcrireTexte(250-x32/2, 300, "QUIT", 2);
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
int cursor = 0;
//vidage buffer clavier
while (ToucheEnAttente())
Touche();
while (True) {
SourisPosition();
if (_X >= 250-x12/2 && _X <= 250+x12/2 && _Y >= 200-y2sup && _Y <= 200+y2inf) {
cursor = 0;
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
if (SourisCliquee())
return start(parameter, player);
}
SourisPosition();
if (_X >= 250-x22/2 && _X <= 250+x22/2 && _Y >= 250-y2sup && _Y <= 250+y2inf) {
cursor = 1;
CopierZone(2, 0, 0, 0, 500, 500, 0, 0);
if (SourisCliquee())
return screen_3(parameter, player);
}
SourisPosition();
if (_X >= 250-x32/2 && _X <= 250+x32/2 && _Y >= 300-y2sup && _Y <= 300+y2inf) {
cursor = 2;
CopierZone(3, 0, 0, 0, 500, 500, 0, 0);
if (SourisCliquee())
return -1;
}
//vidage buffer souris
if (!(_X >= 250-x12/2 && _X <= 250+x12/2 && _Y >= 200-y2sup && _Y <= 200+y2inf)
&& !(_X >= 250-x22/2 && _X <= 250+x22/2 && _Y >= 250-y2sup && _Y <= 250+y2inf)
&& !(_X >= 250-x32/2 && _X <= 250+x32/2 && _Y >= 300-y2sup && _Y <= 300+y2inf))
SourisCliquee();
if (ToucheEnAttente()) {
int T = Touche();
if (T == 'h') {
screen_help();
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
}
if (T == 's') {
screen_stats();
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
}
if (T == XK_Up && cursor != 0)
cursor -= 1;
if (T == XK_Down && cursor != 2)
cursor += 1;
if (T == XK_Right) {
if (cursor == 0)
return start(parameter, player);
if (cursor == 1)
return screen_3(parameter, player);
if (cursor == 2)
return -1;
}
if (cursor == 0)
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
else if (cursor == 1)
CopierZone(2, 0, 0, 0, 500, 500, 0, 0);
else
CopierZone(3, 0, 0, 0, 500, 500, 0, 0);
}
}
}
int screen_3(S_parameter* parameter, S_player* player) {
int y2sup = TailleSupPolice(2);
int y2inf = TailleInfPolice(2);
int x11 = TailleChaineEcran("Field Size", 1);
int x21 = TailleChaineEcran("Apple amount", 1);
int x31 = TailleChaineEcran("Snake size", 1);
int x12 = TailleChaineEcran("Field Size", 2);
int x22 = TailleChaineEcran("Apple amount", 2);
int x32 = TailleChaineEcran("Snake size", 2);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings", 0);
EcrireTexte(250-x12/2, 200, "Field Size", 2);
EcrireTexte(250-x21/2, 250, "Apple amount", 1);
EcrireTexte(250-x31/2, 300, "Snake size", 1);
ChoisirEcran(2);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings", 0);
EcrireTexte(250-x11/2, 200, "Field Size", 1);
EcrireTexte(250-x22/2, 250, "Apple amount", 2);
EcrireTexte(250-x31/2, 300, "Snake size", 1);
ChoisirEcran(3);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings", 0);
EcrireTexte(250-x11/2, 200, "Field Size", 1);
EcrireTexte(250-x21/2, 250, "Apple amount", 1);
EcrireTexte(250-x32/2, 300, "Snake size", 2);
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
int cursor = 0;
while (True) {
SourisPosition();
if (_X >= 250-x12/2 && _X <= 250+x12/2 && _Y >= 200-y2sup && _Y <= 200+y2inf) {
cursor = 0;
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
if (SourisCliquee())
return screen_4_1(parameter, player);
}
SourisPosition();
if (_X >= 250-x22/2 && _X <= 250+x22/2 && _Y >= 250-y2sup && _Y <= 250+y2inf) {
cursor = 1;
CopierZone(2, 0, 0, 0, 500, 500, 0, 0);
if (SourisCliquee())
return screen_4_2(parameter, player);
}
SourisPosition();
if (_X >= 250-x32/2 && _X <= 250+x32/2 && _Y >= 300-y2sup && _Y <= 300+y2inf) {
cursor = 2;
CopierZone(3, 0, 0, 0, 500, 500, 0, 0);
if (SourisCliquee())
return screen_4_3(parameter, player);
}
//vidage buffer souris
if (!(_X >= 250-x12/2 && _X <= 250+x12/2 && _Y >= 200-y2sup && _Y <= 200+y2inf)
&& !(_X >= 250-x22/2 && _X <= 250+x22/2 && _Y >= 250-y2sup && _Y <= 250+y2inf)
&& !(_X >= 250-x32/2 && _X <= 250+x32/2 && _Y >= 300-y2sup && _Y <= 300+y2inf))
SourisCliquee();
if (ToucheEnAttente()) {
int T = Touche();
if (T == 'h') {
screen_help();
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
}
if (T == XK_Up && cursor != 0)
cursor -= 1;
if (T == XK_Down && cursor != 2)
cursor += 1;
if (T == XK_Right) {
if (cursor == 0)
return screen_4_1(parameter, player);
if (cursor == 1)
return screen_4_2(parameter, player);
if (cursor == 2)
return screen_4_3(parameter, player);
}
if (T == XK_Left)
return screen_2(parameter, player);
if (cursor == 0)
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
else if (cursor == 1)
CopierZone(2, 0, 0, 0, 500, 500, 0, 0);
else
CopierZone(3, 0, 0, 0, 500, 500, 0, 0);
}
}
}
int screen_4_1(S_parameter* parameter, S_player* player) {
int y1sup = TailleSupPolice(1);
int y1inf = TailleInfPolice(1);
int x = TailleChaineEcran("Select field size", 2);
int x10 = TailleChaineEcran("40 x 60", 0);
int x20 = TailleChaineEcran("60 x 100", 0);
int x30 = TailleChaineEcran("80 x 120", 0);
int x11 = TailleChaineEcran("40 x 60", 1);
int x21 = TailleChaineEcran("60 x 100", 1);
int x31 = TailleChaineEcran("80 x 120", 1);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings > Field Size", 0);
EcrireTexte(250-x/2, 150, "Select field size",2);
EcrireTexte(250-x11/2, 200, "40 x 60", 1);
EcrireTexte(250-x20/2, 250, "60 x 100", 0);
EcrireTexte(250-x30/2, 300, "80 x 120", 0);
ChoisirEcran(2);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings > Field Size", 0);
EcrireTexte(250-x/2, 150, "Select field size",2);
EcrireTexte(250-x10/2, 200, "40 x 60", 0);
EcrireTexte(250-x21/2, 250, "60 x 100", 1);
EcrireTexte(250-x30/2, 300, "80 x 120", 0);
ChoisirEcran(3);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings > Field Size", 0);
EcrireTexte(250-x/2, 150, "Select field size",2);
EcrireTexte(250-x10/2, 200, "40 x 60", 0);
EcrireTexte(250-x20/2, 250, "60 x 100", 0);
EcrireTexte(250-x31/2, 300, "80 x 120", 1);
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
int cursor = 0;
while (True) {
SourisPosition();
if (_X >= 250-x11/2 && _X <= 250+x11/2 && _Y >= 200-y1sup && _Y <= 200+y1inf) {
cursor = 0;
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
if (SourisCliquee()) {
parameter->gridWidth = 60;
parameter->gridLength = 40;
return screen_3(parameter, player);
}
}
SourisPosition();
if (_X >= 250-x21/2 && _X <= 250+x21/2 && _Y >= 250-y1sup && _Y <= 250+y1inf) {
cursor = 1;
CopierZone(2, 0, 0, 0, 500, 500, 0, 0);
if (SourisCliquee()) {
parameter->gridWidth = 100;
parameter->gridLength = 60;
return screen_3(parameter, player);
}
}
SourisPosition();
if (_X >= 250-x31/2 && _X <= 250+x31/2 && _Y >= 300-y1sup && _Y <= 300+y1inf) {
cursor = 2;
CopierZone(3, 0, 0, 0, 500, 500, 0, 0);
if (SourisCliquee()) {
parameter->gridWidth = 120;
parameter->gridLength = 80;
return screen_3(parameter, player);
}
}
//vidage buffer souris
if (!(_X >= 250-x11/2 && _X <= 250+x11/2 && _Y >= 200-y1sup && _Y <= 200+y1inf)
&& !(_X >= 250-x21/2 && _X <= 250+x21/2 && _Y >= 250-y1sup && _Y <= 250+y1inf)
&& !(_X >= 250-x31/2 && _X <= 250+x31/2 && _Y >= 300-y1sup && _Y <= 300+y1inf))
SourisCliquee();
if (ToucheEnAttente()) {
int T = Touche();
if (T == 'h') {
screen_help();
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
}
if (T == XK_Up && cursor != 0)
cursor -= 1;
if (T == XK_Down && cursor != 2)
cursor += 1;
if (T == XK_Right) {
if (cursor == 0) {
parameter->gridWidth = 60;
parameter->gridLength = 40;
return screen_3(parameter, player);
}
if (cursor == 1) {
parameter->gridWidth = 100;
parameter->gridLength = 60;
return screen_3(parameter, player);
}
if (cursor == 2) {
parameter->gridWidth = 120;
parameter->gridLength = 80;
return screen_3(parameter, player);
}
}
if (T == XK_Left)
return screen_3(parameter, player);
if (cursor == 0)
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
else if (cursor == 1)
CopierZone(2, 0, 0, 0, 500, 500, 0, 0);
else
CopierZone(3, 0, 0, 0, 500, 500, 0, 0);
}
}
}
int screen_4_2(S_parameter* parameter, S_player* player) {
int x = TailleChaineEcran("Select apple amount", 2);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings > Apple Amount", 0);
EcrireTexte(250-x/2, 150, "Select apple amount",2);
EcrireTexte(250, 200, "5", 1);
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
int cursor = 5;
while (True) {
//vidage buffer souris
SourisCliquee();
if (ToucheEnAttente()) {
int T = Touche();
if (T == 'h') {
screen_help();
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
}
if (T == XK_Up && cursor != 10)
cursor += 1;
if (T == XK_Down && cursor != 1)
cursor -= 1;
if (T == XK_Right) {
parameter->appleAmount = cursor;
return screen_3(parameter, player);
}
if (T == XK_Left)
return screen_3(parameter, player);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings > Apple Amount", 0);
EcrireTexte(250-x/2, 150, "Select apple amount",2);
EcrireTexte(250, 200, inttostr(cursor), 1);
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
}
}
}
int screen_4_3(S_parameter* parameter, S_player* player) {
int x = TailleChaineEcran("Select snike size", 2);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings > Snake Size", 0);
EcrireTexte(250-x/2, 150, "Select snake size",2);
EcrireTexte(250, 200, "10", 1);
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
int cursor = 10;
while (True) {
//vidage buffer souris
SourisCliquee();
if (ToucheEnAttente()) {
int T = Touche();
if (T == 'h') {
screen_help();
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
}
if (T == XK_Up && cursor != 20)
cursor += 1;
if (T == XK_Down && cursor != 1)
cursor -= 1;
if (T == XK_Right) {
parameter->snakeSize = cursor;
return screen_3(parameter, player);
}
if (T == XK_Left)
return screen_3(parameter, player);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
EcrireTexte(3, 10, "Menu > Settings > Snake Size", 0);
EcrireTexte(250-x/2, 150, "Select snake size",2);
EcrireTexte(250, 200, inttostr(cursor), 1);
CopierZone(1, 0, 0, 0, 500, 500, 0, 0);
}
}
}
void screen_lose(int width, int length, int score, int level) {
int y2sup = TailleSupPolice(2);
int x1 = TailleChaineEcran("GAME OVER", 2);
int x2 = TailleChaineEcran("SCORE REACHED", 1);
int x3 = TailleChaineEcran("LEVEL REACHED", 1);
int xs = TailleChaineEcran(inttostr(score), 0);
int xl = TailleChaineEcran(inttostr(level), 0);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
ChoisirCouleurDessin(CouleurParNom("white"));
EcrireTexte(width/2 - x1/2, y2sup+10, "GAME OVER", 2);
EcrireTexte(width/2 - x3/2, length/4 - 20, "LEVEL REACHED", 1);
EcrireTexte(width/2 - xl/2, length/4 + 20, inttostr(level), 0);
EcrireTexte(width/2 - x2/2, length/2 - 20 , "SCORE REACHED", 1);
EcrireTexte(width/2 - xs/2, length/2 + 20, inttostr(score), 0);
CopierZone(1, 0, 0, 0, width, length, 0, 0);
unsigned long time = Microsecondes();
while(!(Microsecondes() > time + 10*SECONDE || ToucheEnAttente() || SourisCliquee())){}
}
void screen_levelUp(int nextLevel, int width, int length) {
int x = TailleChaineEcran("LEVEL", 2);
int y = TailleChaineEcran(inttostr(nextLevel), 2);
ChoisirEcran(1);
EffacerEcran(CouleurParNom("black"));
ChoisirCouleurDessin(CouleurParNom("white"));
EcrireTexte(width/2 - x/2, length/2 - 20, "LEVEL",2);
EcrireTexte(width/2 - y/2, length/2 + 20, inttostr(nextLevel),2);
ChoisirEcran(0);
EffacerEcran(CouleurParNom("black"));
CopierZone(1, 0, 0, 0, width, length, 0, 0);
unsigned long time = Microsecondes();
while(!(Microsecondes() > time + 5*SECONDE || ToucheEnAttente() || SourisCliquee())) {}
}
void screen_stats() {
int statLevel = open("level.txt", O_RDONLY);
int statScore = open("score.txt", O_RDONLY);
if (statLevel != -1 && statScore != -1) {
char* level = (char*) malloc(sizeof(char)*10);
memset(level, 0, sizeof(char)*10);
int rl = read(statLevel, level, sizeof(char)*10);
level = realloc(level, sizeof(char)*rl);
close(statLevel);
char* score = (char*) malloc(sizeof(char)*10);
memset(score, 0, sizeof(char)*10);
int rs = read(statScore, score, sizeof(char)*10);
score = realloc(score, sizeof(char)*rs);
close(statScore);
int x1 = TailleChaineEcran("STATISTICS", 2);
int x2 = TailleChaineEcran("Level Max", 1);
int x3 = TailleChaineEcran("Score Max", 1);
int x4 = TailleChaineEcran(level, 1);
int x5 = TailleChaineEcran(score, 1);
ChoisirEcran(7);
EffacerEcran(CouleurParNom("black"));
ChoisirCouleurDessin(CouleurParNom("white"));
EcrireTexte(250-x1/2, 50, "STATISTICS", 2);
EcrireTexte(250-x2/2, 150, "Level Max", 1);
EcrireTexte(250-x4/2, 200, level, 0);
EcrireTexte(250-x3/2, 350, "Score Max", 1);
EcrireTexte(250-x5/2, 400, score, 0);
CopierZone(7, 0, 0, 0, 500, 500, 0, 0);
unsigned long time = Microsecondes();
while(!(Microsecondes() > time + 10*SECONDE || ToucheEnAttente() || SourisCliquee())) {}
//vidage buffer clavier
while (ToucheEnAttente())
Touche();
}
}