Move command handling to GameState

This commit is contained in:
Bill Rossi 2025-01-03 21:07:44 -05:00
parent bdb228653e
commit 9611904323
3 changed files with 18 additions and 8 deletions

10
01_text_adventure/game.c Normal file
View File

@ -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);
}
}

View File

@ -10,4 +10,6 @@ struct GameState {
Input *input;
};
void gs_handle_command(GameState *gs, const char *command);
#endif

View File

@ -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);
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);
}