WERE BACK BABEY

This commit is contained in:
Bill Rossi 2025-01-02 20:57:00 -05:00
parent 72a07a9446
commit 630d40120b
7 changed files with 60 additions and 10 deletions

View File

@ -1,7 +1,12 @@
build: CC=gcc
gcc log.c input.c main.c -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 -o game CFLAGS=-Wall -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
run: build .PHONY: clean run
game:
$(CC) *.c $(CFLAGS) -o game
run: game
./game ./game
clean: clean:

10
01_text_adventure/game.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef _FD_GAME_
#define _FD_GAME_
#include <stdbool.h>
typedef struct GameState {
bool *should_close;
} GameState;
#endif

View File

@ -2,6 +2,7 @@
#include "input.h" #include "input.h"
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#define ENTER 257 #define ENTER 257
#define BACKSPACE 259 #define BACKSPACE 259
@ -29,8 +30,14 @@ void handleKeyPress(Input *input, int c) {
if (c == BACKSPACE) { if (c == BACKSPACE) {
pop_character(input); pop_character(input);
} else if (c == ENTER) { } else if (c == ENTER) {
push_line_to_log(input->log, input->input_buffer); printf("%s", input->input_buffer);
clear_input_buffer(input); 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 == ' ') { } else if ((c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == ' ') {
push_character(input, (char) c); push_character(input, (char) c);
} }
@ -67,3 +74,7 @@ Input *create_input(Vector2 position) {
input->input_buffer[0] = 0; input->input_buffer[0] = 0;
return input; return input;
} }
void free_input(Input* input) {
free(input);
}

View File

@ -1,3 +1,7 @@
#ifndef _FD_INPUT_
#define _FD_INPUT_
#include "game.h"
#include "log.h" #include "log.h"
#define INPUT_BUFFER_MAX_LENGTH 80 #define INPUT_BUFFER_MAX_LENGTH 80
@ -6,8 +10,12 @@ typedef struct Input {
int input_length; int input_length;
Vector2 position; Vector2 position;
Log *log; Log *log;
GameState *gs;
} Input; } Input;
void handle_pressed_keys(Input*); void handle_pressed_keys(Input*);
void draw_text(Input*); void draw_text(Input*);
Input *create_input(Vector2); Input *create_input(Vector2);
void free_input(Input*);
#endif

View File

@ -5,7 +5,7 @@
#include <string.h> #include <string.h>
void draw_log(Log* log) { 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( DrawText(
log->lines[line_num], log->lines[line_num],
190, 190,
@ -29,3 +29,10 @@ void push_line_to_log(Log* log, char* line) {
log->lines[log->line_count - 1] = malloc(strlen(line) + 1); log->lines[log->line_count - 1] = malloc(strlen(line) + 1);
strcpy(log->lines[log->line_count - 1], line); 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);
}

View File

@ -1,5 +1,5 @@
#ifndef LOG #ifndef _FD_LOG_
#define LOG #define _FD_LOG_
typedef struct Log { typedef struct Log {
char** lines; char** lines;
@ -9,5 +9,6 @@ typedef struct Log {
Log *create_log(void); Log *create_log(void);
void draw_log(Log*); void draw_log(Log*);
void push_line_to_log(Log*, char*); void push_line_to_log(Log*, char*);
void free_log(Log*);
#endif #endif

View File

@ -1,8 +1,10 @@
#include "game.h"
#include "../raylib.h" #include "../raylib.h"
#include "log.h" #include "log.h"
#include "input.h" #include "input.h"
#include <stdlib.h> #include <stdlib.h>
#include <stdbool.h>
#define TARGET_FPS 60 #define TARGET_FPS 60
@ -11,12 +13,17 @@ int main(void)
InitWindow(800, 450, "Text Adventure"); InitWindow(800, 450, "Text Adventure");
SetTargetFPS(TARGET_FPS); SetTargetFPS(TARGET_FPS);
GameState gs;
gs.should_close = malloc(1);
*(gs.should_close) = false;
Log *log = create_log(); Log *log = create_log();
Vector2 input_position = { 190, 200 }; Vector2 input_position = { 190, 200 };
Input *input = create_input(input_position); Input *input = create_input(input_position);
input->log = log; input->log = log;
input->gs = &gs;
while (!WindowShouldClose()) while (!WindowShouldClose() && !*(gs.should_close))
{ {
BeginDrawing(); BeginDrawing();
ClearBackground(BLACK); ClearBackground(BLACK);
@ -26,7 +33,8 @@ int main(void)
EndDrawing(); EndDrawing();
} }
CloseWindow(); CloseWindow();
free(input); free_input(input);
free_log(log);
return 0; return 0;
} }