This commit is contained in:
Bill Rossi 2025-01-19 08:39:00 -05:00
parent 9ef8e88b9a
commit 03ab78940f
7 changed files with 8 additions and 35 deletions

View File

@ -13,7 +13,6 @@ void load_flag(Game *g, char *line) {
token = strtok(NULL, "|"); token = strtok(NULL, "|");
flag->value = atoi(token); flag->value = atoi(token);
printf("AGH %s\n", token);
g->flags->count++; g->flags->count++;
} }

View File

@ -67,7 +67,7 @@ bool string_in(const char *input, ...) {
return false; 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)) { if (string_in(string, "QUIT", "Q", "EXIT", "CLOSE", NULL)) {
return COMMAND_QUIT; return COMMAND_QUIT;
} }

View File

@ -3,7 +3,7 @@
typedef struct Game Game; typedef struct Game Game;
typedef enum Command { typedef enum CommandType {
COMMAND_LOOK, COMMAND_LOOK,
COMMAND_QUIT, COMMAND_QUIT,
COMMAND_UNKNOWN, COMMAND_UNKNOWN,
@ -11,7 +11,7 @@ typedef enum Command {
COMMAND_SOUTH, COMMAND_SOUTH,
COMMAND_EAST, COMMAND_EAST,
COMMAND_WEST, COMMAND_WEST,
} Command; } CommandType;
#include <stdbool.h> #include <stdbool.h>
#include "input.h" #include "input.h"
@ -35,7 +35,7 @@ struct Game {
}; };
Game *game_create(void); 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_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_run_until_close(Game *g);

View File

@ -22,33 +22,6 @@ int main(void) {
game_load_flags(g); game_load_flags(g);
game_load_actions(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); game_run_until_close(g);
CloseWindow(); CloseWindow();

View File

@ -27,7 +27,7 @@ void game_load_transitions(Game *g) {
parse_multiline_string(g, data_transitions_txt, &load_transition); 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++) { for (int i = 0; i < t->count; i++) {
Transition *candidate = &t->transitions[i]; Transition *candidate = &t->transitions[i];
if (candidate->from == from && candidate->via == via) return candidate; if (candidate->from == from && candidate->via == via) return candidate;

View File

@ -9,7 +9,7 @@ typedef struct Transitions Transitions;
struct Transition { struct Transition {
Room *from; Room *from;
Command via; CommandType via;
Room *to; Room *to;
char *description; char *description;
}; };
@ -20,6 +20,6 @@ struct Transitions {
}; };
void game_load_transitions(Game *g); 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 #endif

View File

@ -2,6 +2,7 @@
#define _FD_WORD_ #define _FD_WORD_
typedef struct Word Word; typedef struct Word Word;
typedef struct Words Words; typedef struct Words Words;
typedef struct Words Words;
#include "game.h" #include "game.h"