thrive/parse.c

30 lines
629 B
C
Raw Normal View History

2025-01-12 20:15:25 -05:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "game.h"
#include "word.h"
2025-01-19 09:25:55 -05:00
#include "parse.h"
Command *parse(Game *g, const char *typed_command) {
Command *c = malloc(sizeof(Command));
for (int i = 0; i < MAX_WORDS_IN_COMMAND; i++) {
c->words[i] = NULL;
}
2025-01-12 20:15:25 -05:00
char *bluh = malloc(strlen(typed_command) + 1);
strcpy(bluh, typed_command);
int word_count = 0;
char *token = strtok(bluh, " ");
while (word_count < MAX_WORDS_IN_COMMAND && token != NULL) {
2025-01-19 09:25:55 -05:00
c->words[word_count] = find_word(g->words, token);
2025-01-12 20:15:25 -05:00
word_count++;
token = strtok(NULL, " ");
}
free(bluh);
2025-01-19 09:25:55 -05:00
return c;
2025-01-12 20:15:25 -05:00
}