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