thrive/word.c

42 lines
1.1 KiB
C
Raw Normal View History

2025-01-12 19:50:11 -05:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "word.h"
#include "game.h"
#include "util.h"
void load_word(Game *g, char *line) {
char *token = strtok(line, "|");
Word *word = &g->words->words[g->words->count];
word->word = malloc(strlen(token) + 1);
strcpy(word->word, token);
word->synonyms_count = 0;
while ((token = strtok(NULL, ",")) != NULL) {
word->synonyms[word->synonyms_count] = malloc(strlen(token) + 1);
strcpy(word->synonyms[word->synonyms_count], token);
word->synonyms_count++;
}
g->words->count++;
}
#include "data/words.c"
void game_load_words(Game *g) {
2025-01-19 10:10:42 -05:00
g->words = malloc(sizeof(Words));
g->words->count = 0;
2025-01-12 19:50:11 -05:00
parse_multiline_string(g, data_words_txt, &load_word);
2025-01-19 10:10:42 -05:00
printf("loaded words\n");
2025-01-12 19:50:11 -05:00
}
2025-01-12 20:15:25 -05:00
Word *find_word(Words *words, char *word_or_syn) {
for (int i = 0; i < words->count; i++) {
for (int j = 0; j < words->words[i].synonyms_count; j++) {
if (strcmp(words->words[i].synonyms[j], word_or_syn) == 0) return &words->words[i];
}
}
2025-01-16 20:15:50 -05:00
printf("Can't find %s\n", word_or_syn);
2025-01-12 20:15:25 -05:00
return NULL;
}