fecdd8c534ef39478c3d998c1c4e390c5eddd5f9
[citadel.git] / textclient / src / commands.c
1 /*
2  * This file contains functions which implement parts of the
3  * text-mode user interface.
4  *
5  * Copyright (c) 1987-2016 by the citadel.org team
6  *
7  * This program is open source software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 3.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15
16 #include "sysdep.h"
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <fcntl.h>
21 #include <ctype.h>
22 #include <string.h>
23 #include <sys/types.h>
24
25 #if TIME_WITH_SYS_TIME
26 # include <sys/time.h>
27 # include <time.h>
28 #else
29 # if HAVE_SYS_TIME_H
30 #  include <sys/time.h>
31 # else
32 #  include <time.h>
33 # endif
34 #endif
35
36 #ifdef HAVE_TERMIOS_H
37 #include <termios.h>
38 #else
39 #include <sgtty.h>
40 #endif
41
42 #ifdef HAVE_SYS_SELECT_H
43 #include <sys/select.h>
44 #endif
45
46 #ifdef THREADED_CLIENT
47 #include <pthread.h>
48 #endif
49
50 #include <signal.h>
51 #include <errno.h>
52 #include <stdarg.h>
53 #include <libcitadel.h>
54 ///#include "citadel.h"
55 #include "citadel_ipc.h"
56 #include "commands.h"
57 #include "messages.h"
58 #include "citadel_decls.h"
59 #include "routines.h"
60 #include "routines2.h"
61 #include "rooms.h"
62 #include "client_chat.h"
63 #include "help.h"
64 #include "tuiconfig.h"
65 //#ifndef HAVE_SNPRINTF
66 //#include "snprintf.h"
67 ///#endif
68 #include "screen.h"
69 #include "ecrash.h"
70
71 struct citcmd {
72         struct citcmd *next;
73         int c_cmdnum;
74         int c_axlevel;
75         char c_keys[5][64];
76 };
77
78 #define IFNEXPERT if ((userflags&US_EXPERT)==0)
79
80
81 int rc_exp_beep;
82 char rc_exp_cmd[1024];
83 int rc_allow_attachments;
84 int rc_display_message_numbers;
85 int rc_force_mail_prompts;
86 int rc_remember_passwords;
87 int rc_ansi_color;
88 int rc_color_use_bg;
89 int rc_prompt_control = 0;
90 time_t rc_idle_threshold = (time_t)900;
91 char rc_url_cmd[SIZ];
92 char rc_open_cmd[SIZ];
93 char rc_gotmail_cmd[SIZ];
94
95 int next_lazy_cmd = 5;
96
97 extern int screenwidth, screenheight;
98 extern int termn8;
99 extern CtdlIPC *ipc_for_signal_handlers;        /* KLUDGE cover your eyes */
100
101 struct citcmd *cmdlist = NULL;
102
103
104 /* these variables are local to this module */
105 char keepalives_enabled = KA_YES;       /* send NOOPs to server when idle */
106 int ok_to_interrupt = 0;                /* print instant msgs asynchronously */
107 time_t AnsiDetect;                      /* when did we send the detect code? */
108 int enable_color = 0;                   /* nonzero for ANSI color */
109
110
111
112
113 /*
114  * If an interesting key has been pressed, return its value, otherwise 0
115  */
116 char was_a_key_pressed(void) {
117         fd_set rfds;
118         struct timeval tv;
119         int the_character;
120         int retval;
121
122         FD_ZERO(&rfds);
123         FD_SET(0, &rfds);
124         tv.tv_sec = 0;
125         tv.tv_usec = 0;
126         retval = select(1, &rfds, NULL, NULL, &tv); 
127
128         /* Careful!  Disable keepalives during keyboard polling; we're probably
129          * in the middle of a data transfer from the server, in which case
130          * sending a NOOP would throw the client protocol out of sync.
131          */
132         if ((retval > 0) && FD_ISSET(0, &rfds)) {
133                 set_keepalives(KA_NO);
134                 the_character = inkey();
135                 set_keepalives(KA_YES);
136         }
137         else {
138                 the_character = 0;
139         }
140         return(the_character);
141 }
142
143
144
145
146
147 /*
148  * print_instant()  -  print instant messages if there are any
149  */
150 void print_instant(void)
151 {
152         char buf[1024];
153         FILE *outpipe;
154         time_t timestamp;
155         struct tm stamp;
156         int flags = 0;
157         char sender[64];
158         char node[64];
159         char *listing = NULL;
160         int r;                  /* IPC result code */
161
162         if (instant_msgs == 0)
163                 return;
164
165         if (rc_exp_beep) {
166                 ctdl_beep();
167         }
168         if (IsEmptyStr(rc_exp_cmd)) {
169                 color(BRIGHT_RED);
170                 scr_printf("\r---");
171         }
172         
173         while (instant_msgs != 0) {
174                 r = CtdlIPCGetInstantMessage(ipc_for_signal_handlers, &listing, buf);
175                 if (r / 100 != 1)
176                         return;
177         
178                 instant_msgs = extract_int(buf, 0);
179                 timestamp = extract_long(buf, 1);
180                 flags = extract_int(buf, 2);
181                 extract_token(sender, buf, 3, '|', sizeof sender);
182                 extract_token(node, buf, 4, '|', sizeof node);
183                 strcpy(last_paged, sender);
184         
185                 localtime_r(&timestamp, &stamp);
186
187                 /* If the page is a Logoff Request, honor it. */
188                 if (flags & 2) {
189                         termn8 = 1;
190                         return;
191                 }
192         
193                 if (!IsEmptyStr(rc_exp_cmd)) {
194                         outpipe = popen(rc_exp_cmd, "w");
195                         if (outpipe != NULL) {
196                                 /* Header derived from flags */
197                                 if (flags & 2)
198                                         fprintf(outpipe,
199                                                "Please log off now, as requested ");
200                                 else if (flags & 1)
201                                         fprintf(outpipe, "Broadcast message ");
202                                 else if (flags & 4)
203                                         fprintf(outpipe, "Chat request ");
204                                 else
205                                         fprintf(outpipe, "Message ");
206                                 /* Timestamp.  Can this be improved? */
207                                 if (stamp.tm_hour == 0 || stamp.tm_hour == 12)
208                                         fprintf(outpipe, "at 12:%02d%cm",
209                                                 stamp.tm_min, 
210                                                 stamp.tm_hour ? 'p' : 'a');
211                                 else if (stamp.tm_hour > 12)            /* pm */
212                                         fprintf(outpipe, "at %d:%02dpm",
213                                                 stamp.tm_hour - 12,
214                                                 stamp.tm_min);
215                                 else                                    /* am */
216                                         fprintf(outpipe, "at %d:%02dam",
217                                                 stamp.tm_hour, stamp.tm_min);
218                                 fprintf(outpipe, " from %s", sender);
219                                 if (strncmp(ipc_for_signal_handlers->ServInfo.nodename, node, 32))
220                                         fprintf(outpipe, " @%s", node);
221                                 fprintf(outpipe, ":\n%s\n", listing);
222                                 pclose(outpipe);
223                                 if (instant_msgs == 0)
224                                         return;
225                                 continue;
226                         }
227                 }
228                 /* fall back to built-in instant message display */
229                 scr_printf("\n");
230
231                 /* Header derived from flags */
232                 if (flags & 2)
233                         scr_printf("Please log off now, as requested ");
234                 else if (flags & 1)
235                         scr_printf("Broadcast message ");
236                 else if (flags & 4)
237                         scr_printf("Chat request ");
238                 else
239                         scr_printf("Message ");
240         
241                 /* Timestamp.  Can this be improved? */
242                 if (stamp.tm_hour == 0 || stamp.tm_hour == 12)/* 12am/12pm */
243                         scr_printf("at 12:%02d%cm", stamp.tm_min, 
244                                 stamp.tm_hour ? 'p' : 'a');
245                 else if (stamp.tm_hour > 12)                    /* pm */
246                         scr_printf("at %d:%02dpm",
247                                 stamp.tm_hour - 12, stamp.tm_min);
248                 else                                            /* am */
249                         scr_printf("at %d:%02dam", stamp.tm_hour, stamp.tm_min);
250                 
251                 /* Sender */
252                 scr_printf(" from %s", sender);
253         
254                 /* Remote node, if any */
255                 if (strncmp(ipc_for_signal_handlers->ServInfo.nodename, node, 32))
256                         scr_printf(" @%s", node);
257         
258                 scr_printf(":\n");
259                 fmout(screenwidth, NULL, listing, NULL, 0);
260                 free(listing);
261
262         }
263         scr_printf("\n---\n");
264         color(BRIGHT_WHITE);
265
266
267 }
268
269
270 void set_keepalives(int s)
271 {
272         keepalives_enabled = (char) s;
273 }
274
275 /* 
276  * This loop handles the "keepalive" messages sent to the server when idling.
277  */
278
279 static time_t idlet = 0;
280 static void really_do_keepalive(void) {
281
282         time(&idlet);
283
284         /* This may sometimes get called before we are actually connected
285          * to the server.  Don't do anything if we aren't connected. -IO
286          */
287         if (!ipc_for_signal_handlers)
288                 return;
289
290         /* If full keepalives are enabled, send a NOOP to the server and
291          * wait for a response.
292          */
293         if (keepalives_enabled == KA_YES) {
294                 CtdlIPCNoop(ipc_for_signal_handlers);
295                 if (instant_msgs > 0) {
296                         if (ok_to_interrupt == 1) {
297                                 scr_printf("\r%64s\r", "");
298                                 print_instant();
299                                 scr_printf("%s%c ", room_name,
300                                        room_prompt(room_flags));
301                                 scr_flush();
302                         }
303                 }
304         }
305
306         /* If half keepalives are enabled, send a QNOP to the server (if the
307          * server supports it) and then do nothing.
308          */
309         if ( (keepalives_enabled == KA_HALF)
310            && (ipc_for_signal_handlers->ServInfo.supports_qnop > 0) ) {
311                 CtdlIPC_chat_send(ipc_for_signal_handlers, "QNOP");
312         }
313 }
314
315 /* threaded nonblocking keepalive stuff starts here. I'm going for a simple
316    encapsulated interface; in theory there should be no need to touch these
317    globals outside of the async_ka_* functions. */
318
319 #ifdef THREADED_CLIENT
320 static pthread_t ka_thr_handle;
321 static int ka_thr_active = 0;
322 static int async_ka_enabled = 0;
323
324 static void *ka_thread(void *arg)
325 {
326 #ifdef HAVE_BACKTRACE
327         char threadName[256];
328
329         // Set up our name
330         sprintf(threadName, "ka_Thread n");
331
332         // Register for tracing
333         eCrash_RegisterThread(threadName, 0);
334 #endif
335         really_do_keepalive();
336         pthread_detach(ka_thr_handle);
337         ka_thr_active = 0;
338         
339 #ifdef HAVE_BACKTRACE
340         eCrash_UnregisterThread();
341 #endif
342         return NULL;
343 }
344
345 /* start up a thread to handle a keepalive in the background */
346 static void async_ka_exec(void)
347 {
348         if (!ka_thr_active) {
349                 ka_thr_active = 1;
350                 if (pthread_create(&ka_thr_handle, NULL, ka_thread, NULL)) {
351                         perror("pthread_create");
352                         exit(1);
353                 }
354         }
355 }
356 #endif /* THREADED_CLIENT */
357
358 /* I changed this from static to not because I need to call it from
359    screen.c, either that or make something in screen.c not static.
360    Fix it how you like. Why all the staticness? stu */
361    
362 void do_keepalive(void)
363 {
364         time_t now;
365
366         time(&now);
367         if ((now - idlet) < ((long) S_KEEPALIVE))
368                 return;
369
370         /* Do a space-backspace to keep telnet sessions from idling out */
371         scr_printf(" %c", 8);
372         scr_flush();
373
374 #ifdef THREADED_CLIENT
375         if (async_ka_enabled)
376                 async_ka_exec();
377         else
378 #endif
379                 really_do_keepalive();
380 }
381
382
383 /* Now the actual async-keepalve API that we expose to higher levels:
384    async_ka_start() and async_ka_end(). These do nothing when we don't have
385    threading enabled, so we avoid sprinkling ifdef's throughout the code. */
386
387 /* wait for a background keepalive to complete. this must be done before
388    attempting any further server requests! */
389 void async_ka_end(void)
390 {
391 #ifdef THREADED_CLIENT
392         if (ka_thr_active)
393                 pthread_join(ka_thr_handle, NULL);
394
395         async_ka_enabled--;
396 #endif
397 }
398
399 /* tell do_keepalive() that keepalives are asynchronous. */
400 void async_ka_start(void)
401 {
402 #ifdef THREADED_CLIENT
403         async_ka_enabled++;
404 #endif
405 }
406
407
408 int inkey(void)
409 {                               /* get a character from the keyboard, with   */
410         int a;                  /* the watchdog timer in effect if necessary */
411         fd_set rfds;
412         struct timeval tv;
413         time_t start_time;
414
415         scr_flush();
416         time(&start_time);
417
418         do {
419                 /* This loop waits for keyboard input.  If the keepalive
420                  * timer expires, it sends a keepalive to the server if
421                  * necessary and then waits again.
422                  */
423                 do {
424                         do_keepalive();
425
426                         FD_ZERO(&rfds);
427                         FD_SET(0, &rfds);
428                         tv.tv_sec = S_KEEPALIVE;
429                         tv.tv_usec = 0;
430
431                         select(1, &rfds, NULL, NULL, &tv);
432                 } while (!FD_ISSET(0, &rfds));
433
434                 /* At this point, there's input, so fetch it.
435                  * (There's a hole in the bucket...)
436                  */
437                 a = scr_getc(SCR_BLOCK);
438                 if (a == 127) {
439                         a = 8;
440                 }
441                 if (a == 13) {
442                         a = 10;
443                 }
444         } while (a == 0);
445         return (a);
446 }
447
448
449 int yesno(void)
450 {                               /* Returns 1 for yes, 0 for no */
451         int a;
452         while (1) {
453                 a = inkey();
454                 a = tolower(a);
455                 if (a == 'y') {
456                         scr_printf("Yes\n");
457                         return (1);
458                 }
459                 if (a == 'n') {
460                         scr_printf("No\n");
461                         return (0);
462                 }
463         }
464 }
465
466 /* Returns 1 for yes, 0 for no, arg is default value */
467 int yesno_d(int d)
468 {
469         int a;
470         while (1) {
471                 a = inkey();
472                 a = tolower(a);
473                 if (a == 10)
474                         a = (d ? 'y' : 'n');
475                 if (a == 'y') {
476                         scr_printf("Yes\n");
477                         return (1);
478                 }
479                 if (a == 'n') {
480                         scr_printf("No\n");
481                         return (0);
482                 }
483         }
484 }
485
486
487
488
489 /*
490  * Function to read a line of text from the terminal.
491  *
492  * string               Pointer to string buffer
493  * lim                  Maximum length
494  * noshow               Echo asterisks instead of keystrokes?
495  * bs                   Allow backspacing out of the prompt? (returns -1 if this happens)
496  *
497  * returns: string length
498  */
499 int ctdl_getline(char *string, int lim, int noshow, int bs)
500 {
501         int pos = strlen(string);
502         int ch;
503
504         async_ka_start();
505         if (noshow && !IsEmptyStr(string)) {
506                 int num_stars = strlen(string);
507                 while (num_stars--) {
508                         scr_putc('*');
509                 }
510         }
511         else {
512                 scr_printf("%s", string);
513         }
514
515         while(1) {
516                 ch = inkey();
517
518                 if ((ch == 8)  && (pos > 0)) {                          /* backspace */
519                         --pos;
520                         scr_putc(8); scr_putc(32); scr_putc(8);
521                 }
522
523                 else if ((ch == 8) && (pos == 0) && (bs)) {             /* backspace out of the prompt */
524                         async_ka_end();
525                         return(-1);
526                 }
527
528                 else if ((ch == 23) && (pos > 0)) {                     /* Ctrl-W deletes a word */
529                         while ((pos > 0) && !isspace(string[pos])) {
530                                 --pos;
531                                 scr_putc(8); scr_putc(32); scr_putc(8);
532                         }
533                         while ((pos > 0) && !isspace(string[pos-1])) {
534                                 --pos;
535                                 scr_putc(8); scr_putc(32); scr_putc(8);
536                         }
537                 }
538
539                 else if (ch == 10) {                                    /* return */
540                         string[pos] = 0;
541                         scr_printf("\n");
542                         async_ka_end();
543                         return(pos);
544                 }
545
546                 else if (isprint(ch)) {                                 /* payload characters */
547                         scr_putc((noshow ? '*' : ch));
548                         string[pos] = ch;
549                         ++pos;
550                 }
551         }
552 }
553
554
555 /* 
556  * newprompt()          prompt for a string, print the existing value, and
557  *                      allow the user to press return to keep it...
558  *                      If len is negative, pass the "noshow" flag to ctdl_getline()
559  */
560 void strprompt(char *prompt, char *str, int len)
561 {
562         print_instant();
563         color(DIM_WHITE);
564         scr_printf("%s", prompt);
565         color(DIM_WHITE);
566         scr_printf(": ");
567         color(BRIGHT_CYAN);
568         ctdl_getline(str, abs(len), (len<0), 0);
569         color(DIM_WHITE);
570 }
571
572 /*
573  * boolprompt()  -  prompt for a yes/no, print the existing value and
574  *                  allow the user to press return to keep it...
575  */
576 int boolprompt(char *prompt, int prev_val)
577 {
578         int r;
579
580         color(DIM_WHITE);
581         scr_printf("%s ", prompt);
582         color(DIM_MAGENTA);
583         scr_printf("[");
584         color(BRIGHT_MAGENTA);
585         scr_printf("%s", (prev_val ? "Yes" : "No"));
586         color(DIM_MAGENTA);
587         scr_printf("]: ");
588         color(BRIGHT_CYAN);
589         r = (yesno_d(prev_val));
590         color(DIM_WHITE);
591         return r;
592 }
593
594 /* 
595  * intprompt()  -  like strprompt(), except for an integer
596  *                 (note that it RETURNS the new value!)
597  */
598 int intprompt(char *prompt, int ival, int imin, int imax)
599 {
600         char buf[16];
601         int i;
602         int p;
603
604         do {
605                 i = ival;
606                 snprintf(buf, sizeof buf, "%d", i);
607                 strprompt(prompt, buf, 15);
608                 i = atoi(buf);
609                 for (p=0; !IsEmptyStr(&buf[p]); ++p) {
610                         if ( (!isdigit(buf[p]))
611                            && ( (buf[p]!='-') || (p!=0) )  )
612                                 i = imin - 1;
613                 }
614                 if (i < imin)
615                         scr_printf("*** Must be no less than %d.\n", imin);
616                 if (i > imax)
617                         scr_printf("*** Must be no more than %d.\n", imax);
618         } while ((i < imin) || (i > imax));
619         return (i);
620 }
621
622 /* 
623  * newprompt()          prompt for a string with no existing value
624  *                      (clears out string buffer first)
625  *                      If len is negative, pass the "noshow" flag to ctdl_getline()
626  */
627 void newprompt(char *prompt, char *str, int len)
628 {
629         str[0] = 0;
630         color(BRIGHT_MAGENTA);
631         scr_printf("%s", prompt);
632         color(DIM_MAGENTA);
633         ctdl_getline(str, abs(len), (len<0), 0);
634         color(DIM_WHITE);
635 }
636
637
638 int lkey(void)
639 {                               /* returns a lower case value */
640         int a;
641         a = inkey();
642         if (isupper(a))
643                 a = tolower(a);
644         return (a);
645 }
646
647 /*
648  * parse the citadel.rc file
649  */
650 void load_command_set(void)
651 {
652         FILE *ccfile;
653         char buf[1024];
654         struct citcmd *cptr;
655         struct citcmd *lastcmd = NULL;
656         int a, d;
657         int b = 0;
658
659         /* first, set up some defaults for non-required variables */
660
661         strcpy(editor_path, "");
662         strcpy(printcmd, "");
663         strcpy(imagecmd, "");
664         strcpy(rc_username, "");
665         strcpy(rc_password, "");
666         rc_floor_mode = 0;
667         rc_exp_beep = 1;
668         rc_allow_attachments = 0;
669         rc_remember_passwords = 0;
670         strcpy(rc_exp_cmd, "");
671         rc_display_message_numbers = 0;
672         rc_force_mail_prompts = 0;
673         rc_ansi_color = 0;
674         rc_color_use_bg = 0;
675         strcpy(rc_url_cmd, "");
676         strcpy(rc_open_cmd, "");
677         strcpy(rc_gotmail_cmd, "");
678 #ifdef HAVE_OPENSSL
679         rc_encrypt = RC_DEFAULT;
680 #endif
681
682         /* now try to open the citadel.rc file */
683
684         ccfile = NULL;
685         if (getenv("HOME") != NULL) {
686                 snprintf(buf, sizeof buf, "%s/.citadelrc", getenv("HOME"));
687                 ccfile = fopen(buf, "r");
688         }
689         if (ccfile == NULL) {
690                 ccfile = fopen(file_citadel_rc, "r");
691         }
692         if (ccfile == NULL) {
693                 ccfile = fopen("/etc/citadel.rc", "r");
694         }
695         if (ccfile == NULL) {
696                 ccfile = fopen("./citadel.rc", "r");
697         }
698         if (ccfile == NULL) {
699                 perror("commands: cannot open citadel.rc");
700                 logoff(NULL, 3);
701         }
702         while (fgets(buf, sizeof buf, ccfile) != NULL) {
703                 while ((!IsEmptyStr(buf)) ? (isspace(buf[strlen(buf) - 1])) : 0)
704                         buf[strlen(buf) - 1] = 0;
705
706                 if (!strncasecmp(buf, "encrypt=", 8)) {
707                         if (!strcasecmp(&buf[8], "yes")) {
708 #ifdef HAVE_OPENSSL
709                                 rc_encrypt = RC_YES;
710 #else
711                                 fprintf(stderr, "citadel.rc requires encryption support but citadel is not compiled with OpenSSL");
712                                 logoff(NULL, 3);
713 #endif
714                         }
715 #ifdef HAVE_OPENSSL
716                         else if (!strcasecmp(&buf[8], "no")) {
717                                 rc_encrypt = RC_NO;
718                         }
719                         else if (!strcasecmp(&buf[8], "default")) {
720                                 rc_encrypt = RC_DEFAULT;
721                         }
722 #endif
723                 }
724
725                 if (!strncasecmp(buf, "editor=", 7)) {
726                         strcpy(editor_path, &buf[7]);
727                 }
728
729                 if (!strncasecmp(buf, "printcmd=", 9))
730                         strcpy(printcmd, &buf[9]);
731
732                 if (!strncasecmp(buf, "imagecmd=", 9))
733                         strcpy(imagecmd, &buf[9]);
734
735                 if (!strncasecmp(buf, "expcmd=", 7))
736                         strcpy(rc_exp_cmd, &buf[7]);
737
738                 if (!strncasecmp(buf, "use_floors=", 11)) {
739                         if (!strcasecmp(&buf[11], "yes"))
740                                 rc_floor_mode = RC_YES;
741                         if (!strcasecmp(&buf[11], "no"))
742                                 rc_floor_mode = RC_NO;
743                         if (!strcasecmp(&buf[11], "default"))
744                                 rc_floor_mode = RC_DEFAULT;
745                 }
746                 if (!strncasecmp(buf, "beep=", 5)) {
747                         rc_exp_beep = atoi(&buf[5]);
748                 }
749                 if (!strncasecmp(buf, "allow_attachments=", 18)) {
750                         rc_allow_attachments = atoi(&buf[18]);
751                 }
752                 if (!strncasecmp(buf, "idle_threshold=", 15)) {
753                         rc_idle_threshold = atol(&buf[15]);
754                 }
755                 if (!strncasecmp(buf, "remember_passwords=", 19)) {
756                         rc_remember_passwords = atoi(&buf[19]);
757                 }
758                 if (!strncasecmp(buf, "display_message_numbers=", 24)) {
759                         rc_display_message_numbers = atoi(&buf[24]);
760                 }
761                 if (!strncasecmp(buf, "force_mail_prompts=", 19)) {
762                         rc_force_mail_prompts = atoi(&buf[19]);
763                 }
764                 if (!strncasecmp(buf, "ansi_color=", 11)) {
765                         if (!strncasecmp(&buf[11], "on", 2))
766                                 rc_ansi_color = 1;
767                         if (!strncasecmp(&buf[11], "auto", 4))
768                                 rc_ansi_color = 2;      /* autodetect */
769                         if (!strncasecmp(&buf[11], "user", 4))
770                                 rc_ansi_color = 3;      /* user config */
771                 }
772                 if (!strncasecmp(buf, "status_line=", 12)) {
773                         if (!strncasecmp(&buf[12], "on", 2))
774                                 enable_status_line = 1;
775                 }
776                 if (!strncasecmp(buf, "use_background=", 15)) {
777                         if (!strncasecmp(&buf[15], "on", 2))
778                                 rc_color_use_bg = 9;
779                 }
780                 if (!strncasecmp(buf, "prompt_control=", 15)) {
781                         if (!strncasecmp(&buf[15], "on", 2))
782                                 rc_prompt_control = 1;
783                         if (!strncasecmp(&buf[15], "user", 4))
784                                 rc_prompt_control = 3;  /* user config */
785                 }
786                 if (!strncasecmp(buf, "username=", 9))
787                         strcpy(rc_username, &buf[9]);
788
789                 if (!strncasecmp(buf, "password=", 9))
790                         strcpy(rc_password, &buf[9]);
791
792                 if (!strncasecmp(buf, "urlcmd=", 7))
793                         strcpy(rc_url_cmd, &buf[7]);
794
795                 if (!strncasecmp(buf, "opencmd=", 7))
796                         strcpy(rc_open_cmd, &buf[8]);
797
798                 if (!strncasecmp(buf, "gotmailcmd=", 11))
799                         strcpy(rc_gotmail_cmd, &buf[11]);
800
801                 if (!strncasecmp(buf, "cmd=", 4)) {
802                         strcpy(buf, &buf[4]);
803
804                         cptr = (struct citcmd *) malloc(sizeof(struct citcmd));
805
806                         cptr->c_cmdnum = atoi(buf);
807                         for (d = strlen(buf); d >= 0; --d)
808                                 if (buf[d] == ',')
809                                         b = d;
810                         strcpy(buf, &buf[b + 1]);
811
812                         cptr->c_axlevel = atoi(buf);
813                         for (d = strlen(buf); d >= 0; --d)
814                                 if (buf[d] == ',')
815                                         b = d;
816                         strcpy(buf, &buf[b + 1]);
817
818                         for (a = 0; a < 5; ++a)
819                                 cptr->c_keys[a][0] = 0;
820
821                         a = 0;
822                         b = 0;
823                         buf[strlen(buf) + 1] = 0;
824                         while (!IsEmptyStr(buf)) {
825                                 b = strlen(buf);
826                                 for (d = strlen(buf); d >= 0; --d)
827                                         if (buf[d] == ',')
828                                                 b = d;
829                                 strncpy(cptr->c_keys[a], buf, b);
830                                 cptr->c_keys[a][b] = 0;
831                                 if (buf[b] == ',')
832                                         strcpy(buf, &buf[b + 1]);
833                                 else
834                                         strcpy(buf, "");
835                                 ++a;
836                         }
837
838                         cptr->next = NULL;
839                         if (cmdlist == NULL)
840                                 cmdlist = cptr;
841                         else
842                                 lastcmd->next = cptr;
843                         lastcmd = cptr;
844                 }
845         }
846         fclose(ccfile);
847 }
848
849
850
851 /*
852  * return the key associated with a command
853  */
854 char keycmd(char *cmdstr)
855 {
856         int a;
857
858         for (a = 0; !IsEmptyStr(&cmdstr[a]); ++a)
859                 if (cmdstr[a] == '&')
860                         return (tolower(cmdstr[a + 1]));
861         return (0);
862 }
863
864
865 /*
866  * Output the string from a key command without the ampersand
867  * "mode" should be set to 0 for normal or 1 for <C>ommand key highlighting
868  */
869 char *cmd_expand(char *strbuf, int mode)
870 {
871         int a;
872         static char exp[64];
873         char buf[1024];
874
875         strcpy(exp, strbuf);
876
877         for (a = 0; exp[a]; ++a) {
878                 if (strbuf[a] == '&') {
879
880                         /* dont echo these non mnemonic command keys */
881                         int noecho = strbuf[a+1] == '<' || strbuf[a+1] == '>' || strbuf[a+1] == '+' || strbuf[a+1] == '-';
882
883                         if (mode == 0) {
884                                 strcpy(&exp[a], &exp[a + 1 + noecho]);
885                         }
886                         if (mode == 1) {
887                                 exp[a] = '<';
888                                 strcpy(buf, &exp[a + 2]);
889                                 exp[a + 2] = '>';
890                                 exp[a + 3] = 0;
891                                 strcat(exp, buf);
892                         }
893                 }
894                 if (!strncmp(&exp[a], "^r", 2)) {
895                         strcpy(buf, exp);
896                         strcpy(&exp[a], room_name);
897                         strcat(exp, &buf[a + 2]);
898                 }
899                 if (!strncmp(&exp[a], "^c", 2)) {
900                         exp[a] = ',';
901                         strcpy(&exp[a + 1], &exp[a + 2]);
902                 }
903         }
904
905         return (exp);
906 }
907
908
909
910 /*
911  * Comparison function to determine if entered commands match a
912  * command loaded from the config file.
913  */
914 int cmdmatch(char *cmdbuf, struct citcmd *cptr, int ncomp)
915 {
916         int a;
917         int cmdax;
918
919         cmdax = 0;
920         if (is_room_aide)
921                 cmdax = 1;
922         if (axlevel >= 6)
923                 cmdax = 2;
924
925         for (a = 0; a < ncomp; ++a) {
926                 if ((tolower(cmdbuf[a]) != keycmd(cptr->c_keys[a]))
927                     || (cptr->c_axlevel > cmdax))
928                         return (0);
929         }
930         return (1);
931 }
932
933
934 /*
935  * This function returns 1 if a given command requires a string input
936  */
937 int requires_string(struct citcmd *cptr, int ncomp)
938 {
939         int a;
940         char buf[64];
941
942         strcpy(buf, cptr->c_keys[ncomp - 1]);
943         for (a = 0; !IsEmptyStr(&buf[a]); ++a) {
944                 if (buf[a] == ':')
945                         return (1);
946         }
947         return (0);
948 }
949
950
951 /*
952  * Input a command at the main prompt.
953  * This function returns an integer command number.  If the command prompts
954  * for a string then it is placed in the supplied buffer.
955  */
956 int getcmd(CtdlIPC *ipc, char *argbuf)
957 {
958         char cmdbuf[5];
959         int cmdspaces[5];
960         int cmdpos;
961         int ch;
962         int a;
963         int got;
964         int this_lazy_cmd;
965         struct citcmd *cptr;
966
967         /*
968          * Starting a new command now, so set sigcaught to 0.  This variable
969          * is set to nonzero (usually NEXT_KEY or STOP_KEY) if a command has
970          * been interrupted by a keypress.
971          */
972         sigcaught = 0;
973
974         /* Switch color support on or off if we're in user mode */
975         if (rc_ansi_color == 3) {
976                 if (userflags & US_COLOR)
977                         enable_color = 1;
978                 else
979                         enable_color = 0;
980         }
981         /* if we're running in idiot mode, display a cute little menu */
982         IFNEXPERT formout(ipc, "mainmenu");
983
984         print_instant();
985         strcpy(argbuf, "");
986         cmdpos = 0;
987         for (a = 0; a < 5; ++a)
988                 cmdbuf[a] = 0;
989         /* now the room prompt... */
990         ok_to_interrupt = 1;
991         color(BRIGHT_WHITE);
992         scr_printf("\n%s", room_name);
993         color(DIM_WHITE);
994         scr_printf("%c ", room_prompt(room_flags));
995
996         while (1) {
997                 ch = inkey();
998                 ok_to_interrupt = 0;
999
1000                 /* Handle the backspace key, but only if there's something
1001                  * to backspace over...
1002                  */
1003                 if ((ch == 8) && (cmdpos > 0)) {
1004                         back(cmdspaces[cmdpos - 1] + 1);
1005                         cmdbuf[cmdpos] = 0;
1006                         --cmdpos;
1007                 }
1008                 /* Spacebar invokes "lazy traversal" commands */
1009                 if ((ch == 32) && (cmdpos == 0)) {
1010                         this_lazy_cmd = next_lazy_cmd;
1011                         if (this_lazy_cmd == 13)
1012                                 next_lazy_cmd = 5;
1013                         if (this_lazy_cmd == 5)
1014                                 next_lazy_cmd = 13;
1015                         for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1016                                 if (cptr->c_cmdnum == this_lazy_cmd) {
1017                                         for (a = 0; a < 5; ++a)
1018                                                 if (cptr->c_keys[a][0] != 0)
1019                                                         scr_printf("%s ", cmd_expand(
1020                                                                                         cptr->c_keys[a], 0));
1021                                         scr_printf("\n");
1022                                         return (this_lazy_cmd);
1023                                 }
1024                         }
1025                         scr_printf("\n");
1026                         return (this_lazy_cmd);
1027                 }
1028                 /* Otherwise, process the command */
1029                 cmdbuf[cmdpos] = tolower(ch);
1030
1031                 for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1032                         if (cmdmatch(cmdbuf, cptr, cmdpos + 1)) {
1033
1034                                 scr_printf("%s", cmd_expand(cptr->c_keys[cmdpos], 0));
1035                                 cmdspaces[cmdpos] = strlen(
1036                                     cmd_expand(cptr->c_keys[cmdpos], 0));
1037                                 if (cmdpos < 4)
1038                                         if ((cptr->c_keys[cmdpos + 1]) != 0)
1039                                                 scr_putc(' ');
1040                                 ++cmdpos;
1041                         }
1042                 }
1043
1044                 for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1045                         if (cmdmatch(cmdbuf, cptr, 5)) {
1046                                 /* We've found our command. */
1047                                 if (requires_string(cptr, cmdpos)) {
1048                                         argbuf[0] = 0;
1049                                         ctdl_getline(argbuf, 64, 0, 0);
1050                                 } else {
1051                                         scr_printf("\n");
1052                                 }
1053
1054                                 /* If this command is one that changes rooms,
1055                                  * then the next lazy-command (space bar)
1056                                  * should be "read new" instead of "goto"
1057                                  */
1058                                 if ((cptr->c_cmdnum == 5)
1059                                     || (cptr->c_cmdnum == 6)
1060                                     || (cptr->c_cmdnum == 47)
1061                                     || (cptr->c_cmdnum == 52)
1062                                     || (cptr->c_cmdnum == 16)
1063                                     || (cptr->c_cmdnum == 20))
1064                                         next_lazy_cmd = 13;
1065
1066                                 /* If this command is "read new"
1067                                  * then the next lazy-command (space bar)
1068                                  * should be "goto"
1069                                  */
1070                                 if (cptr->c_cmdnum == 13)
1071                                         next_lazy_cmd = 5;
1072
1073                                 return (cptr->c_cmdnum);
1074
1075                         }
1076                 }
1077
1078                 if (ch == '?') {
1079                         scr_printf("\rOne of ...                         \n");
1080                         for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1081                                 if (cmdmatch(cmdbuf, cptr, cmdpos)) {
1082                                         for (a = 0; a < 5; ++a) {
1083                                            keyopt(cmd_expand(cptr->c_keys[a], 1));
1084                                    scr_printf(" ");
1085                                         }
1086                                         scr_printf("\n");
1087                                 }
1088                         }
1089                 sigcaught = 0;
1090
1091                         scr_printf("\n%s%c ", room_name, room_prompt(room_flags));
1092                         got = 0;
1093                         for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1094                                 if ((got == 0) && (cmdmatch(cmdbuf, cptr, cmdpos))) {
1095                                         for (a = 0; a < cmdpos; ++a) {
1096                                                 scr_printf("%s ",
1097                                                        cmd_expand(cptr->c_keys[a], 0));
1098                                         }
1099                                         got = 1;
1100                                 }
1101                         }
1102                 }
1103         }
1104
1105 }
1106
1107
1108
1109
1110
1111 /*
1112  * set tty modes.  commands are:
1113  * 
1114  * 01- set to Citadel mode
1115  * 2 - save current settings for later restoral
1116  * 3 - restore saved settings
1117  */
1118 #ifdef HAVE_TERMIOS_H
1119 void stty_ctdl(int cmd)
1120 {                               /* SysV version of stty_ctdl() */
1121         struct termios live;
1122         static struct termios saved_settings;
1123         static int last_cmd = 0;
1124
1125         if (cmd == SB_LAST)
1126                 cmd = last_cmd;
1127         else
1128                 last_cmd = cmd;
1129
1130         if ((cmd == 0) || (cmd == 1)) {
1131                 tcgetattr(0, &live);
1132                 live.c_iflag = ISTRIP | IXON | IXANY;
1133                 live.c_oflag = OPOST | ONLCR;
1134                 live.c_lflag = ISIG | NOFLSH;
1135
1136                 live.c_cc[VINTR] = 0;
1137                 live.c_cc[VQUIT] = 0;
1138
1139 #ifdef hpux
1140                 live.c_cc[VMIN] = 0;
1141                 live.c_cc[VTIME] = 0;
1142 #endif
1143
1144                 /* do we even need this stuff anymore? */
1145                 /* live.c_line=0; */
1146                 live.c_cc[VERASE] = 8;
1147                 live.c_cc[VKILL] = 24;
1148                 live.c_cc[VEOF] = 1;
1149                 live.c_cc[VEOL] = 255;
1150                 live.c_cc[VEOL2] = 0;
1151                 live.c_cc[VSTART] = 0;
1152                 tcsetattr(0, TCSADRAIN, &live);
1153         }
1154         if (cmd == 2) {
1155                 tcgetattr(0, &saved_settings);
1156         }
1157         if (cmd == 3) {
1158                 tcsetattr(0, TCSADRAIN, &saved_settings);
1159         }
1160
1161 }
1162 #else
1163 void stty_ctdl(int cmd)
1164 {                               /* BSD version of stty_ctdl() */
1165         struct sgttyb live;
1166         static struct sgttyb saved_settings;
1167         static int last_cmd = 0;
1168
1169         if (cmd == SB_LAST)
1170                 cmd = last_cmd;
1171         else
1172                 last_cmd = cmd;
1173
1174         if ((cmd == 0) || (cmd == 1)) {
1175                 gtty(0, &live);
1176                 live.sg_flags |= CBREAK;
1177                 live.sg_flags |= CRMOD;
1178                 live.sg_flags |= NL1;
1179                 live.sg_flags &= ~ECHO;
1180                 if (cmd == 1)
1181                         live.sg_flags |= NOFLSH;
1182                 stty(0, &live);
1183         }
1184         if (cmd == 2) {
1185                 gtty(0, &saved_settings);
1186         }
1187         if (cmd == 3) {
1188                 stty(0, &saved_settings);
1189         }
1190 }
1191 #endif
1192
1193
1194 /*
1195  * display_help()  -  help text viewer
1196  */
1197 void display_help(CtdlIPC *ipc, char *name)
1198 {
1199         int i;
1200         int num_helps = sizeof(helpnames) / sizeof(char *) ;
1201
1202         for (i=0; i<num_helps; ++i) {
1203                 if (!strcasecmp(name, helpnames[i])) {
1204                         fmout(screenwidth, NULL, helptexts[i], NULL, 0);
1205                         return;
1206                 }
1207         }
1208
1209         scr_printf("'%s' not found.  Enter one of:\n", name);
1210         for (i=0; i<num_helps; ++i) {
1211                 scr_printf("  %s\n", helpnames[i]);
1212         }
1213 }
1214
1215
1216 /*
1217  * fmout() - Citadel text formatter and paginator
1218  */
1219 int fmout(
1220         int width,      /* screen width to use */
1221         FILE *fpin,     /* file to read from, or NULL to format given text */
1222         char *text,     /* text to be formatted (when fpin is NULL */
1223         FILE *fpout,    /* file to write to, or NULL to write to screen */
1224         int subst)      /* nonzero if we should use hypertext mode */
1225 {
1226         char *buffer = NULL;    /* The current message */
1227         char *word = NULL;      /* What we are about to actually print */
1228         char *e;                /* Pointer to position in text */
1229         char old = 0;           /* The previous character */
1230         int column = 0;         /* Current column */
1231         size_t i;               /* Generic counter */
1232
1233         /* Space for a single word, which can be at most screenwidth */
1234         word = (char *)calloc(1, width);
1235         if (!word) {
1236                 scr_printf("Can't alloc memory to print message: %s!\n",
1237                                 strerror(errno));
1238                 logoff(NULL, 3);
1239         }
1240
1241         /* Read the entire message body into memory */
1242         if (fpin) {
1243                 buffer = load_message_from_file(fpin);
1244                 if (!buffer) {
1245                         scr_printf("Can't print message: %s!\n",
1246                                         strerror(errno));
1247                         logoff(NULL, 3);
1248                 }
1249         } else {
1250                 buffer = text;
1251         }
1252         e = buffer;
1253
1254         /* Run the message body */
1255         while (*e) {
1256                 /* Catch characters that shouldn't be there at all */
1257                 if (*e == '\r') {
1258                         e++;
1259                         continue;
1260                 }
1261                 /* First, are we looking at a newline? */
1262                 if (*e == '\n') {
1263                         e++;
1264                         if (*e == ' ') {        /* Paragraph */
1265                                 if (fpout) {
1266                                         fprintf(fpout, "\n");
1267                                 } else {
1268                                         scr_printf("\n");
1269                                 }
1270                                 column = 0;
1271                         } else if (old != ' ') {/* Don't print two spaces */
1272                                 if (fpout) {
1273                                         fprintf(fpout, " ");
1274                                 } else {
1275                                         scr_printf(" ");
1276                                 }
1277                                 column++;
1278                         }
1279                         old = '\n';
1280                         continue;
1281                 }
1282
1283                 /* Are we looking at a nonprintable?
1284                  * (This section is now commented out because we could be displaying
1285                  * a character set like UTF-8 or ISO-8859-1.)
1286                 if ( (*e < 32) || (*e > 126) ) {
1287                         e++;
1288                         continue;
1289                 } */
1290
1291                 /* Or are we looking at a space? */
1292                 if (*e == ' ') {
1293                         e++;
1294                         if (column >= width - 1) {
1295                                 /* Are we in the rightmost column? */
1296                                 if (fpout) {
1297                                         fprintf(fpout, "\n");
1298                                 } else {
1299                                         scr_printf("\n");
1300                                 }
1301                                 column = 0;
1302                         } else if (!(column == 0 && old == ' ')) {
1303                                 /* Eat only the first space on a line */
1304                                 if (fpout) {
1305                                         fprintf(fpout, " ");
1306                                 } else {
1307                                         scr_printf(" ");
1308                                 }
1309                                 column++;
1310                         }
1311                         /* ONLY eat the FIRST space on a line */
1312                         old = ' ';
1313                         continue;
1314                 }
1315                 old = *e;
1316
1317                 /* Read a word, slightly messy */
1318                 i = 0;
1319                 while (e[i]) {
1320                         if (!isprint(e[i]) && !isspace(e[i]))
1321                                 e[i] = ' ';
1322                         if (isspace(e[i]))
1323                                 break;
1324                         i++;
1325                 }
1326
1327                 /* We should never see these, but... slightly messy */
1328                 if (e[i] == '\t' || e[i] == '\f' || e[i] == '\v')
1329                         e[i] = ' ';
1330
1331                 /* Break up really long words */
1332                 /* TODO: auto-hyphenation someday? */
1333                 if (i >= width) 
1334                         i = width - 1;
1335                 strncpy(word, e, i);
1336                 word[i] = 0;
1337
1338                 /* Decide where to print the word */
1339                 if (column + i >= width) {
1340                         /* Wrap to the next line */
1341                         if (fpout) {
1342                                 fprintf(fpout, "\n");
1343                         } else {
1344                                 scr_printf("\n");
1345                         }
1346                         column = 0;
1347                 }
1348
1349                 /* Print the word */
1350                 if (fpout) {
1351                         fprintf(fpout, "%s", word);
1352                 } else {
1353                         scr_printf("%s", word);
1354                 }
1355                 column += i;
1356                 e += i;         /* Start over with the whitepsace! */
1357         }
1358
1359         free(word);
1360         if (fpin)               /* We allocated this, remember? */
1361                 free(buffer);
1362
1363         /* Is this necessary?  It makes the output kind of spacey. */
1364         if (fpout) {
1365                 fprintf(fpout, "\n");
1366         } else {
1367                 scr_printf("\n");
1368         }
1369
1370         return sigcaught;
1371 }
1372
1373
1374 /*
1375  * support ANSI color if defined
1376  */
1377 void color(int colornum)
1378 {
1379         static int hold_color;
1380         static int current_color;
1381
1382         if (colornum == COLOR_PUSH) {
1383                 hold_color = current_color;
1384                 return;
1385         }
1386
1387         if (colornum == COLOR_POP) {
1388                 color(hold_color);
1389                 return;
1390         }
1391
1392         current_color = colornum;
1393         if (enable_color) {
1394                 /* When switching to dim white, actually output an 'original
1395                  * pair' sequence -- this looks better on black-on-white
1396                  * terminals. - Changed to ORIGINAL_PAIR as this actually
1397                  * wound up looking horrible on black-on-white terminals, not
1398                  * to mention transparent terminals.
1399                  */
1400                 if (colornum == ORIGINAL_PAIR)
1401                         printf("\033[0;39;49m");
1402                 else
1403                         printf("\033[%d;3%d;4%dm", 
1404                                         (colornum & 8) ? 1 : 0,
1405                                         (colornum & 7),
1406                                         rc_color_use_bg);
1407
1408         }
1409 }
1410
1411 void cls(int colornum)
1412 {
1413         if (enable_color) {
1414                 printf("\033[4%dm\033[2J\033[H\033[0m",
1415                                 colornum ? colornum : rc_color_use_bg);
1416         }
1417 }
1418
1419
1420 /*
1421  * Detect whether ANSI color is available (answerback)
1422  */
1423 void send_ansi_detect(void)
1424 {
1425         if (rc_ansi_color == 2) {
1426                 printf("\033[c");
1427                 scr_flush();
1428                 time(&AnsiDetect);
1429         }
1430 }
1431
1432 void look_for_ansi(void)
1433 {
1434         fd_set rfds;
1435         struct timeval tv;
1436         char abuf[512];
1437         time_t now;
1438         int a, rv;
1439
1440         if (rc_ansi_color == 0) {
1441                 enable_color = 0;
1442         } else if (rc_ansi_color == 1) {
1443                 enable_color = 1;
1444         } else if (rc_ansi_color == 2) {
1445
1446                 /* otherwise, do the auto-detect */
1447
1448                 strcpy(abuf, "");
1449
1450                 time(&now);
1451                 if ((now - AnsiDetect) < 2)
1452                         sleep(1);
1453
1454                 do {
1455                         FD_ZERO(&rfds);
1456                         FD_SET(0, &rfds);
1457                         tv.tv_sec = 0;
1458                         tv.tv_usec = 1;
1459
1460                         select(1, &rfds, NULL, NULL, &tv);
1461                         if (FD_ISSET(0, &rfds)) {
1462                                 abuf[strlen(abuf) + 1] = 0;
1463                                 rv = read(0, &abuf[strlen(abuf)], 1);
1464                                 if (rv < 0) {
1465                                         scr_printf("failed to read after select: %s", 
1466                                                    strerror(errno));
1467                                         break;
1468                                 }
1469                         }
1470                 } while (FD_ISSET(0, &rfds));
1471
1472                 for (a = 0; !IsEmptyStr(&abuf[a]); ++a) {
1473                         if ((abuf[a] == 27) && (abuf[a + 1] == '[')
1474                             && (abuf[a + 2] == '?')) {
1475                                 enable_color = 1;
1476                         }
1477                 }
1478         }
1479 }
1480
1481
1482 /*
1483  * Display key options (highlight hotkeys inside angle brackets)
1484  */
1485 void keyopt(char *buf) {
1486         int i;
1487
1488         color(DIM_WHITE);
1489         for (i=0; !IsEmptyStr(&buf[i]); ++i) {
1490                 if (buf[i]=='<') {
1491                         scr_printf("%c", buf[i]);
1492                         color(BRIGHT_MAGENTA);
1493                 } else {
1494                         if (buf[i]=='>'&& buf[i+1] != '>') {
1495                                 color(DIM_WHITE);
1496                         }
1497                         scr_printf("%c", buf[i]);
1498                 }
1499         }
1500         color(DIM_WHITE);
1501 }
1502
1503
1504
1505 /*
1506  * Present a key-menu line choice type of thing
1507  */
1508 char keymenu(char *menuprompt, char *menustring) {
1509         int i, c, a;
1510         int choices;
1511         int do_prompt = 0;
1512         char buf[1024];
1513         int ch;
1514         int display_prompt = 1;
1515
1516         choices = num_tokens(menustring, '|');
1517
1518         if (menuprompt != NULL) do_prompt = 1;
1519         if ((menuprompt != NULL) && (IsEmptyStr(menuprompt))) do_prompt = 0;
1520
1521         while (1) {
1522                 if (display_prompt) {
1523                         if (do_prompt) {
1524                                 scr_printf("%s ", menuprompt);
1525                         } 
1526                         else {
1527                                 for (i=0; i<choices; ++i) {
1528                                         extract_token(buf, menustring, i, '|', sizeof buf);
1529                                         keyopt(buf);
1530                                         scr_printf(" ");
1531                                 }
1532                         }
1533                         scr_printf("-> ");
1534                         display_prompt = 0;
1535                 }
1536                 ch = lkey();
1537         
1538                 if ( (do_prompt) && (ch=='?') ) {
1539                         scr_printf("\rOne of...                               ");
1540                         scr_printf("                                      \n");
1541                         for (i=0; i<choices; ++i) {
1542                                 extract_token(buf, menustring, i, '|', sizeof buf);
1543                                 scr_printf("   ");
1544                                 keyopt(buf);
1545                                 scr_printf("\n");
1546                         }
1547                         scr_printf("\n");
1548                         display_prompt = 1;
1549                 }
1550
1551                 for (i=0; i<choices; ++i) {
1552                         extract_token(buf, menustring, i, '|', sizeof buf);
1553                         for (c=1; !IsEmptyStr(&buf[c]); ++c) {
1554                                 if ( (ch == tolower(buf[c]))
1555                                    && (buf[c-1]=='<')
1556                                    && (buf[c+1]=='>') ) {
1557                                         for (a=0; !IsEmptyStr(&buf[a]); ++a) {
1558                                                 if ( (a!=(c-1)) && (a!=(c+1))) {
1559                                                         scr_putc(buf[a]);
1560                                                 }
1561                                         }
1562                                         scr_printf("\n");
1563                                         return ch;
1564                                 }
1565                         }
1566                 }
1567         }
1568 }