thrive/01_text_adventure/main.c

47 lines
1.0 KiB
C
Raw Normal View History

2025-01-02 20:57:00 -05:00
#include "game.h"
2024-08-28 17:27:35 -04:00
#include "../raylib.h"
2024-08-30 06:27:14 -04:00
#include "log.h"
2024-08-28 17:27:35 -04:00
#include "input.h"
#include <stdlib.h>
2025-01-02 20:57:00 -05:00
#include <stdbool.h>
2024-08-28 17:27:35 -04:00
#define TARGET_FPS 60
2025-01-03 20:59:10 -05:00
int main(void) {
2024-08-28 17:27:35 -04:00
InitWindow(800, 450, "Text Adventure");
SetTargetFPS(TARGET_FPS);
2025-01-03 20:58:02 -05:00
GameState *gs = malloc(sizeof(GameState));
gs->should_close = malloc(1);
*(gs->should_close) = false;
2025-01-02 20:57:00 -05:00
2024-08-30 06:27:14 -04:00
Log *log = create_log();
Vector2 input_position = { 190, 200 };
Input *input = create_input(input_position);
input->log = log;
2025-01-03 20:58:02 -05:00
input->gs = gs;
input->command = '>'; // Don't change this
2025-01-03 20:58:02 -05:00
gs->input = input;
2024-08-28 17:27:35 -04:00
gs->rooms = malloc(sizeof(Room));
Room *room = &gs->rooms[0];
room->name = "First room";
room->description = "You are in an enormous room. It is big but empty.";
2025-01-03 20:58:02 -05:00
while (!WindowShouldClose() && !*(gs->should_close))
2024-08-28 17:27:35 -04:00
{
BeginDrawing();
ClearBackground(BLACK);
handle_pressed_keys(input);
2024-08-30 06:27:14 -04:00
draw_log(log);
draw_text(input);
2024-08-28 17:27:35 -04:00
EndDrawing();
}
CloseWindow();
2025-01-02 20:57:00 -05:00
free_input(input);
free_log(log);
2024-08-28 17:27:35 -04:00
return 0;
}