Additional free code, plus refactoring

This commit is contained in:
Bill Rossi 2025-01-04 05:01:06 -05:00
parent 349dbfcab9
commit 00c7e619c1
5 changed files with 69 additions and 21 deletions

View File

@ -2,11 +2,33 @@
#include <string.h>
#include <stdlib.h>
#include "game.h"
#include "input.h"
#include "log.h"
Game *game_create(void) {
Game *g = malloc(sizeof(Game));
g->should_close = false;
g->rooms.count = 0;
Log *log = create_log();
g->log = log;
Vector2 input_position = { 190, 200 };
Input *input = create_input(input_position);
input->log = log;
input->g = g;
input->command = '>'; // Don't change this
g->input = input;
return g;
}
void free_game(Game *g) {
free_rooms(g->rooms);
free_input(g->input);
free_log(g->log);
free(g);
}
void game_handle_command(Game *g, const char *command) {
@ -40,4 +62,26 @@ void game_load_rooms(Game *g) {
g->rooms.count++;
}
fclose(rooms_file);
g->current_room = &g->rooms.rooms[0];
}
void game_handle_input(Game *g) {
handle_pressed_keys(g->input);
}
void game_draw(Game *g) {
BeginDrawing();
ClearBackground(BLACK);
draw_log(g->log);
draw_text(g->input);
EndDrawing();
}
void game_run_until_close(Game *g) {
while (!WindowShouldClose() && !g->should_close)
{
game_handle_input(g);
game_draw(g);
}
}

View File

@ -5,10 +5,12 @@
typedef struct Game Game;
#include "input.h"
#include "room.h"
#include "log.h"
struct Game {
bool should_close;
Input *input;
Log *log;
Rooms rooms;
Room *current_room;
};
@ -16,5 +18,9 @@ struct Game {
Game *game_create(void);
void game_handle_command(Game *g, const char *command);
void game_load_rooms(Game *g);
void game_run_until_close(Game *g);
void game_handle_input(Game *g);
void game_draw(Game *g);
void free_game(Game *g);
#endif

View File

@ -14,30 +14,11 @@ int main(void) {
SetTargetFPS(TARGET_FPS);
Game *g = game_create();
Log *log = create_log();
Vector2 input_position = { 190, 200 };
Input *input = create_input(input_position);
input->log = log;
input->g = g;
input->command = '>'; // Don't change this
g->input = input;
game_load_rooms(g);
g->current_room = &g->rooms.rooms[0];
while (!WindowShouldClose() && !g->should_close)
{
BeginDrawing();
ClearBackground(BLACK);
handle_pressed_keys(input);
draw_log(log);
draw_text(input);
EndDrawing();
}
game_run_until_close(g);
CloseWindow();
free_input(input);
free_log(log);
free_game(g);
return 0;
}

14
01_text_adventure/room.c Normal file
View File

@ -0,0 +1,14 @@
#include <stdlib.h>
#include "room.h"
void free_room(Room r) {
free(r.name);
free(r.description);
}
void free_rooms(Rooms r) {
for (int i = 0; i < r.count; i++) {
free_room(r.rooms[i]);
}
}

View File

@ -14,4 +14,7 @@ struct Rooms {
int count;
};
void free_room(Room r);
void free_rooms(Rooms r);
#endif