| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989 |
- /******************************************************************************
- * This file is part of TinTin++ *
- * *
- * Copyright 2004-2019 Igor van den Hoven *
- * *
- * TinTin++ is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 3 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with TinTin++. If not, see https://www.gnu.org/licenses. *
- ******************************************************************************/
- #include "tintin.h"
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Peter Unold 1992 *
- * recoded by Igor van den Hoven 2009 *
- ******************************************************************************/
- DO_COMMAND(do_action)
- {
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE];
- arg = get_arg_in_braces(ses, arg, arg1, GET_ONE);
- arg = get_arg_in_braces(ses, arg, arg2, GET_ALL);
- arg = get_arg_in_braces(ses, arg, arg3, GET_ALL);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_ACTION], 0);
- }
- else if (*arg1 && *arg2 == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_ACTION]) == FALSE)
- {
- show_message(ses, LIST_ACTION, "#ACTION: NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- update_node_list(ses->list[LIST_ACTION], arg1, arg2, arg3, "");
- show_message(ses, LIST_ACTION, "#OK. #ACTION {%s} NOW TRIGGERS {%s} @ {%s}.", arg1, arg2, arg3);
- }
- return ses;
- }
- DO_COMMAND(do_unaction)
- {
- delete_node_with_wild(ses, LIST_ACTION, arg);
- return ses;
- }
- void check_all_actions(struct session *ses, char *original, char *line)
- {
- struct listroot *root = ses->list[LIST_ACTION];
- struct listnode *node;
- char buf[BUFFER_SIZE];
- for (root->update = 0 ; root->update < root->used ; root->update++)
- {
- node = root->list[root->update];
- if (check_one_regexp(ses, node, line, original, 0))
- {
- show_debug(ses, LIST_ACTION, "#DEBUG ACTION {%s}", node->arg1);
- substitute(ses, node->arg2, buf, SUB_ARG|SUB_SEC);
- if (HAS_BIT(node->flags, NODE_FLAG_ONESHOT))
- {
- delete_node_list(ses, LIST_ACTION, node);
- }
- script_driver(ses, LIST_ACTION, buf);
- return;
- }
- }
- }
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Peter Unold 1992 *
- * recoded by Igor van den Hoven 2009 *
- ******************************************************************************/
- DO_COMMAND(do_alias)
- {
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE];
- arg = sub_arg_in_braces(ses, arg, arg1, GET_ONE, SUB_VAR|SUB_FUN);
- arg = get_arg_in_braces(ses, arg, arg2, GET_ALL);
- arg = get_arg_in_braces(ses, arg, arg3, GET_ALL);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_ALIAS], 0);
- }
- else if (*arg2 == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_ALIAS]) == FALSE)
- {
- show_message(ses, LIST_ALIAS, "#ALIAS: NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- update_node_list(ses->list[LIST_ALIAS], arg1, arg2, arg3, "");
- show_message(ses, LIST_ALIAS, "#ALIAS {%s} NOW TRIGGERS {%s} @ {%s}.", arg1, arg2, arg3);
- }
- return ses;
- }
- DO_COMMAND(do_unalias)
- {
- delete_node_with_wild(ses, LIST_ALIAS, arg);
- return ses;
- }
- int check_all_aliases(struct session *ses, char *input)
- {
- struct listnode *node;
- struct listroot *root;
- char tmp[BUFFER_SIZE], line[BUFFER_SIZE], *arg;
- int i;
- root = ses->list[LIST_ALIAS];
- if (HAS_BIT(root->flags, LIST_FLAG_IGNORE))
- {
- return FALSE;
- }
- substitute(ses, input, line, SUB_VAR|SUB_FUN);
- for (root->update = 0 ; root->update < root->used ; root->update++)
- {
- node = root->list[root->update];
- if (check_one_regexp(ses, node, line, line, PCRE_ANCHORED))
- {
- i = strlen(node->arg1);
- if (!strncmp(node->arg1, line, i))
- {
- if (line[i])
- {
- if (line[i] != ' ')
- {
- continue;
- }
- arg = &line[i + 1];
- }
- else
- {
- arg = &line[i];
- }
- RESTRING(gtd->vars[0], arg)
- for (i = 1 ; i < 100 ; i++)
- {
- arg = get_arg_in_braces(ses, arg, tmp, GET_ONE);
- RESTRING(gtd->vars[i], tmp);
- if (*arg == 0)
- {
- while (++i < 100)
- {
- if (*gtd->vars[i])
- {
- RESTRING(gtd->vars[i], "");
- }
- }
- break;
- }
- }
- }
- substitute(ses, node->arg2, tmp, SUB_ARG);
- if (!strncmp(node->arg1, line, strlen(node->arg1)) && !strcmp(node->arg2, tmp) && *gtd->vars[0])
- {
- sprintf(input, "%s %s", tmp, gtd->vars[0]);
- }
- else
- {
- sprintf(input, "%s", tmp);
- }
- show_debug(ses, LIST_ALIAS, "#DEBUG ALIAS {%s} {%s}", node->arg1, gtd->vars[0]);
- if (HAS_BIT(node->flags, NODE_FLAG_ONESHOT))
- {
- delete_node_list(ses, LIST_ALIAS, node);
- }
- return TRUE;
- }
- }
- return FALSE;
- }
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Igor van den Hoven 2019 *
- ******************************************************************************/
- DO_COMMAND(do_button)
- {
- struct listnode *node;
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE];
- int index;
- arg = sub_arg_in_braces(ses, arg, arg1, GET_ALL, SUB_VAR|SUB_FUN);
- arg = get_arg_in_braces(ses, arg, arg2, GET_ALL);
- arg = get_arg_in_braces(ses, arg, arg3, GET_ALL);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_BUTTON], 0);
- }
- else if (*arg1 && *arg2 == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_BUTTON]) == FALSE)
- {
- show_message(ses, LIST_BUTTON, "#BUTTON: NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- node = update_node_list(ses->list[LIST_BUTTON], arg1, arg2, arg3, "");
- show_message(ses, LIST_BUTTON, "#OK. BUTTON {%s} NOW TRIGGERS {%s} @ {%s}.", arg1, arg2, arg3);
- arg = arg1;
- for (index = 0 ; index < 4 ; index++)
- {
- arg = get_arg_in_braces(ses, arg, arg2, GET_ONE);
- node->val16[index] = (short) get_number(ses, arg2);
- if (*arg == COMMAND_SEPARATOR)
- {
- arg++;
- }
- }
- if (*arg)
- {
- arg = get_arg_in_braces(ses, arg, arg2, GET_ALL);
- RESTRING(node->arg4, arg2);
- }
- else
- {
- RESTRING(node->arg4, "PRESSED MOUSE BUTTON ONE");
- }
- }
- return ses;
- }
- DO_COMMAND(do_unbutton)
- {
- delete_node_with_wild(ses, LIST_BUTTON, arg);
- return ses;
- }
- void check_all_buttons(struct session *ses, short row, short col, char *arg1, char *arg2, char *word, char *line)
- {
- char buf[BUFFER_SIZE], arg4[BUFFER_SIZE];
- struct listnode *node;
- struct listroot *root;
- short val[4];
- root = ses->list[LIST_BUTTON];
- if (HAS_BIT(root->flags, LIST_FLAG_IGNORE))
- {
- return;
- }
- sprintf(arg4, "%s %s", arg1, arg2);
- show_info(ses, LIST_BUTTON, "#INFO BUTTON {%d;%d;%d;%d;%s}", row, col, -1 - (gtd->screen->rows - row), -1 - (gtd->screen->cols - col), arg4);
- for (root->update = 0 ; root->update < root->used ; root->update++)
- {
- node = root->list[root->update];;
- val[0] = node->val16[0] < 0 ? 1 + gtd->screen->rows + node->val16[0] : node->val16[0];
- val[1] = node->val16[1] < 0 ? 1 + gtd->screen->cols + node->val16[1] : node->val16[1];
- if (row < val[0] || col < val[1])
- {
- continue;
- }
- val[2] = node->val16[2] < 0 ? 1 + gtd->screen->rows + node->val16[2] : node->val16[2];
- val[3] = node->val16[3] < 0 ? 1 + gtd->screen->cols + node->val16[3] : node->val16[3];
- if (row > val[2] || col > val[3])
- {
- continue;
- }
- if (!strcmp(arg4, node->arg4))
- {
- show_debug(ses, LIST_BUTTON, "#DEBUG BUTTON {%s}", node->arg1);
- RESTRING(gtd->vars[0], ntos(row));
- RESTRING(gtd->vars[1], ntos(col));
- RESTRING(gtd->vars[2], ntos(-1 - (gtd->screen->rows - row)));
- RESTRING(gtd->vars[3], ntos(-1 - (gtd->screen->cols - col)));
- RESTRING(gtd->vars[4], word);
- RESTRING(gtd->vars[5], line);
- substitute(ses, node->arg2, buf, SUB_ARG|SUB_SEC);
- if (HAS_BIT(node->flags, NODE_FLAG_ONESHOT))
- {
- delete_node_list(ses, LIST_BUTTON, node);
- }
- script_driver(ses, LIST_BUTTON, buf);
- return;
- }
- }
- }
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Igor van den Hoven 2004 *
- ******************************************************************************/
- DO_COMMAND(do_delay)
- {
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE], time[BUFFER_SIZE];
- arg = sub_arg_in_braces(ses, arg, arg1, GET_ONE, SUB_VAR|SUB_FUN);
- arg = get_arg_in_braces(ses, arg, arg2, GET_ALL);
- arg = sub_arg_in_braces(ses, arg, arg3, GET_ALL, SUB_VAR|SUB_FUN);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_DELAY], 0);
- }
- else if (*arg2 == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_DELAY]) == FALSE)
- {
- show_message(ses, LIST_DELAY, "#DELAY: NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- if (*arg3 == 0)
- {
- sprintf(arg3, "%lld", utime() + (long long) (1000000 * get_number(ses, arg1)));
- get_number_string(ses, arg1, time);
- update_node_list(ses->list[LIST_DELAY], arg3, arg2, time, "");
- show_message(ses, LIST_DELAY, "#OK, IN {%s} SECONDS {%s} IS EXECUTED.", time, arg2);
- }
- else
- {
- get_number_string(ses, arg3, time);
- gtd->level->oneshot++;
- update_node_list(ses->list[LIST_TICKER], arg1, arg2, time, "");
- gtd->level->oneshot--;
-
- show_message(ses, LIST_TICKER, "#OK. #TICK {%s} WILL EXECUTE {%s} IN {%s} SECONDS.", arg1, arg2, time);
- }
- }
- return ses;
- }
- DO_COMMAND(do_undelay)
- {
- if (isalpha(*arg))
- {
- delete_node_with_wild(ses, LIST_TICKER, arg);
- }
- else
- {
- delete_node_with_wild(ses, LIST_DELAY, arg);
- }
- return ses;
- }
- // checked in update.c
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Sverre Normann 1999 *
- * recoded by Igor van den Hoven 2004 *
- ******************************************************************************/
- DO_COMMAND(do_function)
- {
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE];
- arg = sub_arg_in_braces(ses, arg, arg1, GET_ONE, SUB_VAR|SUB_FUN);
- arg = get_arg_in_braces(ses, arg, arg2, GET_ALL);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_FUNCTION], 0);
- }
- else if (*arg1 && *arg2 == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_FUNCTION]) == FALSE)
- {
- show_message(ses, LIST_FUNCTION, "#FUNCTION: NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- update_node_list(ses->list[LIST_FUNCTION], arg1, arg2, "", "");
- show_message(ses, LIST_FUNCTION, "#OK. FUNCTION {%s} HAS BEEN SET TO {%s}.", arg1, arg2);
- }
- return ses;
- }
- DO_COMMAND(do_unfunction)
- {
- delete_node_with_wild(ses, LIST_FUNCTION, arg);
- return ses;
- }
- // checked in tinexp.c
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Igor van den Hoven 2007 *
- ******************************************************************************/
- DO_COMMAND(do_gag)
- {
- char arg1[BUFFER_SIZE];
- arg = sub_arg_in_braces(ses, arg, arg1, GET_ALL, SUB_VAR|SUB_FUN);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_GAG], 0);
- }
- else
- {
- update_node_list(ses->list[LIST_GAG], arg1, "", "", "");
- show_message(ses, LIST_GAG, "#OK. {%s} IS NOW GAGGED.", arg1);
- }
- return ses;
- }
- DO_COMMAND(do_ungag)
- {
- delete_node_with_wild(ses, LIST_GAG, arg);
- return ses;
- }
- void check_all_gags(struct session *ses, char *original, char *line)
- {
- struct listroot *root = ses->list[LIST_GAG];
- struct listnode *node;
- for (root->update = 0 ; root->update < root->used ; root->update++)
- {
- node = root->list[root->update];
- if (check_one_regexp(ses, node, line, original, 0))
- {
- show_debug(ses, LIST_GAG, "#DEBUG GAG {%s}", node->arg1);
- if (HAS_BIT(node->flags, NODE_FLAG_ONESHOT))
- {
- delete_node_list(ses, LIST_GAG, node);
- }
- SET_BIT(ses->flags, SES_FLAG_GAG);
- return;
- }
- }
- }
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Bill Reiss 1993 *
- * recoded by Igor van den Hoven 2004 *
- ******************************************************************************/
- DO_COMMAND(do_highlight)
- {
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE], temp[BUFFER_SIZE];
- arg = sub_arg_in_braces(ses, arg, arg1, GET_ONE, SUB_VAR|SUB_FUN);
- arg = sub_arg_in_braces(ses, arg, arg2, GET_ALL, SUB_VAR|SUB_FUN);
- arg = get_arg_in_braces(ses, arg, arg3, GET_ALL);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_HIGHLIGHT], 0);
- }
- else if (*arg1 && *arg2 == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_HIGHLIGHT]) == FALSE)
- {
- show_message(ses, LIST_HIGHLIGHT, "#HIGHLIGHT: NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- if (get_color_names(ses, arg2, temp) == FALSE)
- {
- tintin_printf2(ses, "#HIGHLIGHT: VALID COLORS ARE:\n");
- tintin_printf2(ses, "reset, bold, light, faint, dim, dark, underscore, blink, reverse, black, red, green, yellow, blue, magenta, cyan, white, b black, b red, b green, b yellow, b blue, b magenta, b cyan, b white, azure, ebony, jade, lime, orange, pink, silver, tan, violet.");
- }
- else
- {
- update_node_list(ses->list[LIST_HIGHLIGHT], arg1, arg2, arg3, "");
- show_message(ses, LIST_HIGHLIGHT, "#OK. {%s} NOW HIGHLIGHTS {%s} @ {%s}.", arg1, arg2, arg3);
- }
- }
- return ses;
- }
- DO_COMMAND(do_unhighlight)
- {
- delete_node_with_wild(ses, LIST_HIGHLIGHT, arg);
- return ses;
- }
- void check_all_highlights(struct session *ses, char *original, char *line)
- {
- struct listroot *root = ses->list[LIST_HIGHLIGHT];
- struct listnode *node;
- char *pto, *ptl, *ptm;
- char match[BUFFER_SIZE], color[BUFFER_SIZE], reset[BUFFER_SIZE], output[BUFFER_SIZE], plain[BUFFER_SIZE];
- int len;
- push_call("check_all_highlights(%p,%p,%p)",ses,original,line);
- for (root->update = 0 ; root->update < root->used ; root->update++)
- {
- node = root->list[root->update];
- if (check_one_regexp(ses, node, line, original, 0))
- {
- get_color_names(ses, node->arg2, color);
- *output = *reset = 0;
- pto = original;
- ptl = line;
- do
- {
- if (*gtd->vars[0] == 0)
- {
- break;
- }
- strcpy(match, gtd->vars[0]);
- strip_vt102_codes(match, plain);
- if (*node->arg1 == '~')
- {
- ptm = strstr(pto, match);
- len = strlen(match);
- }
- else
- {
- ptm = strip_vt102_strstr(pto, match, &len);
- ptl = strstr(ptl, match) + strlen(match);
- }
- *ptm = 0;
- get_color_codes(reset, pto, reset, GET_ALL);
- cat_sprintf(output, "%s%s%s\e[0m%s", pto, color, plain, reset);
- pto = ptm + len;
- show_debug(ses, LIST_HIGHLIGHT, "#DEBUG HIGHLIGHT {%s}", node->arg1);
- }
- while (check_one_regexp(ses, node, ptl, pto, 0));
- if (HAS_BIT(node->flags, NODE_FLAG_ONESHOT))
- {
- delete_node_list(ses, LIST_HIGHLIGHT, node);
- }
- strcat(output, pto);
- strcpy(original, output);
- }
- }
- pop_call();
- return;
- }
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Igor van den Hoven 2006 *
- ******************************************************************************/
- DO_COMMAND(do_macro)
- {
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE];
- arg = sub_arg_in_braces(ses, arg, arg1, GET_ONE, SUB_VAR|SUB_FUN);
- arg = get_arg_in_braces(ses, arg, arg2, GET_ALL);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_MACRO], 0);
- }
- else if (*arg1 && *arg2 == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_MACRO]) == FALSE)
- {
- show_message(ses, LIST_MACRO, "#MACRO: NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- tintin_macro_compile(arg1, arg3);
- update_node_list(ses->list[LIST_MACRO], arg1, arg2, arg3, "");
- show_message(ses, LIST_MACRO, "#OK. MACRO {%s} HAS BEEN SET TO {%s}.", arg1, arg2);
- }
- return ses;
- }
- DO_COMMAND(do_unmacro)
- {
- delete_node_with_wild(ses, LIST_MACRO, arg);
- return ses;
- }
- // checked in input.c
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Igor van den Hoven 2004 *
- ******************************************************************************/
- DO_COMMAND(do_prompt)
- {
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE], arg4[BUFFER_SIZE];
- arg = get_arg_in_braces(ses, arg, arg1, GET_ALL);
- arg = get_arg_in_braces(ses, arg, arg2, GET_ALL);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_PROMPT], 0);
- }
- else if (*arg1 && *arg2 == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_PROMPT]) == FALSE)
- {
- show_message(ses, LIST_PROMPT, "#PROMPT: NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- arg = sub_arg_in_braces(ses, arg, arg3, GET_ONE, SUB_VAR|SUB_FUN);
- arg = sub_arg_in_braces(ses, arg, arg4, GET_ONE, SUB_VAR|SUB_FUN);
- update_node_list(ses->list[LIST_PROMPT], arg1, arg2, arg3, arg4);
- show_message(ses, LIST_PROMPT, "#OK. {%s} NOW PROMPTS {%s} @ {%s} {%s}.", arg1, arg2, arg3, arg4);
- }
- return ses;
- }
- DO_COMMAND(do_unprompt)
- {
- delete_node_with_wild(ses, LIST_PROMPT, arg);
- return ses;
- }
- void check_all_prompts(struct session *ses, char *original, char *line)
- {
- struct listroot *root = ses->list[LIST_PROMPT];
- struct listnode *node;
- if (!HAS_BIT(ses->flags, SES_FLAG_SPLIT))
- {
- return;
- }
- for (root->update = 0 ; root->update < root->used ; root->update++)
- {
- node = root->list[root->update];
- if (check_one_regexp(ses, node, line, original, 0))
- {
- if (*node->arg2)
- {
- substitute(ses, node->arg2, original, SUB_ARG);
- substitute(ses, original, original, SUB_VAR|SUB_FUN|SUB_COL|SUB_ESC);
- }
- show_debug(ses, LIST_PROMPT, "#DEBUG PROMPT {%s}", node->arg1);
- show_debug(ses, LIST_GAG, "#DEBUG GAG {%s}", node->arg1);
- split_show(ses, original, atoi(node->arg3), atoi(node->arg4));
- if (HAS_BIT(node->flags, NODE_FLAG_ONESHOT))
- {
- delete_node_list(ses, LIST_GAG, node);
- }
- SET_BIT(ses->flags, SES_FLAG_GAG);
- }
- }
- }
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Peter Unold 1992 *
- * recoded by Igor van den Hoven 2004 *
- ******************************************************************************/
- DO_COMMAND(do_substitute)
- {
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE], *str;
- str = sub_arg_in_braces(ses, arg, arg1, GET_ONE, SUB_VAR|SUB_FUN);
- arg = get_arg_in_braces(ses, str, arg2, GET_ALL);
- arg = get_arg_in_braces(ses, arg, arg3, GET_ALL);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_SUBSTITUTE], 0);
- }
- else if (*str == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_SUBSTITUTE]) == FALSE)
- {
- show_message(ses, LIST_SUBSTITUTE, "#SUBSTITUTE: NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- update_node_list(ses->list[LIST_SUBSTITUTE], arg1, arg2, arg3, "");
- show_message(ses, LIST_SUBSTITUTE, "#OK. {%s} IS NOW SUBSTITUTED AS {%s} @ {%s}.", arg1, arg2, arg3);
- }
- return ses;
- }
- DO_COMMAND(do_unsubstitute)
- {
- delete_node_with_wild(ses, LIST_SUBSTITUTE, arg);
- return ses;
- }
- void check_all_substitutions(struct session *ses, char *original, char *line)
- {
- char match[BUFFER_SIZE], subst[BUFFER_SIZE], output[BUFFER_SIZE], temp[BUFFER_SIZE], *ptl, *ptm, *pto;
- struct listroot *root = ses->list[LIST_SUBSTITUTE];
- struct listnode *node;
- int len;
- for (root->update = 0 ; root->update < root->used ; root->update++)
- {
- node = root->list[root->update];
- if (check_one_regexp(ses, node, line, original, 0))
- {
- pto = original;
- ptl = line;
- *output = 0;
- do
- {
- if (*gtd->vars[0] == 0)
- {
- break;
- }
- strcpy(match, gtd->vars[0]);
- substitute(ses, node->arg2, temp, SUB_ARG);
- substitute(ses, temp, subst, SUB_VAR|SUB_FUN|SUB_COL|SUB_ESC);
- if (*node->arg1 == '~')
- {
- ptm = strstr(pto, match);
- len = strlen(match);
- }
- else
- {
- ptm = strip_vt102_strstr(pto, match, &len);
- ptl = strstr(ptl, match) + strlen(match);
- }
- *ptm = 0;
- cat_sprintf(output, "%s%s", pto, subst);
- pto = ptm + len;
- show_debug(ses, LIST_SUBSTITUTE, "#DEBUG SUBSTITUTE {%s} {%s}", node->arg1, match);
- }
- while (check_one_regexp(ses, node, ptl, pto, 0));
- if (HAS_BIT(node->flags, NODE_FLAG_ONESHOT))
- {
- delete_node_list(ses, LIST_SUBSTITUTE, node);
- }
- strcat(output, pto);
- strcpy(original, output);
- strip_vt102_codes(original, line);
- }
- }
- }
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Igor van den Hoven 2006 *
- ******************************************************************************/
- DO_COMMAND(do_tab)
- {
- char arg1[BUFFER_SIZE];
- sub_arg_in_braces(ses, arg, arg1, GET_ALL, SUB_VAR|SUB_FUN);
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_TAB], 0);
- }
- else
- {
- update_node_list(ses->list[LIST_TAB], arg1, "", "", "");
- show_message(ses, LIST_TAB, "#OK. {%s} IS NOW A TAB.", arg1);
- }
- return ses;
- }
- DO_COMMAND(do_untab)
- {
- delete_node_with_wild(ses, LIST_TAB, arg);
- return ses;
- }
- // checked in cursor.c
- /******************************************************************************
- * (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
- * *
- * coded by Peter Unold 1992 *
- * recoded by Igor van den Hoven 2004 *
- ******************************************************************************/
- DO_COMMAND(do_tick)
- {
- char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE], arg4[BUFFER_SIZE];
- arg = sub_arg_in_braces(ses, arg, arg1, GET_ONE, SUB_VAR|SUB_FUN);
- arg = get_arg_in_braces(ses, arg, arg2, GET_ALL);
- arg = get_arg_in_braces(ses, arg, arg4, GET_ALL);
- if (*arg4 == 0)
- {
- strcpy(arg3, "60");
- }
- else
- {
- get_number_string(ses, arg4, arg3);
- }
- if (*arg1 == 0)
- {
- show_list(ses->list[LIST_TICKER], 0);
- }
- else if (*arg1 && *arg2 == 0)
- {
- if (show_node_with_wild(ses, arg1, ses->list[LIST_TICKER]) == FALSE)
- {
- show_message(ses, LIST_TICKER, "#TICK, NO MATCH(ES) FOUND FOR {%s}.", arg1);
- }
- }
- else
- {
- update_node_list(ses->list[LIST_TICKER], arg1, arg2, arg3, "");
- show_message(ses, LIST_TICKER, "#OK. #TICK {%s} NOW EXECUTES {%s} EVERY {%s} SECONDS.", arg1, arg2, arg3);
- }
- return ses;
- }
- DO_COMMAND(do_untick)
- {
- delete_node_with_wild(ses, LIST_TICKER, arg);
- return ses;
- }
- // checked in update.c
|