Cleanup
This commit is contained in:
parent
9ef8e88b9a
commit
03ab78940f
@ -13,7 +13,6 @@ void load_flag(Game *g, char *line) {
|
||||
|
||||
token = strtok(NULL, "|");
|
||||
flag->value = atoi(token);
|
||||
printf("AGH %s\n", token);
|
||||
|
||||
g->flags->count++;
|
||||
}
|
||||
|
@ -67,7 +67,7 @@ bool string_in(const char *input, ...) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Command command_from_string(const char *string) {
|
||||
CommandType command_from_string(const char *string) {
|
||||
if (string_in(string, "QUIT", "Q", "EXIT", "CLOSE", NULL)) {
|
||||
return COMMAND_QUIT;
|
||||
}
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
typedef struct Game Game;
|
||||
|
||||
typedef enum Command {
|
||||
typedef enum CommandType {
|
||||
COMMAND_LOOK,
|
||||
COMMAND_QUIT,
|
||||
COMMAND_UNKNOWN,
|
||||
@ -11,7 +11,7 @@ typedef enum Command {
|
||||
COMMAND_SOUTH,
|
||||
COMMAND_EAST,
|
||||
COMMAND_WEST,
|
||||
} Command;
|
||||
} CommandType;
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "input.h"
|
||||
@ -35,7 +35,7 @@ struct Game {
|
||||
};
|
||||
|
||||
Game *game_create(void);
|
||||
Command command_from_string(const char *string);
|
||||
CommandType 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);
|
||||
|
@ -22,33 +22,6 @@ int main(void) {
|
||||
game_load_flags(g);
|
||||
game_load_actions(g);
|
||||
|
||||
for (int i = 0; i < g->actions->count; i++) {
|
||||
for (int j = 0; j < g->actions->actions[i].words_count; j++) {
|
||||
printf("%s ", g->actions->actions[i].words[j]->word);
|
||||
}
|
||||
|
||||
printf("|");
|
||||
for (int j = 0; j < g->actions->actions[i].predicates_count; j++) {
|
||||
if (j > 0) printf(" & ");
|
||||
print_predicate(g->actions->actions[i].predicates[j]);
|
||||
}
|
||||
|
||||
printf("|%d|%s|", g->actions->actions[i].priority, g->actions->actions[i].description);
|
||||
|
||||
for (int j = 0; j < g->actions->actions[i].effects_count; j++) {
|
||||
if (j > 0) printf(" & ");
|
||||
print_effect(g->actions->actions[i].effects[j]);
|
||||
}
|
||||
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
printf("before action\n");
|
||||
printf("lever_pulled: %d\n", flag_value(g->flags, "LEVER_PULLED"));
|
||||
cause_effect(g, g->actions->actions[2].effects[0]);
|
||||
printf("after action\n");
|
||||
printf("lever_pulled: %d\n", flag_value(g->flags, "LEVER_PULLED"));
|
||||
|
||||
game_run_until_close(g);
|
||||
CloseWindow();
|
||||
|
||||
|
@ -27,7 +27,7 @@ void game_load_transitions(Game *g) {
|
||||
parse_multiline_string(g, data_transitions_txt, &load_transition);
|
||||
}
|
||||
|
||||
Transition *find_transition(Transitions *t, Room *from, Command via) {
|
||||
Transition *find_transition(Transitions *t, Room *from, CommandType via) {
|
||||
for (int i = 0; i < t->count; i++) {
|
||||
Transition *candidate = &t->transitions[i];
|
||||
if (candidate->from == from && candidate->via == via) return candidate;
|
||||
|
@ -9,7 +9,7 @@ typedef struct Transitions Transitions;
|
||||
|
||||
struct Transition {
|
||||
Room *from;
|
||||
Command via;
|
||||
CommandType via;
|
||||
Room *to;
|
||||
char *description;
|
||||
};
|
||||
@ -20,6 +20,6 @@ struct Transitions {
|
||||
};
|
||||
|
||||
void game_load_transitions(Game *g);
|
||||
Transition *find_transition(Transitions *t, Room *from, Command via);
|
||||
Transition *find_transition(Transitions *t, Room *from, CommandType via);
|
||||
|
||||
#endif
|
||||
|
@ -2,6 +2,7 @@
|
||||
#define _FD_WORD_
|
||||
typedef struct Word Word;
|
||||
typedef struct Words Words;
|
||||
typedef struct Words Words;
|
||||
|
||||
#include "game.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user