X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fcommand_db.c;h=68d4ce2dfd7f8908dd188d85b39195e7337fef59;hb=20da835cb5f85fc3416caef6e70bd74711bd75d0;hp=ef84c493fb42f1f04c886d323c61d0bfafd67388;hpb=c53b42dfc7e4de104f9189428dd5b9a0d431c00a;p=plomrogue diff --git a/src/client/command_db.c b/src/client/command_db.c index ef84c49..68d4ce2 100644 --- a/src/client/command_db.c +++ b/src/client/command_db.c @@ -1,16 +1,22 @@ -/* src/client/command_db.c */ +/* src/client/command_db.c + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. + */ #define _POSIX_C_SOURCE 200809L /* strdup() */ #include "command_db.h" #include /* NULL */ #include /* uint8_t */ #include /* free() */ -#include /* memset(), strcmp(), strdup() */ -#include "../common/parse_file.h" /* EDIT_STARTED, parse_file(), set_val(), - * token_from_line(), err_line() - */ -#include "../common/try_malloc.h" /* try_malloc() */ +#include /* strcmp(), strdup() */ #include "array_append.h" /* array_append() */ +#include "parse.h" /* EDIT_STARTED, parse_init_entry(), parse_id_uniq(), + * parse_unknown_arg(), parsetest_too_many_values(), + * parse_file(), parse_and_reduce_to_readyflag(), + * parse_flagval() + */ #include "world.h" /* global world */ #include "cleanup.h" /* set_cleanup_flag() */ @@ -27,14 +33,12 @@ enum cmd_flag -/* Get tokens from "context" and, by their order (in the individual context and - * in subsequent calls of this function), interpret them as data to write into - * the CommandDB. +/* Interpret "token0" and "token1" as data to write into the CommandDB. * * Individual CommandDB entries are put together line by line before being * written. Writing happens after all necessary members of an entry have been - * assembled, and when additionally a) a new entry is started by a - * context->token0 of "COMMAND"; or b) a NULL context->token0 is passed. + * assembled, and when additionally a) a new entry is started by a "token0" of + * "COMMAND"; or b) of "token0" of NULL is passed. */ static void tokens_into_entries(char * token0, char * token1); @@ -42,14 +46,12 @@ static void tokens_into_entries(char * token0, char * token1); static void tokens_into_entries(char * token0, char * token1) { - char * f_name = "tokens_into_entries()"; char * str_cmd = "COMMAND"; static uint8_t cmd_flags = READY_CMD; static struct Command * cmd = NULL; if (!token0 || !strcmp(token0, str_cmd)) { - char * err_fin = "Last definition block not finished yet."; - err_line((cmd_flags & READY_CMD) ^ READY_CMD, err_fin); + parse_and_reduce_to_readyflag(&cmd_flags, READY_CMD); if (cmd) { array_append(world.commandDB.n, sizeof(struct Command), @@ -59,25 +61,25 @@ static void tokens_into_entries(char * token0, char * token1) cmd = NULL; } } - err_line(token0 && NULL != token_from_line(NULL), "Too many values."); - if (token0 && !strcmp(token0, str_cmd)) - { - char * err_uniq = "Declaration of ID already used."; - cmd_flags = EDIT_STARTED; - cmd = try_malloc(sizeof(struct Command), f_name); - memset(cmd, 0, sizeof(struct Command)); - cmd->dsc_short = strdup(token1); - err_line(NULL != get_command(cmd->dsc_short), err_uniq); - } - else if ( token0 - && !( set_val(token0, token1, "DESCRIPTION", &cmd_flags, - DESC_SET, 's', (char *) &cmd->dsc_long) - || set_val(token0, token1, "SERVER_COMMAND", &cmd_flags, - SERVERCMD_SET, 's', (char *) &cmd->server_msg) - || set_val(token0, token1, "SERVER_ARGUMENT", &cmd_flags, - SERVERARG_SET, 'c', (char *) &cmd->arg))) + if (token0) { - err_line(1, "Unknown arguemnt."); + parsetest_too_many_values(); + if (!strcmp(token0, str_cmd)) + { + cmd = (struct Command *) parse_init_entry(&cmd_flags, + sizeof(struct Command)); + cmd->dsc_short = strdup(token1); + parse_id_uniq(!(!get_command(cmd->dsc_short))); + } + else if (!( parse_flagval(token0, token1, "DESCRIPTION", &cmd_flags, + DESC_SET, 's', (char *) &cmd->dsc_long) + || parse_flagval(token0, token1,"SERVER_COMMAND", &cmd_flags, + SERVERCMD_SET, 's',(char *)&cmd->server_msg) + || parse_flagval(token0, token1,"SERVER_ARGUMENT",&cmd_flags, + SERVERARG_SET, 'c', (char *) &cmd->arg))) + { + parse_unknown_arg(); + } } }