Move command handling to GameState
This commit is contained in:
parent
bdb228653e
commit
9611904323
10
01_text_adventure/game.c
Normal file
10
01_text_adventure/game.c
Normal 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);
|
||||
}
|
||||
}
|
@ -10,4 +10,6 @@ struct GameState {
|
||||
Input *input;
|
||||
};
|
||||
|
||||
void gs_handle_command(GameState *gs, const char *command);
|
||||
|
||||
#endif
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user