thrive/01_text_adventure/flag.c

38 lines
821 B
C
Raw Normal View History

2025-01-13 19:37:38 -05:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "flag.h"
#include "game.h"
#include "util.h"
void load_flag(Game *g, char *line) {
char *token = strtok(line, "|");
Flag *flag = &g->flags->flags[g->flags->count];
flag->key = malloc(strlen(token) + 1);
strcpy(flag->key, token);
token = strtok(NULL, "|");
flag->value = atoi(token);
g->flags->count++;
}
#include "data/flags.c"
void game_load_flags(Game *g) {
parse_multiline_string(g, data_flags_txt, &load_flag);
}
int flag_value(Flags *f, char *key) {
2025-01-18 19:34:45 -05:00
Flag *flag = find_flag(f, key);
return flag ? flag->value : -1;
}
Flag *find_flag(Flags *f, char *key) {
2025-01-13 19:37:38 -05:00
for (int i = 0; i < f->count; i++) {
2025-01-18 19:34:45 -05:00
if (strcmp(f->flags[i].key, key) == 0) return &f->flags[i];
2025-01-13 19:37:38 -05:00
}
2025-01-18 19:34:45 -05:00
printf("Couldn't find flag %s\n", key);
return NULL;
2025-01-13 19:37:38 -05:00
}