Add movement
This commit is contained in:
parent
01cf8c08db
commit
b4d93cffc2
@ -1,3 +1,12 @@
|
|||||||
|
QUIT | * | 1000 | Bye! | QUIT_GAME()
|
||||||
|
NORTH | * | 1 | You can't go north from here. |
|
||||||
|
SOUTH | * | 1 | You can't go south from here. |
|
||||||
|
EAST | * | 1 | You can't go east from here. |
|
||||||
|
WEST | * | 1 | You can't go west from here. |
|
||||||
|
NORTH | IN(FIRST_ROOM) | 10 | You head through the door. | GOTO(SECOND_ROOM)
|
||||||
|
SOUTH | IN(SECOND_ROOM) | 10 | You head back through the door. | GOTO(FIRST_ROOM)
|
||||||
|
EAST | IN(FIRST_ROOM) | 10 | You crouch under the beam and enter the room. | GOTO(LAST_ROOM)
|
||||||
|
WEST | IN(LAST_ROOM) | 10 | You crouch under the beam and return to the room. | GOTO(FIRST_ROOM)
|
||||||
PULL | * | 1 | You don't see anything to pull |
|
PULL | * | 1 | You don't see anything to pull |
|
||||||
PULL | IN(FIRST_ROOM) | 10 | What do you want to pull? |
|
PULL | IN(FIRST_ROOM) | 10 | What do you want to pull? |
|
||||||
PULL LEVER | IN(FIRST_ROOM) | 100 | You pull the lever. Nice. | ENABLE(LEVER_PULLED)
|
PULL LEVER | IN(FIRST_ROOM) | 100 | You pull the lever. Nice. | ENABLE(LEVER_PULLED)
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
PULL|PULL,YANK,TUG
|
PULL|PULL,YANK,TUG
|
||||||
ROPE|ROPE,CORD,STRING,CABLE
|
ROPE|ROPE,CORD,STRING,CABLE
|
||||||
LEVER|LEVER
|
LEVER|LEVER
|
||||||
|
QUIT|QUIT,Q,EXIT
|
||||||
|
NORTH|NORTH,N
|
||||||
|
SOUTH|SOUTH,S
|
||||||
|
EAST|EAST,E
|
||||||
|
WEST|WEST,W
|
||||||
|
@ -26,6 +26,9 @@ void cause_effect(Game *g, Effect *e) {
|
|||||||
case EFFECT_DISABLE:
|
case EFFECT_DISABLE:
|
||||||
find_flag(g->flags, e->argument)->value = 0;
|
find_flag(g->flags, e->argument)->value = 0;
|
||||||
break;
|
break;
|
||||||
|
case EFFECT_QUIT_GAME:
|
||||||
|
g->should_close = true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -49,11 +52,15 @@ Effect *create_effect(Game *g, const char *string) {
|
|||||||
e->type = EFFECT_ENABLE;
|
e->type = EFFECT_ENABLE;
|
||||||
} else if (strcmp(token, "DISABLE") == 0) {
|
} else if (strcmp(token, "DISABLE") == 0) {
|
||||||
e->type = EFFECT_DISABLE;
|
e->type = EFFECT_DISABLE;
|
||||||
|
} else if (strcmp(token, "QUIT_GAME") == 0) {
|
||||||
|
e->type = EFFECT_QUIT_GAME;
|
||||||
}
|
}
|
||||||
|
|
||||||
token = strtok_r(NULL, ")", &strtok_guy);
|
token = strtok_r(NULL, ")", &strtok_guy);
|
||||||
e->argument = malloc(strlen(token) + 1);
|
if (token) {
|
||||||
strcpy(e->argument, token);
|
e->argument = malloc(strlen(token) + 1);
|
||||||
|
strcpy(e->argument, token);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
free(buffer);
|
free(buffer);
|
||||||
@ -80,5 +87,8 @@ void print_effect(Effect *e) {
|
|||||||
case EFFECT_DISABLE:
|
case EFFECT_DISABLE:
|
||||||
printf("DISABLE(%s)", e->argument);
|
printf("DISABLE(%s)", e->argument);
|
||||||
break;
|
break;
|
||||||
|
case EFFECT_QUIT_GAME:
|
||||||
|
printf("QUIT_GAME()");
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,7 @@ typedef enum EffectType {
|
|||||||
EFFECT_DECREMENT,
|
EFFECT_DECREMENT,
|
||||||
EFFECT_ENABLE,
|
EFFECT_ENABLE,
|
||||||
EFFECT_DISABLE,
|
EFFECT_DISABLE,
|
||||||
|
EFFECT_QUIT_GAME,
|
||||||
} EffectType;
|
} EffectType;
|
||||||
|
|
||||||
#include "game.h"
|
#include "game.h"
|
||||||
|
@ -18,9 +18,13 @@ int main(void) {
|
|||||||
game_load_rooms(g);
|
game_load_rooms(g);
|
||||||
g->current_room = &g->rooms->rooms[0];
|
g->current_room = &g->rooms->rooms[0];
|
||||||
game_load_transitions(g);
|
game_load_transitions(g);
|
||||||
|
printf("loaded transitions\n");
|
||||||
game_load_words(g);
|
game_load_words(g);
|
||||||
|
printf("loaded words\n");
|
||||||
game_load_flags(g);
|
game_load_flags(g);
|
||||||
|
printf("loaded flags\n");
|
||||||
game_load_actions(g);
|
game_load_actions(g);
|
||||||
|
printf("loaded actions\n");
|
||||||
|
|
||||||
game_run_until_close(g);
|
game_run_until_close(g);
|
||||||
CloseWindow();
|
CloseWindow();
|
||||||
|
Loading…
Reference in New Issue
Block a user