Home | History | Annotate | Line # | Download | only in larn
io.c revision 1.15
      1  1.15     perry /*	$NetBSD: io.c,v 1.15 2005/02/03 02:23:02 perry Exp $	*/
      2   1.2   mycroft 
      3   1.7  christos /*
      4   1.7  christos  * io.c			 Larn is copyrighted 1986 by Noah Morgan.
      5   1.7  christos  *
      6   1.7  christos  * Below are the functions in this file:
      7   1.7  christos  *
      8   1.7  christos  * setupvt100() 	Subroutine to set up terminal in correct mode for game
      9   1.7  christos  * clearvt100()  	Subroutine to clean up terminal when the game is over
     10  1.11  christos  * lgetchar() 		Routine to read in one character from the terminal
     11   1.7  christos  * scbr()			Function to set cbreak -echo for the terminal
     12   1.7  christos  * sncbr()			Function to set -cbreak echo for the terminal
     13   1.7  christos  * newgame() 		Subroutine to save the initial time and seed rnd()
     14   1.7  christos  *
     15   1.7  christos  * FILE OUTPUT ROUTINES
     16   1.7  christos  *
     17   1.7  christos  * lprintf(format,args . . .)	printf to the output buffer lprint(integer)
     18   1.7  christos  * end binary integer to output buffer lwrite(buf,len)
     19   1.7  christos  * rite a buffer to the output buffer lprcat(str)
     20   1.7  christos  * ent string to output buffer
     21   1.7  christos  *
     22   1.7  christos  * FILE OUTPUT MACROS (in header.h)
     23   1.7  christos  *
     24   1.7  christos  * lprc(character)				put the character into the output
     25   1.7  christos  * buffer
     26   1.7  christos  *
     27   1.7  christos  * FILE INPUT ROUTINES
     28   1.7  christos  *
     29   1.7  christos  * long lgetc()				read one character from input buffer
     30   1.7  christos  * long lrint()				read one integer from input buffer
     31   1.7  christos  * lrfill(address,number)		put input bytes into a buffer char
     32   1.7  christos  * *lgetw()				get a whitespace ended word from
     33   1.7  christos  * input char *lgetl()				get a \n or EOF ended line
     34   1.7  christos  * from input
     35   1.7  christos  *
     36   1.7  christos  * FILE OPEN / CLOSE ROUTINES
     37   1.7  christos  *
     38   1.7  christos  * lcreat(filename)			create a new file for write
     39   1.7  christos  * lopen(filename)				open a file for read
     40   1.7  christos  * lappend(filename)			open for append to an existing file
     41   1.7  christos  * lrclose()					close the input file
     42   1.7  christos  * lwclose()					close output file lflush()
     43   1.7  christos  * lush the output buffer
     44   1.7  christos  *
     45   1.7  christos  * Other Routines
     46   1.7  christos  *
     47   1.7  christos  * cursor(x,y)					position cursor at [x,y]
     48   1.7  christos  * cursors()					position cursor at [1,24]
     49   1.7  christos  * (saves memory) cl_line(x,y)         		Clear line at [1,y] and leave
     50   1.7  christos  * cursor at [x,y] cl_up(x,y)    				Clear screen
     51   1.7  christos  * from [x,1] to current line. cl_dn(x,y)
     52   1.7  christos  * lear screen from [1,y] to end of display. standout(str)
     53   1.7  christos  * rint the string in standout mode. set_score_output()
     54   1.7  christos  * alled when output should be literally printed. * xputchar(ch)
     55   1.7  christos  * rint one character in decoded output buffer. * flush_buf()
     56   1.7  christos  * lush buffer with decoded output. * init_term()
     57   1.7  christos  * erminal initialization -- setup termcap info *	char *tmcapcnv(sd,ss)
     58   1.7  christos  * outine to convert VT100 \33's to termcap format beep()
     59   1.7  christos  * e to emit a beep if enabled (see no-beep in .larnopts)
     60   1.7  christos  *
     61   1.1       cgd  * Note: ** entries are available only in termcap mode.
     62   1.1       cgd  */
     63   1.7  christos #include <sys/cdefs.h>
     64   1.7  christos #ifndef lint
     65  1.15     perry __RCSID("$NetBSD: io.c,v 1.15 2005/02/03 02:23:02 perry Exp $");
     66   1.7  christos #endif /* not lint */
     67   1.1       cgd 
     68   1.1       cgd #include "header.h"
     69   1.7  christos #include "extern.h"
     70   1.4       cgd #include <string.h>
     71   1.7  christos #include <unistd.h>
     72   1.7  christos #include <stdlib.h>
     73   1.7  christos #include <termcap.h>
     74   1.7  christos #include <fcntl.h>
     75   1.5       mrg #include <errno.h>
     76   1.1       cgd 
     77   1.7  christos #ifdef TERMIO
     78   1.1       cgd #include <termio.h>
     79   1.1       cgd #define sgttyb termio
     80   1.1       cgd #define stty(_a,_b) ioctl(_a,TCSETA,_b)
     81   1.1       cgd #define gtty(_a,_b) ioctl(_a,TCGETA,_b)
     82   1.7  christos #endif
     83   1.7  christos #ifdef TERMIOS
     84   1.7  christos #include <termios.h>
     85   1.7  christos #define sgttyb termios
     86   1.7  christos #define stty(_a,_b) tcsetattr(_a,TCSADRAIN,_b)
     87   1.7  christos #define gtty(_a,_b) tcgetattr(_a,_b)
     88   1.7  christos #endif
     89   1.1       cgd 
     90   1.7  christos #if defined(TERMIO) || defined(TERMIOS)
     91   1.7  christos static int      rawflg = 0;
     92   1.7  christos static char     saveeof, saveeol;
     93   1.7  christos #define doraw(_a) \
     94   1.7  christos 	if(!rawflg) { \
     95   1.7  christos 		++rawflg; \
     96   1.7  christos 		saveeof = _a.c_cc[VMIN]; \
     97   1.7  christos 		saveeol = _a.c_cc[VTIME]; \
     98   1.7  christos 	} \
     99   1.7  christos     	_a.c_cc[VMIN] = 1; \
    100   1.7  christos 	_a.c_cc[VTIME] = 1; \
    101   1.7  christos 	_a.c_lflag &= ~(ICANON|ECHO|ECHOE|ECHOK|ECHONL)
    102   1.7  christos #define unraw(_a) \
    103   1.7  christos 	_a.c_cc[VMIN] = saveeof; \
    104   1.7  christos 	_a.c_cc[VTIME] = saveeol; \
    105   1.7  christos 	_a.c_lflag |= ICANON|ECHO|ECHOE|ECHOK|ECHONL
    106   1.7  christos 
    107   1.7  christos #else	/* not TERMIO or TERMIOS */
    108   1.1       cgd 
    109   1.1       cgd #ifndef BSD
    110   1.1       cgd #define CBREAK RAW		/* V7 has no CBREAK */
    111   1.1       cgd #endif
    112   1.1       cgd 
    113   1.1       cgd #define doraw(_a) (_a.sg_flags |= CBREAK,_a.sg_flags &= ~ECHO)
    114   1.1       cgd #define unraw(_a) (_a.sg_flags &= ~CBREAK,_a.sg_flags |= ECHO)
    115   1.1       cgd #include <sgtty.h>
    116   1.7  christos #endif	/* not TERMIO or TERMIOS */
    117   1.1       cgd 
    118   1.1       cgd #ifndef NOVARARGS	/* if we have varargs */
    119   1.7  christos #include <stdarg.h>
    120   1.7  christos #else	/* NOVARARGS */	/* if we don't have varargs */
    121   1.7  christos typedef char   *va_list;
    122   1.1       cgd #define va_dcl int va_alist;
    123   1.1       cgd #define va_start(plist) plist = (char *) &va_alist
    124   1.1       cgd #define va_end(plist)
    125   1.1       cgd #define va_arg(plist,mode) ((mode *)(plist += sizeof(mode)))[-1]
    126   1.7  christos #endif	/* NOVARARGS */
    127   1.1       cgd 
    128   1.7  christos #define LINBUFSIZE 128	/* size of the lgetw() and lgetl() buffer */
    129   1.7  christos int             lfd;	/* output file numbers */
    130   1.7  christos int             fd;	/* input file numbers */
    131   1.7  christos static struct sgttyb ttx;/* storage for the tty modes */
    132   1.7  christos static int      ipoint = MAXIBUF, iepoint = MAXIBUF;	/* input buffering
    133   1.7  christos 							 * pointers    */
    134   1.7  christos static char     lgetwbuf[LINBUFSIZE];	/* get line (word) buffer */
    135   1.1       cgd 
    136   1.1       cgd /*
    137   1.7  christos  *	setupvt100() Subroutine to set up terminal in correct mode for game
    138   1.1       cgd  *
    139   1.7  christos  *	Attributes off, clear screen, set scrolling region, set tty mode
    140   1.1       cgd  */
    141   1.7  christos void
    142   1.1       cgd setupvt100()
    143   1.7  christos {
    144   1.7  christos 	clear();
    145   1.7  christos 	setscroll();
    146   1.7  christos 	scbr();			/* system("stty cbreak -echo"); */
    147   1.7  christos }
    148   1.1       cgd 
    149   1.1       cgd /*
    150   1.7  christos  *	clearvt100() 	Subroutine to clean up terminal when the game is over
    151   1.1       cgd  *
    152   1.7  christos  *	Attributes off, clear screen, unset scrolling region, restore tty mode
    153   1.1       cgd  */
    154   1.7  christos void
    155   1.1       cgd clearvt100()
    156   1.7  christos {
    157   1.7  christos 	resetscroll();
    158   1.7  christos 	clear();
    159   1.7  christos 	sncbr();		/* system("stty -cbreak echo"); */
    160   1.7  christos }
    161   1.1       cgd 
    162   1.1       cgd /*
    163  1.11  christos  *	lgetchar() 	Routine to read in one character from the terminal
    164   1.1       cgd  */
    165   1.7  christos int
    166  1.11  christos lgetchar()
    167   1.7  christos {
    168   1.7  christos 	char            byt;
    169   1.1       cgd #ifdef EXTRA
    170   1.1       cgd 	c[BYTESIN]++;
    171   1.1       cgd #endif
    172   1.1       cgd 	lflush();		/* be sure output buffer is flushed */
    173   1.7  christos 	read(0, &byt, 1);	/* get byte from terminal */
    174   1.7  christos 	return (byt);
    175   1.7  christos }
    176   1.1       cgd 
    177   1.1       cgd /*
    178   1.1       cgd  *	scbr()		Function to set cbreak -echo for the terminal
    179   1.1       cgd  *
    180   1.1       cgd  *	like: system("stty cbreak -echo")
    181   1.1       cgd  */
    182   1.7  christos void
    183   1.1       cgd scbr()
    184   1.7  christos {
    185   1.7  christos 	gtty(0, &ttx);
    186   1.7  christos 	doraw(ttx);
    187   1.7  christos 	stty(0, &ttx);
    188   1.7  christos }
    189   1.1       cgd 
    190   1.1       cgd /*
    191   1.1       cgd  *	sncbr()		Function to set -cbreak echo for the terminal
    192   1.1       cgd  *
    193   1.1       cgd  *	like: system("stty -cbreak echo")
    194   1.1       cgd  */
    195   1.7  christos void
    196   1.1       cgd sncbr()
    197   1.7  christos {
    198   1.7  christos 	gtty(0, &ttx);
    199   1.7  christos 	unraw(ttx);
    200   1.7  christos 	stty(0, &ttx);
    201   1.7  christos }
    202   1.1       cgd 
    203   1.1       cgd /*
    204   1.7  christos  *	newgame() 	Subroutine to save the initial time and seed rnd()
    205   1.1       cgd  */
    206   1.7  christos void
    207   1.1       cgd newgame()
    208   1.7  christos {
    209   1.7  christos 	long  *p, *pe;
    210   1.7  christos 	for (p = c, pe = c + 100; p < pe; *p++ = 0);
    211   1.7  christos 	time(&initialtime);
    212  1.15     perry 	seedrand(initialtime);
    213   1.7  christos 	lcreat((char *) 0);	/* open buffering for output to terminal */
    214   1.7  christos }
    215   1.1       cgd 
    216   1.1       cgd /*
    217   1.1       cgd  *	lprintf(format,args . . .)		printf to the output buffer
    218   1.1       cgd  *		char *format;
    219   1.1       cgd  *		??? args . . .
    220   1.1       cgd  *
    221   1.1       cgd  *	Enter with the format string in "format", as per printf() usage
    222   1.1       cgd  *		and any needed arguments following it
    223   1.1       cgd  *	Note: lprintf() only supports %s, %c and %d, with width modifier and left
    224   1.1       cgd  *		or right justification.
    225   1.7  christos  *	No correct checking for output buffer overflow is done, but flushes
    226   1.1       cgd  *		are done beforehand if needed.
    227   1.1       cgd  *	Returns nothing of value.
    228   1.1       cgd  */
    229   1.1       cgd #ifdef lint
    230   1.7  christos /* VARARGS */
    231   1.1       cgd lprintf(str)
    232   1.7  christos 	char           *str;
    233   1.7  christos {
    234   1.7  christos 	char           *str2;
    235   1.1       cgd 	str2 = str;
    236   1.7  christos 	str = str2;		/* to make lint happy */
    237   1.7  christos }
    238   1.7  christos /* VARARGS */
    239   1.1       cgd sprintf(str)
    240   1.7  christos 	char           *str;
    241   1.7  christos {
    242   1.7  christos 	char           *str2;
    243   1.1       cgd 	str2 = str;
    244   1.7  christos 	str = str2;		/* to make lint happy */
    245   1.7  christos }
    246   1.7  christos #else	/* lint */
    247   1.7  christos /* VARARGS */
    248   1.7  christos void lprintf(const char *fmt, ...)
    249   1.7  christos {
    250   1.7  christos 	va_list         ap;	/* pointer for variable argument list */
    251   1.7  christos 	char  *outb, *tmpb;
    252   1.7  christos 	long   wide, left, cont, n;	/* data for lprintf	 */
    253   1.7  christos 	char            db[12];	/* %d buffer in lprintf	 */
    254   1.1       cgd 
    255   1.7  christos 	va_start(ap, fmt);
    256   1.7  christos 	if (lpnt >= lpend)
    257   1.7  christos 		lflush();
    258   1.1       cgd 	outb = lpnt;
    259   1.7  christos 	for (;;) {
    260   1.1       cgd 		while (*fmt != '%')
    261   1.7  christos 			if (*fmt)
    262   1.7  christos 				*outb++ = *fmt++;
    263   1.7  christos 			else {
    264   1.7  christos 				lpnt = outb;
    265  1.12       wiz 				va_end(ap);
    266   1.7  christos 				return;
    267   1.7  christos 			}
    268   1.7  christos 		wide = 0;
    269   1.7  christos 		left = 1;
    270   1.7  christos 		cont = 1;
    271   1.1       cgd 		while (cont)
    272   1.7  christos 			switch (*(++fmt)) {
    273   1.7  christos 			case 'd':
    274   1.7  christos 				n = va_arg(ap, long);
    275   1.7  christos 				if (n < 0) {
    276   1.7  christos 					n = -n;
    277   1.7  christos 					*outb++ = '-';
    278   1.7  christos 					if (wide)
    279   1.7  christos 						--wide;
    280   1.7  christos 				}
    281   1.7  christos 				tmpb = db + 11;
    282   1.7  christos 				*tmpb = (char) (n % 10 + '0');
    283   1.7  christos 				while (n > 9)
    284   1.7  christos 					*(--tmpb) = (char) ((n /= 10) % 10 + '0');
    285   1.7  christos 				if (wide == 0)
    286   1.7  christos 					while (tmpb < db + 12)
    287   1.7  christos 						*outb++ = *tmpb++;
    288   1.7  christos 				else {
    289   1.7  christos 					wide -= db - tmpb + 12;
    290   1.7  christos 					if (left)
    291   1.7  christos 						while (wide-- > 0)
    292   1.7  christos 							*outb++ = ' ';
    293   1.7  christos 					while (tmpb < db + 12)
    294   1.7  christos 						*outb++ = *tmpb++;
    295   1.7  christos 					if (left == 0)
    296   1.7  christos 						while (wide-- > 0)
    297   1.7  christos 							*outb++ = ' ';
    298   1.7  christos 				}
    299   1.7  christos 				cont = 0;
    300   1.7  christos 				break;
    301   1.1       cgd 
    302   1.7  christos 			case 's':
    303   1.7  christos 				tmpb = va_arg(ap, char *);
    304   1.7  christos 				if (wide == 0) {
    305   1.7  christos 					while ((*outb++ = *tmpb++) != '\0')
    306   1.7  christos 						continue;
    307   1.7  christos 					--outb;
    308   1.7  christos 				} else {
    309   1.7  christos 					n = wide - strlen(tmpb);
    310   1.7  christos 					if (left)
    311   1.7  christos 						while (n-- > 0)
    312   1.7  christos 							*outb++ = ' ';
    313   1.7  christos 					while ((*outb++ = *tmpb++) != '\0')
    314   1.7  christos 						continue;
    315   1.7  christos 					--outb;
    316   1.7  christos 					if (left == 0)
    317   1.7  christos 						while (n-- > 0)
    318   1.7  christos 							*outb++ = ' ';
    319   1.7  christos 				}
    320   1.7  christos 				cont = 0;
    321   1.7  christos 				break;
    322   1.7  christos 
    323   1.7  christos 			case 'c':
    324   1.7  christos 				*outb++ = va_arg(ap, int);
    325   1.7  christos 				cont = 0;
    326   1.7  christos 				break;
    327   1.1       cgd 
    328   1.1       cgd 			case '0':
    329   1.1       cgd 			case '1':
    330   1.1       cgd 			case '2':
    331   1.1       cgd 			case '3':
    332   1.1       cgd 			case '4':
    333   1.1       cgd 			case '5':
    334   1.1       cgd 			case '6':
    335   1.1       cgd 			case '7':
    336   1.1       cgd 			case '8':
    337   1.7  christos 			case '9':
    338   1.7  christos 				wide = 10 * wide + *fmt - '0';
    339   1.7  christos 				break;
    340   1.7  christos 
    341   1.7  christos 			case '-':
    342   1.7  christos 				left = 0;
    343   1.7  christos 				break;
    344   1.7  christos 
    345   1.7  christos 			default:
    346   1.7  christos 				*outb++ = *fmt;
    347   1.7  christos 				cont = 0;
    348   1.7  christos 				break;
    349   1.1       cgd 			};
    350   1.1       cgd 		fmt++;
    351   1.7  christos 	}
    352   1.1       cgd 	va_end(ap);
    353   1.7  christos }
    354   1.7  christos #endif	/* lint */
    355   1.1       cgd 
    356   1.1       cgd /*
    357   1.7  christos  *	lprint(long-integer)	send binary integer to output buffer
    358   1.1       cgd  *		long integer;
    359   1.1       cgd  *
    360   1.1       cgd  *		+---------+---------+---------+---------+
    361   1.7  christos  *		|   high  |	    |	      |	  low	|
    362   1.7  christos  *		|  order  |	    |	      |  order	|
    363   1.7  christos  *		|   byte  |	    |	      |	  byte	|
    364   1.1       cgd  *		+---------+---------+---------+---------+
    365   1.7  christos  *	        31  ---  24 23 --- 16 15 ---  8 7  ---   0
    366   1.1       cgd  *
    367   1.1       cgd  *	The save order is low order first, to high order (4 bytes total)
    368   1.7  christos  *	and is written to be system independent.
    369   1.1       cgd  *	No checking for output buffer overflow is done, but flushes if needed!
    370   1.1       cgd  *	Returns nothing of value.
    371   1.1       cgd  */
    372   1.7  christos void
    373   1.1       cgd lprint(x)
    374   1.7  christos 	long   x;
    375   1.7  christos {
    376   1.7  christos 	if (lpnt >= lpend)
    377   1.7  christos 		lflush();
    378   1.7  christos 	*lpnt++ = 255 & x;
    379   1.7  christos 	*lpnt++ = 255 & (x >> 8);
    380   1.7  christos 	*lpnt++ = 255 & (x >> 16);
    381   1.7  christos 	*lpnt++ = 255 & (x >> 24);
    382   1.7  christos }
    383   1.1       cgd 
    384   1.1       cgd /*
    385   1.7  christos  *	lwrite(buf,len)		write a buffer to the output buffer
    386   1.1       cgd  *		char *buf;
    387   1.1       cgd  *		int len;
    388   1.7  christos  *
    389   1.1       cgd  *	Enter with the address and number of bytes to write out
    390   1.1       cgd  *	Returns nothing of value
    391   1.1       cgd  */
    392   1.7  christos void
    393   1.7  christos lwrite(buf, len)
    394   1.7  christos 	char  *buf;
    395   1.7  christos 	int             len;
    396   1.7  christos {
    397   1.7  christos 	char  *str;
    398   1.7  christos 	int    num2;
    399   1.7  christos 	if (len > 399) {	/* don't copy data if can just write it */
    400   1.1       cgd #ifdef EXTRA
    401   1.1       cgd 		c[BYTESOUT] += len;
    402   1.1       cgd #endif
    403   1.1       cgd 
    404   1.1       cgd #ifndef VT100
    405   1.7  christos 		for (str = buf; len > 0; --len)
    406   1.1       cgd 			lprc(*str++);
    407   1.7  christos #else	/* VT100 */
    408   1.1       cgd 		lflush();
    409   1.7  christos 		write(lfd, buf, len);
    410   1.7  christos #endif	/* VT100 */
    411   1.7  christos 	} else
    412   1.7  christos 		while (len) {
    413   1.7  christos 			if (lpnt >= lpend)
    414   1.7  christos 				lflush();	/* if buffer is full flush it	 */
    415   1.7  christos 			num2 = lpbuf + BUFBIG - lpnt;	/* # bytes left in
    416   1.7  christos 							 * output buffer	 */
    417   1.7  christos 			if (num2 > len)
    418   1.7  christos 				num2 = len;
    419   1.7  christos 			str = lpnt;
    420   1.7  christos 			len -= num2;
    421   1.7  christos 			while (num2--)
    422   1.7  christos 				*str++ = *buf++;	/* copy in the bytes */
    423   1.7  christos 			lpnt = str;
    424   1.1       cgd 		}
    425   1.7  christos }
    426   1.1       cgd 
    427   1.1       cgd /*
    428   1.7  christos  *	long lgetc()	Read one character from input buffer
    429   1.1       cgd  *
    430   1.1       cgd  *  Returns 0 if EOF, otherwise the character
    431   1.1       cgd  */
    432   1.7  christos long
    433   1.7  christos lgetc()
    434   1.7  christos {
    435   1.7  christos 	int    i;
    436   1.7  christos 	if (ipoint != iepoint)
    437   1.7  christos 		return (inbuffer[ipoint++]);
    438   1.7  christos 	if (iepoint != MAXIBUF)
    439   1.7  christos 		return (0);
    440   1.7  christos 	if ((i = read(fd, inbuffer, MAXIBUF)) <= 0) {
    441   1.7  christos 		if (i != 0)
    442   1.7  christos 			write(1, "error reading from input file\n", 30);
    443   1.7  christos 		iepoint = ipoint = 0;
    444   1.7  christos 		return (0);
    445   1.7  christos 	}
    446   1.7  christos 	ipoint = 1;
    447   1.7  christos 	iepoint = i;
    448   1.7  christos 	return (*inbuffer);
    449   1.7  christos }
    450   1.1       cgd 
    451   1.1       cgd /*
    452   1.7  christos  *	long lrint()	Read one integer from input buffer
    453   1.1       cgd  *
    454   1.1       cgd  *		+---------+---------+---------+---------+
    455   1.7  christos  *		|   high  |	    |	      |	  low	|
    456   1.7  christos  *		|  order  |	    |	      |  order	|
    457   1.7  christos  *		|   byte  |	    |	      |	  byte	|
    458   1.1       cgd  *		+---------+---------+---------+---------+
    459   1.7  christos  *	       31  ---  24 23 --- 16 15 ---  8 7  ---   0
    460   1.1       cgd  *
    461   1.1       cgd  *	The save order is low order first, to high order (4 bytes total)
    462   1.1       cgd  *	Returns the int read
    463   1.1       cgd  */
    464   1.7  christos long
    465   1.7  christos lrint()
    466   1.7  christos {
    467   1.7  christos 	unsigned long i;
    468   1.7  christos 	i = 255 & lgetc();
    469   1.7  christos 	i |= (255 & lgetc()) << 8;
    470   1.7  christos 	i |= (255 & lgetc()) << 16;
    471   1.7  christos 	i |= (255 & lgetc()) << 24;
    472   1.7  christos 	return (i);
    473   1.7  christos }
    474   1.1       cgd 
    475   1.1       cgd /*
    476   1.7  christos  *	lrfill(address,number)		put input bytes into a buffer
    477   1.1       cgd  *		char *address;
    478   1.1       cgd  *		int number;
    479   1.1       cgd  *
    480   1.1       cgd  *	Reads "number" bytes into the buffer pointed to by "address".
    481   1.1       cgd  *	Returns nothing of value
    482   1.1       cgd  */
    483   1.7  christos void
    484   1.7  christos lrfill(adr, num)
    485   1.7  christos 	char  *adr;
    486   1.7  christos 	int             num;
    487   1.7  christos {
    488   1.7  christos 	char  *pnt;
    489   1.7  christos 	int    num2;
    490   1.7  christos 	while (num) {
    491   1.7  christos 		if (iepoint == ipoint) {
    492   1.7  christos 			if (num > 5) {	/* fast way */
    493   1.7  christos 				if (read(fd, adr, num) != num)
    494   1.7  christos 					write(2, "error reading from input file\n", 30);
    495   1.7  christos 				num = 0;
    496   1.7  christos 			} else {
    497   1.7  christos 				*adr++ = lgetc();
    498   1.7  christos 				--num;
    499   1.1       cgd 			}
    500   1.7  christos 		} else {
    501   1.7  christos 			num2 = iepoint - ipoint;	/* # of bytes left in
    502   1.7  christos 							 * the buffer	 */
    503   1.7  christos 			if (num2 > num)
    504   1.7  christos 				num2 = num;
    505   1.7  christos 			pnt = inbuffer + ipoint;
    506   1.7  christos 			num -= num2;
    507   1.7  christos 			ipoint += num2;
    508   1.7  christos 			while (num2--)
    509   1.7  christos 				*adr++ = *pnt++;
    510   1.1       cgd 		}
    511   1.1       cgd 	}
    512   1.7  christos }
    513   1.1       cgd 
    514   1.1       cgd /*
    515   1.1       cgd  *	char *lgetw()			Get a whitespace ended word from input
    516   1.1       cgd  *
    517   1.1       cgd  *	Returns pointer to a buffer that contains word.  If EOF, returns a NULL
    518   1.1       cgd  */
    519   1.7  christos char *
    520   1.7  christos lgetw()
    521   1.7  christos {
    522   1.7  christos 	char  *lgp, cc;
    523   1.7  christos 	int    n = LINBUFSIZE, quote = 0;
    524   1.1       cgd 	lgp = lgetwbuf;
    525   1.7  christos 	do
    526   1.7  christos 		cc = lgetc();
    527   1.7  christos 	while ((cc <= 32) && (cc > '\0'));	/* eat whitespace */
    528   1.7  christos 	for (;; --n, cc = lgetc()) {
    529   1.7  christos 		if ((cc == '\0') && (lgp == lgetwbuf))
    530   1.7  christos 			return (NULL);	/* EOF */
    531   1.7  christos 		if ((n <= 1) || ((cc <= 32) && (quote == 0))) {
    532   1.7  christos 			*lgp = '\0';
    533   1.7  christos 			return (lgetwbuf);
    534   1.1       cgd 		}
    535   1.7  christos 		if (cc != '"')
    536   1.7  christos 			*lgp++ = cc;
    537   1.7  christos 		else
    538   1.7  christos 			quote ^= 1;
    539   1.1       cgd 	}
    540   1.7  christos }
    541   1.1       cgd 
    542   1.1       cgd /*
    543   1.7  christos  *	char *lgetl()	Function to read in a line ended by newline or EOF
    544   1.1       cgd  *
    545   1.7  christos  * Returns pointer to a buffer that contains the line.  If EOF, returns NULL
    546   1.1       cgd  */
    547   1.7  christos char *
    548   1.7  christos lgetl()
    549   1.7  christos {
    550   1.7  christos 	int    i = LINBUFSIZE, ch;
    551   1.7  christos 	char  *str = lgetwbuf;
    552   1.7  christos 	for (;; --i) {
    553   1.7  christos 		if ((*str++ = ch = lgetc()) == '\0') {
    554   1.7  christos 			if (str == lgetwbuf + 1)
    555   1.7  christos 				return (NULL);	/* EOF */
    556   1.7  christos 	ot:		*str = '\0';
    557   1.7  christos 			return (lgetwbuf);	/* line ended by EOF */
    558   1.1       cgd 		}
    559   1.7  christos 		if ((ch == '\n') || (i <= 1))
    560   1.7  christos 			goto ot;/* line ended by \n */
    561   1.1       cgd 	}
    562   1.7  christos }
    563   1.1       cgd 
    564   1.1       cgd /*
    565   1.1       cgd  *	lcreat(filename)			Create a new file for write
    566   1.1       cgd  *		char *filename;
    567   1.1       cgd  *
    568   1.1       cgd  *	lcreat((char*)0); means to the terminal
    569   1.1       cgd  *	Returns -1 if error, otherwise the file descriptor opened.
    570   1.1       cgd  */
    571   1.7  christos int
    572   1.1       cgd lcreat(str)
    573   1.1       cgd 	char *str;
    574   1.7  christos {
    575   1.7  christos 	lpnt = lpbuf;
    576   1.7  christos 	lpend = lpbuf + BUFBIG;
    577   1.7  christos 	if (str == NULL)
    578   1.7  christos 		return (lfd = 1);
    579   1.7  christos 	if ((lfd = creat(str, 0644)) < 0) {
    580   1.7  christos 		lfd = 1;
    581   1.7  christos 		lprintf("error creating file <%s>: %s\n", str,
    582   1.5       mrg 			strerror(errno));
    583   1.7  christos 		lflush();
    584   1.7  christos 		return (-1);
    585   1.1       cgd 	}
    586   1.7  christos 	return (lfd);
    587   1.7  christos }
    588   1.1       cgd 
    589   1.1       cgd /*
    590   1.1       cgd  *	lopen(filename)			Open a file for read
    591   1.1       cgd  *		char *filename;
    592   1.1       cgd  *
    593   1.1       cgd  *	lopen(0) means from the terminal
    594   1.1       cgd  *	Returns -1 if error, otherwise the file descriptor opened.
    595   1.1       cgd  */
    596   1.7  christos int
    597   1.1       cgd lopen(str)
    598   1.7  christos 	char           *str;
    599   1.7  christos {
    600   1.1       cgd 	ipoint = iepoint = MAXIBUF;
    601   1.7  christos 	if (str == NULL)
    602   1.7  christos 		return (fd = 0);
    603   1.7  christos 	if ((fd = open(str, 0)) < 0) {
    604   1.7  christos 		lwclose();
    605   1.7  christos 		lfd = 1;
    606   1.7  christos 		lpnt = lpbuf;
    607   1.7  christos 		return (-1);
    608   1.1       cgd 	}
    609   1.7  christos 	return (fd);
    610   1.7  christos }
    611   1.1       cgd 
    612   1.1       cgd /*
    613   1.1       cgd  *	lappend(filename)		Open for append to an existing file
    614   1.1       cgd  *		char *filename;
    615   1.1       cgd  *
    616   1.1       cgd  *	lappend(0) means to the terminal
    617   1.1       cgd  *	Returns -1 if error, otherwise the file descriptor opened.
    618   1.1       cgd  */
    619   1.7  christos int
    620   1.1       cgd lappend(str)
    621   1.7  christos 	char           *str;
    622   1.7  christos {
    623   1.7  christos 	lpnt = lpbuf;
    624   1.7  christos 	lpend = lpbuf + BUFBIG;
    625   1.7  christos 	if (str == NULL)
    626   1.7  christos 		return (lfd = 1);
    627   1.7  christos 	if ((lfd = open(str, 2)) < 0) {
    628   1.7  christos 		lfd = 1;
    629   1.7  christos 		return (-1);
    630   1.7  christos 	}
    631   1.7  christos 	lseek(lfd, 0, 2);	/* seek to end of file */
    632   1.7  christos 	return (lfd);
    633   1.7  christos }
    634   1.1       cgd 
    635   1.1       cgd /*
    636   1.7  christos  *	lrclose() close the input file
    637   1.1       cgd  *
    638   1.1       cgd  *	Returns nothing of value.
    639   1.1       cgd  */
    640   1.7  christos void
    641   1.1       cgd lrclose()
    642   1.7  christos {
    643   1.7  christos 	if (fd > 0)
    644   1.7  christos 		close(fd);
    645   1.7  christos }
    646   1.1       cgd 
    647   1.1       cgd /*
    648   1.7  christos  *	lwclose() close output file flushing if needed
    649   1.1       cgd  *
    650   1.1       cgd  *	Returns nothing of value.
    651   1.1       cgd  */
    652   1.7  christos void
    653   1.1       cgd lwclose()
    654   1.7  christos {
    655   1.7  christos 	lflush();
    656   1.7  christos 	if (lfd > 2)
    657   1.7  christos 		close(lfd);
    658   1.7  christos }
    659   1.1       cgd 
    660   1.1       cgd /*
    661   1.7  christos  *	lprcat(string)	append a string to the output buffer
    662   1.7  christos  *			    	avoids calls to lprintf (time consuming)
    663   1.1       cgd  */
    664   1.7  christos void
    665   1.1       cgd lprcat(str)
    666   1.7  christos 	char  *str;
    667   1.7  christos {
    668   1.7  christos 	char  *str2;
    669   1.7  christos 	if (lpnt >= lpend)
    670   1.7  christos 		lflush();
    671   1.1       cgd 	str2 = lpnt;
    672   1.7  christos 	while ((*str2++ = *str++) != '\0')
    673   1.7  christos 		continue;
    674   1.1       cgd 	lpnt = str2 - 1;
    675   1.7  christos }
    676   1.1       cgd 
    677   1.1       cgd #ifdef VT100
    678   1.1       cgd /*
    679   1.1       cgd  *	cursor(x,y) 		Subroutine to set the cursor position
    680   1.1       cgd  *
    681   1.1       cgd  *	x and y are the cursor coordinates, and lpbuff is the output buffer where
    682   1.7  christos  *	escape sequence will be placed.
    683   1.1       cgd  */
    684   1.7  christos static char    *y_num[] = {
    685   1.7  christos "\33[", "\33[", "\33[2", "\33[3", "\33[4", "\33[5", "\33[6",
    686   1.7  christos "\33[7", "\33[8", "\33[9", "\33[10", "\33[11", "\33[12", "\33[13", "\33[14",
    687   1.7  christos "\33[15", "\33[16", "\33[17", "\33[18", "\33[19", "\33[20", "\33[21", "\33[22",
    688   1.7  christos "\33[23", "\33[24"};
    689   1.7  christos 
    690   1.7  christos static char    *x_num[] = {
    691   1.7  christos "H", "H", ";2H", ";3H", ";4H", ";5H", ";6H", ";7H", ";8H", ";9H",
    692   1.7  christos ";10H", ";11H", ";12H", ";13H", ";14H", ";15H", ";16H", ";17H", ";18H", ";19H",
    693   1.7  christos ";20H", ";21H", ";22H", ";23H", ";24H", ";25H", ";26H", ";27H", ";28H", ";29H",
    694   1.7  christos ";30H", ";31H", ";32H", ";33H", ";34H", ";35H", ";36H", ";37H", ";38H", ";39H",
    695   1.7  christos ";40H", ";41H", ";42H", ";43H", ";44H", ";45H", ";46H", ";47H", ";48H", ";49H",
    696   1.7  christos ";50H", ";51H", ";52H", ";53H", ";54H", ";55H", ";56H", ";57H", ";58H", ";59H",
    697   1.7  christos ";60H", ";61H", ";62H", ";63H", ";64H", ";65H", ";66H", ";67H", ";68H", ";69H",
    698   1.7  christos ";70H", ";71H", ";72H", ";73H", ";74H", ";75H", ";76H", ";77H", ";78H", ";79H",
    699   1.7  christos ";80H"};
    700   1.7  christos 
    701   1.7  christos void
    702   1.7  christos cursor(x, y)
    703   1.7  christos 	int             x, y;
    704   1.7  christos {
    705   1.7  christos 	char  *p;
    706   1.7  christos 	if (lpnt >= lpend)
    707   1.7  christos 		lflush();
    708   1.1       cgd 
    709   1.7  christos 	p = y_num[y];		/* get the string to print */
    710   1.7  christos 	while (*p)
    711   1.7  christos 		*lpnt++ = *p++;	/* print the string */
    712   1.7  christos 
    713   1.7  christos 	p = x_num[x];		/* get the string to print */
    714   1.7  christos 	while (*p)
    715   1.7  christos 		*lpnt++ = *p++;	/* print the string */
    716   1.7  christos }
    717   1.7  christos #else	/* VT100 */
    718   1.1       cgd /*
    719   1.1       cgd  * cursor(x,y)	  Put cursor at specified coordinates staring at [1,1] (termcap)
    720   1.1       cgd  */
    721   1.7  christos void
    722   1.7  christos cursor(x, y)
    723   1.7  christos 	int             x, y;
    724   1.7  christos {
    725   1.7  christos 	if (lpnt >= lpend)
    726   1.7  christos 		lflush();
    727   1.1       cgd 
    728   1.7  christos 	*lpnt++ = CURSOR;
    729   1.7  christos 	*lpnt++ = x;
    730   1.7  christos 	*lpnt++ = y;
    731   1.7  christos }
    732   1.7  christos #endif	/* VT100 */
    733   1.1       cgd 
    734   1.1       cgd /*
    735   1.1       cgd  *	Routine to position cursor at beginning of 24th line
    736   1.1       cgd  */
    737   1.7  christos void
    738   1.1       cgd cursors()
    739   1.7  christos {
    740   1.7  christos 	cursor(1, 24);
    741   1.7  christos }
    742   1.1       cgd 
    743   1.1       cgd #ifndef VT100
    744   1.1       cgd /*
    745   1.1       cgd  * Warning: ringing the bell is control code 7. Don't use in defines.
    746   1.1       cgd  * Don't change the order of these defines.
    747   1.1       cgd  * Also used in helpfiles. Codes used in helpfiles should be \E[1 to \E[7 with
    748   1.1       cgd  * obvious meanings.
    749   1.1       cgd  */
    750   1.1       cgd 
    751   1.9     blymn struct tinfo   *info;
    752   1.7  christos char           *CM, *CE, *CD, *CL, *SO, *SE, *AL, *DL;	/* Termcap capabilities */
    753   1.7  christos static char    *outbuf = 0;	/* translated output buffer */
    754   1.1       cgd 
    755   1.1       cgd /*
    756   1.1       cgd  * init_term()		Terminal initialization -- setup termcap info
    757   1.1       cgd  */
    758   1.7  christos void
    759   1.1       cgd init_term()
    760   1.7  christos {
    761   1.7  christos 	char           *term;
    762   1.7  christos 
    763   1.9     blymn 	switch (t_getent(&info, term = getenv("TERM"))) {
    764   1.7  christos 	case -1:
    765   1.7  christos 		write(2, "Cannot open termcap file.\n", 26);
    766   1.7  christos 		exit(1);
    767   1.7  christos 	case 0:
    768   1.7  christos 		write(2, "Cannot find entry of ", 21);
    769   1.7  christos 		write(2, term, strlen(term));
    770   1.7  christos 		write(2, " in termcap\n", 12);
    771   1.7  christos 		exit(1);
    772   1.7  christos 	};
    773   1.7  christos 
    774  1.13  christos 	CM = t_agetstr(info, "cm");	/* Cursor motion */
    775  1.13  christos 	CE = t_agetstr(info, "ce");	/* Clear to eoln */
    776  1.13  christos 	CL = t_agetstr(info, "cl");	/* Clear screen */
    777   1.7  christos 
    778   1.7  christos 	/* OPTIONAL */
    779  1.13  christos 	AL = t_agetstr(info, "al");	/* Insert line */
    780  1.13  christos 	DL = t_agetstr(info, "dl");	/* Delete line */
    781  1.13  christos 	SO = t_agetstr(info, "so");	/* Begin standout mode */
    782  1.13  christos 	SE = t_agetstr(info, "se");	/* End standout mode */
    783  1.13  christos 	CD = t_agetstr(info, "cd");	/* Clear to end of display */
    784   1.7  christos 
    785   1.7  christos 	if (!CM) {		/* can't find cursor motion entry */
    786   1.7  christos 		write(2, "Sorry, for a ", 13);
    787   1.7  christos 		write(2, term, strlen(term));
    788   1.7  christos 		write(2, ", I can't find the cursor motion entry in termcap\n", 50);
    789   1.7  christos 		exit(1);
    790   1.7  christos 	}
    791   1.7  christos 	if (!CE) {		/* can't find clear to end of line entry */
    792   1.7  christos 		write(2, "Sorry, for a ", 13);
    793   1.7  christos 		write(2, term, strlen(term));
    794   1.7  christos 		write(2, ", I can't find the clear to end of line entry in termcap\n", 57);
    795   1.7  christos 		exit(1);
    796   1.7  christos 	}
    797   1.7  christos 	if (!CL) {		/* can't find clear entire screen entry */
    798   1.7  christos 		write(2, "Sorry, for a ", 13);
    799   1.7  christos 		write(2, term, strlen(term));
    800   1.7  christos 		write(2, ", I can't find the clear entire screen entry in termcap\n", 56);
    801   1.7  christos 		exit(1);
    802   1.7  christos 	}
    803   1.7  christos 	if ((outbuf = malloc(BUFBIG + 16)) == 0) {	/* get memory for
    804   1.7  christos 							 * decoded output buffer */
    805   1.7  christos 		write(2, "Error malloc'ing memory for decoded output buffer\n", 50);
    806   1.1       cgd 		died(-285);	/* malloc() failure */
    807   1.1       cgd 	}
    808   1.7  christos }
    809   1.7  christos #endif	/* VT100 */
    810   1.1       cgd 
    811   1.1       cgd /*
    812   1.1       cgd  * cl_line(x,y)  Clear the whole line indicated by 'y' and leave cursor at [x,y]
    813   1.1       cgd  */
    814   1.7  christos void
    815   1.7  christos cl_line(x, y)
    816   1.7  christos 	int             x, y;
    817   1.7  christos {
    818   1.1       cgd #ifdef VT100
    819   1.7  christos 	cursor(x, y);
    820   1.7  christos 	lprcat("\33[2K");
    821   1.7  christos #else	/* VT100 */
    822   1.7  christos 	cursor(1, y);
    823   1.7  christos 	*lpnt++ = CL_LINE;
    824   1.7  christos 	cursor(x, y);
    825   1.7  christos #endif	/* VT100 */
    826   1.7  christos }
    827   1.1       cgd 
    828   1.1       cgd /*
    829   1.1       cgd  * cl_up(x,y) Clear screen from [x,1] to current position. Leave cursor at [x,y]
    830   1.1       cgd  */
    831   1.7  christos void
    832   1.7  christos cl_up(x, y)
    833   1.7  christos 	int    x, y;
    834   1.7  christos {
    835   1.1       cgd #ifdef VT100
    836   1.7  christos 	cursor(x, y);
    837   1.7  christos 	lprcat("\33[1J\33[2K");
    838   1.7  christos #else	/* VT100 */
    839   1.7  christos 	int    i;
    840   1.7  christos 	cursor(1, 1);
    841   1.7  christos 	for (i = 1; i <= y; i++) {
    842   1.7  christos 		*lpnt++ = CL_LINE;
    843   1.7  christos 		*lpnt++ = '\n';
    844   1.1       cgd 	}
    845   1.7  christos 	cursor(x, y);
    846   1.7  christos #endif	/* VT100 */
    847   1.7  christos }
    848   1.1       cgd 
    849   1.1       cgd /*
    850   1.1       cgd  * cl_dn(x,y) 	Clear screen from [1,y] to end of display. Leave cursor at [x,y]
    851   1.1       cgd  */
    852   1.7  christos void
    853   1.7  christos cl_dn(x, y)
    854   1.7  christos 	int    x, y;
    855   1.7  christos {
    856   1.1       cgd #ifdef VT100
    857   1.7  christos 	cursor(x, y);
    858   1.7  christos 	lprcat("\33[J\33[2K");
    859   1.7  christos #else	/* VT100 */
    860   1.7  christos 	int    i;
    861   1.7  christos 	cursor(1, y);
    862   1.7  christos 	if (!CD) {
    863   1.1       cgd 		*lpnt++ = CL_LINE;
    864   1.7  christos 		for (i = y; i <= 24; i++) {
    865   1.7  christos 			*lpnt++ = CL_LINE;
    866   1.7  christos 			if (i != 24)
    867   1.7  christos 				*lpnt++ = '\n';
    868   1.1       cgd 		}
    869   1.7  christos 		cursor(x, y);
    870   1.7  christos 	} else
    871   1.1       cgd 		*lpnt++ = CL_DOWN;
    872   1.7  christos 	cursor(x, y);
    873   1.7  christos #endif	/* VT100 */
    874   1.7  christos }
    875   1.1       cgd 
    876   1.1       cgd /*
    877   1.1       cgd  * standout(str)	Print the argument string in inverse video (standout mode).
    878   1.1       cgd  */
    879   1.7  christos void
    880   1.1       cgd standout(str)
    881   1.7  christos 	char  *str;
    882   1.7  christos {
    883   1.1       cgd #ifdef VT100
    884   1.1       cgd 	setbold();
    885   1.1       cgd 	while (*str)
    886   1.1       cgd 		*lpnt++ = *str++;
    887   1.1       cgd 	resetbold();
    888   1.7  christos #else	/* VT100 */
    889   1.1       cgd 	*lpnt++ = ST_START;
    890   1.1       cgd 	while (*str)
    891   1.1       cgd 		*lpnt++ = *str++;
    892   1.1       cgd 	*lpnt++ = ST_END;
    893   1.7  christos #endif	/* VT100 */
    894   1.7  christos }
    895   1.1       cgd 
    896   1.1       cgd /*
    897   1.1       cgd  * set_score_output() 	Called when output should be literally printed.
    898   1.1       cgd  */
    899   1.7  christos void
    900   1.1       cgd set_score_output()
    901   1.7  christos {
    902   1.1       cgd 	enable_scroll = -1;
    903   1.7  christos }
    904   1.1       cgd 
    905   1.1       cgd /*
    906   1.7  christos  *	lflush()	Flush the output buffer
    907   1.1       cgd  *
    908   1.1       cgd  *	Returns nothing of value.
    909   1.1       cgd  *	for termcap version: Flush output in output buffer according to output
    910   1.7  christos  *	status as indicated by `enable_scroll'
    911   1.1       cgd  */
    912   1.1       cgd #ifndef VT100
    913   1.7  christos static int      scrline = 18;	/* line # for wraparound instead of scrolling
    914   1.7  christos 				 * if no DL */
    915   1.7  christos void
    916   1.7  christos lflush()
    917   1.7  christos {
    918   1.7  christos 	int    lpoint;
    919   1.7  christos 	u_char  *str;
    920   1.7  christos 	static int      curx = 0;
    921   1.7  christos 	static int      cury = 0;
    922   1.9     blymn 	char tgoto_buf[256];
    923   1.1       cgd 
    924   1.7  christos 	if ((lpoint = lpnt - lpbuf) > 0) {
    925   1.1       cgd #ifdef EXTRA
    926   1.1       cgd 		c[BYTESOUT] += lpoint;
    927   1.1       cgd #endif
    928   1.7  christos 		if (enable_scroll <= -1) {
    929   1.1       cgd 			flush_buf();
    930   1.7  christos 			if (write(lfd, lpbuf, lpoint) != lpoint)
    931   1.7  christos 				write(2, "error writing to output file\n", 29);
    932   1.1       cgd 			lpnt = lpbuf;	/* point back to beginning of buffer */
    933   1.1       cgd 			return;
    934   1.7  christos 		}
    935   1.7  christos 		for (str = lpbuf; str < lpnt; str++) {
    936   1.7  christos 			if (*str >= 32) {
    937   1.7  christos 				xputchar(*str);
    938   1.7  christos 				curx++;
    939   1.7  christos 			} else
    940   1.7  christos 				switch (*str) {
    941   1.7  christos 				case CLEAR:
    942   1.7  christos 					tputs(CL, 0, xputchar);
    943   1.7  christos 					curx = cury = 0;
    944   1.7  christos 					break;
    945   1.7  christos 
    946   1.7  christos 				case CL_LINE:
    947   1.7  christos 					tputs(CE, 0, xputchar);
    948   1.7  christos 					break;
    949   1.7  christos 
    950   1.7  christos 				case CL_DOWN:
    951   1.7  christos 					tputs(CD, 0, xputchar);
    952   1.7  christos 					break;
    953   1.7  christos 
    954   1.7  christos 				case ST_START:
    955   1.7  christos 					tputs(SO, 0, xputchar);
    956   1.7  christos 					break;
    957   1.7  christos 
    958   1.7  christos 				case ST_END:
    959   1.7  christos 					tputs(SE, 0, xputchar);
    960   1.7  christos 					break;
    961   1.7  christos 
    962   1.7  christos 				case CURSOR:
    963   1.7  christos 					curx = *++str - 1;
    964   1.7  christos 					cury = *++str - 1;
    965   1.9     blymn 					if (t_goto(info, CM, curx, cury,
    966   1.9     blymn 						   tgoto_buf, 255) == 0)
    967   1.9     blymn 						tputs(tgoto_buf, 0, xputchar);
    968   1.7  christos 					break;
    969   1.7  christos 
    970   1.7  christos 				case '\n':
    971   1.7  christos 					if ((cury == 23) && enable_scroll) {
    972   1.7  christos 						if (!DL || !AL) {	/* wraparound or scroll? */
    973   1.7  christos 							if (++scrline > 23)
    974   1.7  christos 								scrline = 19;
    975   1.7  christos 
    976   1.7  christos 							if (++scrline > 23)
    977   1.7  christos 								scrline = 19;
    978   1.9     blymn 							if (t_goto(info, CM, 0,
    979   1.9     blymn 								   scrline,
    980   1.9     blymn 								   tgoto_buf,
    981   1.9     blymn 								   255) == 0)
    982   1.9     blymn 								tputs(tgoto_buf,
    983   1.9     blymn 								      0,
    984   1.9     blymn 								      xputchar);
    985   1.7  christos 							tputs(CE, 0, xputchar);
    986   1.7  christos 
    987   1.7  christos 							if (--scrline < 19)
    988   1.7  christos 								scrline = 23;
    989   1.9     blymn 							if (t_goto(info, CM, 0,
    990   1.9     blymn 								   scrline,
    991   1.9     blymn 								   tgoto_buf,
    992   1.9     blymn 								   255) == 0)
    993   1.9     blymn 								tputs(tgoto_buf,
    994   1.9     blymn 								      0,
    995   1.9     blymn 								      xputchar);
    996   1.7  christos 							tputs(CE, 0, xputchar);
    997   1.7  christos 						} else {
    998   1.9     blymn 							if (t_goto(info, CM, 0,
    999   1.9     blymn 								   19,
   1000   1.9     blymn 								   tgoto_buf,
   1001   1.9     blymn 								   255) == 0)
   1002   1.9     blymn 								tputs(tgoto_buf,
   1003   1.9     blymn 								      0,
   1004   1.9     blymn 								      xputchar);
   1005   1.7  christos 							tputs(DL, 0, xputchar);
   1006   1.9     blymn 							if (t_goto(info, CM, 0,
   1007   1.9     blymn 								   23,
   1008   1.9     blymn 								   tgoto_buf,
   1009   1.9     blymn 								   255) == 0)
   1010   1.9     blymn 								tputs(tgoto_buf,
   1011   1.9     blymn 								      0,
   1012   1.9     blymn 								      xputchar);
   1013   1.7  christos 							/*
   1014   1.7  christos 							 * tputs (AL, 0,
   1015   1.7  christos 							 * xputchar);
   1016   1.7  christos 							 */
   1017   1.7  christos 						}
   1018   1.7  christos 					} else {
   1019   1.7  christos 						xputchar('\n');
   1020   1.7  christos 						cury++;
   1021   1.7  christos 					}
   1022   1.7  christos 					curx = 0;
   1023   1.7  christos 					break;
   1024   1.1       cgd 
   1025   1.7  christos 				default:
   1026   1.7  christos 					xputchar(*str);
   1027   1.7  christos 					curx++;
   1028   1.1       cgd 				};
   1029   1.1       cgd 		}
   1030   1.7  christos 	}
   1031   1.1       cgd 	lpnt = lpbuf;
   1032   1.7  christos 	flush_buf();		/* flush real output buffer now */
   1033   1.7  christos }
   1034   1.7  christos #else	/* VT100 */
   1035   1.1       cgd /*
   1036   1.7  christos  *	lflush()		flush the output buffer
   1037   1.1       cgd  *
   1038   1.1       cgd  *	Returns nothing of value.
   1039   1.1       cgd  */
   1040   1.7  christos void
   1041   1.1       cgd lflush()
   1042   1.7  christos {
   1043   1.7  christos 	int    lpoint;
   1044   1.7  christos 	if ((lpoint = lpnt - lpbuf) > 0) {
   1045   1.1       cgd #ifdef EXTRA
   1046   1.1       cgd 		c[BYTESOUT] += lpoint;
   1047   1.1       cgd #endif
   1048   1.7  christos 		if (write(lfd, lpbuf, lpoint) != lpoint)
   1049   1.7  christos 			write(2, "error writing to output file\n", 29);
   1050   1.7  christos 	}
   1051   1.7  christos 	lpnt = lpbuf;		/* point back to beginning of buffer */
   1052   1.7  christos }
   1053   1.7  christos #endif	/* VT100 */
   1054   1.1       cgd 
   1055   1.1       cgd #ifndef VT100
   1056   1.7  christos static int      vindex = 0;
   1057   1.1       cgd /*
   1058   1.7  christos  * xputchar(ch)		Print one character in decoded output buffer.
   1059   1.1       cgd  */
   1060   1.8     lukem int
   1061   1.7  christos xputchar(c)
   1062   1.7  christos 	int             c;
   1063   1.7  christos {
   1064   1.4       cgd 	outbuf[vindex++] = c;
   1065   1.7  christos 	if (vindex >= BUFBIG)
   1066   1.7  christos 		flush_buf();
   1067   1.8     lukem 	return (0);
   1068   1.7  christos }
   1069   1.1       cgd 
   1070   1.1       cgd /*
   1071   1.1       cgd  * flush_buf()			Flush buffer with decoded output.
   1072   1.1       cgd  */
   1073   1.7  christos void
   1074   1.1       cgd flush_buf()
   1075   1.7  christos {
   1076   1.7  christos 	if (vindex)
   1077   1.7  christos 		write(lfd, outbuf, vindex);
   1078   1.4       cgd 	vindex = 0;
   1079   1.7  christos }
   1080   1.1       cgd 
   1081   1.1       cgd /*
   1082   1.7  christos  *	char *tmcapcnv(sd,ss)  Routine to convert VT100 escapes to termcap
   1083   1.7  christos  *	format
   1084   1.7  christos  *	Processes only the \33[#m sequence (converts . files for termcap use
   1085   1.7  christos  */
   1086   1.7  christos char *
   1087   1.7  christos tmcapcnv(sd, ss)
   1088   1.7  christos 	char  *sd, *ss;
   1089   1.7  christos {
   1090   1.7  christos 	int    tmstate = 0;	/* 0=normal, 1=\33 2=[ 3=# */
   1091   1.7  christos 	char            tmdigit = 0;	/* the # in \33[#m */
   1092   1.7  christos 	while (*ss) {
   1093   1.7  christos 		switch (tmstate) {
   1094   1.7  christos 		case 0:
   1095   1.7  christos 			if (*ss == '\33') {
   1096   1.7  christos 				tmstate++;
   1097   1.7  christos 				break;
   1098   1.7  christos 			}
   1099   1.7  christos 	ign:		*sd++ = *ss;
   1100   1.7  christos 	ign2:		tmstate = 0;
   1101   1.7  christos 			break;
   1102   1.7  christos 		case 1:
   1103   1.7  christos 			if (*ss != '[')
   1104   1.7  christos 				goto ign;
   1105   1.7  christos 			tmstate++;
   1106   1.7  christos 			break;
   1107   1.7  christos 		case 2:
   1108   1.7  christos 			if (isdigit((u_char)*ss)) {
   1109   1.7  christos 				tmdigit = *ss - '0';
   1110   1.7  christos 				tmstate++;
   1111   1.7  christos 				break;
   1112   1.7  christos 			}
   1113   1.7  christos 			if (*ss == 'm') {
   1114   1.7  christos 				*sd++ = ST_END;
   1115   1.7  christos 				goto ign2;
   1116   1.7  christos 			}
   1117   1.7  christos 			goto ign;
   1118   1.7  christos 		case 3:
   1119   1.7  christos 			if (*ss == 'm') {
   1120   1.7  christos 				if (tmdigit)
   1121   1.7  christos 					*sd++ = ST_START;
   1122   1.7  christos 				else
   1123   1.7  christos 					*sd++ = ST_END;
   1124   1.7  christos 				goto ign2;
   1125   1.7  christos 			}
   1126   1.7  christos 		default:
   1127   1.7  christos 			goto ign;
   1128   1.7  christos 		};
   1129   1.1       cgd 		ss++;
   1130   1.1       cgd 	}
   1131   1.7  christos 	*sd = 0;		/* NULL terminator */
   1132   1.7  christos 	return (sd);
   1133   1.7  christos }
   1134   1.7  christos #endif	/* VT100 */
   1135   1.1       cgd 
   1136   1.1       cgd /*
   1137   1.7  christos  *	beep()	Routine to emit a beep if enabled (see no-beep in .larnopts)
   1138   1.1       cgd  */
   1139   1.7  christos void
   1140   1.1       cgd beep()
   1141   1.7  christos {
   1142   1.7  christos 	if (!nobeep)
   1143   1.7  christos 		*lpnt++ = '\7';
   1144   1.7  christos }
   1145