thrive/01_text_adventure/game.h

47 lines
845 B
C

#ifndef _FD_GAME_
#define _FD_GAME_
typedef struct Game Game;
typedef enum Command {
COMMAND_LOOK,
COMMAND_QUIT,
COMMAND_UNKNOWN,
COMMAND_NORTH,
COMMAND_SOUTH,
COMMAND_EAST,
COMMAND_WEST,
} Command;
#include <stdbool.h>
#include "input.h"
#include "room.h"
#include "transition.h"
#include "log.h"
#include "word.h"
#include "flag.h"
#include "action.h"
struct Game {
bool should_close;
Input *input;
Log *log;
Rooms *rooms;
Room *current_room;
Transitions *transitions;
Words *words;
Flags *flags;
Actions *actions;
};
Game *game_create(void);
Command command_from_string(const char *string);
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