Look! Look!

This commit is contained in:
Bill Rossi 2025-01-19 09:52:18 -05:00
parent b4d93cffc2
commit d730c3ab9f
5 changed files with 13 additions and 1 deletions

View File

@ -1,4 +1,5 @@
QUIT | * | 1000 | Bye! | QUIT_GAME() QUIT | * | 1000 | Bye! | QUIT_GAME()
LOOK | * | 1 | * | LOOK_ROOM()
NORTH | * | 1 | You can't go north from here. | NORTH | * | 1 | You can't go north from here. |
SOUTH | * | 1 | You can't go south from here. | SOUTH | * | 1 | You can't go south from here. |
EAST | * | 1 | You can't go east from here. | EAST | * | 1 | You can't go east from here. |

View File

@ -6,3 +6,4 @@ NORTH|NORTH,N
SOUTH|SOUTH,S SOUTH|SOUTH,S
EAST|EAST,E EAST|EAST,E
WEST|WEST,W WEST|WEST,W
LOOK|LOOK,L

View File

@ -29,6 +29,9 @@ void cause_effect(Game *g, Effect *e) {
case EFFECT_QUIT_GAME: case EFFECT_QUIT_GAME:
g->should_close = true; g->should_close = true;
break; break;
case EFFECT_LOOK_ROOM:
push_line_to_log(g->input->log, g->current_room->description);
break;
} }
} }
@ -54,6 +57,8 @@ Effect *create_effect(Game *g, const char *string) {
e->type = EFFECT_DISABLE; e->type = EFFECT_DISABLE;
} else if (strcmp(token, "QUIT_GAME") == 0) { } else if (strcmp(token, "QUIT_GAME") == 0) {
e->type = EFFECT_QUIT_GAME; e->type = EFFECT_QUIT_GAME;
} else if (strcmp(token, "LOOK_ROOM") == 0) {
e->type = EFFECT_LOOK_ROOM;
} }
token = strtok_r(NULL, ")", &strtok_guy); token = strtok_r(NULL, ")", &strtok_guy);
@ -90,5 +95,8 @@ void print_effect(Effect *e) {
case EFFECT_QUIT_GAME: case EFFECT_QUIT_GAME:
printf("QUIT_GAME()"); printf("QUIT_GAME()");
break; break;
case EFFECT_LOOK_ROOM:
printf("LOOK_ROOM()");
break;
} }
} }

View File

@ -11,6 +11,7 @@ typedef enum EffectType {
EFFECT_ENABLE, EFFECT_ENABLE,
EFFECT_DISABLE, EFFECT_DISABLE,
EFFECT_QUIT_GAME, EFFECT_QUIT_GAME,
EFFECT_LOOK_ROOM,
} EffectType; } EffectType;
#include "game.h" #include "game.h"

View File

@ -111,7 +111,8 @@ void game_handle_directional_command(Game *g, const char *c) {
void game_handle_command(Game *g, const char *command) { void game_handle_command(Game *g, const char *command) {
Action *a = find_action(g, command); Action *a = find_action(g, command);
if (a) { if (a) {
push_line_to_log(g->input->log, a->description);
if (strcmp(a->description, "*") != 0) push_line_to_log(g->input->log, a->description);
for (int i = 0; i < a->effects_count; i++) { for (int i = 0; i < a->effects_count; i++) {
cause_effect(g, a->effects[i]); cause_effect(g, a->effects[i]);
} }