start implement encounters
This commit is contained in:
parent
ffdd7ec2da
commit
66fc645582
42
w/w.c
42
w/w.c
|
@ -15,6 +15,7 @@
|
||||||
#define SC_SETNAME 1
|
#define SC_SETNAME 1
|
||||||
#define SC_STATION 2
|
#define SC_STATION 2
|
||||||
#define SC_MAP 3
|
#define SC_MAP 3
|
||||||
|
#define SC_MONSTER 4
|
||||||
|
|
||||||
#define NORTH 0
|
#define NORTH 0
|
||||||
#define EAST 1
|
#define EAST 1
|
||||||
|
@ -42,6 +43,7 @@ typedef struct {
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
Character hero;
|
Character hero;
|
||||||
|
Character monster;
|
||||||
Position position;
|
Position position;
|
||||||
char screen;
|
char screen;
|
||||||
} Gamestate;
|
} Gamestate;
|
||||||
|
@ -413,6 +415,11 @@ void update(char command[CMD_LEN])
|
||||||
case CMD_FWD:
|
case CMD_FWD:
|
||||||
case '\0':
|
case '\0':
|
||||||
forward();
|
forward();
|
||||||
|
if (dice() == 1)
|
||||||
|
{
|
||||||
|
memcpy(&state.monster, &(monsters[0]), sizeof(Character));
|
||||||
|
state.screen = SC_MONSTER;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'x':
|
case 'x':
|
||||||
right();
|
right();
|
||||||
|
@ -461,6 +468,31 @@ void update(char command[CMD_LEN])
|
||||||
updatepov();
|
updatepov();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (state.screen == SC_MONSTER)
|
||||||
|
{
|
||||||
|
if (c == 'f')
|
||||||
|
{
|
||||||
|
state.screen = SC_MAP;
|
||||||
|
}
|
||||||
|
else if (c == 'a')
|
||||||
|
{
|
||||||
|
// hero then monster turn.
|
||||||
|
// possible outcomes: hero dead, monster dead, or still fight
|
||||||
|
|
||||||
|
// hero attacks
|
||||||
|
state.monster.hp--;
|
||||||
|
|
||||||
|
// monster attacks
|
||||||
|
state.hero.hp--;
|
||||||
|
|
||||||
|
if (state.monster.hp <= 0)
|
||||||
|
{
|
||||||
|
state.hero.gold += state.monster.gold;
|
||||||
|
state.screen = SC_MAP;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void debugoutput()
|
void debugoutput()
|
||||||
|
@ -543,8 +575,16 @@ void draw()
|
||||||
|
|
||||||
printf("n: Prendre la navette\n");
|
printf("n: Prendre la navette\n");
|
||||||
}
|
}
|
||||||
|
else if (state.screen == SC_MONSTER)
|
||||||
|
{
|
||||||
|
printf("Rencontre avec un %s\n", state.monster.name);
|
||||||
|
printf("f: Tenter de fuir\n");
|
||||||
|
printf("a: Attaquer\n");
|
||||||
|
}
|
||||||
|
|
||||||
if (state.screen == SC_STATION || state.screen == SC_MAP)
|
if (state.screen == SC_MONSTER
|
||||||
|
|| state.screen == SC_STATION
|
||||||
|
|| state.screen == SC_MAP)
|
||||||
{
|
{
|
||||||
printf("\n");
|
printf("\n");
|
||||||
for (int i = 0; i < screenwidth; i++) printf("-");
|
for (int i = 0; i < screenwidth; i++) printf("-");
|
||||||
|
|
Loading…
Reference in New Issue