X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=a38c54657f42dd1fadffed8a561b28dbb10c9f28;hb=854e21a1af4f01df70b31dc32500c2ec805f0f7e;hp=b1c50d18ee76e6b4425fff5fd6943f0159cfdfef;hpb=63152e67145eb22371a45a4ae6d3ba35bd221847;p=open-adventure.git diff --git a/misc.c b/misc.c index b1c50d1..a38c546 100644 --- a/misc.c +++ b/misc.c @@ -35,7 +35,7 @@ void* xmalloc(size_t size) return (ptr); } -void packed_to_token(long packed, char token[6]) +void packed_to_token(long packed, char token[TOKLEN+1]) { // The advent->ascii mapping. const char advent_to_ascii[] = { @@ -68,7 +68,7 @@ void packed_to_token(long packed, char token[6]) } } -long token_to_packed(const char token[6]) +long token_to_packed(const char token[TOKLEN+1]) { const char ascii_to_advent[] = { 63, 63, 63, 63, 63, 63, 63, 63, @@ -100,20 +100,15 @@ long token_to_packed(const char token[6]) return (packed); } -void tokenize(char* raw, long tokens[4]) +void tokenize(char* raw, struct command_t *cmd) { - // set each token to 0 - for (int i = 0; i < 4; ++i) - tokens[i] = 0; + memset(cmd, '\0', sizeof(struct command_t)); - // grab the first two words - char* words[2]; - words[0] = (char*) xmalloc(strlen(raw) + 1); - words[1] = (char*) xmalloc(strlen(raw) + 1); - int word_count = sscanf(raw, "%s%s", words[0], words[1]); + /* FIXME: put a bound prefix on the %s to prevent buffer overflow */ + int word_count = sscanf(raw, "%s%s", cmd->raw1, cmd->raw2); // make space for substrings and zero it out - char chunk_data[][6] = { + char chunk_data[][TOKLEN+1] = { {"\0\0\0\0\0"}, {"\0\0\0\0\0"}, {"\0\0\0\0\0"}, @@ -121,11 +116,9 @@ void tokenize(char* raw, long tokens[4]) }; // break the words into up to 4 5-char substrings - sscanf(words[0], "%5s%5s", chunk_data[0], chunk_data[1]); + sscanf(cmd->raw1, "%5s%5s", chunk_data[0], chunk_data[1]); if (word_count == 2) - sscanf(words[1], "%5s%5s", chunk_data[2], chunk_data[3]); - free(words[0]); - free(words[1]); + sscanf(cmd->raw2, "%5s%5s", chunk_data[2], chunk_data[3]); // uppercase all the substrings for (int i = 0; i < 4; ++i) @@ -133,8 +126,10 @@ void tokenize(char* raw, long tokens[4]) chunk_data[i][j] = (char) toupper(chunk_data[i][j]); // pack the substrings - for (int i = 0; i < 4; ++i) - tokens[i] = token_to_packed(chunk_data[i]); + cmd->wd1 = token_to_packed(chunk_data[0]); + cmd->wd1x = token_to_packed(chunk_data[1]); + cmd->wd2 = token_to_packed(chunk_data[2]); + cmd->wd2x = token_to_packed(chunk_data[3]); } /* Hide the fact that wods are corrently packed longs */ @@ -679,7 +674,7 @@ long randrange(long range) return range * get_next_lcg_value() / game.lcg_m; } -void make_zzword(char zzword[6]) +void make_zzword(char zzword[TOKLEN+1]) { for (int i = 0; i < 5; ++i) { zzword[i] = 'A' + randrange(26);