Circular dependencies yes

This commit is contained in:
Bill Rossi 2025-01-03 20:58:02 -05:00
parent 630d40120b
commit 4da1c6d868
3 changed files with 16 additions and 9 deletions

View File

@ -2,9 +2,12 @@
#define _FD_GAME_
#include <stdbool.h>
typedef struct GameState GameState;
#include "input.h"
typedef struct GameState {
struct GameState {
bool *should_close;
} GameState;
Input *input;
};
#endif

View File

@ -1,17 +1,20 @@
#ifndef _FD_INPUT_
#define _FD_INPUT_
typedef struct Input Input;
#include <raylib.h>
#include "game.h"
#include "log.h"
#define INPUT_BUFFER_MAX_LENGTH 80
typedef struct Input {
struct Input {
char input_buffer[INPUT_BUFFER_MAX_LENGTH];
int input_length;
Vector2 position;
Log *log;
GameState *gs;
} Input;
};
void handle_pressed_keys(Input*);
void draw_text(Input*);

View File

@ -13,17 +13,18 @@ int main(void)
InitWindow(800, 450, "Text Adventure");
SetTargetFPS(TARGET_FPS);
GameState gs;
gs.should_close = malloc(1);
*(gs.should_close) = false;
GameState *gs = malloc(sizeof(GameState));
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;
input->gs = gs;
gs->input = input;
while (!WindowShouldClose() && !*(gs.should_close))
while (!WindowShouldClose() && !*(gs->should_close))
{
BeginDrawing();
ClearBackground(BLACK);