thrive/game.h

51 lines
926 B
C
Raw Permalink Normal View History

2025-01-02 20:57:00 -05:00
#ifndef _FD_GAME_
#define _FD_GAME_
2025-01-19 10:10:42 -05:00
#include <stdbool.h>
2025-01-04 04:45:44 -05:00
typedef struct Game Game;
2025-01-04 05:28:46 -05:00
2025-01-19 08:39:00 -05:00
typedef enum CommandType {
2025-01-05 17:18:51 -05:00
COMMAND_LOOK,
COMMAND_QUIT,
COMMAND_UNKNOWN,
COMMAND_NORTH,
COMMAND_SOUTH,
COMMAND_EAST,
COMMAND_WEST,
2025-01-19 08:39:00 -05:00
} CommandType;
2025-01-05 17:18:51 -05:00
2025-01-03 20:58:02 -05:00
#include "input.h"
#include "room.h"
#include "room_in.h"
#include "log.h"
2025-01-12 19:50:11 -05:00
#include "word.h"
2025-01-13 19:37:38 -05:00
#include "flag.h"
2025-01-16 20:15:50 -05:00
#include "action.h"
2025-01-21 20:38:34 -05:00
#include "item.h"
2025-01-02 20:57:00 -05:00
2025-01-04 04:45:44 -05:00
struct Game {
bool should_close;
2025-01-03 20:58:02 -05:00
Input *input;
Log *log;
2025-01-05 17:18:51 -05:00
Rooms *rooms;
RoomIns *room_ins;
2025-01-04 04:45:44 -05:00
Room *current_room;
2025-01-12 19:50:11 -05:00
Words *words;
2025-01-13 19:37:38 -05:00
Flags *flags;
2025-01-16 20:15:50 -05:00
Actions *actions;
2025-01-21 20:38:34 -05:00
Items *items;
2025-01-03 20:58:02 -05:00
};
2025-01-02 20:57:00 -05:00
2025-01-04 04:45:44 -05:00
Game *game_create(void);
2025-01-19 08:39:00 -05:00
CommandType command_from_string(const char *string);
2025-01-04 04:45:44 -05:00
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);
void change_current_room(Game *g, Room *r);
2025-01-03 21:07:44 -05:00
2025-01-02 20:57:00 -05:00
#endif