mirror of
https://github.com/Steffo99/iiiiil-gioco.git
synced 2024-11-22 07:54:21 +00:00
Spostato il giocatore in oggetto, ma...
Non va la definizione di x e y alla generazione.
This commit is contained in:
parent
759e7bc703
commit
bd8de3e71a
1 changed files with 253 additions and 242 deletions
495
main.cpp
495
main.cpp
|
@ -39,71 +39,6 @@ int pozioni_vita_piccole = 3;
|
||||||
int pozioni_vita_medie = 2;
|
int pozioni_vita_medie = 2;
|
||||||
int pozioni_vita_grandi = 1;
|
int pozioni_vita_grandi = 1;
|
||||||
|
|
||||||
//Classe dei nemici
|
|
||||||
class Enemy
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
int x;
|
|
||||||
int y;
|
|
||||||
void move()
|
|
||||||
{
|
|
||||||
//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...
|
|
||||||
hp--;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
//Cura il giocatore di x
|
//Cura il giocatore di x
|
||||||
void heal(int x)
|
void heal(int x)
|
||||||
{
|
{
|
||||||
|
@ -202,187 +137,259 @@ void draw()
|
||||||
cout << "Piano: " << depth << ' ' << "Vita: " << hp << "/" << HP_MAX << '\n';
|
cout << "Piano: " << depth << ' ' << "Vita: " << hp << "/" << HP_MAX << '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
//Fai muovere il giocatore
|
//Classe entità generica, sia nemico sia giocatore
|
||||||
int move(int player[2])
|
class Entity
|
||||||
{
|
{
|
||||||
int player_x = player[0];
|
public:
|
||||||
int player_y = player[1];
|
int x;
|
||||||
bool waiting = true;
|
int y;
|
||||||
//Rileva i tasti freccia
|
int move();
|
||||||
while(waiting)
|
};
|
||||||
{
|
|
||||||
unsigned char input = getch();
|
//Classe del giocatore
|
||||||
if(input == 224)
|
class Player : public Entity
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
int move()
|
||||||
{
|
{
|
||||||
switch(getch())
|
bool waiting = true;
|
||||||
|
//Rileva i tasti freccia
|
||||||
|
while(waiting)
|
||||||
{
|
{
|
||||||
case 72: //Freccia su
|
unsigned char input = getch();
|
||||||
if(map[player_x][player_y-1] == EMPTY)
|
if(input == 224)
|
||||||
|
{
|
||||||
|
switch(getch())
|
||||||
{
|
{
|
||||||
map[player_x][player_y] = EMPTY;
|
case 72: //Freccia su
|
||||||
map[player_x][player_y-1] = PLAYER;
|
if(map[x][y-1] == EMPTY)
|
||||||
player_y--;
|
{
|
||||||
waiting = false;
|
map[x][y] = EMPTY;
|
||||||
|
map[x][y-1] = PLAYER;
|
||||||
|
y--;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x][y-1] == ITEM_SMALL_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x][y-1] = PLAYER;
|
||||||
|
y--;
|
||||||
|
pozioni_vita_piccole++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x][y-1] == ITEM_MEDIUM_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x][y-1] = PLAYER;
|
||||||
|
y--;
|
||||||
|
pozioni_vita_medie++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x-1][y-1] == ITEM_BIG_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x][y-1] = PLAYER;
|
||||||
|
y--;
|
||||||
|
pozioni_vita_grandi++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x][y-1] == EXIT)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 80: //Freccia giù
|
||||||
|
if(map[x][y+1] == EMPTY)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x][y+1] = PLAYER;
|
||||||
|
y++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x][y+1] == ITEM_SMALL_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x][y+1] = PLAYER;
|
||||||
|
y++;
|
||||||
|
pozioni_vita_piccole++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x][y+1] == ITEM_MEDIUM_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x][y+1] = PLAYER;
|
||||||
|
y++;
|
||||||
|
pozioni_vita_medie++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x-1][y] == ITEM_BIG_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x][y+1] = PLAYER;
|
||||||
|
y++;
|
||||||
|
pozioni_vita_grandi++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x][y+1] == EXIT)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 75: //Freccia sinistra
|
||||||
|
if(map[x-1][y] == EMPTY)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x-1][y] = PLAYER;
|
||||||
|
x--;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x-1][y] == ITEM_SMALL_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x-1][y] = PLAYER;
|
||||||
|
x--;
|
||||||
|
pozioni_vita_piccole++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x-1][y] == ITEM_MEDIUM_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x-1][y] = PLAYER;
|
||||||
|
x--;
|
||||||
|
pozioni_vita_medie++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x-1][y] == ITEM_BIG_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x-1][y] = PLAYER;
|
||||||
|
x--;
|
||||||
|
pozioni_vita_grandi++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x-1][y] == EXIT)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 77: //Freccia destra
|
||||||
|
if(map[x+1][y] == EMPTY)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x+1][y] = PLAYER;
|
||||||
|
x++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x+1][y] == ITEM_SMALL_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x+1][y] = PLAYER;
|
||||||
|
x++;
|
||||||
|
pozioni_vita_piccole++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x+1][y] == ITEM_MEDIUM_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x+1][y] = PLAYER;
|
||||||
|
x++;
|
||||||
|
pozioni_vita_medie++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x+1][y] == ITEM_BIG_POTION)
|
||||||
|
{
|
||||||
|
map[x][y] = EMPTY;
|
||||||
|
map[x+1][y] = PLAYER;
|
||||||
|
x++;
|
||||||
|
pozioni_vita_grandi++;
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(map[x+1][y] == EXIT)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
else if(map[player_x][player_y-1] == ITEM_SMALL_POTION)
|
}
|
||||||
|
else if(input == 's') //S
|
||||||
|
{
|
||||||
|
//Salta un turno
|
||||||
|
waiting = false;
|
||||||
|
}
|
||||||
|
else if(input == 'i') //I
|
||||||
|
{
|
||||||
|
//Apri l'inventario
|
||||||
|
inventory();
|
||||||
|
//Torna alla mappa
|
||||||
|
draw();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
//Classe dei nemici
|
||||||
|
class Enemy : public Entity
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
int move()
|
||||||
|
{
|
||||||
|
//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...
|
||||||
|
hp--;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//Muoviti in una direzione casuale
|
||||||
|
bool moving = true;
|
||||||
|
while(moving)
|
||||||
|
{
|
||||||
|
int direction = rand() % 4;
|
||||||
|
switch(direction)
|
||||||
{
|
{
|
||||||
map[player_x][player_y] = EMPTY;
|
case 0: //Sinistra
|
||||||
map[player_x][player_y-1] = PLAYER;
|
if(map[x-1][y] == EMPTY)
|
||||||
player_y--;
|
{
|
||||||
pozioni_vita_piccole++;
|
map[x][y] = EMPTY;
|
||||||
waiting = false;
|
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;
|
||||||
}
|
}
|
||||||
else if(map[player_x][player_y-1] == ITEM_MEDIUM_POTION)
|
}
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x][player_y-1] = PLAYER;
|
|
||||||
player_y--;
|
|
||||||
pozioni_vita_medie++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x-1][player_y-1] == ITEM_BIG_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x][player_y-1] = PLAYER;
|
|
||||||
player_y--;
|
|
||||||
pozioni_vita_grandi++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x][player_y-1] == EXIT)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 80: //Freccia giù
|
|
||||||
if(map[player_x][player_y+1] == EMPTY)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x][player_y+1] = PLAYER;
|
|
||||||
player_y++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x][player_y+1] == ITEM_SMALL_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x][player_y+1] = PLAYER;
|
|
||||||
player_y++;
|
|
||||||
pozioni_vita_piccole++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x][player_y+1] == ITEM_MEDIUM_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x][player_y+1] = PLAYER;
|
|
||||||
player_y++;
|
|
||||||
pozioni_vita_medie++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x-1][player_y] == ITEM_BIG_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x][player_y+1] = PLAYER;
|
|
||||||
player_y++;
|
|
||||||
pozioni_vita_grandi++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x][player_y+1] == EXIT)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 75: //Freccia sinistra
|
|
||||||
if(map[player_x-1][player_y] == EMPTY)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x-1][player_y] = PLAYER;
|
|
||||||
player_x--;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x-1][player_y] == ITEM_SMALL_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x-1][player_y] = PLAYER;
|
|
||||||
player_x--;
|
|
||||||
pozioni_vita_piccole++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x-1][player_y] == ITEM_MEDIUM_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x-1][player_y] = PLAYER;
|
|
||||||
player_x--;
|
|
||||||
pozioni_vita_medie++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x-1][player_y] == ITEM_BIG_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x-1][player_y] = PLAYER;
|
|
||||||
player_x--;
|
|
||||||
pozioni_vita_grandi++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x-1][player_y] == EXIT)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 77: //Freccia destra
|
|
||||||
if(map[player_x+1][player_y] == EMPTY)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x+1][player_y] = PLAYER;
|
|
||||||
player_x++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x+1][player_y] == ITEM_SMALL_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x+1][player_y] = PLAYER;
|
|
||||||
player_x++;
|
|
||||||
pozioni_vita_piccole++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x+1][player_y] == ITEM_MEDIUM_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x+1][player_y] = PLAYER;
|
|
||||||
player_x++;
|
|
||||||
pozioni_vita_medie++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x+1][player_y] == ITEM_BIG_POTION)
|
|
||||||
{
|
|
||||||
map[player_x][player_y] = EMPTY;
|
|
||||||
map[player_x+1][player_y] = PLAYER;
|
|
||||||
player_x++;
|
|
||||||
pozioni_vita_grandi++;
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(map[player_x+1][player_y] == EXIT)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(input == 's') //S
|
};
|
||||||
{
|
|
||||||
//Salta un turno
|
|
||||||
waiting = false;
|
|
||||||
}
|
|
||||||
else if(input == 'i') //I
|
|
||||||
{
|
|
||||||
//Apri l'inventario
|
|
||||||
inventory();
|
|
||||||
//Torna alla mappa
|
|
||||||
draw();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
player[0] = player_x;
|
|
||||||
player[1] = player_y;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Funzioni per la generazione della mappa
|
//Funzioni per la generazione della mappa
|
||||||
//Inizializza la mappa con spazi vuoti
|
//Inizializza la mappa con spazi vuoti
|
||||||
|
@ -477,7 +484,7 @@ void corridor(int start_x, int start_y, int end_x, int end_y, bool verticale)
|
||||||
}
|
}
|
||||||
|
|
||||||
//Genera il livello
|
//Genera il livello
|
||||||
void generate(int player[2], Enemy* list[ENEMIES_IN_LEVEL])
|
void generate(Player* player, Enemy* list[ENEMIES_IN_LEVEL])
|
||||||
{
|
{
|
||||||
int corridor_x;
|
int corridor_x;
|
||||||
int corridor_y;
|
int corridor_y;
|
||||||
|
@ -501,9 +508,11 @@ void generate(int player[2], Enemy* list[ENEMIES_IN_LEVEL])
|
||||||
//Posiziona il giocatore se è l'ultima stanza
|
//Posiziona il giocatore se è l'ultima stanza
|
||||||
if(r == ROOMS - 1)
|
if(r == ROOMS - 1)
|
||||||
{
|
{
|
||||||
player[0] = corridor_x;
|
|
||||||
player[1] = corridor_y;
|
|
||||||
map[corridor_x][corridor_y] = PLAYER;
|
map[corridor_x][corridor_y] = PLAYER;
|
||||||
|
Player* created = new Player();
|
||||||
|
created->x = corridor_x;
|
||||||
|
created->y = corridor_y;
|
||||||
|
player = created;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//Posizionamento nemici
|
//Posizionamento nemici
|
||||||
|
@ -573,7 +582,7 @@ void tick(Enemy* list[ENEMIES_IN_LEVEL])
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
int player[2];
|
Player* player; //Puntatore all'oggetto Giocatore
|
||||||
Enemy* list[ENEMIES_IN_LEVEL]; //Lista di tutti i nemici nel livello
|
Enemy* list[ENEMIES_IN_LEVEL]; //Lista di tutti i nemici nel livello
|
||||||
srand(0); //TODO: Rendere il seed modificabile...?
|
srand(0); //TODO: Rendere il seed modificabile...?
|
||||||
//Ciclo del gioco
|
//Ciclo del gioco
|
||||||
|
@ -582,14 +591,16 @@ int main()
|
||||||
init();
|
init();
|
||||||
generate(player, list);
|
generate(player, list);
|
||||||
draw();
|
draw();
|
||||||
|
cout << player->x << '|' << player->y;
|
||||||
//Ciclo di un livello
|
//Ciclo di un livello
|
||||||
while(true)
|
while(true)
|
||||||
{
|
{
|
||||||
int trigger = move(player);
|
int trigger = player->move();
|
||||||
if(trigger == 1) //Uscita toccata
|
if(trigger == 1) //Uscita toccata
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
cout << "ENEMY";
|
||||||
tick(list);
|
tick(list);
|
||||||
draw();
|
draw();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue