dxx-rebirth/similar/main/cmd.cpp

540 lines
11 KiB
C++
Raw Normal View History

2015-02-11 07:35:44 +00:00
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*
*/
/*
*
* Command parsing and processing
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "dxxerror.h"
#include "u_mem.h"
#include "strutil.h"
#include "inferno.h"
#include "console.h"
typedef struct cmd_s
{
char *name;
cmd_handler_t function;
2015-02-12 01:13:33 +00:00
char *help_text;
2015-02-11 07:35:44 +00:00
struct cmd_s *next;
} cmd_t;
/* The list of cmds */
static cmd_t *cmd_list = NULL;
#define ALIAS_NAME_MAX 32
typedef struct cmd_alias_s
{
char name[ALIAS_NAME_MAX];
char *value;
struct cmd_alias_s *next;
} cmd_alias_t;
/* The list of aliases */
static cmd_alias_t *cmd_alias_list = NULL;
/* add a new console command */
2015-02-12 01:13:33 +00:00
void cmd_addcommand(char *cmd_name, cmd_handler_t cmd_func, char *cmd_help_text)
2015-02-11 07:35:44 +00:00
{
cmd_t *cmd;
Assert(cmd_name != NULL);
for (cmd = cmd_list; cmd; cmd = cmd->next) {
if (!d_stricmp(cmd_name, cmd->name))
{
Int3();
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, "command %s already exists, not adding", cmd_name);
2015-02-11 07:35:44 +00:00
return;
}
}
/* create command, insert at front of list */
MALLOC(cmd, cmd_t, 1);
cmd->name = cmd_name;
cmd->function = cmd_func;
2015-02-12 01:13:33 +00:00
cmd->help_text = cmd_help_text;
2015-02-11 07:35:44 +00:00
cmd->next = cmd_list;
2015-02-12 06:59:33 +00:00
con_printf(CON_DEBUG, "cmd_addcommand: added %s", cmd->name);
2015-02-11 07:35:44 +00:00
cmd_list = cmd;
}
typedef struct cmd_queue_s
{
char *command_line;
struct cmd_queue_s *next;
} cmd_queue_t;
/* The list of commands to be executed */
static cmd_queue_t *cmd_queue_head = NULL;
static cmd_queue_t *cmd_queue_tail = NULL;
void cvar_cmd_set(int argc, char **argv);
/* execute a parsed command */
void cmd_execute(int argc, char **argv)
{
cmd_t *cmd;
cmd_alias_t *alias;
for (cmd = cmd_list; cmd; cmd = cmd->next) {
if (!d_stricmp(argv[0], cmd->name)) {
2015-02-12 06:59:33 +00:00
con_printf(CON_DEBUG, "cmd_execute: executing %s", argv[0]);
2015-02-11 07:35:44 +00:00
cmd->function(argc, argv);
return;
}
}
for (alias = cmd_alias_list; alias; alias = alias->next) {
if (!d_stricmp(argv[0], alias->name)) {
2015-02-12 06:59:33 +00:00
con_printf(CON_DEBUG, "cmd_execute: pushing alias \"%s\": %s", alias->name, alias->value);
2015-02-11 07:35:44 +00:00
cmd_insert(alias->value);
return;
}
}
/* Otherwise */
{ // set value of cvar
char *new_argv[argc+1];
int i;
new_argv[0] = (char *)("set");
for (i = 0; i < argc; i++)
new_argv[i+1] = argv[i];
cvar_cmd_set(argc + 1, new_argv);
}
}
/* Parse an input string */
void cmd_parse(char *input)
{
char buffer[CMD_MAX_LENGTH];
char *tokens[CMD_MAX_TOKENS];
int num_tokens;
int i, l;
Assert(input != NULL);
/* Strip leading spaces */
for (i=0; isspace(input[i]); i++) ;
strncpy( buffer, &input[i], CMD_MAX_LENGTH );
//printf("lead strip \"%s\"\n",buffer);
l = (int)strlen(buffer);
/* If command is empty, give up */
if (l==0) return;
/* Strip trailing spaces */
for (i=l-1; i>0 && isspace(buffer[i]); i--) ;
buffer[i+1] = 0;
//printf("trail strip \"%s\"\n",buffer);
/* Split into tokens */
l = (int)strlen(buffer);
num_tokens = 1;
tokens[0] = buffer;
for (i=1; i<l; i++) {
if (buffer[i] == '"') {
tokens[num_tokens - 1] = &buffer[++i];
while (i < l && buffer[i] != '"')
i++;
buffer[i] = 0;
continue;
}
if (isspace(buffer[i]) || buffer[i] == '=') {
buffer[i] = 0;
while (isspace(buffer[i+1]) && (i+1 < l)) i++;
tokens[num_tokens++] = &buffer[i+1];
}
}
/* Check for matching commands */
cmd_execute(num_tokens, tokens);
}
int cmd_queue_wait = 0;
int cmd_queue_process(void)
{
cmd_queue_t *cmd;
while (!cmd_queue_wait && cmd_queue_head) {
cmd = cmd_queue_head;
cmd_queue_head = cmd_queue_head->next;
if (!cmd_queue_head)
cmd_queue_tail = NULL;
2015-02-12 06:59:33 +00:00
con_printf(CON_DEBUG, "cmd_queue_process: processing %s", cmd->command_line);
2015-02-11 07:35:44 +00:00
cmd_parse(cmd->command_line); // Note, this may change the queue
d_free(cmd->command_line);
d_free(cmd);
}
if (cmd_queue_wait > 0) {
cmd_queue_wait--;
2015-02-12 06:59:33 +00:00
con_printf(CON_DEBUG, "cmd_queue_process: waiting");
2015-02-11 07:35:44 +00:00
return 1;
}
return 0;
}
/* execute until there are no commands left */
void cmd_queue_flush(void)
{
while (cmd_queue_process()) {
}
}
/* Add some commands to the queue to be executed */
void cmd_enqueue(int insert, char *input)
{
cmd_queue_t *item, *head, *tail;
char output[CMD_MAX_LENGTH];
char *optr;
Assert(input != NULL);
head = tail = NULL;
while (*input) {
optr = output;
int quoted = 0;
/* Strip leading spaces */
while(isspace(*input) || *input == ';')
input++;
/* If command is empty, give up */
if (! *input)
continue;
/* Find the end of this line (\n, ;, or nul) */
do {
if (!*input)
break;
if (*input == '"') {
quoted = 1 - quoted;
continue;
} else if ( *input == '\n' || (!quoted && *input == ';') ) {
input++;
break;
}
} while ((*optr++ = *input++));
*optr = 0;
/* make a new queue item, add it to list */
MALLOC(item, cmd_queue_t, 1);
item->command_line = d_strdup(output);
item->next = NULL;
if (!head)
head = item;
if (tail)
tail->next = item;
tail = item;
2015-02-12 06:59:33 +00:00
con_printf(CON_DEBUG, "cmd_enqueue: adding %s", output);
2015-02-11 07:35:44 +00:00
}
if (insert) {
/* add our list to the head of the main list */
if (cmd_queue_head)
tail->next = cmd_queue_head;
if (!cmd_queue_tail)
cmd_queue_tail = tail;
cmd_queue_head = head;
2015-02-12 06:59:33 +00:00
con_printf(CON_DEBUG, "cmd_enqueue: added to front of list");
2015-02-11 07:35:44 +00:00
} else {
/* add our list to the tail of the main list */
if (!cmd_queue_head)
cmd_queue_head = head;
if (cmd_queue_tail)
cmd_queue_tail->next = head;
cmd_queue_tail = tail;
2015-02-12 06:59:33 +00:00
con_printf(CON_DEBUG, "cmd_enqueue: added to back of list");
2015-02-11 07:35:44 +00:00
}
}
void cmd_enqueuef(int insert, char *fmt, ...)
{
va_list arglist;
char buf[CMD_MAX_LENGTH];
va_start (arglist, fmt);
vsnprintf (buf, CMD_MAX_LENGTH, fmt, arglist);
va_end (arglist);
cmd_enqueue(insert, buf);
}
/* Attempt to autocomplete an input string */
char *cmd_complete(char *input)
{
cmd_t *ptr;
cmd_alias_t *aptr;
int len = (int)strlen(input);
if (!len)
return NULL;
for (ptr = cmd_list; ptr != NULL; ptr = ptr->next)
if (!d_strnicmp(input, ptr->name, len))
return ptr->name;
for (aptr = cmd_alias_list; aptr != NULL; aptr = aptr->next)
if (!d_strnicmp(input, aptr->name, len))
return aptr->name;
return cvar_complete(input);
}
/* alias */
void cmd_alias(int argc, char **argv)
{
cmd_alias_t *alias;
char buf[CMD_MAX_LENGTH] = "";
int i;
2015-02-12 01:13:33 +00:00
2015-02-11 07:35:44 +00:00
if (argc < 2) {
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, "aliases:");
2015-02-11 07:35:44 +00:00
for (alias = cmd_alias_list; alias; alias = alias->next)
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, "%s: %s", alias->name, alias->value);
2015-02-11 07:35:44 +00:00
return;
}
if (argc == 2) {
for (alias = cmd_alias_list; alias; alias = alias->next)
if (!d_stricmp(argv[1], alias->name)) {
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, "%s: %s", alias->name, alias->value);
2015-02-11 07:35:44 +00:00
return;
}
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, "alias: %s not found", argv[1]);
2015-02-11 07:35:44 +00:00
return;
}
for (i = 2; i < argc; i++) {
if (i > 2)
strncat(buf, " ", CMD_MAX_LENGTH);
strncat(buf, argv[i], CMD_MAX_LENGTH);
}
for (alias = cmd_alias_list; alias; alias = alias->next) {
if (!d_stricmp(argv[1], alias->name)) {
d_free(alias->value);
alias->value = d_strdup(buf);
return;
}
}
MALLOC(alias, cmd_alias_t, 1);
strncpy(alias->name, argv[1], ALIAS_NAME_MAX);
alias->value = d_strdup(buf);
alias->next = cmd_alias_list;
cmd_alias_list = alias;
}
/* unalias */
void cmd_unalias(int argc, char **argv)
{
cmd_alias_t *alias, *prev_alias = NULL;
2015-02-12 01:13:33 +00:00
if (argc < 2 || argc > 2) {
cmd_insertf("help %s", argv[0]);
2015-02-11 07:35:44 +00:00
return;
}
2015-02-12 01:13:33 +00:00
2015-02-11 07:35:44 +00:00
for (alias = cmd_alias_list; alias ; alias = alias->next) {
if (!d_stricmp(argv[1], alias->name))
break;
prev_alias = alias;
}
if (!alias) {
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, "unalias: %s not found", argv[1]);
2015-02-11 07:35:44 +00:00
return;
}
if (prev_alias)
prev_alias->next = alias->next;
else
cmd_alias_list = alias->next;
d_free(alias->value);
d_free(alias);
}
/* echo to console */
void cmd_echo(int argc, char **argv)
{
char buf[CMD_MAX_LENGTH] = "";
int i;
2015-02-12 01:13:33 +00:00
2015-02-11 07:35:44 +00:00
for (i = 1; i < argc; i++) {
if (i > 1)
strncat(buf, " ", CMD_MAX_LENGTH);
strncat(buf, argv[i], CMD_MAX_LENGTH);
}
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, "%s", buf);
2015-02-11 07:35:44 +00:00
}
/* execute script */
void cmd_exec(int argc, char **argv) {
cmd_queue_t *item, *head, *tail;
PHYSFSX_gets_line_t<CMD_MAX_LENGTH> line;
2015-02-12 01:13:33 +00:00
if (argc < 2 || argc > 2) {
cmd_insertf("help %s", argv[0]);
2015-02-11 07:35:44 +00:00
return;
}
head = tail = NULL;
auto f = PHYSFSX_openReadBuffered(argv[1]);
if (!f) {
2015-02-12 06:59:33 +00:00
con_printf(CON_CRITICAL, "exec: %s not found", argv[1]);
2015-02-11 07:35:44 +00:00
return;
}
while (PHYSFSX_fgets(line, f)) {
/* make a new queue item, add it to list */
MALLOC(item, cmd_queue_t, 1);
item->command_line = d_strdup(line);
item->next = NULL;
if (!head)
head = item;
if (tail)
tail->next = item;
tail = item;
2015-02-12 06:59:33 +00:00
//con_printf(CON_DEBUG, "cmd_exec: adding %s", line);
2015-02-11 07:35:44 +00:00
}
PHYSFS_close(f);
/* add our list to the head of the main list */
if (cmd_queue_head)
tail->next = cmd_queue_head;
if (!cmd_queue_tail)
cmd_queue_tail = tail;
cmd_queue_head = head;
2015-02-12 06:59:33 +00:00
con_printf(CON_DEBUG, "cmd_exec: added to front of list");
2015-02-11 07:35:44 +00:00
}
/* get help */
void cmd_help(int argc, char **argv)
{
cmd_t *cmd;
2015-02-12 01:13:33 +00:00
if (argc > 2) {
cmd_insertf("help %s", argv[0]);
2015-02-11 07:35:44 +00:00
return;
}
if (argc < 2) {
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, "Available commands:");
2015-02-11 07:35:44 +00:00
for (cmd = cmd_list; cmd; cmd = cmd->next) {
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, " %s", cmd->name);
2015-02-11 07:35:44 +00:00
}
return;
}
2015-02-12 01:13:33 +00:00
for (cmd = cmd_list; cmd != NULL; cmd = cmd->next)
if (!d_stricmp(argv[1], cmd->name))
break;
if (!cmd) {
2015-02-12 06:59:33 +00:00
con_printf(CON_URGENT, "Command %s not found", argv[1]);
2015-02-12 01:13:33 +00:00
return;
}
if (!cmd->help_text) {
2015-02-12 06:59:33 +00:00
con_printf(CON_NORMAL, "%s: no help found", argv[1]);
2015-02-12 01:13:33 +00:00
return;
}
con_printf(CON_NORMAL, "%s", cmd->help_text);
2015-02-11 07:35:44 +00:00
}
/* execute script */
void cmd_wait(int argc, char **argv)
{
2015-02-12 01:13:33 +00:00
if (argc > 2) {
cmd_insertf("help %s", argv[0]);
2015-02-11 07:35:44 +00:00
return;
}
if (argc < 2)
cmd_queue_wait = 1;
else
cmd_queue_wait = atoi(argv[1]);
}
void cmd_free(void)
{
void *p, *temp;
p = cmd_list;
while (p) {
temp = p;
p = ((cmd_t *)p)->next;
d_free(temp);
}
p = cmd_alias_list;
while (p) {
d_free(((cmd_alias_t *)p)->value);
temp = p;
p = ((cmd_alias_t *)p)->next;
d_free(temp);
}
}
void cmd_init(void)
{
2015-02-12 01:13:33 +00:00
cmd_addcommand("alias", cmd_alias, "alias <name> <commands>\n" " define <name> as an alias for <commands>\n"
"alias <name>\n" " show the current definition of <name>\n"
2015-02-12 06:59:33 +00:00
"alias\n" " show all defined aliases");
cmd_addcommand("unalias", cmd_unalias, "unalias <name>\n" " undefine the alias <name>");
cmd_addcommand("echo", cmd_echo, "echo [text]\n" " write <text> to the console");
cmd_addcommand("exec", cmd_exec, "exec <file>\n" " execute <file>");
cmd_addcommand("help", cmd_help, "help [command]\n" " get help for <command>, or list all commands if not specified.");
cmd_addcommand("wait", cmd_wait, "usage: wait [n]\n" " stop processing commands, resume in <n> cycles (default 1)");
2015-02-12 01:13:33 +00:00
2015-02-11 07:35:44 +00:00
atexit(cmd_free);
}