add game over screen

This commit is contained in:
quenousimporte 2025-04-02 14:01:58 +02:00
parent aaaab116b4
commit c823b56e28
1 changed files with 8 additions and 1 deletions

9
w/w.c
View File

@ -18,6 +18,7 @@
#define SC_STATION 2 #define SC_STATION 2
#define SC_MAP 3 #define SC_MAP 3
#define SC_MONSTER 4 #define SC_MONSTER 4
#define SC_GAMEOVER 5
#define NORTH 0 #define NORTH 0
#define EAST 1 #define EAST 1
@ -485,7 +486,7 @@ void update(char command[CMD_LEN])
state.hero.hp--; state.hero.hp--;
if (state.hero.hp <= 0) if (state.hero.hp <= 0)
{ {
// game over ? state.screen = SC_GAMEOVER;
} }
} }
@ -579,6 +580,12 @@ void draw()
printf("f: Tenter de fuir\n"); printf("f: Tenter de fuir\n");
printf("a: Attaquer\n"); printf("a: Attaquer\n");
} }
else if (state.screen == SC_GAMEOVER)
{
printf("%s est fatiguée\n");
state.hero.hp = 10;
state.screen = SC_STATION;
}
if (state.screen == SC_MONSTER if (state.screen == SC_MONSTER
|| state.screen == SC_STATION || state.screen == SC_STATION