diff --git a/01_text_adventure/action.c b/01_text_adventure/action.c index 6ea9d57..f9330ce 100644 --- a/01_text_adventure/action.c +++ b/01_text_adventure/action.c @@ -1,11 +1,16 @@ #include #include #include "action.h" +#include "effect.h" +#include "predicate.h" #include "game.h" #include "util.h" void load_action(Game *g, char *line) { Action *action = &g->actions->actions[g->actions->count]; + action->words_count = 0; + action->predicates_count = 0; + action->effects_count = 0; char *line_token_guy; char *line_token = strtok_r(line, "|", &line_token_guy); @@ -22,7 +27,6 @@ void load_action(Game *g, char *line) { } line_token = strtok_r(NULL, "|", &line_token_guy); - strcpy(command_buffer, line_token); command_word = strtok_r(command_buffer, " &", &command_token_guy); while (command_word != NULL) { @@ -39,8 +43,16 @@ void load_action(Game *g, char *line) { strcpy(action->description, line_token); line_token = strtok_r(NULL, "|", &line_token_guy); - - // action bullshit + if (line_token == NULL) { + } else { + strcpy(command_buffer, line_token); + command_word = strtok_r(command_buffer, " &", &command_token_guy); + while (command_word != NULL) { + Effect *e = create_effect(g, command_word); + action->effects[action->effects_count++] = e; + command_word = strtok_r(NULL, " &", &command_token_guy); + } + } g->actions->count++; } diff --git a/01_text_adventure/action.h b/01_text_adventure/action.h index 912c96e..206692b 100644 --- a/01_text_adventure/action.h +++ b/01_text_adventure/action.h @@ -7,6 +7,7 @@ typedef struct Actions Actions; #include "game.h" #include "word.h" #include "predicate.h" +#include "effect.h" struct Action { Word *words[4]; @@ -15,7 +16,8 @@ struct Action { int predicates_count; int priority; char *description; - // Effect *effect; + Effect *effects[10]; + int effects_count; }; struct Actions { diff --git a/01_text_adventure/data/actions.txt b/01_text_adventure/data/actions.txt index 570ad7e..53c5ed5 100644 --- a/01_text_adventure/data/actions.txt +++ b/01_text_adventure/data/actions.txt @@ -1,4 +1,4 @@ PULL | * | 1 | You don't see anything to pull | -PULL | IN(lever_room) | 10 | What do you want to pull? | -PULL LEVER | IN(lever_room) | 100 | You pull the lever. Nice. | ENABLE(lever_pulled) -PULL LEVER | IN(lever_room) & ENABLED(lever_pulled) | 1000 | You already pulled it. | +PULL | IN(LEVER_ROOM) | 10 | What do you want to pull? | +PULL LEVER | IN(LEVER_ROOM) | 100 | You pull the lever. Nice. | ENABLE(LEVER_PULLED) +PULL LEVER | IN(LEVER_ROOM) & ENABLED(LEVER_PULLED) | 1000 | You already pulled it. | diff --git a/01_text_adventure/effect.c b/01_text_adventure/effect.c new file mode 100644 index 0000000..c53bd7b --- /dev/null +++ b/01_text_adventure/effect.c @@ -0,0 +1,84 @@ +#include +#include +#include +#include "game.h" +#include "flag.h" +#include "effect.h" + +void cause_effect(Game *g, Effect *e) { + if (e == NULL) return; + + switch (e->type) { + case EFFECT_NOOP: + break; + case EFFECT_GOTO: + g->current_room = find_room(g->rooms, e->argument); + break; + case EFFECT_INCREMENT: + find_flag(g->flags, e->argument)->value++; + break; + case EFFECT_DECREMENT: + find_flag(g->flags, e->argument)->value--; + break; + case EFFECT_ENABLE: + find_flag(g->flags, e->argument)->value = 1; + break; + case EFFECT_DISABLE: + find_flag(g->flags, e->argument)->value = 0; + break; + } +} + +Effect *create_effect(Game *g, const char *string) { + Effect *e = malloc(sizeof(Effect)); + char *buffer = malloc(strlen(string) + 1); + strcpy(buffer, string); + + char *strtok_guy; + char *token = strtok_r(buffer, "(", &strtok_guy); + if (token == NULL) { + e->type = EFFECT_NOOP; + } else { + if (strcmp(token, "GOTO") == 0) { + e->type = EFFECT_GOTO; + } else if (strcmp(token, "INCREMENT") == 0) { + e->type = EFFECT_INCREMENT; + } else if (strcmp(token, "DECREMENT") == 0) { + e->type = EFFECT_DECREMENT; + } else if (strcmp(token, "ENABLE") == 0) { + e->type = EFFECT_ENABLE; + } else if (strcmp(token, "DISABLE") == 0) { + e->type = EFFECT_DISABLE; + } + + token = strtok_r(NULL, ")", &strtok_guy); + e->argument = malloc(strlen(token) + 1); + strcpy(e->argument, token); + } + + free(buffer); + return e; +} + +void print_effect(Effect *e) { + switch (e->type) { + case EFFECT_NOOP: + printf("*"); + break; + case EFFECT_GOTO: + printf("GOTO(%s)", e->argument); + break; + case EFFECT_INCREMENT: + printf("INCREMENT(%s)", e->argument); + break; + case EFFECT_DECREMENT: + printf("DECRMENT(%s)", e->argument); + break; + case EFFECT_ENABLE: + printf("ENABLE(%s)", e->argument); + break; + case EFFECT_DISABLE: + printf("DISABLE(%s)", e->argument); + break; + } +} diff --git a/01_text_adventure/effect.h b/01_text_adventure/effect.h new file mode 100644 index 0000000..36e0899 --- /dev/null +++ b/01_text_adventure/effect.h @@ -0,0 +1,26 @@ +#ifndef _FD_EFFECT_ +#define _FD_EFFECT_ + +typedef struct Effect Effect; + +typedef enum EffectType { + EFFECT_NOOP, + EFFECT_GOTO, + EFFECT_INCREMENT, + EFFECT_DECREMENT, + EFFECT_ENABLE, + EFFECT_DISABLE, +} EffectType; + +#include "game.h" + +struct Effect { + EffectType type; + char *argument; +}; + +void cause_effect(Game *g, Effect *e); +Effect *create_effect(Game *g, const char *string); +void print_effect(Effect *e); + +#endif diff --git a/01_text_adventure/flag.c b/01_text_adventure/flag.c index 4e0875e..efd648e 100644 --- a/01_text_adventure/flag.c +++ b/01_text_adventure/flag.c @@ -13,6 +13,7 @@ void load_flag(Game *g, char *line) { token = strtok(NULL, "|"); flag->value = atoi(token); + printf("AGH %s\n", token); g->flags->count++; } @@ -23,9 +24,15 @@ void game_load_flags(Game *g) { } int flag_value(Flags *f, char *key) { + Flag *flag = find_flag(f, key); + return flag ? flag->value : -1; +} + +Flag *find_flag(Flags *f, char *key) { for (int i = 0; i < f->count; i++) { - if (strcmp(f->flags[i].key, key) == 0) return f->flags[i].value; + if (strcmp(f->flags[i].key, key) == 0) return &f->flags[i]; } - return -1; + printf("Couldn't find flag %s\n", key); + return NULL; } diff --git a/01_text_adventure/flag.h b/01_text_adventure/flag.h index ac0d8d7..7f6cd9a 100644 --- a/01_text_adventure/flag.h +++ b/01_text_adventure/flag.h @@ -17,6 +17,7 @@ struct Flags { }; void game_load_flags(Game *g); +Flag *find_flag(Flags *f, char *key); int flag_value(Flags *f, char *key); #endif diff --git a/01_text_adventure/main.c b/01_text_adventure/main.c index 34132a7..daffa3b 100644 --- a/01_text_adventure/main.c +++ b/01_text_adventure/main.c @@ -30,15 +30,25 @@ int main(void) { printf("|"); for (int j = 0; j < g->actions->actions[i].predicates_count; j++) { if (j > 0) printf(" & "); - fflush(stdout); print_predicate(g->actions->actions[i].predicates[j]); } - printf("|%d|%s|effects", g->actions->actions[i].priority, g->actions->actions[i].description); + printf("|%d|%s|", g->actions->actions[i].priority, g->actions->actions[i].description); + + for (int j = 0; j < g->actions->actions[i].effects_count; j++) { + if (j > 0) printf(" & "); + print_effect(g->actions->actions[i].effects[j]); + } printf("\n"); } + printf("before action\n"); + printf("lever_pulled: %d\n", flag_value(g->flags, "LEVER_PULLED")); + cause_effect(g, g->actions->actions[2].effects[0]); + printf("after action\n"); + printf("lever_pulled: %d\n", flag_value(g->flags, "LEVER_PULLED")); + game_run_until_close(g); CloseWindow(); diff --git a/01_text_adventure/predicate.c b/01_text_adventure/predicate.c index 6e4d099..3d88b9f 100644 --- a/01_text_adventure/predicate.c +++ b/01_text_adventure/predicate.c @@ -20,7 +20,6 @@ bool predicate_fulfilled(Game *g, Predicate *p) { } Predicate *create_predicate(Game *g, const char *string) { - printf("Predicate from %s:\n", string); Predicate *p = malloc(sizeof(Predicate)); char *buffer = malloc(strlen(string) + 1); strcpy(buffer, string);