Additional free
code, plus refactoring
This commit is contained in:
parent
349dbfcab9
commit
00c7e619c1
@ -2,11 +2,33 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "game.h"
|
#include "game.h"
|
||||||
|
#include "input.h"
|
||||||
|
#include "log.h"
|
||||||
|
|
||||||
Game *game_create(void) {
|
Game *game_create(void) {
|
||||||
Game *g = malloc(sizeof(Game));
|
Game *g = malloc(sizeof(Game));
|
||||||
g->should_close = false;
|
g->should_close = false;
|
||||||
g->rooms.count = 0;
|
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) {
|
void game_handle_command(Game *g, const char *command) {
|
||||||
@ -40,4 +62,26 @@ void game_load_rooms(Game *g) {
|
|||||||
g->rooms.count++;
|
g->rooms.count++;
|
||||||
}
|
}
|
||||||
fclose(rooms_file);
|
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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,10 +5,12 @@
|
|||||||
typedef struct Game Game;
|
typedef struct Game Game;
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "room.h"
|
#include "room.h"
|
||||||
|
#include "log.h"
|
||||||
|
|
||||||
struct Game {
|
struct Game {
|
||||||
bool should_close;
|
bool should_close;
|
||||||
Input *input;
|
Input *input;
|
||||||
|
Log *log;
|
||||||
Rooms rooms;
|
Rooms rooms;
|
||||||
Room *current_room;
|
Room *current_room;
|
||||||
};
|
};
|
||||||
@ -16,5 +18,9 @@ struct Game {
|
|||||||
Game *game_create(void);
|
Game *game_create(void);
|
||||||
void game_handle_command(Game *g, const char *command);
|
void game_handle_command(Game *g, const char *command);
|
||||||
void game_load_rooms(Game *g);
|
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
|
#endif
|
||||||
|
@ -14,30 +14,11 @@ int main(void) {
|
|||||||
SetTargetFPS(TARGET_FPS);
|
SetTargetFPS(TARGET_FPS);
|
||||||
|
|
||||||
Game *g = game_create();
|
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);
|
game_load_rooms(g);
|
||||||
g->current_room = &g->rooms.rooms[0];
|
|
||||||
|
|
||||||
while (!WindowShouldClose() && !g->should_close)
|
game_run_until_close(g);
|
||||||
{
|
|
||||||
BeginDrawing();
|
|
||||||
ClearBackground(BLACK);
|
|
||||||
handle_pressed_keys(input);
|
|
||||||
draw_log(log);
|
|
||||||
draw_text(input);
|
|
||||||
EndDrawing();
|
|
||||||
}
|
|
||||||
CloseWindow();
|
CloseWindow();
|
||||||
free_input(input);
|
|
||||||
free_log(log);
|
|
||||||
|
|
||||||
|
free_game(g);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
14
01_text_adventure/room.c
Normal file
14
01_text_adventure/room.c
Normal 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]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -14,4 +14,7 @@ struct Rooms {
|
|||||||
int count;
|
int count;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void free_room(Room r);
|
||||||
|
void free_rooms(Rooms r);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user