From 465ac02048052da64c6d432624a02b3a23bc57f4 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sun, 19 Jan 2025 10:10:42 -0500 Subject: [PATCH] Cleanup --- 01_text_adventure/action.c | 3 ++ 01_text_adventure/flag.c | 3 ++ 01_text_adventure/game.c | 57 ++++++-------------------------------- 01_text_adventure/game.h | 3 +- 01_text_adventure/main.c | 20 +++---------- 01_text_adventure/room.c | 4 +++ 01_text_adventure/word.c | 3 ++ 7 files changed, 28 insertions(+), 65 deletions(-) diff --git a/01_text_adventure/action.c b/01_text_adventure/action.c index 4654695..d5dad65 100644 --- a/01_text_adventure/action.c +++ b/01_text_adventure/action.c @@ -61,7 +61,10 @@ void load_action(Game *g, char *line) { #include "data/actions.c" void game_load_actions(Game *g) { + g->actions = malloc(sizeof(Actions)); + g->actions->count = 0; parse_multiline_string(g, data_actions_txt, &load_action); + printf("loaded actions\n"); } Action *find_action(Game *g, const char *command) { diff --git a/01_text_adventure/flag.c b/01_text_adventure/flag.c index 7d379bf..f1afd0c 100644 --- a/01_text_adventure/flag.c +++ b/01_text_adventure/flag.c @@ -19,7 +19,10 @@ void load_flag(Game *g, char *line) { #include "data/flags.c" void game_load_flags(Game *g) { + g->flags = malloc(sizeof(Flags)); + g->flags->count = 0; parse_multiline_string(g, data_flags_txt, &load_flag); + printf("loaded flags\n"); } int flag_value(Flags *f, char *key) { diff --git a/01_text_adventure/game.c b/01_text_adventure/game.c index d243b9d..4bfa726 100644 --- a/01_text_adventure/game.c +++ b/01_text_adventure/game.c @@ -16,8 +16,10 @@ Game *game_create(void) { Game *g = malloc(sizeof(Game)); g->should_close = false; - g->rooms = malloc(sizeof(Rooms)); - g->rooms->count = 0; + game_load_words(g); + game_load_flags(g); + game_load_actions(g); + game_load_rooms(g); Log *log = create_log(); g->log = log; @@ -31,15 +33,6 @@ Game *game_create(void) { g->input = input; - g->words = malloc(sizeof(Words)); - g->words->count = 0; - - g->flags = malloc(sizeof(Flags)); - g->flags->count = 0; - - g->actions = malloc(sizeof(Actions)); - g->actions->count = 0; - return g; } @@ -50,45 +43,13 @@ void free_game(Game *g) { free(g); } -bool string_in(const char *input, ...) { - va_list argp; - va_start(argp, input); - char *candidate; - while ((candidate = va_arg(argp, char*))) { - if (strcmp(input, candidate) == 0) { - va_end(argp); - return true; - } - } - - return false; -} - -CommandType command_from_string(const char *string) { - if (string_in(string, "QUIT", "Q", "EXIT", "CLOSE", NULL)) { - return COMMAND_QUIT; - } - if (string_in(string, "LOOK", "L", NULL)) { - return COMMAND_LOOK; - } - if (string_in(string, "NORTH", "N", NULL)) { - return COMMAND_NORTH; - } - if (string_in(string, "SOUTH", "S", NULL)) { - return COMMAND_SOUTH; - } - if (string_in(string, "EAST", "E", NULL)) { - return COMMAND_EAST; - } - if (string_in(string, "WEST", "W", NULL)) { - return COMMAND_WEST; - } - - return COMMAND_UNKNOWN; -} - #define INVALID_COMMAND "I don't know how to %s" void game_handle_command(Game *g, const char *command) { + if (strlen(command) == 0) { + push_line_to_log(g->input->log, "?"); + return; + } + Action *a = find_action(g, command); if (a) { if (strcmp(a->description, "*") != 0) push_line_to_log(g->input->log, a->description); diff --git a/01_text_adventure/game.h b/01_text_adventure/game.h index d7ddbb1..33fb878 100644 --- a/01_text_adventure/game.h +++ b/01_text_adventure/game.h @@ -1,6 +1,8 @@ #ifndef _FD_GAME_ #define _FD_GAME_ +#include + typedef struct Game Game; typedef enum CommandType { @@ -13,7 +15,6 @@ typedef enum CommandType { COMMAND_WEST, } CommandType; -#include #include "input.h" #include "room.h" #include "log.h" diff --git a/01_text_adventure/main.c b/01_text_adventure/main.c index 1f7e697..e80cd8d 100644 --- a/01_text_adventure/main.c +++ b/01_text_adventure/main.c @@ -1,28 +1,16 @@ -#include "game.h" -#include "../raylib.h" -#include "log.h" -#include "input.h" -#include "parse.h" - #include #include #include -#define TARGET_FPS 60 +#include "../raylib.h" + +#include "game.h" int main(void) { InitWindow(800, 450, "Text Adventure"); - SetTargetFPS(TARGET_FPS); + SetTargetFPS(60); Game *g = game_create(); - game_load_rooms(g); - g->current_room = &g->rooms->rooms[0]; - game_load_words(g); - printf("loaded words\n"); - game_load_flags(g); - printf("loaded flags\n"); - game_load_actions(g); - printf("loaded actions\n"); game_run_until_close(g); CloseWindow(); diff --git a/01_text_adventure/room.c b/01_text_adventure/room.c index eccb5bc..df88132 100644 --- a/01_text_adventure/room.c +++ b/01_text_adventure/room.c @@ -20,7 +20,11 @@ void load_room(Game *g, char *line) { #include "data/rooms.c" void game_load_rooms(Game *g) { + g->rooms = malloc(sizeof(Rooms)); + g->rooms->count = 0; parse_multiline_string(g, data_rooms_txt, &load_room); + printf("loaded rooms\n"); + g->current_room = &g->rooms->rooms[0]; } void free_room(Room r) { diff --git a/01_text_adventure/word.c b/01_text_adventure/word.c index 04532b4..2f4a628 100644 --- a/01_text_adventure/word.c +++ b/01_text_adventure/word.c @@ -23,7 +23,10 @@ void load_word(Game *g, char *line) { #include "data/words.c" void game_load_words(Game *g) { + g->words = malloc(sizeof(Words)); + g->words->count = 0; parse_multiline_string(g, data_words_txt, &load_word); + printf("loaded words\n"); } Word *find_word(Words *words, char *word_or_syn) {