diff --git a/01_text_adventure/Makefile b/01_text_adventure/Makefile index 4b92199..484bdc7 100644 --- a/01_text_adventure/Makefile +++ b/01_text_adventure/Makefile @@ -1,7 +1,12 @@ -build: - gcc log.c input.c main.c -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 -o game +CC=gcc +CFLAGS=-Wall -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 -run: build +.PHONY: clean run + +game: + $(CC) *.c $(CFLAGS) -o game + +run: game ./game clean: diff --git a/01_text_adventure/game.h b/01_text_adventure/game.h new file mode 100644 index 0000000..bf390a5 --- /dev/null +++ b/01_text_adventure/game.h @@ -0,0 +1,10 @@ +#ifndef _FD_GAME_ +#define _FD_GAME_ + +#include + +typedef struct GameState { + bool *should_close; +} GameState; + +#endif diff --git a/01_text_adventure/input.c b/01_text_adventure/input.c index ec0d084..7962ee6 100644 --- a/01_text_adventure/input.c +++ b/01_text_adventure/input.c @@ -2,6 +2,7 @@ #include "input.h" #include #include +#include #define ENTER 257 #define BACKSPACE 259 @@ -29,8 +30,14 @@ void handleKeyPress(Input *input, int c) { if (c == BACKSPACE) { pop_character(input); } else if (c == ENTER) { - push_line_to_log(input->log, input->input_buffer); - clear_input_buffer(input); + 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); + } } else if ((c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == ' ') { push_character(input, (char) c); } @@ -67,3 +74,7 @@ Input *create_input(Vector2 position) { input->input_buffer[0] = 0; return input; } + +void free_input(Input* input) { + free(input); +} diff --git a/01_text_adventure/input.h b/01_text_adventure/input.h index 6709fac..0b14c14 100644 --- a/01_text_adventure/input.h +++ b/01_text_adventure/input.h @@ -1,3 +1,7 @@ +#ifndef _FD_INPUT_ +#define _FD_INPUT_ + +#include "game.h" #include "log.h" #define INPUT_BUFFER_MAX_LENGTH 80 @@ -6,8 +10,12 @@ typedef struct Input { int input_length; Vector2 position; Log *log; + GameState *gs; } Input; void handle_pressed_keys(Input*); void draw_text(Input*); Input *create_input(Vector2); +void free_input(Input*); + +#endif diff --git a/01_text_adventure/log.c b/01_text_adventure/log.c index 95546ce..2fc44d2 100644 --- a/01_text_adventure/log.c +++ b/01_text_adventure/log.c @@ -5,7 +5,7 @@ #include void draw_log(Log* log) { - for(int line_num = log->line_count - 1; line_num >= 0; line_num--) { + for(int line_num = 0; line_num < log->line_count; line_num++) { DrawText( log->lines[line_num], 190, @@ -29,3 +29,10 @@ void push_line_to_log(Log* log, char* line) { log->lines[log->line_count - 1] = malloc(strlen(line) + 1); strcpy(log->lines[log->line_count - 1], line); } + +void free_log(Log* log) { + for(int line_num = 0; line_num < log->line_count; line_num++) { + free(log->lines[line_num]); + } + free(log->lines); +} diff --git a/01_text_adventure/log.h b/01_text_adventure/log.h index 43b4af0..b6b74c8 100644 --- a/01_text_adventure/log.h +++ b/01_text_adventure/log.h @@ -1,5 +1,5 @@ -#ifndef LOG -#define LOG +#ifndef _FD_LOG_ +#define _FD_LOG_ typedef struct Log { char** lines; @@ -9,5 +9,6 @@ typedef struct Log { Log *create_log(void); void draw_log(Log*); void push_line_to_log(Log*, char*); +void free_log(Log*); #endif diff --git a/01_text_adventure/main.c b/01_text_adventure/main.c index 01bd1b7..be79a4b 100644 --- a/01_text_adventure/main.c +++ b/01_text_adventure/main.c @@ -1,8 +1,10 @@ +#include "game.h" #include "../raylib.h" #include "log.h" #include "input.h" #include +#include #define TARGET_FPS 60 @@ -11,12 +13,17 @@ int main(void) InitWindow(800, 450, "Text Adventure"); SetTargetFPS(TARGET_FPS); + GameState gs; + gs.should_close = malloc(1); + *(gs.should_close) = false; + Log *log = create_log(); Vector2 input_position = { 190, 200 }; Input *input = create_input(input_position); input->log = log; + input->gs = &gs; - while (!WindowShouldClose()) + while (!WindowShouldClose() && !*(gs.should_close)) { BeginDrawing(); ClearBackground(BLACK); @@ -26,7 +33,8 @@ int main(void) EndDrawing(); } CloseWindow(); - free(input); + free_input(input); + free_log(log); return 0; }