-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.cpp
837 lines (820 loc) · 26.7 KB
/
main.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
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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
#include <iostream>
#include <random>
#include <conio.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
//aasdfsadf//Costanti di sistema
#define X_MAX 80
#define Y_MAX 23
#define ROOMS 8
#define ROOM_SIZE 7
#define MAX_ENEMIES 50
#define HP_MAX 100
#define STARTING_ATK 5
#define STARTING_DEF 5
#define MAX_POTIONS_PER_FLOOR 5
#define ENEMY_HP 10
//Costanti globali per il rendering della mappa
unsigned char WALL = 0xB2;
const unsigned char EMPTY = ' ';
const unsigned char PLAYER = 0x02;
const unsigned char ENEMY = 'X';
const unsigned char EXIT = '>';
const unsigned char DOUBLELINE = 0xCD;
const unsigned char ITEM_SMALL_POTION = 'p';
const unsigned char ITEM_MEDIUM_POTION = 'n';
const unsigned char ITEM_BIG_POTION = 'm';
//Prototipiamo tutte le classi
class Entity;
class Player;
class Enemy;
//Variabili globali
//Lista di tutti i nemici nel livello
Enemy* list[MAX_ENEMIES];
//Numero del piano raggiunto dal giocatore
int depth = 1;
//Mappa del gioco
unsigned char map[X_MAX][Y_MAX];
//Prototipiamo tutte le funzioni, per semplificarci un po' la vita
void draw();
void inventory();
void init();
void room(int start_x, int start_y, int end_x, int end_y);
void corridor(int start_x, int start_y, int end_x, int end_y, bool verticale);
void generate();
void tick();
void attack(int x, int y);
Enemy* find(int x, int y);
//Classe entità generica, sia nemico sia giocatore
class Entity
{
public:
bool alive = true;
int x;
int y;
int hp = HP_MAX;
int hp_max = HP_MAX;
int move();
//Cura di x l'entità
void heal(int x)
{
if(hp + x > hp_max)
{
hp = hp_max;
}
else
{
hp += x;
}
}
//Danneggia di x l'entità
void damage(int x)
{
if(hp - x <= 0)
{
kill();
}
else
{
hp -= x;
}
}
//Uccide ed elimina l'entità
void kill()
{
hp = 0;
alive = false;
map[x][y] = EMPTY;
}
//Visualizza la vita
int gethp()
{
return hp;
}
};
//Classe del giocatore
class Player : public Entity
{
private:
int base_atk = STARTING_ATK; //Attacco di base
int base_def = STARTING_DEF; //Difesa di base
int equipment_atk = 0; //Attacco ottenuto dall'equipaggiamento
int equipment_def = 0; //Difesa ottenuta dall'equipaggiamento
public:
int atk()
{
int result = equipment_atk + base_atk;
return result;
}
int def()
{
int result = equipment_def + base_def;
return result;
}
int pozioni_vita_piccole = 3;
int pozioni_vita_medie = 2;
int pozioni_vita_grandi = 1;
int move()
{
if(alive)
{
bool waiting = true;
unsigned char* starting = &map[x][y]; //Casella attuale
unsigned char* target; //Bersaglio del movimento
//Rileva i tasti freccia
while(waiting)
{
unsigned char input = getch();
short int dir = 0; //Direzione del movimento, per modificare x e y.
if(input == 224)
{
switch(getch())
{
case 72: //Freccia su, 1
target = &map[x][y-1];
dir = 1;
break;
case 80: //Freccia giù, 2
target = &map[x][y+1];
dir = 2;
break;
case 75: //Freccia sinistra, 3
target = &map[x-1][y];
dir = 3;
break;
case 77: //Freccia destra, 4
target = &map[x+1][y];
dir = 4;
break;
default: //Pag su, pag giù, skippa
target = &map[x][y]; //Un po' hackerino, ma...
break;
//Aggiungere gestione del caso che non sia una delle quattro frecce
}
//Muoviti e agisci!
if(*target == EMPTY)
{
*starting = EMPTY;
*target = PLAYER;
waiting = false;
}
else if(*target == ITEM_SMALL_POTION)
{
*starting = EMPTY;
*target = PLAYER;
pozioni_vita_piccole++;
waiting = false;
}
else if(*target == ITEM_MEDIUM_POTION)
{
*starting = EMPTY;
*target = PLAYER;
pozioni_vita_medie++;
waiting = false;
}
else if(*target == ITEM_BIG_POTION)
{
*starting = EMPTY;
*target = PLAYER;
pozioni_vita_grandi++;
waiting = false;
}
else if(*target == EXIT)
{
return 1;
}
}
else if(input == 's') //S
{
//Salta un turno
waiting = false;
}
else if(input == 'i') //I
{
//Apri l'inventario
inventory();
//Torna alla mappa
draw();
}
else if(input == 'a') //A
{
printf("ATTACCO selezionato");
if(getch() == 224)
{
char atk=getch();
switch(atk)
{
case 72: //ATK SU
if(map[x][y-1]==ENEMY)
{
attack(x, y-1);
}
break;
case 80: //ATK GIU
if(map[x][y+1]==ENEMY)
{
attack(x, y+1);
}
break;
case 75: //ATK SX
if(map[x-1][y]==ENEMY)
{
attack(x-1, y);
}
break;
case 77: //ATK DX
if(map[x+1][y]==ENEMY)
{
attack(x+1, y);
}
break;
}
waiting = false;
}
}
//Se ti sei mosso, controlla in che direzione e aggiorna correttamente la x e la y.
//Non mi veniva in mente un modo per farlo meglio.
if(!waiting)
{
if(dir == 1)
{
y--;
}
else if(dir == 2)
{
y++;
}
else if(dir == 3)
{
x--;
}
else if(dir == 4)
{
x++;
}
}
}
}
return 0;
}
} player;
//Classe dei nemici
class Enemy : public Entity
{
public:
int move()
{
if(alive)
{
//Se intorno c'è il giocatore
if(map[x-1][y] == PLAYER || map[x+1][y] == PLAYER || map[x][y-1] == PLAYER || map[x][y+1] == PLAYER)
{
//Forse sarebbe meglio fare una funzione per togliere vita che controlla anche se va a 0...
player.damage(rand() % 5 + 1);
}
else
{
//Se il giocatore è vicino, muoviti verso di lui
if(map[x-2][y] == PLAYER && map[x-1][y] == EMPTY) //Due a sinistra
{
map[x][y] = EMPTY;
map[x-1][y] = ENEMY;
x--;
}
else if(map[x+2][y] == PLAYER && map[x+1][y] == EMPTY) //Due a destra
{
map[x][y] = EMPTY;
map[x+1][y] = ENEMY;
x++;
}
else if(map[x][y-2] == PLAYER && map[x][y-1] == EMPTY) //Due in su
{
map[x][y] = EMPTY;
map[x][y-1] = ENEMY;
y--;
}
else if(map[x][y+2] == PLAYER && map[x][y+1] == EMPTY) //Due in giù
{
map[x][y] = EMPTY;
map[x][y+1] = ENEMY;
y++;
}
else if(map[x-1][y-1] == PLAYER) //In alto a sinistra
{
if(map[x][y-1] == EMPTY) //Vai in alto
{
map[x][y] = EMPTY;
map[x][y-1] = ENEMY;
y--;
}
else if(map[x-1][y] == EMPTY) //Vai a sinistra
{
map[x][y] = EMPTY;
map[x-1][y] = ENEMY;
x--;
}
}
else if(map[x-1][y+1] == PLAYER) //In basso a sinistra
{
if(map[x][y+1] == EMPTY) //Vai in basso
{
map[x][y] = EMPTY;
map[x][y+1] = ENEMY;
y++;
}
else if(map[x-1][y] == EMPTY) //Vai a sinistra
{
map[x][y] = EMPTY;
map[x-1][y] = ENEMY;
x--;
}
}
else if(map[x+1][y-1] == PLAYER) //In alto a destra
{
if(map[x][y-1] == EMPTY) //Vai in alto
{
map[x][y] = EMPTY;
map[x][y-1] = ENEMY;
y--;
}
else if(map[x+1][y] == EMPTY) //Vai a destra
{
map[x][y] = EMPTY;
map[x+1][y] = ENEMY;
x++;
}
}
else if(map[x+1][y+1] == PLAYER) //In basso a destra
{
if(map[x][y+1] == EMPTY) //Vai in basso
{
map[x][y] = EMPTY;
map[x][y+1] = ENEMY;
y++;
}
else if(map[x+1][y] == EMPTY) //Vai a destra
{
map[x][y] = EMPTY;
map[x+1][y] = ENEMY;
x++;
}
}
//Il giocatore non è vicino
else
{
if(map[x-1][y] == EMPTY || map[x+1][y] == EMPTY || map[x][y-1] == EMPTY || map[x][y+1] == EMPTY)
{
//Muoviti in una direzione casuale
bool moving = true;
while(moving)
{
int direction = rand() % 4;
switch(direction)
{
case 0: //Sinistra
if(map[x-1][y] == EMPTY)
{
map[x][y] = EMPTY;
map[x-1][y] = ENEMY;
x--;
moving = false;
}
break;
case 1: //Destra
if(map[x+1][y] == EMPTY)
{
map[x][y] = EMPTY;
map[x+1][y] = ENEMY;
x++;
moving = false;
}
break;
case 2: //Su
if(map[x][y-1] == EMPTY)
{
map[x][y] = EMPTY;
map[x][y-1] = ENEMY;
y--;
moving = false;
}
break;
case 3: //Giù
if(map[x][y+1] == EMPTY)
{
map[x][y] = EMPTY;
map[x][y+1] = ENEMY;
y++;
moving = false;
}
break;
}
}
}
}
}
}
}
};
//Aggiorna la console con la situazione corrente del gioco.
void draw()
{
//Svuota lo schermo della console. Sono sicuro che ci sia un modo molto migliore per farlo, ma non mi viene in mente...
system("cls");
for(int y=0; y<Y_MAX; y++)
{
for(int x=0; x<X_MAX; x++)
{
printf("%c", map[x][y]);
}
}
printf("Piano: %d | Vita: %d/%d | x:%d y:%d\n", depth, player.gethp(), HP_MAX, player.x, player.y);
}
//Visualizza l'inventario
void inventory()
{
system("cls");
printf("Piano: %d | Vita: %d/%d | x:%d y:%d\n", depth, player.gethp(), HP_MAX, player.x, player.y);
for(int i = 0; i < X_MAX; i++)
{
//TODO: Cambiare qui. Rallenta.
printf("%c", (char) DOUBLELINE);
}
//Anche qui, credo si possa migliorare qualcosa...
if(player.pozioni_vita_piccole > 0)
{
printf("%dx Pozione di Vita (p)iccola\tRipristina 10 Vita\n", player.pozioni_vita_piccole);
}
else
{
printf("\n");
}
if(player.pozioni_vita_medie > 0)
{
printf("%dx Pozione di Vita (n)ormale\tRipristina 20 Vita\n", player.pozioni_vita_medie);
}
else
{
printf("\n");
}
if(player.pozioni_vita_grandi > 0)
{
printf("%dx Pozione di Vita (m)aggiore\tRipristina 50 Vita\n", player.pozioni_vita_grandi);
}
else
{
printf("\n");
}
for(int i = 0; i < X_MAX; i++)
{
printf("%c", (char) DOUBLELINE);
}
//Selezione dell'oggetto da usare.
printf("Scrivi la lettera corrispondente all'oggetto che vuoi usare.\nEsci con Esc.\n");
while(true)
{
//Effetto degli oggetti
unsigned char selezione = getch();
if(selezione == 112) //p
{
if(player.pozioni_vita_piccole > 0)
{
player.pozioni_vita_piccole--;
player.heal(10);
break;
}
}
else if(selezione == 110) //n
{
if(player.pozioni_vita_medie > 0)
{
player.pozioni_vita_medie--;
player.heal(20);
break;
}
}
else if(selezione == 109) //m
{
if(player.pozioni_vita_grandi > 0)
{
player.pozioni_vita_grandi--;
player.heal(50);
break;
}
}
else if(selezione == 27) //esc
{
break;
}
}
}
//Funzioni per la generazione della mappa
//Inizializza la mappa con spazi vuoti
void init()
{
for(int y=0; y<Y_MAX; y++)
{
for(int x=0; x<X_MAX; x++)
{
map[x][y] = WALL;
}
}
}
//Crea una stanza quadrata
void room(int start_x, int start_y, int end_x, int end_y)
{
for(int y=start_y; y<=end_y; y++)
{
for(int x=start_x; x<=end_x; x++)
{
map[x][y] = EMPTY;
}
}
}
//Crea un corridoio che connetta due punti
void corridor(int start_x, int start_y, int end_x, int end_y, bool verticale)
{
if(verticale)
{
if(start_y > end_y)
{
for(int y=end_y; y<=start_y; y++)
{
map[start_x][y] = EMPTY;
}
}
else
{
for(int y=start_y; y<=end_y; y++)
{
map[start_x][y] = EMPTY;
}
}
if(start_x > end_x)
{
for(int x=end_x; x<=start_x; x++)
{
map[x][end_y] = EMPTY;
}
}
else
{
for(int x=start_x; x<=end_x; x++)
{
map[x][end_y] = EMPTY;
}
}
}
else
{
if(start_x > end_x)
{
for(int x=end_x; x<=start_x; x++)
{
map[x][start_y] = EMPTY;
}
}
else
{
for(int x=start_x; x<=end_x; x++)
{
map[x][start_y] = EMPTY;
}
}
if(start_y > end_y)
{
for(int y=end_y; y<=start_y; y++)
{
map[end_x][y] = EMPTY;
}
}
else
{
for(int y=start_y; y<=end_y; y++)
{
map[end_x][y] = EMPTY;
}
}
}
}
//Genera il livello
void generate(int enemies_to_place)
{
int corridor_x;
int corridor_y;
//Creazione delle stanze
for(int r=0; r<ROOMS; r++)
{
int size_x = rand() % ROOM_SIZE + 1;
int size_y = rand() % ROOM_SIZE + 1;
int start_x = rand() % (X_MAX - size_x - 2) + 1;
int start_y = rand() % (Y_MAX - size_y - 2) + 1;
room(start_x, start_y, start_x + size_x, start_y + size_y);
//Se non è la prima stanza, crea un corridoio che connetta quella appena generata con quella precedente
if(r > 0)
{
int link_x = rand() % size_x + 1 + start_x;
int link_y = rand() % size_y + 1 + start_y;
corridor(link_x, link_y, corridor_x, corridor_y, rand() % 2);
}
corridor_x = rand() % size_x + start_x;
corridor_y = rand() % size_y + start_y;
//Posiziona il giocatore se è l'ultima stanza
if(r == ROOMS - 1)
{
map[corridor_x][corridor_y] = PLAYER;
player.x = corridor_x;
player.y = corridor_y;
}
}
//Posizionamento nemici
for(int e=0; e<enemies_to_place; e++)
{
while(true)
{
int x = rand() % (X_MAX - 1) + 1;
int y = rand() % (Y_MAX - 1) + 1;
if(map[x][y] == EMPTY)
{
map[x][y] = ENEMY;
Enemy* created = new Enemy();
created->x = x;
created->y = y;
created->hp = ENEMY_HP;
created->hp_max = ENEMY_HP;
list[e] = created;
break;
}
}
}
//Posizionamento uscita
while(true)
{
int x = rand() % (X_MAX - 1) + 1;
int y = rand() % (Y_MAX - 1) + 1;
if(map[x][y] == EMPTY)
{
map[x][y] = EXIT;
break;
}
}
//Posizionamento pozioni di vita
int placed_potions = 0;
int potions_in_floor = rand() % MAX_POTIONS_PER_FLOOR;
while(placed_potions < potions_in_floor)
{
int x = rand() % (X_MAX - 1) + 1;
int y = rand() % (Y_MAX - 1) + 1;
int size = rand() % 100;
if(map[x][y] == EMPTY)
{
if(size < 60)
{
map[x][y] = ITEM_SMALL_POTION;
}
else if(size > 90)
{
map[x][y] = ITEM_BIG_POTION;
}
else
{
map[x][y] = ITEM_MEDIUM_POTION;
}
placed_potions++;
}
}
}
//Processa il resto di un turno, dopo il movimento del giocatore.
void tick(int enemies_to_tick)
{
for(int e=0; e<enemies_to_tick; e++)
{
list[e]->move();
}
}
//Trova il puntatore al nemico in una certa posizione
Enemy* find(int x, int y)
{
for(int e=0; e<MAX_ENEMIES; e++)
{
//Se c'è un nemico in quella posizione ED E' VIVO
if(list[e]->x == x && list[e]->y == y && list[e]->alive)
{
return list[e];
}
}
return NULL;
}
void attack(int x, int y)
{
find(x,y)->damage(player.atk());
}
int main()
{
int seed; //Seed casuale per generare il livello
srand (time(NULL));
int titolo=0, cursorpos=1;
string splash[10]{"Ora con ben 2 colori!", "E' come skyrim, ma con una bella grafica!", "Quasi senza bug", "Potrebbe contenere canditi", "Ora in grado di generare fame", "I colori hanno ben 1 sfumatura", "I SEE YOU", "WOLOLO", "AUTOMAAAAAH", "Stai davvero giocando a sta roba? WOW!"};
cout << '\n';
cout << " 000000\n";
cout << " 000000 0000 0000 0000 0000 000 000000 0000 000000 000000 000000\n";
cout << " 00 000 00 000000 000000 000000\n";
cout << " 00 0000 0000 0000 0000 000 00 00 0000 00 00 000 00 00\n";
cout << " 00 0000 0000 0000 0000 000 00 00 0000 00 00 000 00 00\n";
cout << " 000000 0000 0000 0000 0000 000000 000000 0000 000000 000000 000000\n";
cout << " 000000 0000 0000 0000 0000 000000 000000 0000 000000 000000 000000\n";
titolo= rand()%10;
cout << "\n\n Citazione all'avvio: "<< splash[titolo] << '\n';
cout << "Premi INVIO per entrare nel menu!" << '\n';
getch();
while(true)
{
char selection = getch();
system("cls");
if(cursorpos==1)
{
cout << '\n';
cout << " 000000\n";
cout << " 000000 0000 0000 0000 0000 000 000000 0000 000000 000000 000000\n";
cout << " 00 000 00 000000 000000 000000\n";
cout << " 00 0000 0000 0000 0000 000 00 00 0000 00 00 000 00 00\n";
cout << " 00 0000 0000 0000 0000 000 00 00 0000 00 00 000 00 00\n";
cout << " 000000 0000 0000 0000 0000 000000 000000 0000 000000 000000 000000\n";
cout << " 000000 0000 0000 0000 0000 000000 000000 0000 000000 000000 000000\n";
cout << "\n\n > NUOVA PARTITA <\n";
cout << "\n OPZIONI\n";
}
else if(cursorpos==2)
{
cout << " "<<endl;
cout << " 000000" << endl;
cout << " 000000 0000 0000 0000 0000 000 000000 0000 000000 000000 000000\n";
cout << " 00 000 00 000000 000000 000000\n";
cout << " 00 0000 0000 0000 0000 000 00 00 0000 00 00 000 00 00\n";
cout << " 00 0000 0000 0000 0000 000 00 00 0000 00 00 000 00 00\n";
cout << " 000000 0000 0000 0000 0000 000000 000000 0000 000000 000000 000000\n";
cout << " 000000 0000 0000 0000 0000 000000 000000 0000 000000 000000 000000\n";
cout << "\n\n NUOVA PARTITA \n";
cout << "\n > OPZIONI <\n";
}
selection = getch();
if(selection==72)
{
cursorpos--;
}
else if(selection==80)
{
cursorpos++;
}
else if(selection==13)//PRESSIONE ENTER SU ELEMENTI MENU
{
if(cursorpos==1)//AVVIO GIOCO
{
break;
}
else if(cursorpos==2)
{
system("cls");
cout << "Modificare tipo blocco? (S/N)"<<endl;
char scelta;
cin >> scelta;
if(scelta == 'S' || scelta== 's')
{
WALL= 0xDB;
}
}
}
}
printf("\n\nSeleziona un seed per la partita: ");
cin >> seed;
srand(seed);
//Ciclo del gioco
while(true)
{
int enemies_in_level;
if(depth < MAX_ENEMIES)
{
enemies_in_level = depth;
}
else
{
enemies_in_level = MAX_ENEMIES;
}
init();
generate(enemies_in_level);
draw();
//Ciclo di un livello
while(true)
{
int trigger = player.move();
if(trigger == 1) //Uscita toccata
{
break;
}
tick(enemies_in_level);
draw();
}
depth++;
}
return 0;
}