Bring in an errno.9 manual page (based on NetBSD's).
[dragonfly.git] / contrib / less / screen.c
blob8f8a433aff64f393d1ce93f365502b9e355db7ca
1 /*
2 * Copyright (C) 1984-2015 Mark Nudelman
4 * You may distribute under the terms of either the GNU General Public
5 * License or the Less License, as specified in the README file.
7 * For more information, see the README file.
8 */
12 * Routines which deal with the characteristics of the terminal.
13 * Uses termcap to be as terminal-independent as possible.
16 #include "less.h"
17 #include "cmd.h"
19 #if MSDOS_COMPILER
20 #include "pckeys.h"
21 #if MSDOS_COMPILER==MSOFTC
22 #include <graph.h>
23 #else
24 #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC
25 #include <conio.h>
26 #if MSDOS_COMPILER==DJGPPC
27 #include <pc.h>
28 extern int fd0;
29 #endif
30 #else
31 #if MSDOS_COMPILER==WIN32C
32 #include <windows.h>
33 #endif
34 #endif
35 #endif
36 #include <time.h>
38 #else
40 #if HAVE_SYS_IOCTL_H
41 #include <sys/ioctl.h>
42 #endif
44 #if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS
45 #include <termios.h>
46 #else
47 #if HAVE_TERMIO_H
48 #include <termio.h>
49 #else
50 #if HAVE_SGSTAT_H
51 #include <sgstat.h>
52 #else
53 #include <sgtty.h>
54 #endif
55 #endif
56 #endif
58 #if HAVE_TERMCAP_H
59 #include <termcap.h>
60 #endif
61 #ifdef _OSK
62 #include <signal.h>
63 #endif
64 #if OS2
65 #include <sys/signal.h>
66 #include "pckeys.h"
67 #endif
68 #if HAVE_SYS_STREAM_H
69 #include <sys/stream.h>
70 #endif
71 #if HAVE_SYS_PTEM_H
72 #include <sys/ptem.h>
73 #endif
75 #endif /* MSDOS_COMPILER */
78 * Check for broken termios package that forces you to manually
79 * set the line discipline.
81 #ifdef __ultrix__
82 #define MUST_SET_LINE_DISCIPLINE 1
83 #else
84 #define MUST_SET_LINE_DISCIPLINE 0
85 #endif
87 #if OS2
88 #define DEFAULT_TERM "ansi"
89 static char *windowid;
90 #else
91 #define DEFAULT_TERM "unknown"
92 #endif
94 #if MSDOS_COMPILER==MSOFTC
95 static int videopages;
96 static long msec_loops;
97 static int flash_created = 0;
98 #define SETCOLORS(fg,bg) { _settextcolor(fg); _setbkcolor(bg); }
99 #endif
101 #if MSDOS_COMPILER==BORLANDC
102 static unsigned short *whitescreen;
103 static int flash_created = 0;
104 #endif
105 #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC
106 #define _settextposition(y,x) gotoxy(x,y)
107 #define _clearscreen(m) clrscr()
108 #define _outtext(s) cputs(s)
109 #define SETCOLORS(fg,bg) { textcolor(fg); textbackground(bg); }
110 extern int sc_height;
111 #endif
113 #if MSDOS_COMPILER==WIN32C
114 struct keyRecord
116 int ascii;
117 int scan;
118 } currentKey;
120 static int keyCount = 0;
121 static WORD curr_attr;
122 static int pending_scancode = 0;
123 static WORD *whitescreen;
125 static HANDLE con_out_save = INVALID_HANDLE_VALUE; /* previous console */
126 static HANDLE con_out_ours = INVALID_HANDLE_VALUE; /* our own */
127 HANDLE con_out = INVALID_HANDLE_VALUE; /* current console */
129 extern int quitting;
130 static void win32_init_term();
131 static void win32_deinit_term();
133 #define FG_COLORS (FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_INTENSITY)
134 #define BG_COLORS (BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE | BACKGROUND_INTENSITY)
135 #define MAKEATTR(fg,bg) ((WORD)((fg)|((bg)<<4)))
136 #define SETCOLORS(fg,bg) { curr_attr = MAKEATTR(fg,bg); \
137 if (SetConsoleTextAttribute(con_out, curr_attr) == 0) \
138 error("SETCOLORS failed"); }
139 #endif
141 #if MSDOS_COMPILER
142 public int nm_fg_color; /* Color of normal text */
143 public int nm_bg_color;
144 public int bo_fg_color; /* Color of bold text */
145 public int bo_bg_color;
146 public int ul_fg_color; /* Color of underlined text */
147 public int ul_bg_color;
148 public int so_fg_color; /* Color of standout text */
149 public int so_bg_color;
150 public int bl_fg_color; /* Color of blinking text */
151 public int bl_bg_color;
152 static int sy_fg_color; /* Color of system text (before less) */
153 static int sy_bg_color;
155 #else
158 * Strings passed to tputs() to do various terminal functions.
160 static char
161 *sc_pad, /* Pad string */
162 *sc_home, /* Cursor home */
163 *sc_addline, /* Add line, scroll down following lines */
164 *sc_lower_left, /* Cursor to last line, first column */
165 *sc_return, /* Cursor to beginning of current line */
166 *sc_move, /* General cursor positioning */
167 *sc_clear, /* Clear screen */
168 *sc_eol_clear, /* Clear to end of line */
169 *sc_eos_clear, /* Clear to end of screen */
170 *sc_s_in, /* Enter standout (highlighted) mode */
171 *sc_s_out, /* Exit standout mode */
172 *sc_u_in, /* Enter underline mode */
173 *sc_u_out, /* Exit underline mode */
174 *sc_b_in, /* Enter bold mode */
175 *sc_b_out, /* Exit bold mode */
176 *sc_bl_in, /* Enter blink mode */
177 *sc_bl_out, /* Exit blink mode */
178 *sc_visual_bell, /* Visual bell (flash screen) sequence */
179 *sc_backspace, /* Backspace cursor */
180 *sc_s_keypad, /* Start keypad mode */
181 *sc_e_keypad, /* End keypad mode */
182 *sc_init, /* Startup terminal initialization */
183 *sc_deinit; /* Exit terminal de-initialization */
184 #endif
186 static int init_done = 0;
188 public int auto_wrap; /* Terminal does \r\n when write past margin */
189 public int ignaw; /* Terminal ignores \n immediately after wrap */
190 public int erase_char; /* The user's erase char */
191 public int erase2_char; /* The user's other erase char */
192 public int kill_char; /* The user's line-kill char */
193 public int werase_char; /* The user's word-erase char */
194 public int sc_width, sc_height; /* Height & width of screen */
195 public int bo_s_width, bo_e_width; /* Printing width of boldface seq */
196 public int ul_s_width, ul_e_width; /* Printing width of underline seq */
197 public int so_s_width, so_e_width; /* Printing width of standout seq */
198 public int bl_s_width, bl_e_width; /* Printing width of blink seq */
199 public int above_mem, below_mem; /* Memory retained above/below screen */
200 public int can_goto_line; /* Can move cursor to any line */
201 public int clear_bg; /* Clear fills with background color */
202 public int missing_cap = 0; /* Some capability is missing */
204 static int attrmode = AT_NORMAL;
205 extern int binattr;
207 #if !MSDOS_COMPILER
208 static char *cheaper();
209 static void tmodes();
210 #endif
213 * These two variables are sometimes defined in,
214 * and needed by, the termcap library.
216 #if MUST_DEFINE_OSPEED
217 extern short ospeed; /* Terminal output baud rate */
218 extern char PC; /* Pad character */
219 #endif
220 #ifdef _OSK
221 short ospeed;
222 char PC_, *UP, *BC;
223 #endif
225 extern int quiet; /* If VERY_QUIET, use visual bell for bell */
226 extern int no_back_scroll;
227 extern int swindow;
228 extern int no_init;
229 extern int no_keypad;
230 extern int sigs;
231 extern int wscroll;
232 extern int screen_trashed;
233 extern int tty;
234 extern int top_scroll;
235 extern int oldbot;
236 #if HILITE_SEARCH
237 extern int hilite_search;
238 #endif
240 extern char *tgetstr();
241 extern char *tgoto();
245 * Change terminal to "raw mode", or restore to "normal" mode.
246 * "Raw mode" means
247 * 1. An outstanding read will complete on receipt of a single keystroke.
248 * 2. Input is not echoed.
249 * 3. On output, \n is mapped to \r\n.
250 * 4. \t is NOT expanded into spaces.
251 * 5. Signal-causing characters such as ctrl-C (interrupt),
252 * etc. are NOT disabled.
253 * It doesn't matter whether an input \n is mapped to \r, or vice versa.
255 public void
256 raw_mode(on)
257 int on;
259 static int curr_on = 0;
261 if (on == curr_on)
262 return;
263 erase2_char = '\b'; /* in case OS doesn't know about erase2 */
264 #if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS
266 struct termios s;
267 static struct termios save_term;
268 static int saved_term = 0;
270 if (on)
273 * Get terminal modes.
275 tcgetattr(tty, &s);
278 * Save modes and set certain variables dependent on modes.
280 if (!saved_term)
282 save_term = s;
283 saved_term = 1;
285 #if HAVE_OSPEED
286 switch (cfgetospeed(&s))
288 #ifdef B0
289 case B0: ospeed = 0; break;
290 #endif
291 #ifdef B50
292 case B50: ospeed = 1; break;
293 #endif
294 #ifdef B75
295 case B75: ospeed = 2; break;
296 #endif
297 #ifdef B110
298 case B110: ospeed = 3; break;
299 #endif
300 #ifdef B134
301 case B134: ospeed = 4; break;
302 #endif
303 #ifdef B150
304 case B150: ospeed = 5; break;
305 #endif
306 #ifdef B200
307 case B200: ospeed = 6; break;
308 #endif
309 #ifdef B300
310 case B300: ospeed = 7; break;
311 #endif
312 #ifdef B600
313 case B600: ospeed = 8; break;
314 #endif
315 #ifdef B1200
316 case B1200: ospeed = 9; break;
317 #endif
318 #ifdef B1800
319 case B1800: ospeed = 10; break;
320 #endif
321 #ifdef B2400
322 case B2400: ospeed = 11; break;
323 #endif
324 #ifdef B4800
325 case B4800: ospeed = 12; break;
326 #endif
327 #ifdef B9600
328 case B9600: ospeed = 13; break;
329 #endif
330 #ifdef EXTA
331 case EXTA: ospeed = 14; break;
332 #endif
333 #ifdef EXTB
334 case EXTB: ospeed = 15; break;
335 #endif
336 #ifdef B57600
337 case B57600: ospeed = 16; break;
338 #endif
339 #ifdef B115200
340 case B115200: ospeed = 17; break;
341 #endif
342 default: ;
344 #endif
345 erase_char = s.c_cc[VERASE];
346 #ifdef VERASE2
347 erase2_char = s.c_cc[VERASE2];
348 #endif
349 kill_char = s.c_cc[VKILL];
350 #ifdef VWERASE
351 werase_char = s.c_cc[VWERASE];
352 #else
353 werase_char = CONTROL('W');
354 #endif
357 * Set the modes to the way we want them.
359 s.c_lflag &= ~(0
360 #ifdef ICANON
361 | ICANON
362 #endif
363 #ifdef ECHO
364 | ECHO
365 #endif
366 #ifdef ECHOE
367 | ECHOE
368 #endif
369 #ifdef ECHOK
370 | ECHOK
371 #endif
372 #if ECHONL
373 | ECHONL
374 #endif
377 s.c_oflag |= (0
378 #ifdef OXTABS
379 | OXTABS
380 #else
381 #ifdef TAB3
382 | TAB3
383 #else
384 #ifdef XTABS
385 | XTABS
386 #endif
387 #endif
388 #endif
389 #ifdef OPOST
390 | OPOST
391 #endif
392 #ifdef ONLCR
393 | ONLCR
394 #endif
397 s.c_oflag &= ~(0
398 #ifdef ONOEOT
399 | ONOEOT
400 #endif
401 #ifdef OCRNL
402 | OCRNL
403 #endif
404 #ifdef ONOCR
405 | ONOCR
406 #endif
407 #ifdef ONLRET
408 | ONLRET
409 #endif
411 s.c_cc[VMIN] = 1;
412 s.c_cc[VTIME] = 0;
413 #ifdef VLNEXT
414 s.c_cc[VLNEXT] = 0;
415 #endif
416 #ifdef VDSUSP
417 s.c_cc[VDSUSP] = 0;
418 #endif
419 #if MUST_SET_LINE_DISCIPLINE
421 * System's termios is broken; need to explicitly
422 * request TERMIODISC line discipline.
424 s.c_line = TERMIODISC;
425 #endif
426 } else
429 * Restore saved modes.
431 s = save_term;
433 #if HAVE_FSYNC
434 fsync(tty);
435 #endif
436 tcsetattr(tty, TCSADRAIN, &s);
437 #if MUST_SET_LINE_DISCIPLINE
438 if (!on)
441 * Broken termios *ignores* any line discipline
442 * except TERMIODISC. A different old line discipline
443 * is therefore not restored, yet. Restore the old
444 * line discipline by hand.
446 ioctl(tty, TIOCSETD, &save_term.c_line);
448 #endif
450 #else
451 #ifdef TCGETA
453 struct termio s;
454 static struct termio save_term;
455 static int saved_term = 0;
457 if (on)
460 * Get terminal modes.
462 ioctl(tty, TCGETA, &s);
465 * Save modes and set certain variables dependent on modes.
467 if (!saved_term)
469 save_term = s;
470 saved_term = 1;
472 #if HAVE_OSPEED
473 ospeed = s.c_cflag & CBAUD;
474 #endif
475 erase_char = s.c_cc[VERASE];
476 kill_char = s.c_cc[VKILL];
477 #ifdef VWERASE
478 werase_char = s.c_cc[VWERASE];
479 #else
480 werase_char = CONTROL('W');
481 #endif
484 * Set the modes to the way we want them.
486 s.c_lflag &= ~(ICANON|ECHO|ECHOE|ECHOK|ECHONL);
487 s.c_oflag |= (OPOST|ONLCR|TAB3);
488 s.c_oflag &= ~(OCRNL|ONOCR|ONLRET);
489 s.c_cc[VMIN] = 1;
490 s.c_cc[VTIME] = 0;
491 } else
494 * Restore saved modes.
496 s = save_term;
498 ioctl(tty, TCSETAW, &s);
500 #else
501 #ifdef TIOCGETP
503 struct sgttyb s;
504 static struct sgttyb save_term;
505 static int saved_term = 0;
507 if (on)
510 * Get terminal modes.
512 ioctl(tty, TIOCGETP, &s);
515 * Save modes and set certain variables dependent on modes.
517 if (!saved_term)
519 save_term = s;
520 saved_term = 1;
522 #if HAVE_OSPEED
523 ospeed = s.sg_ospeed;
524 #endif
525 erase_char = s.sg_erase;
526 kill_char = s.sg_kill;
527 werase_char = CONTROL('W');
530 * Set the modes to the way we want them.
532 s.sg_flags |= CBREAK;
533 s.sg_flags &= ~(ECHO|XTABS);
534 } else
537 * Restore saved modes.
539 s = save_term;
541 ioctl(tty, TIOCSETN, &s);
543 #else
544 #ifdef _OSK
546 struct sgbuf s;
547 static struct sgbuf save_term;
548 static int saved_term = 0;
550 if (on)
553 * Get terminal modes.
555 _gs_opt(tty, &s);
558 * Save modes and set certain variables dependent on modes.
560 if (!saved_term)
562 save_term = s;
563 saved_term = 1;
565 erase_char = s.sg_bspch;
566 kill_char = s.sg_dlnch;
567 werase_char = CONTROL('W');
570 * Set the modes to the way we want them.
572 s.sg_echo = 0;
573 s.sg_eofch = 0;
574 s.sg_pause = 0;
575 s.sg_psch = 0;
576 } else
579 * Restore saved modes.
581 s = save_term;
583 _ss_opt(tty, &s);
585 #else
586 /* MS-DOS, Windows, or OS2 */
587 #if OS2
588 /* OS2 */
589 LSIGNAL(SIGINT, SIG_IGN);
590 #endif
591 erase_char = '\b';
592 #if MSDOS_COMPILER==DJGPPC
593 kill_char = CONTROL('U');
595 * So that when we shell out or run another program, its
596 * stdin is in cooked mode. We do not switch stdin to binary
597 * mode if fd0 is zero, since that means we were called before
598 * tty was reopened in open_getchr, in which case we would be
599 * changing the original stdin device outside less.
601 if (fd0 != 0)
602 setmode(0, on ? O_BINARY : O_TEXT);
603 #else
604 kill_char = ESC;
605 #endif
606 werase_char = CONTROL('W');
607 #endif
608 #endif
609 #endif
610 #endif
611 curr_on = on;
614 #if !MSDOS_COMPILER
616 * Some glue to prevent calling termcap functions if tgetent() failed.
618 static int hardcopy;
620 static char *
621 ltget_env(capname)
622 char *capname;
624 char name[16];
625 char *s;
627 s = lgetenv("LESS_TERMCAP_DEBUG");
628 if (s != NULL && *s != '\0')
630 struct env { struct env *next; char *name; char *value; };
631 static struct env *envs = NULL;
632 struct env *p;
633 for (p = envs; p != NULL; p = p->next)
634 if (strcmp(p->name, capname) == 0)
635 return p->value;
636 p = (struct env *) ecalloc(1, sizeof(struct env));
637 p->name = save(capname);
638 p->value = (char *) ecalloc(strlen(capname)+3, sizeof(char));
639 sprintf(p->value, "<%s>", capname);
640 p->next = envs;
641 envs = p;
642 return p->value;
644 strcpy(name, "LESS_TERMCAP_");
645 strcat(name, capname);
646 return (lgetenv(name));
649 static int
650 ltgetflag(capname)
651 char *capname;
653 char *s;
655 if ((s = ltget_env(capname)) != NULL)
656 return (*s != '\0' && *s != '0');
657 if (hardcopy)
658 return (0);
659 return (tgetflag(capname));
662 static int
663 ltgetnum(capname)
664 char *capname;
666 char *s;
668 if ((s = ltget_env(capname)) != NULL)
669 return (atoi(s));
670 if (hardcopy)
671 return (-1);
672 return (tgetnum(capname));
675 static char *
676 ltgetstr(capname, pp)
677 char *capname;
678 char **pp;
680 char *s;
682 if ((s = ltget_env(capname)) != NULL)
683 return (s);
684 if (hardcopy)
685 return (NULL);
686 return (tgetstr(capname, pp));
688 #endif /* MSDOS_COMPILER */
691 * Get size of the output screen.
693 public void
694 scrsize()
696 register char *s;
697 int sys_height;
698 int sys_width;
699 #if !MSDOS_COMPILER
700 int n;
701 #endif
703 #define DEF_SC_WIDTH 80
704 #if MSDOS_COMPILER
705 #define DEF_SC_HEIGHT 25
706 #else
707 #define DEF_SC_HEIGHT 24
708 #endif
711 sys_width = sys_height = 0;
713 #if MSDOS_COMPILER==MSOFTC
715 struct videoconfig w;
716 _getvideoconfig(&w);
717 sys_height = w.numtextrows;
718 sys_width = w.numtextcols;
720 #else
721 #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC
723 struct text_info w;
724 gettextinfo(&w);
725 sys_height = w.screenheight;
726 sys_width = w.screenwidth;
728 #else
729 #if MSDOS_COMPILER==WIN32C
731 CONSOLE_SCREEN_BUFFER_INFO scr;
732 GetConsoleScreenBufferInfo(con_out, &scr);
733 sys_height = scr.srWindow.Bottom - scr.srWindow.Top + 1;
734 sys_width = scr.srWindow.Right - scr.srWindow.Left + 1;
736 #else
737 #if OS2
739 int s[2];
740 _scrsize(s);
741 sys_width = s[0];
742 sys_height = s[1];
744 * When using terminal emulators for XFree86/OS2, the
745 * _scrsize function does not work well.
746 * Call the scrsize.exe program to get the window size.
748 windowid = getenv("WINDOWID");
749 if (windowid != NULL)
751 FILE *fd = popen("scrsize", "rt");
752 if (fd != NULL)
754 int w, h;
755 fscanf(fd, "%i %i", &w, &h);
756 if (w > 0 && h > 0)
758 sys_width = w;
759 sys_height = h;
761 pclose(fd);
765 #else
766 #ifdef TIOCGWINSZ
768 struct winsize w;
769 if (ioctl(2, TIOCGWINSZ, &w) == 0)
771 if (w.ws_row > 0)
772 sys_height = w.ws_row;
773 if (w.ws_col > 0)
774 sys_width = w.ws_col;
777 #else
778 #ifdef WIOCGETD
780 struct uwdata w;
781 if (ioctl(2, WIOCGETD, &w) == 0)
783 if (w.uw_height > 0)
784 sys_height = w.uw_height / w.uw_vs;
785 if (w.uw_width > 0)
786 sys_width = w.uw_width / w.uw_hs;
789 #endif
790 #endif
791 #endif
792 #endif
793 #endif
794 #endif
796 if (sys_height > 0)
797 sc_height = sys_height;
798 else if ((s = lgetenv("LINES")) != NULL)
799 sc_height = atoi(s);
800 #if !MSDOS_COMPILER
801 else if ((n = ltgetnum("li")) > 0)
802 sc_height = n;
803 #endif
804 if (sc_height <= 0)
805 sc_height = DEF_SC_HEIGHT;
807 if (sys_width > 0)
808 sc_width = sys_width;
809 else if ((s = lgetenv("COLUMNS")) != NULL)
810 sc_width = atoi(s);
811 #if !MSDOS_COMPILER
812 else if ((n = ltgetnum("co")) > 0)
813 sc_width = n;
814 #endif
815 if (sc_width <= 0)
816 sc_width = DEF_SC_WIDTH;
819 #if MSDOS_COMPILER==MSOFTC
821 * Figure out how many empty loops it takes to delay a millisecond.
823 static void
824 get_clock()
826 clock_t start;
829 * Get synchronized at the start of a tick.
831 start = clock();
832 while (clock() == start)
835 * Now count loops till the next tick.
837 start = clock();
838 msec_loops = 0;
839 while (clock() == start)
840 msec_loops++;
842 * Convert from (loops per clock) to (loops per millisecond).
844 msec_loops *= CLOCKS_PER_SEC;
845 msec_loops /= 1000;
849 * Delay for a specified number of milliseconds.
851 static void
852 dummy_func()
854 static long delay_dummy = 0;
855 delay_dummy++;
858 static void
859 delay(msec)
860 int msec;
862 long i;
864 while (msec-- > 0)
866 for (i = 0; i < msec_loops; i++)
869 * Make it look like we're doing something here,
870 * so the optimizer doesn't remove the whole loop.
872 dummy_func();
876 #endif
879 * Return the characters actually input by a "special" key.
881 public char *
882 special_key_str(key)
883 int key;
885 static char tbuf[40];
886 char *s;
887 #if MSDOS_COMPILER || OS2
888 static char k_right[] = { '\340', PCK_RIGHT, 0 };
889 static char k_left[] = { '\340', PCK_LEFT, 0 };
890 static char k_ctl_right[] = { '\340', PCK_CTL_RIGHT, 0 };
891 static char k_ctl_left[] = { '\340', PCK_CTL_LEFT, 0 };
892 static char k_insert[] = { '\340', PCK_INSERT, 0 };
893 static char k_delete[] = { '\340', PCK_DELETE, 0 };
894 static char k_ctl_delete[] = { '\340', PCK_CTL_DELETE, 0 };
895 static char k_ctl_backspace[] = { '\177', 0 };
896 static char k_home[] = { '\340', PCK_HOME, 0 };
897 static char k_end[] = { '\340', PCK_END, 0 };
898 static char k_up[] = { '\340', PCK_UP, 0 };
899 static char k_down[] = { '\340', PCK_DOWN, 0 };
900 static char k_backtab[] = { '\340', PCK_SHIFT_TAB, 0 };
901 static char k_pagedown[] = { '\340', PCK_PAGEDOWN, 0 };
902 static char k_pageup[] = { '\340', PCK_PAGEUP, 0 };
903 static char k_f1[] = { '\340', PCK_F1, 0 };
904 #endif
905 #if !MSDOS_COMPILER
906 char *sp = tbuf;
907 #endif
909 switch (key)
911 #if OS2
913 * If windowid is not NULL, assume less is executed in
914 * the XFree86 environment.
916 case SK_RIGHT_ARROW:
917 s = windowid ? ltgetstr("kr", &sp) : k_right;
918 break;
919 case SK_LEFT_ARROW:
920 s = windowid ? ltgetstr("kl", &sp) : k_left;
921 break;
922 case SK_UP_ARROW:
923 s = windowid ? ltgetstr("ku", &sp) : k_up;
924 break;
925 case SK_DOWN_ARROW:
926 s = windowid ? ltgetstr("kd", &sp) : k_down;
927 break;
928 case SK_PAGE_UP:
929 s = windowid ? ltgetstr("kP", &sp) : k_pageup;
930 break;
931 case SK_PAGE_DOWN:
932 s = windowid ? ltgetstr("kN", &sp) : k_pagedown;
933 break;
934 case SK_HOME:
935 s = windowid ? ltgetstr("kh", &sp) : k_home;
936 break;
937 case SK_END:
938 s = windowid ? ltgetstr("@7", &sp) : k_end;
939 break;
940 case SK_DELETE:
941 if (windowid)
943 s = ltgetstr("kD", &sp);
944 if (s == NULL)
946 tbuf[0] = '\177';
947 tbuf[1] = '\0';
948 s = tbuf;
950 } else
951 s = k_delete;
952 break;
953 #endif
954 #if MSDOS_COMPILER
955 case SK_RIGHT_ARROW:
956 s = k_right;
957 break;
958 case SK_LEFT_ARROW:
959 s = k_left;
960 break;
961 case SK_UP_ARROW:
962 s = k_up;
963 break;
964 case SK_DOWN_ARROW:
965 s = k_down;
966 break;
967 case SK_PAGE_UP:
968 s = k_pageup;
969 break;
970 case SK_PAGE_DOWN:
971 s = k_pagedown;
972 break;
973 case SK_HOME:
974 s = k_home;
975 break;
976 case SK_END:
977 s = k_end;
978 break;
979 case SK_DELETE:
980 s = k_delete;
981 break;
982 #endif
983 #if MSDOS_COMPILER || OS2
984 case SK_INSERT:
985 s = k_insert;
986 break;
987 case SK_CTL_LEFT_ARROW:
988 s = k_ctl_left;
989 break;
990 case SK_CTL_RIGHT_ARROW:
991 s = k_ctl_right;
992 break;
993 case SK_CTL_BACKSPACE:
994 s = k_ctl_backspace;
995 break;
996 case SK_CTL_DELETE:
997 s = k_ctl_delete;
998 break;
999 case SK_F1:
1000 s = k_f1;
1001 break;
1002 case SK_BACKTAB:
1003 s = k_backtab;
1004 break;
1005 #else
1006 case SK_RIGHT_ARROW:
1007 s = ltgetstr("kr", &sp);
1008 break;
1009 case SK_LEFT_ARROW:
1010 s = ltgetstr("kl", &sp);
1011 break;
1012 case SK_UP_ARROW:
1013 s = ltgetstr("ku", &sp);
1014 break;
1015 case SK_DOWN_ARROW:
1016 s = ltgetstr("kd", &sp);
1017 break;
1018 case SK_PAGE_UP:
1019 s = ltgetstr("kP", &sp);
1020 break;
1021 case SK_PAGE_DOWN:
1022 s = ltgetstr("kN", &sp);
1023 break;
1024 case SK_HOME:
1025 s = ltgetstr("kh", &sp);
1026 break;
1027 case SK_END:
1028 s = ltgetstr("@7", &sp);
1029 break;
1030 case SK_DELETE:
1031 s = ltgetstr("kD", &sp);
1032 if (s == NULL)
1034 tbuf[0] = '\177';
1035 tbuf[1] = '\0';
1036 s = tbuf;
1038 break;
1039 #endif
1040 case SK_CONTROL_K:
1041 tbuf[0] = CONTROL('K');
1042 tbuf[1] = '\0';
1043 s = tbuf;
1044 break;
1045 default:
1046 return (NULL);
1048 return (s);
1052 * Get terminal capabilities via termcap.
1054 public void
1055 get_term()
1057 #if MSDOS_COMPILER
1058 auto_wrap = 1;
1059 ignaw = 0;
1060 can_goto_line = 1;
1061 clear_bg = 1;
1063 * Set up default colors.
1064 * The xx_s_width and xx_e_width vars are already initialized to 0.
1066 #if MSDOS_COMPILER==MSOFTC
1067 sy_bg_color = _getbkcolor();
1068 sy_fg_color = _gettextcolor();
1069 get_clock();
1070 #else
1071 #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC
1073 struct text_info w;
1074 gettextinfo(&w);
1075 sy_bg_color = (w.attribute >> 4) & 0x0F;
1076 sy_fg_color = (w.attribute >> 0) & 0x0F;
1078 #else
1079 #if MSDOS_COMPILER==WIN32C
1081 DWORD nread;
1082 CONSOLE_SCREEN_BUFFER_INFO scr;
1084 con_out_save = con_out = GetStdHandle(STD_OUTPUT_HANDLE);
1086 * Always open stdin in binary. Note this *must* be done
1087 * before any file operations have been done on fd0.
1089 SET_BINARY(0);
1090 GetConsoleScreenBufferInfo(con_out, &scr);
1091 ReadConsoleOutputAttribute(con_out, &curr_attr,
1092 1, scr.dwCursorPosition, &nread);
1093 sy_bg_color = (curr_attr & BG_COLORS) >> 4; /* normalize */
1094 sy_fg_color = curr_attr & FG_COLORS;
1096 #endif
1097 #endif
1098 #endif
1099 nm_fg_color = sy_fg_color;
1100 nm_bg_color = sy_bg_color;
1101 bo_fg_color = 11;
1102 bo_bg_color = 0;
1103 ul_fg_color = 9;
1104 ul_bg_color = 0;
1105 so_fg_color = 15;
1106 so_bg_color = 9;
1107 bl_fg_color = 15;
1108 bl_bg_color = 0;
1111 * Get size of the screen.
1113 scrsize();
1114 pos_init();
1117 #else /* !MSDOS_COMPILER */
1119 char *sp;
1120 register char *t1, *t2;
1121 char *term;
1122 char termbuf[TERMBUF_SIZE];
1124 static char sbuf[TERMSBUF_SIZE];
1126 #if OS2
1128 * Make sure the termcap database is available.
1130 sp = lgetenv("TERMCAP");
1131 if (sp == NULL || *sp == '\0')
1133 char *termcap;
1134 if ((sp = homefile("termcap.dat")) != NULL)
1136 termcap = (char *) ecalloc(strlen(sp)+9, sizeof(char));
1137 sprintf(termcap, "TERMCAP=%s", sp);
1138 free(sp);
1139 putenv(termcap);
1142 #endif
1144 * Find out what kind of terminal this is.
1146 if ((term = lgetenv("TERM")) == NULL)
1147 term = DEFAULT_TERM;
1148 hardcopy = 0;
1149 if (tgetent(termbuf, term) != TGETENT_OK)
1150 hardcopy = 1;
1151 if (ltgetflag("hc"))
1152 hardcopy = 1;
1155 * Get size of the screen.
1157 scrsize();
1158 pos_init();
1160 auto_wrap = ltgetflag("am");
1161 ignaw = ltgetflag("xn");
1162 above_mem = ltgetflag("da");
1163 below_mem = ltgetflag("db");
1164 clear_bg = ltgetflag("ut");
1167 * Assumes termcap variable "sg" is the printing width of:
1168 * the standout sequence, the end standout sequence,
1169 * the underline sequence, the end underline sequence,
1170 * the boldface sequence, and the end boldface sequence.
1172 if ((so_s_width = ltgetnum("sg")) < 0)
1173 so_s_width = 0;
1174 so_e_width = so_s_width;
1176 bo_s_width = bo_e_width = so_s_width;
1177 ul_s_width = ul_e_width = so_s_width;
1178 bl_s_width = bl_e_width = so_s_width;
1180 #if HILITE_SEARCH
1181 if (so_s_width > 0 || so_e_width > 0)
1183 * Disable highlighting by default on magic cookie terminals.
1184 * Turning on highlighting might change the displayed width
1185 * of a line, causing the display to get messed up.
1186 * The user can turn it back on with -g,
1187 * but she won't like the results.
1189 hilite_search = 0;
1190 #endif
1193 * Get various string-valued capabilities.
1195 sp = sbuf;
1197 #if HAVE_OSPEED
1198 sc_pad = ltgetstr("pc", &sp);
1199 if (sc_pad != NULL)
1200 PC = *sc_pad;
1201 #endif
1203 sc_s_keypad = ltgetstr("ks", &sp);
1204 if (sc_s_keypad == NULL)
1205 sc_s_keypad = "";
1206 sc_e_keypad = ltgetstr("ke", &sp);
1207 if (sc_e_keypad == NULL)
1208 sc_e_keypad = "";
1210 sc_init = ltgetstr("ti", &sp);
1211 if (sc_init == NULL)
1212 sc_init = "";
1214 sc_deinit= ltgetstr("te", &sp);
1215 if (sc_deinit == NULL)
1216 sc_deinit = "";
1218 sc_eol_clear = ltgetstr("ce", &sp);
1219 if (sc_eol_clear == NULL || *sc_eol_clear == '\0')
1221 missing_cap = 1;
1222 sc_eol_clear = "";
1225 sc_eos_clear = ltgetstr("cd", &sp);
1226 if (below_mem && (sc_eos_clear == NULL || *sc_eos_clear == '\0'))
1228 missing_cap = 1;
1229 sc_eos_clear = "";
1232 sc_clear = ltgetstr("cl", &sp);
1233 if (sc_clear == NULL || *sc_clear == '\0')
1235 missing_cap = 1;
1236 sc_clear = "\n\n";
1239 sc_move = ltgetstr("cm", &sp);
1240 if (sc_move == NULL || *sc_move == '\0')
1243 * This is not an error here, because we don't
1244 * always need sc_move.
1245 * We need it only if we don't have home or lower-left.
1247 sc_move = "";
1248 can_goto_line = 0;
1249 } else
1250 can_goto_line = 1;
1252 tmodes("so", "se", &sc_s_in, &sc_s_out, "", "", &sp);
1253 tmodes("us", "ue", &sc_u_in, &sc_u_out, sc_s_in, sc_s_out, &sp);
1254 tmodes("md", "me", &sc_b_in, &sc_b_out, sc_s_in, sc_s_out, &sp);
1255 tmodes("mb", "me", &sc_bl_in, &sc_bl_out, sc_s_in, sc_s_out, &sp);
1257 sc_visual_bell = ltgetstr("vb", &sp);
1258 if (sc_visual_bell == NULL)
1259 sc_visual_bell = "";
1261 if (ltgetflag("bs"))
1262 sc_backspace = "\b";
1263 else
1265 sc_backspace = ltgetstr("bc", &sp);
1266 if (sc_backspace == NULL || *sc_backspace == '\0')
1267 sc_backspace = "\b";
1271 * Choose between using "ho" and "cm" ("home" and "cursor move")
1272 * to move the cursor to the upper left corner of the screen.
1274 t1 = ltgetstr("ho", &sp);
1275 if (t1 == NULL)
1276 t1 = "";
1277 if (*sc_move == '\0')
1278 t2 = "";
1279 else
1281 strcpy(sp, tgoto(sc_move, 0, 0));
1282 t2 = sp;
1283 sp += strlen(sp) + 1;
1285 sc_home = cheaper(t1, t2, "|\b^");
1288 * Choose between using "ll" and "cm" ("lower left" and "cursor move")
1289 * to move the cursor to the lower left corner of the screen.
1291 t1 = ltgetstr("ll", &sp);
1292 if (t1 == NULL)
1293 t1 = "";
1294 if (*sc_move == '\0')
1295 t2 = "";
1296 else
1298 strcpy(sp, tgoto(sc_move, 0, sc_height-1));
1299 t2 = sp;
1300 sp += strlen(sp) + 1;
1302 sc_lower_left = cheaper(t1, t2, "\r");
1305 * Get carriage return string.
1307 sc_return = ltgetstr("cr", &sp);
1308 if (sc_return == NULL)
1309 sc_return = "\r";
1312 * Choose between using "al" or "sr" ("add line" or "scroll reverse")
1313 * to add a line at the top of the screen.
1315 t1 = ltgetstr("al", &sp);
1316 if (t1 == NULL)
1317 t1 = "";
1318 t2 = ltgetstr("sr", &sp);
1319 if (t2 == NULL)
1320 t2 = "";
1321 #if OS2
1322 if (*t1 == '\0' && *t2 == '\0')
1323 sc_addline = "";
1324 else
1325 #endif
1326 if (above_mem)
1327 sc_addline = t1;
1328 else
1329 sc_addline = cheaper(t1, t2, "");
1330 if (*sc_addline == '\0')
1333 * Force repaint on any backward movement.
1335 no_back_scroll = 1;
1337 #endif /* MSDOS_COMPILER */
1340 #if !MSDOS_COMPILER
1342 * Return the cost of displaying a termcap string.
1343 * We use the trick of calling tputs, but as a char printing function
1344 * we give it inc_costcount, which just increments "costcount".
1345 * This tells us how many chars would be printed by using this string.
1346 * {{ Couldn't we just use strlen? }}
1348 static int costcount;
1350 /*ARGSUSED*/
1351 static int
1352 inc_costcount(c)
1353 int c;
1355 costcount++;
1356 return (c);
1359 static int
1360 cost(t)
1361 char *t;
1363 costcount = 0;
1364 tputs(t, sc_height, inc_costcount);
1365 return (costcount);
1369 * Return the "best" of the two given termcap strings.
1370 * The best, if both exist, is the one with the lower
1371 * cost (see cost() function).
1373 static char *
1374 cheaper(t1, t2, def)
1375 char *t1, *t2;
1376 char *def;
1378 if (*t1 == '\0' && *t2 == '\0')
1380 missing_cap = 1;
1381 return (def);
1383 if (*t1 == '\0')
1384 return (t2);
1385 if (*t2 == '\0')
1386 return (t1);
1387 if (cost(t1) < cost(t2))
1388 return (t1);
1389 return (t2);
1392 static void
1393 tmodes(incap, outcap, instr, outstr, def_instr, def_outstr, spp)
1394 char *incap;
1395 char *outcap;
1396 char **instr;
1397 char **outstr;
1398 char *def_instr;
1399 char *def_outstr;
1400 char **spp;
1402 *instr = ltgetstr(incap, spp);
1403 if (*instr == NULL)
1405 /* Use defaults. */
1406 *instr = def_instr;
1407 *outstr = def_outstr;
1408 return;
1411 *outstr = ltgetstr(outcap, spp);
1412 if (*outstr == NULL)
1413 /* No specific out capability; use "me". */
1414 *outstr = ltgetstr("me", spp);
1415 if (*outstr == NULL)
1416 /* Don't even have "me"; use a null string. */
1417 *outstr = "";
1420 #endif /* MSDOS_COMPILER */
1424 * Below are the functions which perform all the
1425 * terminal-specific screen manipulation.
1429 #if MSDOS_COMPILER
1431 #if MSDOS_COMPILER==WIN32C
1432 static void
1433 _settextposition(int row, int col)
1435 COORD cpos;
1436 CONSOLE_SCREEN_BUFFER_INFO csbi;
1438 GetConsoleScreenBufferInfo(con_out, &csbi);
1439 cpos.X = csbi.srWindow.Left + (col - 1);
1440 cpos.Y = csbi.srWindow.Top + (row - 1);
1441 SetConsoleCursorPosition(con_out, cpos);
1443 #endif
1446 * Initialize the screen to the correct color at startup.
1448 static void
1449 initcolor()
1451 SETCOLORS(nm_fg_color, nm_bg_color);
1452 #if 0
1454 * This clears the screen at startup. This is different from
1455 * the behavior of other versions of less. Disable it for now.
1457 char *blanks;
1458 int row;
1459 int col;
1462 * Create a complete, blank screen using "normal" colors.
1464 SETCOLORS(nm_fg_color, nm_bg_color);
1465 blanks = (char *) ecalloc(width+1, sizeof(char));
1466 for (col = 0; col < sc_width; col++)
1467 blanks[col] = ' ';
1468 blanks[sc_width] = '\0';
1469 for (row = 0; row < sc_height; row++)
1470 _outtext(blanks);
1471 free(blanks);
1472 #endif
1474 #endif
1476 #if MSDOS_COMPILER==WIN32C
1479 * Termcap-like init with a private win32 console.
1481 static void
1482 win32_init_term()
1484 CONSOLE_SCREEN_BUFFER_INFO scr;
1485 COORD size;
1487 if (con_out_save == INVALID_HANDLE_VALUE)
1488 return;
1490 GetConsoleScreenBufferInfo(con_out_save, &scr);
1492 if (con_out_ours == INVALID_HANDLE_VALUE)
1495 * Create our own screen buffer, so that we
1496 * may restore the original when done.
1498 con_out_ours = CreateConsoleScreenBuffer(
1499 GENERIC_WRITE | GENERIC_READ,
1500 FILE_SHARE_WRITE | FILE_SHARE_READ,
1501 (LPSECURITY_ATTRIBUTES) NULL,
1502 CONSOLE_TEXTMODE_BUFFER,
1503 (LPVOID) NULL);
1506 size.X = scr.srWindow.Right - scr.srWindow.Left + 1;
1507 size.Y = scr.srWindow.Bottom - scr.srWindow.Top + 1;
1508 SetConsoleScreenBufferSize(con_out_ours, size);
1509 SetConsoleActiveScreenBuffer(con_out_ours);
1510 con_out = con_out_ours;
1514 * Restore the startup console.
1516 static void
1517 win32_deinit_term()
1519 if (con_out_save == INVALID_HANDLE_VALUE)
1520 return;
1521 if (quitting)
1522 (void) CloseHandle(con_out_ours);
1523 SetConsoleActiveScreenBuffer(con_out_save);
1524 con_out = con_out_save;
1527 #endif
1530 * Initialize terminal
1532 public void
1533 init()
1535 #if !MSDOS_COMPILER
1536 if (!no_init)
1537 tputs(sc_init, sc_height, putchr);
1538 if (!no_keypad)
1539 tputs(sc_s_keypad, sc_height, putchr);
1540 if (top_scroll)
1542 int i;
1545 * This is nice to terminals with no alternate screen,
1546 * but with saved scrolled-off-the-top lines. This way,
1547 * no previous line is lost, but we start with a whole
1548 * screen to ourself.
1550 for (i = 1; i < sc_height; i++)
1551 putchr('\n');
1552 } else
1553 line_left();
1554 #else
1555 #if MSDOS_COMPILER==WIN32C
1556 if (!no_init)
1557 win32_init_term();
1558 #endif
1559 initcolor();
1560 flush();
1561 #endif
1562 init_done = 1;
1566 * Deinitialize terminal
1568 public void
1569 deinit()
1571 if (!init_done)
1572 return;
1573 #if !MSDOS_COMPILER
1574 if (!no_keypad)
1575 tputs(sc_e_keypad, sc_height, putchr);
1576 if (!no_init)
1577 tputs(sc_deinit, sc_height, putchr);
1578 #else
1579 /* Restore system colors. */
1580 SETCOLORS(sy_fg_color, sy_bg_color);
1581 #if MSDOS_COMPILER==WIN32C
1582 if (!no_init)
1583 win32_deinit_term();
1584 #else
1585 /* Need clreol to make SETCOLORS take effect. */
1586 clreol();
1587 #endif
1588 #endif
1589 init_done = 0;
1593 * Home cursor (move to upper left corner of screen).
1595 public void
1596 home()
1598 #if !MSDOS_COMPILER
1599 tputs(sc_home, 1, putchr);
1600 #else
1601 flush();
1602 _settextposition(1,1);
1603 #endif
1607 * Add a blank line (called with cursor at home).
1608 * Should scroll the display down.
1610 public void
1611 add_line()
1613 #if !MSDOS_COMPILER
1614 tputs(sc_addline, sc_height, putchr);
1615 #else
1616 flush();
1617 #if MSDOS_COMPILER==MSOFTC
1618 _scrolltextwindow(_GSCROLLDOWN);
1619 _settextposition(1,1);
1620 #else
1621 #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC
1622 movetext(1,1, sc_width,sc_height-1, 1,2);
1623 gotoxy(1,1);
1624 clreol();
1625 #else
1626 #if MSDOS_COMPILER==WIN32C
1628 CHAR_INFO fillchar;
1629 SMALL_RECT rcSrc, rcClip;
1630 COORD new_org;
1631 CONSOLE_SCREEN_BUFFER_INFO csbi;
1633 GetConsoleScreenBufferInfo(con_out,&csbi);
1635 /* The clip rectangle is the entire visible screen. */
1636 rcClip.Left = csbi.srWindow.Left;
1637 rcClip.Top = csbi.srWindow.Top;
1638 rcClip.Right = csbi.srWindow.Right;
1639 rcClip.Bottom = csbi.srWindow.Bottom;
1641 /* The source rectangle is the visible screen minus the last line. */
1642 rcSrc = rcClip;
1643 rcSrc.Bottom--;
1645 /* Move the top left corner of the source window down one row. */
1646 new_org.X = rcSrc.Left;
1647 new_org.Y = rcSrc.Top + 1;
1649 /* Fill the right character and attributes. */
1650 fillchar.Char.AsciiChar = ' ';
1651 curr_attr = MAKEATTR(nm_fg_color, nm_bg_color);
1652 fillchar.Attributes = curr_attr;
1653 ScrollConsoleScreenBuffer(con_out, &rcSrc, &rcClip, new_org, &fillchar);
1654 _settextposition(1,1);
1656 #endif
1657 #endif
1658 #endif
1659 #endif
1662 #if 0
1664 * Remove the n topmost lines and scroll everything below it in the
1665 * window upward. This is needed to stop leaking the topmost line
1666 * into the scrollback buffer when we go down-one-line (in WIN32).
1668 public void
1669 remove_top(n)
1670 int n;
1672 #if MSDOS_COMPILER==WIN32C
1673 SMALL_RECT rcSrc, rcClip;
1674 CHAR_INFO fillchar;
1675 COORD new_org;
1676 CONSOLE_SCREEN_BUFFER_INFO csbi; /* to get buffer info */
1678 if (n >= sc_height - 1)
1680 clear();
1681 home();
1682 return;
1685 flush();
1687 GetConsoleScreenBufferInfo(con_out, &csbi);
1689 /* Get the extent of all-visible-rows-but-the-last. */
1690 rcSrc.Left = csbi.srWindow.Left;
1691 rcSrc.Top = csbi.srWindow.Top + n;
1692 rcSrc.Right = csbi.srWindow.Right;
1693 rcSrc.Bottom = csbi.srWindow.Bottom;
1695 /* Get the clip rectangle. */
1696 rcClip.Left = rcSrc.Left;
1697 rcClip.Top = csbi.srWindow.Top;
1698 rcClip.Right = rcSrc.Right;
1699 rcClip.Bottom = rcSrc.Bottom ;
1701 /* Move the source window up n rows. */
1702 new_org.X = rcSrc.Left;
1703 new_org.Y = rcSrc.Top - n;
1705 /* Fill the right character and attributes. */
1706 fillchar.Char.AsciiChar = ' ';
1707 curr_attr = MAKEATTR(nm_fg_color, nm_bg_color);
1708 fillchar.Attributes = curr_attr;
1710 ScrollConsoleScreenBuffer(con_out, &rcSrc, &rcClip, new_org, &fillchar);
1712 /* Position cursor on first blank line. */
1713 goto_line(sc_height - n - 1);
1714 #endif
1716 #endif
1718 #if MSDOS_COMPILER==WIN32C
1720 * Clear the screen.
1722 static void
1723 win32_clear()
1726 * This will clear only the currently visible rows of the NT
1727 * console buffer, which means none of the precious scrollback
1728 * rows are touched making for faster scrolling. Note that, if
1729 * the window has fewer columns than the console buffer (i.e.
1730 * there is a horizontal scrollbar as well), the entire width
1731 * of the visible rows will be cleared.
1733 COORD topleft;
1734 DWORD nchars;
1735 DWORD winsz;
1736 CONSOLE_SCREEN_BUFFER_INFO csbi;
1738 /* get the number of cells in the current buffer */
1739 GetConsoleScreenBufferInfo(con_out, &csbi);
1740 winsz = csbi.dwSize.X * (csbi.srWindow.Bottom - csbi.srWindow.Top + 1);
1741 topleft.X = 0;
1742 topleft.Y = csbi.srWindow.Top;
1744 curr_attr = MAKEATTR(nm_fg_color, nm_bg_color);
1745 FillConsoleOutputCharacter(con_out, ' ', winsz, topleft, &nchars);
1746 FillConsoleOutputAttribute(con_out, curr_attr, winsz, topleft, &nchars);
1750 * Remove the n topmost lines and scroll everything below it in the
1751 * window upward.
1753 public void
1754 win32_scroll_up(n)
1755 int n;
1757 SMALL_RECT rcSrc, rcClip;
1758 CHAR_INFO fillchar;
1759 COORD topleft;
1760 COORD new_org;
1761 DWORD nchars;
1762 DWORD size;
1763 CONSOLE_SCREEN_BUFFER_INFO csbi;
1765 if (n <= 0)
1766 return;
1768 if (n >= sc_height - 1)
1770 win32_clear();
1771 _settextposition(1,1);
1772 return;
1775 /* Get the extent of what will remain visible after scrolling. */
1776 GetConsoleScreenBufferInfo(con_out, &csbi);
1777 rcSrc.Left = csbi.srWindow.Left;
1778 rcSrc.Top = csbi.srWindow.Top + n;
1779 rcSrc.Right = csbi.srWindow.Right;
1780 rcSrc.Bottom = csbi.srWindow.Bottom;
1782 /* Get the clip rectangle. */
1783 rcClip.Left = rcSrc.Left;
1784 rcClip.Top = csbi.srWindow.Top;
1785 rcClip.Right = rcSrc.Right;
1786 rcClip.Bottom = rcSrc.Bottom ;
1788 /* Move the source text to the top of the screen. */
1789 new_org.X = rcSrc.Left;
1790 new_org.Y = rcClip.Top;
1792 /* Fill the right character and attributes. */
1793 fillchar.Char.AsciiChar = ' ';
1794 fillchar.Attributes = MAKEATTR(nm_fg_color, nm_bg_color);
1796 /* Scroll the window. */
1797 SetConsoleTextAttribute(con_out, fillchar.Attributes);
1798 ScrollConsoleScreenBuffer(con_out, &rcSrc, &rcClip, new_org, &fillchar);
1800 /* Clear remaining lines at bottom. */
1801 topleft.X = csbi.dwCursorPosition.X;
1802 topleft.Y = rcSrc.Bottom - n;
1803 size = (n * csbi.dwSize.X) + (rcSrc.Right - topleft.X);
1804 FillConsoleOutputCharacter(con_out, ' ', size, topleft,
1805 &nchars);
1806 FillConsoleOutputAttribute(con_out, fillchar.Attributes, size, topleft,
1807 &nchars);
1808 SetConsoleTextAttribute(con_out, curr_attr);
1810 /* Move cursor n lines up from where it was. */
1811 csbi.dwCursorPosition.Y -= n;
1812 SetConsoleCursorPosition(con_out, csbi.dwCursorPosition);
1814 #endif
1817 * Move cursor to lower left corner of screen.
1819 public void
1820 lower_left()
1822 #if !MSDOS_COMPILER
1823 tputs(sc_lower_left, 1, putchr);
1824 #else
1825 flush();
1826 _settextposition(sc_height, 1);
1827 #endif
1831 * Move cursor to left position of current line.
1833 public void
1834 line_left()
1836 #if !MSDOS_COMPILER
1837 tputs(sc_return, 1, putchr);
1838 #else
1839 int row;
1840 flush();
1841 #if MSDOS_COMPILER==WIN32C
1843 CONSOLE_SCREEN_BUFFER_INFO scr;
1844 GetConsoleScreenBufferInfo(con_out, &scr);
1845 row = scr.dwCursorPosition.Y - scr.srWindow.Top + 1;
1847 #else
1848 #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC
1849 row = wherey();
1850 #else
1852 struct rccoord tpos = _gettextposition();
1853 row = tpos.row;
1855 #endif
1856 #endif
1857 _settextposition(row, 1);
1858 #endif
1862 * Check if the console size has changed and reset internals
1863 * (in lieu of SIGWINCH for WIN32).
1865 public void
1866 check_winch()
1868 #if MSDOS_COMPILER==WIN32C
1869 CONSOLE_SCREEN_BUFFER_INFO scr;
1870 COORD size;
1872 if (con_out == INVALID_HANDLE_VALUE)
1873 return;
1875 flush();
1876 GetConsoleScreenBufferInfo(con_out, &scr);
1877 size.Y = scr.srWindow.Bottom - scr.srWindow.Top + 1;
1878 size.X = scr.srWindow.Right - scr.srWindow.Left + 1;
1879 if (size.Y != sc_height || size.X != sc_width)
1881 sc_height = size.Y;
1882 sc_width = size.X;
1883 if (!no_init && con_out_ours == con_out)
1884 SetConsoleScreenBufferSize(con_out, size);
1885 pos_init();
1886 wscroll = (sc_height + 1) / 2;
1887 screen_trashed = 1;
1889 #endif
1893 * Goto a specific line on the screen.
1895 public void
1896 goto_line(slinenum)
1897 int slinenum;
1899 #if !MSDOS_COMPILER
1900 tputs(tgoto(sc_move, 0, slinenum), 1, putchr);
1901 #else
1902 flush();
1903 _settextposition(slinenum+1, 1);
1904 #endif
1907 #if MSDOS_COMPILER==MSOFTC || MSDOS_COMPILER==BORLANDC
1909 * Create an alternate screen which is all white.
1910 * This screen is used to create a "flash" effect, by displaying it
1911 * briefly and then switching back to the normal screen.
1912 * {{ Yuck! There must be a better way to get a visual bell. }}
1914 static void
1915 create_flash()
1917 #if MSDOS_COMPILER==MSOFTC
1918 struct videoconfig w;
1919 char *blanks;
1920 int row, col;
1922 _getvideoconfig(&w);
1923 videopages = w.numvideopages;
1924 if (videopages < 2)
1926 at_enter(AT_STANDOUT);
1927 at_exit();
1928 } else
1930 _setactivepage(1);
1931 at_enter(AT_STANDOUT);
1932 blanks = (char *) ecalloc(w.numtextcols, sizeof(char));
1933 for (col = 0; col < w.numtextcols; col++)
1934 blanks[col] = ' ';
1935 for (row = w.numtextrows; row > 0; row--)
1936 _outmem(blanks, w.numtextcols);
1937 _setactivepage(0);
1938 _setvisualpage(0);
1939 free(blanks);
1940 at_exit();
1942 #else
1943 #if MSDOS_COMPILER==BORLANDC
1944 register int n;
1946 whitescreen = (unsigned short *)
1947 malloc(sc_width * sc_height * sizeof(short));
1948 if (whitescreen == NULL)
1949 return;
1950 for (n = 0; n < sc_width * sc_height; n++)
1951 whitescreen[n] = 0x7020;
1952 #else
1953 #if MSDOS_COMPILER==WIN32C
1954 register int n;
1956 whitescreen = (WORD *)
1957 malloc(sc_height * sc_width * sizeof(WORD));
1958 if (whitescreen == NULL)
1959 return;
1960 /* Invert the standard colors. */
1961 for (n = 0; n < sc_width * sc_height; n++)
1962 whitescreen[n] = (WORD)((nm_fg_color << 4) | nm_bg_color);
1963 #endif
1964 #endif
1965 #endif
1966 flash_created = 1;
1968 #endif /* MSDOS_COMPILER */
1971 * Output the "visual bell", if there is one.
1973 public void
1974 vbell()
1976 #if !MSDOS_COMPILER
1977 if (*sc_visual_bell == '\0')
1978 return;
1979 tputs(sc_visual_bell, sc_height, putchr);
1980 #else
1981 #if MSDOS_COMPILER==DJGPPC
1982 ScreenVisualBell();
1983 #else
1984 #if MSDOS_COMPILER==MSOFTC
1986 * Create a flash screen on the second video page.
1987 * Switch to that page, then switch back.
1989 if (!flash_created)
1990 create_flash();
1991 if (videopages < 2)
1992 return;
1993 _setvisualpage(1);
1994 delay(100);
1995 _setvisualpage(0);
1996 #else
1997 #if MSDOS_COMPILER==BORLANDC
1998 unsigned short *currscreen;
2001 * Get a copy of the current screen.
2002 * Display the flash screen.
2003 * Then restore the old screen.
2005 if (!flash_created)
2006 create_flash();
2007 if (whitescreen == NULL)
2008 return;
2009 currscreen = (unsigned short *)
2010 malloc(sc_width * sc_height * sizeof(short));
2011 if (currscreen == NULL) return;
2012 gettext(1, 1, sc_width, sc_height, currscreen);
2013 puttext(1, 1, sc_width, sc_height, whitescreen);
2014 delay(100);
2015 puttext(1, 1, sc_width, sc_height, currscreen);
2016 free(currscreen);
2017 #else
2018 #if MSDOS_COMPILER==WIN32C
2019 /* paint screen with an inverse color */
2020 clear();
2022 /* leave it displayed for 100 msec. */
2023 Sleep(100);
2025 /* restore with a redraw */
2026 repaint();
2027 #endif
2028 #endif
2029 #endif
2030 #endif
2031 #endif
2035 * Make a noise.
2037 static void
2038 beep()
2040 #if !MSDOS_COMPILER
2041 putchr(CONTROL('G'));
2042 #else
2043 #if MSDOS_COMPILER==WIN32C
2044 MessageBeep(0);
2045 #else
2046 write(1, "\7", 1);
2047 #endif
2048 #endif
2052 * Ring the terminal bell.
2054 public void
2055 bell()
2057 if (quiet == VERY_QUIET)
2058 vbell();
2059 else
2060 beep();
2064 * Clear the screen.
2066 public void
2067 clear()
2069 #if !MSDOS_COMPILER
2070 tputs(sc_clear, sc_height, putchr);
2071 #else
2072 flush();
2073 #if MSDOS_COMPILER==WIN32C
2074 win32_clear();
2075 #else
2076 _clearscreen(_GCLEARSCREEN);
2077 #endif
2078 #endif
2082 * Clear from the cursor to the end of the cursor's line.
2083 * {{ This must not move the cursor. }}
2085 public void
2086 clear_eol()
2088 #if !MSDOS_COMPILER
2089 tputs(sc_eol_clear, 1, putchr);
2090 #else
2091 #if MSDOS_COMPILER==MSOFTC
2092 short top, left;
2093 short bot, right;
2094 struct rccoord tpos;
2096 flush();
2098 * Save current state.
2100 tpos = _gettextposition();
2101 _gettextwindow(&top, &left, &bot, &right);
2103 * Set a temporary window to the current line,
2104 * from the cursor's position to the right edge of the screen.
2105 * Then clear that window.
2107 _settextwindow(tpos.row, tpos.col, tpos.row, sc_width);
2108 _clearscreen(_GWINDOW);
2110 * Restore state.
2112 _settextwindow(top, left, bot, right);
2113 _settextposition(tpos.row, tpos.col);
2114 #else
2115 #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC
2116 flush();
2117 clreol();
2118 #else
2119 #if MSDOS_COMPILER==WIN32C
2120 DWORD nchars;
2121 COORD cpos;
2122 CONSOLE_SCREEN_BUFFER_INFO scr;
2124 flush();
2125 memset(&scr, 0, sizeof(scr));
2126 GetConsoleScreenBufferInfo(con_out, &scr);
2127 cpos.X = scr.dwCursorPosition.X;
2128 cpos.Y = scr.dwCursorPosition.Y;
2129 curr_attr = MAKEATTR(nm_fg_color, nm_bg_color);
2130 FillConsoleOutputAttribute(con_out, curr_attr,
2131 scr.dwSize.X - cpos.X, cpos, &nchars);
2132 FillConsoleOutputCharacter(con_out, ' ',
2133 scr.dwSize.X - cpos.X, cpos, &nchars);
2134 #endif
2135 #endif
2136 #endif
2137 #endif
2141 * Clear the current line.
2142 * Clear the screen if there's off-screen memory below the display.
2144 static void
2145 clear_eol_bot()
2147 #if MSDOS_COMPILER
2148 clear_eol();
2149 #else
2150 if (below_mem)
2151 tputs(sc_eos_clear, 1, putchr);
2152 else
2153 tputs(sc_eol_clear, 1, putchr);
2154 #endif
2158 * Clear the bottom line of the display.
2159 * Leave the cursor at the beginning of the bottom line.
2161 public void
2162 clear_bot()
2165 * If we're in a non-normal attribute mode, temporarily exit
2166 * the mode while we do the clear. Some terminals fill the
2167 * cleared area with the current attribute.
2169 if (oldbot)
2170 lower_left();
2171 else
2172 line_left();
2174 if (attrmode == AT_NORMAL)
2175 clear_eol_bot();
2176 else
2178 int saved_attrmode = attrmode;
2180 at_exit();
2181 clear_eol_bot();
2182 at_enter(saved_attrmode);
2186 public void
2187 at_enter(attr)
2188 int attr;
2190 attr = apply_at_specials(attr);
2192 #if !MSDOS_COMPILER
2193 /* The one with the most priority is last. */
2194 if (attr & AT_UNDERLINE)
2195 tputs(sc_u_in, 1, putchr);
2196 if (attr & AT_BOLD)
2197 tputs(sc_b_in, 1, putchr);
2198 if (attr & AT_BLINK)
2199 tputs(sc_bl_in, 1, putchr);
2200 if (attr & AT_STANDOUT)
2201 tputs(sc_s_in, 1, putchr);
2202 #else
2203 flush();
2204 /* The one with the most priority is first. */
2205 if (attr & AT_STANDOUT)
2207 SETCOLORS(so_fg_color, so_bg_color);
2208 } else if (attr & AT_BLINK)
2210 SETCOLORS(bl_fg_color, bl_bg_color);
2212 else if (attr & AT_BOLD)
2214 SETCOLORS(bo_fg_color, bo_bg_color);
2216 else if (attr & AT_UNDERLINE)
2218 SETCOLORS(ul_fg_color, ul_bg_color);
2220 #endif
2222 attrmode = attr;
2225 public void
2226 at_exit()
2228 #if !MSDOS_COMPILER
2229 /* Undo things in the reverse order we did them. */
2230 if (attrmode & AT_STANDOUT)
2231 tputs(sc_s_out, 1, putchr);
2232 if (attrmode & AT_BLINK)
2233 tputs(sc_bl_out, 1, putchr);
2234 if (attrmode & AT_BOLD)
2235 tputs(sc_b_out, 1, putchr);
2236 if (attrmode & AT_UNDERLINE)
2237 tputs(sc_u_out, 1, putchr);
2238 #else
2239 flush();
2240 SETCOLORS(nm_fg_color, nm_bg_color);
2241 #endif
2243 attrmode = AT_NORMAL;
2246 public void
2247 at_switch(attr)
2248 int attr;
2250 int new_attrmode = apply_at_specials(attr);
2251 int ignore_modes = AT_ANSI;
2253 if ((new_attrmode & ~ignore_modes) != (attrmode & ~ignore_modes))
2255 at_exit();
2256 at_enter(attr);
2260 public int
2261 is_at_equiv(attr1, attr2)
2262 int attr1;
2263 int attr2;
2265 attr1 = apply_at_specials(attr1);
2266 attr2 = apply_at_specials(attr2);
2268 return (attr1 == attr2);
2271 public int
2272 apply_at_specials(attr)
2273 int attr;
2275 if (attr & AT_BINARY)
2276 attr |= binattr;
2277 if (attr & AT_HILITE)
2278 attr |= AT_STANDOUT;
2279 attr &= ~(AT_BINARY|AT_HILITE);
2281 return attr;
2284 #if 0 /* No longer used */
2286 * Erase the character to the left of the cursor
2287 * and move the cursor left.
2289 public void
2290 backspace()
2292 #if !MSDOS_COMPILER
2294 * Erase the previous character by overstriking with a space.
2296 tputs(sc_backspace, 1, putchr);
2297 putchr(' ');
2298 tputs(sc_backspace, 1, putchr);
2299 #else
2300 #if MSDOS_COMPILER==MSOFTC
2301 struct rccoord tpos;
2303 flush();
2304 tpos = _gettextposition();
2305 if (tpos.col <= 1)
2306 return;
2307 _settextposition(tpos.row, tpos.col-1);
2308 _outtext(" ");
2309 _settextposition(tpos.row, tpos.col-1);
2310 #else
2311 #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC
2312 cputs("\b");
2313 #else
2314 #if MSDOS_COMPILER==WIN32C
2315 COORD cpos;
2316 DWORD cChars;
2317 CONSOLE_SCREEN_BUFFER_INFO scr;
2319 flush();
2320 GetConsoleScreenBufferInfo(con_out, &scr);
2321 cpos = scr.dwCursorPosition;
2322 if (cpos.X <= 0)
2323 return;
2324 cpos.X--;
2325 SetConsoleCursorPosition(con_out, cpos);
2326 FillConsoleOutputCharacter(con_out, (TCHAR)' ', 1, cpos, &cChars);
2327 SetConsoleCursorPosition(con_out, cpos);
2328 #endif
2329 #endif
2330 #endif
2331 #endif
2333 #endif /* 0 */
2336 * Output a plain backspace, without erasing the previous char.
2338 public void
2339 putbs()
2341 #if !MSDOS_COMPILER
2342 tputs(sc_backspace, 1, putchr);
2343 #else
2344 int row, col;
2346 flush();
2348 #if MSDOS_COMPILER==MSOFTC
2349 struct rccoord tpos;
2350 tpos = _gettextposition();
2351 row = tpos.row;
2352 col = tpos.col;
2353 #else
2354 #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC
2355 row = wherey();
2356 col = wherex();
2357 #else
2358 #if MSDOS_COMPILER==WIN32C
2359 CONSOLE_SCREEN_BUFFER_INFO scr;
2360 GetConsoleScreenBufferInfo(con_out, &scr);
2361 row = scr.dwCursorPosition.Y - scr.srWindow.Top + 1;
2362 col = scr.dwCursorPosition.X - scr.srWindow.Left + 1;
2363 #endif
2364 #endif
2365 #endif
2367 if (col <= 1)
2368 return;
2369 _settextposition(row, col-1);
2370 #endif /* MSDOS_COMPILER */
2373 #if MSDOS_COMPILER==WIN32C
2375 * Determine whether an input character is waiting to be read.
2377 static int
2378 win32_kbhit(tty)
2379 HANDLE tty;
2381 INPUT_RECORD ip;
2382 DWORD read;
2384 if (keyCount > 0)
2385 return (TRUE);
2387 currentKey.ascii = 0;
2388 currentKey.scan = 0;
2391 * Wait for a real key-down event, but
2392 * ignore SHIFT and CONTROL key events.
2396 PeekConsoleInput(tty, &ip, 1, &read);
2397 if (read == 0)
2398 return (FALSE);
2399 ReadConsoleInput(tty, &ip, 1, &read);
2400 } while (ip.EventType != KEY_EVENT ||
2401 ip.Event.KeyEvent.bKeyDown != TRUE ||
2402 ip.Event.KeyEvent.wVirtualScanCode == 0 ||
2403 ip.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT ||
2404 ip.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL ||
2405 ip.Event.KeyEvent.wVirtualKeyCode == VK_MENU);
2407 currentKey.ascii = ip.Event.KeyEvent.uChar.AsciiChar;
2408 currentKey.scan = ip.Event.KeyEvent.wVirtualScanCode;
2409 keyCount = ip.Event.KeyEvent.wRepeatCount;
2411 if (ip.Event.KeyEvent.dwControlKeyState &
2412 (LEFT_ALT_PRESSED | RIGHT_ALT_PRESSED))
2414 switch (currentKey.scan)
2416 case PCK_ALT_E: /* letter 'E' */
2417 currentKey.ascii = 0;
2418 break;
2420 } else if (ip.Event.KeyEvent.dwControlKeyState &
2421 (LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED))
2423 switch (currentKey.scan)
2425 case PCK_RIGHT: /* right arrow */
2426 currentKey.scan = PCK_CTL_RIGHT;
2427 break;
2428 case PCK_LEFT: /* left arrow */
2429 currentKey.scan = PCK_CTL_LEFT;
2430 break;
2431 case PCK_DELETE: /* delete */
2432 currentKey.scan = PCK_CTL_DELETE;
2433 break;
2436 return (TRUE);
2440 * Read a character from the keyboard.
2442 public char
2443 WIN32getch(tty)
2444 int tty;
2446 int ascii;
2448 if (pending_scancode)
2450 pending_scancode = 0;
2451 return ((char)(currentKey.scan & 0x00FF));
2454 while (win32_kbhit((HANDLE)tty) == FALSE)
2456 Sleep(20);
2457 if (ABORT_SIGS())
2458 return ('\003');
2459 continue;
2461 keyCount --;
2462 ascii = currentKey.ascii;
2464 * On PC's, the extended keys return a 2 byte sequence beginning
2465 * with '00', so if the ascii code is 00, the next byte will be
2466 * the lsb of the scan code.
2468 pending_scancode = (ascii == 0x00);
2469 return ((char)ascii);
2471 #endif
2473 #if MSDOS_COMPILER
2476 public void
2477 WIN32setcolors(fg, bg)
2478 int fg;
2479 int bg;
2481 SETCOLORS(fg, bg);
2486 public void
2487 WIN32textout(text, len)
2488 char *text;
2489 int len;
2491 #if MSDOS_COMPILER==WIN32C
2492 DWORD written;
2493 WriteConsole(con_out, text, len, &written, NULL);
2494 #else
2495 char c = text[len];
2496 text[len] = '\0';
2497 cputs(text);
2498 text[len] = c;
2499 #endif
2501 #endif