diff --git a/01_text_adventure/game.c b/01_text_adventure/game.c new file mode 100644 index 0000000..47dec9a --- /dev/null +++ b/01_text_adventure/game.c @@ -0,0 +1,10 @@ +#include "game.h" + +void gs_handle_command(GameState *gs, const char *command) { + Input *input = gs->input; + if (strcmp(input->input_buffer, "QUIT") == 0) { + *(gs->should_close) = true; + } else { + push_input_buffer_to_log(input); + } +} diff --git a/01_text_adventure/game.h b/01_text_adventure/game.h index 8c9a908..9e4cab3 100644 --- a/01_text_adventure/game.h +++ b/01_text_adventure/game.h @@ -10,4 +10,6 @@ struct GameState { Input *input; }; +void gs_handle_command(GameState *gs, const char *command); + #endif diff --git a/01_text_adventure/input.c b/01_text_adventure/input.c index 783e713..d70cb9c 100644 --- a/01_text_adventure/input.c +++ b/01_text_adventure/input.c @@ -26,18 +26,16 @@ void clear_input_buffer(Input *input) { input->input_length = 0; } +void push_input_buffer_to_log(Input *input) { + push_line_to_log(input->log, input->input_buffer); +} + void handleKeyPress(Input *input, int c) { if (c == BACKSPACE) { pop_character(input); } else if (c == ENTER) { - printf("%s", input->input_buffer); - fflush(stdout); - if (strcmp(input->input_buffer, "QUIT") == 0) { - *(input->gs->should_close) = true; - } else { - push_line_to_log(input->log, input->input_buffer); - clear_input_buffer(input); - } + gs_handle_command(input->gs, input->input_buffer); + clear_input_buffer(input); } else if ((c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == ' ') { push_character(input, (char) c); }