Home | History | Annotate | Line # | Download | only in dev
ite.c revision 1.40
      1  1.40       is /*	$NetBSD: ite.c,v 1.40 1996/05/09 20:31:32 is Exp $	*/
      2  1.23      cgd 
      3   1.1       mw /*
      4   1.1       mw  * Copyright (c) 1988 University of Utah.
      5   1.1       mw  * Copyright (c) 1990 The Regents of the University of California.
      6   1.1       mw  * All rights reserved.
      7   1.1       mw  *
      8   1.1       mw  * This code is derived from software contributed to Berkeley by
      9   1.1       mw  * the Systems Programming Group of the University of Utah Computer
     10   1.1       mw  * Science Department.
     11   1.1       mw  *
     12   1.1       mw  * Redistribution and use in source and binary forms, with or without
     13   1.1       mw  * modification, are permitted provided that the following conditions
     14   1.1       mw  * are met:
     15   1.1       mw  * 1. Redistributions of source code must retain the above copyright
     16   1.1       mw  *    notice, this list of conditions and the following disclaimer.
     17   1.1       mw  * 2. Redistributions in binary form must reproduce the above copyright
     18   1.1       mw  *    notice, this list of conditions and the following disclaimer in the
     19   1.1       mw  *    documentation and/or other materials provided with the distribution.
     20   1.1       mw  * 3. All advertising materials mentioning features or use of this software
     21   1.1       mw  *    must display the following acknowledgement:
     22   1.9   chopps  *      This product includes software developed by the University of
     23   1.9   chopps  *      California, Berkeley and its contributors.
     24   1.1       mw  * 4. Neither the name of the University nor the names of its contributors
     25   1.1       mw  *    may be used to endorse or promote products derived from this software
     26   1.1       mw  *    without specific prior written permission.
     27   1.1       mw  *
     28   1.1       mw  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29   1.1       mw  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30   1.1       mw  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31   1.1       mw  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32   1.1       mw  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33   1.1       mw  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34   1.1       mw  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35   1.1       mw  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36   1.1       mw  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37   1.1       mw  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38   1.1       mw  * SUCH DAMAGE.
     39   1.1       mw  *
     40  1.23      cgd  *	from: Utah Hdr: ite.c 1.1 90/07/09
     41  1.23      cgd  *	@(#)ite.c 7.6 (Berkeley) 5/16/91
     42   1.1       mw  */
     43   1.1       mw 
     44   1.1       mw /*
     45   1.9   chopps  * ite - bitmaped terminal.
     46   1.9   chopps  * Supports VT200, a few terminal features will be unavailable until
     47   1.9   chopps  * the system actually probes the device (i.e. not after consinit())
     48   1.1       mw  */
     49   1.9   chopps 
     50   1.8   chopps #include <sys/param.h>
     51  1.17   chopps #include <sys/kernel.h>
     52  1.15   chopps #include <sys/device.h>
     53   1.9   chopps #include <sys/malloc.h>
     54   1.8   chopps #include <sys/ioctl.h>
     55   1.8   chopps #include <sys/tty.h>
     56   1.9   chopps #include <sys/termios.h>
     57   1.8   chopps #include <sys/systm.h>
     58   1.9   chopps #include <sys/proc.h>
     59   1.9   chopps #include <dev/cons.h>
     60  1.29   chopps #include <amiga/amiga/cc.h>
     61   1.9   chopps #include <amiga/amiga/kdassert.h>
     62  1.15   chopps #include <amiga/amiga/color.h>	/* DEBUG */
     63  1.40       is #include <amiga/amiga/custom.h>	/* DEBUG */
     64  1.15   chopps #include <amiga/amiga/device.h>
     65  1.32   chopps #include <amiga/amiga/isr.h>
     66   1.9   chopps #include <amiga/dev/iteioctl.h>
     67   1.8   chopps #include <amiga/dev/itevar.h>
     68   1.8   chopps #include <amiga/dev/kbdmap.h>
     69  1.15   chopps #include <amiga/dev/grfioctl.h>
     70  1.15   chopps #include <amiga/dev/grfvar.h>
     71  1.15   chopps 
     72  1.39    veego #include <sys/conf.h>
     73  1.39    veego #include <machine/conf.h>
     74  1.39    veego 
     75  1.29   chopps #include "grfcc.h"
     76  1.39    veego #include "ite.h"
     77  1.15   chopps 
     78  1.15   chopps /*
     79  1.15   chopps  * XXX go ask sys/kern/tty.c:ttselect()
     80  1.15   chopps  */
     81   1.1       mw 
     82  1.15   chopps #define ITEUNIT(dev)	(minor(dev))
     83  1.15   chopps 
     84  1.15   chopps #define SUBR_INIT(ip)		(ip)->grf->g_iteinit(ip)
     85  1.15   chopps #define SUBR_DEINIT(ip)		(ip)->grf->g_itedeinit(ip)
     86  1.15   chopps #define SUBR_PUTC(ip,c,dy,dx,m)	(ip)->grf->g_iteputc(ip,c,dy,dx,m)
     87  1.15   chopps #define SUBR_CURSOR(ip,flg)	(ip)->grf->g_itecursor(ip,flg)
     88  1.15   chopps #define SUBR_CLEAR(ip,sy,sx,h,w)	(ip)->grf->g_iteclear(ip,sy,sx,h,w)
     89  1.15   chopps #define SUBR_SCROLL(ip,sy,sx,count,dir)	\
     90  1.15   chopps     (ip)->grf->g_itescroll(ip,sy,sx,count,dir)
     91  1.15   chopps 
     92  1.19   chopps u_int	ite_confunits;			/* configured units */
     93   1.9   chopps 
     94  1.17   chopps int	start_repeat_timeo = 30;	/* first repeat after x s/100 */
     95  1.17   chopps int	next_repeat_timeo = 10;		/* next repeat after x s/100 */
     96   1.9   chopps 
     97  1.14   chopps int	ite_default_wrap = 1;		/* you want vtxxx-nam, binpatch */
     98  1.14   chopps 
     99  1.15   chopps struct	ite_softc con_itesoftc;
    100   1.9   chopps u_char	cons_tabs[MAX_TABS];
    101   1.9   chopps 
    102   1.9   chopps struct ite_softc *kbd_ite;
    103   1.9   chopps int kbd_init;
    104   1.9   chopps 
    105  1.29   chopps /* audio bell stuff */
    106  1.29   chopps u_int bvolume = 10;
    107  1.29   chopps u_int bpitch = 660;
    108  1.29   chopps u_int bmsec = 75;
    109  1.29   chopps 
    110  1.29   chopps static char *bsamplep;
    111  1.29   chopps static char sample[20] = {
    112  1.29   chopps 	0,39,75,103,121,127,121,103,75,39,0,
    113  1.29   chopps 	-39,-75,-103,-121,-127,-121,-103,-75,-39
    114  1.29   chopps };
    115  1.29   chopps 
    116   1.9   chopps static char *index __P((const char *, char));
    117  1.32   chopps static void ite_sifilter __P((void *, void *));
    118  1.11   chopps void iteputchar __P((int c, struct ite_softc *ip));
    119  1.11   chopps void ite_putstr __P((const char * s, int len, dev_t dev));
    120  1.15   chopps void iteattach __P((struct device *, struct device *, void *));
    121  1.37  thorpej int itematch __P((struct device *, void *, void *));
    122  1.33   chopps static void iteprecheckwrap __P((struct ite_softc *));
    123  1.33   chopps static void itecheckwrap __P((struct ite_softc *));
    124  1.39    veego struct ite_softc *getitesp __P((dev_t));
    125  1.39    veego void init_bell __P((void));
    126  1.39    veego void ite_bell __P((void));
    127  1.39    veego void itecnpollc __P((dev_t, int));
    128  1.39    veego static void repeat_handler __P((void *));
    129  1.39    veego inline static void ite_sendstr __P((char *));
    130  1.39    veego static void alignment_display __P((struct ite_softc *));
    131  1.39    veego inline static void snap_cury __P((struct ite_softc *));
    132  1.39    veego inline static void ite_dnchar __P((struct ite_softc *, int));
    133  1.39    veego inline static void ite_inchar __P((struct ite_softc *, int));
    134  1.39    veego inline static void ite_clrtoeol __P((struct ite_softc *));
    135  1.39    veego inline static void ite_clrtobol __P((struct ite_softc *));
    136  1.39    veego inline static void ite_clrline __P((struct ite_softc *));
    137  1.39    veego inline static void ite_clrtoeos __P((struct ite_softc *));
    138  1.39    veego inline static void ite_clrtobos __P((struct ite_softc *));
    139  1.39    veego inline static void ite_clrscreen __P((struct ite_softc *));
    140  1.39    veego inline static void ite_dnline __P((struct ite_softc *, int));
    141  1.39    veego inline static void ite_inline __P((struct ite_softc *, int));
    142  1.39    veego inline static void ite_lf __P((struct ite_softc *));
    143  1.39    veego inline static void ite_crlf __P((struct ite_softc *));
    144  1.39    veego inline static void ite_cr __P((struct ite_softc *));
    145  1.39    veego inline static void ite_rlf __P((struct ite_softc *));
    146  1.39    veego inline static int atoi __P((const char *));
    147  1.39    veego inline static int ite_argnum __P((struct ite_softc *));
    148  1.39    veego inline static int ite_zargnum __P((struct ite_softc *));
    149  1.33   chopps 
    150  1.37  thorpej struct cfattach ite_ca = {
    151  1.38   mhitch 	sizeof(struct ite_softc), itematch, iteattach
    152  1.37  thorpej };
    153  1.15   chopps 
    154  1.37  thorpej struct cfdriver ite_cd = {
    155  1.37  thorpej 	NULL, "ite", DV_DULL, NULL, 0
    156  1.37  thorpej };
    157   1.9   chopps 
    158  1.15   chopps int
    159  1.37  thorpej itematch(pdp, match, auxp)
    160  1.15   chopps 	struct device *pdp;
    161  1.37  thorpej 	void *match, *auxp;
    162  1.15   chopps {
    163  1.37  thorpej 	struct cfdata *cdp = match;
    164  1.19   chopps 	struct grf_softc *gp;
    165  1.19   chopps 	int maj;
    166  1.19   chopps 
    167  1.19   chopps 	gp = auxp;
    168  1.19   chopps 	/*
    169  1.19   chopps 	 * all that our mask allows (more than enough no one
    170  1.19   chopps 	 * has > 32 monitors for text consoles on one machine)
    171  1.19   chopps 	 */
    172  1.19   chopps 	if (cdp->cf_unit >= sizeof(ite_confunits) * NBBY)
    173  1.15   chopps 		return(0);
    174  1.19   chopps 	/*
    175  1.19   chopps 	 * XXX
    176  1.19   chopps 	 * normally this would be done in attach, however
    177  1.19   chopps 	 * during early init we do not have a device pointer
    178  1.19   chopps 	 * and thus no unit number.
    179  1.19   chopps 	 */
    180  1.19   chopps 	for(maj = 0; maj < nchrdev; maj++)
    181  1.25   chopps 		if (cdevsw[maj].d_open == iteopen)
    182  1.19   chopps 			break;
    183  1.19   chopps 	gp->g_itedev = makedev(maj, cdp->cf_unit);
    184  1.15   chopps 	return(1);
    185  1.15   chopps }
    186  1.15   chopps 
    187  1.15   chopps void
    188  1.15   chopps iteattach(pdp, dp, auxp)
    189  1.15   chopps 	struct device *pdp, *dp;
    190  1.15   chopps 	void *auxp;
    191  1.15   chopps {
    192  1.15   chopps 	struct grf_softc *gp;
    193  1.15   chopps 	struct ite_softc *ip;
    194  1.19   chopps 	int s;
    195  1.15   chopps 
    196  1.15   chopps 	gp = (struct grf_softc *)auxp;
    197  1.15   chopps 
    198  1.15   chopps 	/*
    199  1.19   chopps 	 * mark unit as attached (XXX see itematch)
    200  1.15   chopps 	 */
    201  1.19   chopps 	ite_confunits |= 1 << ITEUNIT(gp->g_itedev);
    202  1.19   chopps 
    203  1.15   chopps 	if (dp) {
    204  1.15   chopps 		ip = (struct ite_softc *)dp;
    205  1.15   chopps 
    206  1.15   chopps 		s = spltty();
    207  1.19   chopps 		if (con_itesoftc.grf != NULL &&
    208  1.19   chopps 		    con_itesoftc.grf->g_unit == gp->g_unit) {
    209  1.15   chopps 			/*
    210  1.15   chopps 			 * console reinit copy params over.
    211  1.15   chopps 			 * and console always gets keyboard
    212  1.15   chopps 			 */
    213  1.15   chopps 			bcopy(&con_itesoftc.grf, &ip->grf,
    214  1.15   chopps 			    (char *)&ip[1] - (char *)&ip->grf);
    215  1.15   chopps 			con_itesoftc.grf = NULL;
    216  1.15   chopps 			kbd_ite = ip;
    217  1.15   chopps 		}
    218  1.15   chopps 		ip->grf = gp;
    219  1.15   chopps 		splx(s);
    220   1.9   chopps 
    221  1.25   chopps 		alloc_sicallback();
    222  1.15   chopps 		iteinit(gp->g_itedev);
    223  1.21   chopps 		printf(": rows %d cols %d", ip->rows, ip->cols);
    224  1.22   chopps 		printf(" repeat at (%d/100)s next at (%d/100)s",
    225  1.17   chopps 		    start_repeat_timeo, next_repeat_timeo);
    226  1.15   chopps 
    227  1.15   chopps 		if (kbd_ite == NULL)
    228  1.15   chopps 			kbd_ite = ip;
    229  1.15   chopps 		if (kbd_ite == ip)
    230  1.15   chopps 			printf(" has keyboard");
    231  1.15   chopps 		printf("\n");
    232  1.15   chopps 	} else {
    233  1.15   chopps 		if (con_itesoftc.grf != NULL &&
    234  1.15   chopps 		    con_itesoftc.grf->g_conpri > gp->g_conpri)
    235  1.15   chopps 			return;
    236  1.15   chopps 		con_itesoftc.grf = gp;
    237  1.15   chopps 		con_itesoftc.tabs = cons_tabs;
    238  1.15   chopps 	}
    239   1.9   chopps }
    240  1.15   chopps 
    241  1.15   chopps struct ite_softc *
    242  1.15   chopps getitesp(dev)
    243  1.15   chopps 	dev_t dev;
    244  1.15   chopps {
    245  1.15   chopps 	if (amiga_realconfig && con_itesoftc.grf == NULL)
    246  1.37  thorpej 		return(ite_cd.cd_devs[ITEUNIT(dev)]);
    247  1.15   chopps 
    248  1.15   chopps 	if (con_itesoftc.grf == NULL)
    249  1.15   chopps 		panic("no ite_softc for console");
    250  1.15   chopps 	return(&con_itesoftc);
    251   1.9   chopps }
    252   1.1       mw 
    253   1.1       mw /*
    254   1.9   chopps  * cons.c entry points into ite device.
    255   1.1       mw  */
    256   1.1       mw 
    257   1.1       mw /*
    258   1.9   chopps  * Return a priority in consdev->cn_pri field highest wins.  This function
    259   1.9   chopps  * is called before any devices have been probed.
    260   1.1       mw  */
    261   1.9   chopps void
    262  1.27  mycroft itecnprobe(cd)
    263   1.9   chopps 	struct consdev *cd;
    264   1.1       mw {
    265  1.15   chopps 	/*
    266  1.15   chopps 	 * bring graphics layer up.
    267  1.15   chopps 	 */
    268  1.15   chopps 	config_console();
    269   1.9   chopps 
    270  1.15   chopps 	/*
    271  1.15   chopps 	 * return priority of the best ite (already picked from attach)
    272  1.15   chopps 	 * or CN_DEAD.
    273  1.15   chopps 	 */
    274  1.15   chopps 	if (con_itesoftc.grf == NULL)
    275  1.15   chopps 		cd->cn_pri = CN_DEAD;
    276  1.15   chopps 	else {
    277  1.15   chopps 		cd->cn_pri = con_itesoftc.grf->g_conpri;
    278  1.15   chopps 		cd->cn_dev = con_itesoftc.grf->g_itedev;
    279   1.1       mw 	}
    280   1.1       mw }
    281   1.1       mw 
    282  1.29   chopps /* audio bell stuff */
    283  1.29   chopps void
    284  1.29   chopps init_bell()
    285  1.29   chopps {
    286  1.29   chopps 	if (bsamplep != NULL)
    287  1.29   chopps 		return;
    288  1.29   chopps 	bsamplep = alloc_chipmem(20);
    289  1.29   chopps 	if (bsamplep == NULL)
    290  1.29   chopps 		panic("no chipmem for ite_bell");
    291  1.29   chopps 
    292  1.29   chopps 	bcopy(sample, bsamplep, 20);
    293  1.29   chopps }
    294  1.29   chopps 
    295  1.29   chopps void
    296  1.29   chopps ite_bell()
    297  1.29   chopps {
    298  1.29   chopps 	u_int clock;
    299  1.29   chopps 	u_int period;
    300  1.29   chopps 	u_int count;
    301  1.29   chopps 
    302  1.29   chopps 	clock = 3579545; 	/* PAL 3546895 */
    303  1.29   chopps 
    304  1.29   chopps 	/*
    305  1.29   chopps 	 * the number of clock ticks per sample byte must be > 124
    306  1.29   chopps 	 * ergo bpitch must be < clock / 124*20
    307  1.29   chopps 	 * i.e. ~1443, 1300 to be safe (PAL etc.). also not zero obviously
    308  1.29   chopps 	 */
    309  1.29   chopps 	period = clock / (bpitch * 20);
    310  1.29   chopps 	count = bmsec * bpitch / 1000;
    311  1.29   chopps 
    312  1.29   chopps 	play_sample(10, PREP_DMA_MEM(bsamplep), period, bvolume, 0x3, count);
    313  1.29   chopps }
    314  1.29   chopps 
    315   1.9   chopps void
    316  1.27  mycroft itecninit(cd)
    317   1.9   chopps 	struct consdev *cd;
    318   1.1       mw {
    319  1.15   chopps 	struct ite_softc *ip;
    320   1.1       mw 
    321  1.15   chopps 	ip = getitesp(cd->cn_dev);
    322  1.15   chopps 	iteinit(cd->cn_dev);
    323   1.9   chopps 	ip->flags |= ITE_ACTIVE | ITE_ISCONS;
    324  1.29   chopps 
    325  1.40       is #ifdef DRACO
    326  1.40       is 	if (!is_draco())
    327  1.40       is #endif
    328  1.29   chopps 	init_bell();
    329   1.1       mw }
    330   1.1       mw 
    331   1.9   chopps /*
    332   1.9   chopps  * ite_cnfinish() is called in ite_init() when the device is
    333   1.9   chopps  * being probed in the normal fasion, thus we can finish setting
    334   1.9   chopps  * up this ite now that the system is more functional.
    335   1.9   chopps  */
    336   1.9   chopps void
    337   1.9   chopps ite_cnfinish(ip)
    338   1.9   chopps 	struct ite_softc *ip;
    339   1.1       mw {
    340   1.9   chopps 	static int done;
    341   1.1       mw 
    342   1.9   chopps 	if (done)
    343   1.1       mw 		return;
    344   1.9   chopps 	done = 1;
    345   1.9   chopps }
    346   1.3       mw 
    347   1.9   chopps int
    348  1.27  mycroft itecngetc(dev)
    349   1.9   chopps 	dev_t dev;
    350   1.9   chopps {
    351   1.9   chopps 	int c;
    352   1.1       mw 
    353   1.9   chopps 	/* XXX this should be moved */
    354   1.9   chopps 	if (!kbd_init) {
    355   1.9   chopps 		kbd_init = 1;
    356   1.9   chopps 		kbdenable();
    357   1.9   chopps 	}
    358   1.9   chopps 	do {
    359   1.9   chopps 		c = kbdgetcn();
    360   1.9   chopps 		c = ite_cnfilter(c, ITEFILT_CONSOLE);
    361   1.9   chopps 	} while (c == -1);
    362   1.9   chopps 	return (c);
    363   1.9   chopps }
    364   1.3       mw 
    365   1.9   chopps void
    366  1.27  mycroft itecnputc(dev, c)
    367   1.9   chopps 	dev_t dev;
    368   1.9   chopps 	int c;
    369   1.9   chopps {
    370  1.15   chopps 	static int paniced;
    371  1.15   chopps 	struct ite_softc *ip;
    372  1.15   chopps 	char ch;
    373  1.15   chopps 
    374  1.15   chopps 	ip = getitesp(dev);
    375  1.15   chopps 	ch = c;
    376  1.15   chopps 
    377   1.9   chopps 	if (panicstr && !paniced &&
    378   1.9   chopps 	    (ip->flags & (ITE_ACTIVE | ITE_INGRF)) != ITE_ACTIVE) {
    379   1.9   chopps 		(void)ite_on(dev, 3);
    380   1.9   chopps 		paniced = 1;
    381   1.9   chopps 	}
    382  1.15   chopps 	iteputchar(ch, ip);
    383  1.25   chopps }
    384  1.25   chopps 
    385  1.25   chopps void
    386  1.27  mycroft itecnpollc(dev, on)
    387  1.25   chopps 	dev_t dev;
    388  1.25   chopps 	int on;
    389  1.25   chopps {
    390  1.27  mycroft 
    391   1.1       mw }
    392   1.1       mw 
    393   1.1       mw /*
    394   1.9   chopps  * standard entry points to the device.
    395   1.9   chopps  */
    396   1.9   chopps 
    397   1.9   chopps /*
    398   1.9   chopps  * iteinit() is the standard entry point for initialization of
    399   1.9   chopps  * an ite device, it is also called from ite_cninit().
    400  1.15   chopps  *
    401   1.1       mw  */
    402   1.9   chopps void
    403   1.9   chopps iteinit(dev)
    404   1.1       mw 	dev_t dev;
    405   1.1       mw {
    406   1.9   chopps 	struct ite_softc *ip;
    407  1.39    veego 	static int kbdmap_loaded = 0;
    408   1.1       mw 
    409  1.15   chopps 	ip = getitesp(dev);
    410   1.9   chopps 	if (ip->flags & ITE_INITED)
    411   1.1       mw 		return;
    412  1.39    veego 	if (kbdmap_loaded == 0) {
    413  1.39    veego 		bcopy(&ascii_kbdmap, &kbdmap, sizeof(struct kbdmap));
    414  1.39    veego 		kbdmap_loaded = 1;
    415  1.39    veego 	}
    416   1.9   chopps 
    417   1.9   chopps 	ip->cursorx = 0;
    418   1.9   chopps 	ip->cursory = 0;
    419   1.9   chopps 	SUBR_INIT(ip);
    420   1.9   chopps 	SUBR_CURSOR(ip, DRAW_CURSOR);
    421  1.15   chopps 	if (ip->tabs == NULL)
    422  1.15   chopps 		ip->tabs = malloc(MAX_TABS * sizeof(u_char),M_DEVBUF,M_WAITOK);
    423   1.9   chopps 	ite_reset(ip);
    424   1.9   chopps 	ip->flags |= ITE_INITED;
    425   1.1       mw }
    426   1.1       mw 
    427   1.9   chopps int
    428   1.1       mw iteopen(dev, mode, devtype, p)
    429   1.1       mw 	dev_t dev;
    430   1.1       mw 	int mode, devtype;
    431   1.1       mw 	struct proc *p;
    432   1.1       mw {
    433  1.15   chopps 	struct ite_softc *ip;
    434   1.9   chopps 	struct tty *tp;
    435  1.15   chopps 	int error, first, unit;
    436   1.1       mw 
    437  1.15   chopps 	unit = ITEUNIT(dev);
    438  1.15   chopps 	first = 0;
    439  1.15   chopps 
    440  1.19   chopps 	if (((1 << unit) & ite_confunits) == 0)
    441   1.9   chopps 		return (ENXIO);
    442  1.15   chopps 
    443  1.15   chopps 	ip = getitesp(dev);
    444   1.3       mw 
    445  1.15   chopps 	if (ip->tp == NULL)
    446  1.34      jtc 		tp = ip->tp = ttymalloc();
    447   1.9   chopps 	else
    448  1.15   chopps 		tp = ip->tp;
    449   1.9   chopps 	if ((tp->t_state & (TS_ISOPEN | TS_XCLUDE)) == (TS_ISOPEN | TS_XCLUDE)
    450   1.1       mw 	    && p->p_ucred->cr_uid != 0)
    451   1.1       mw 		return (EBUSY);
    452   1.1       mw 	if ((ip->flags & ITE_ACTIVE) == 0) {
    453   1.9   chopps 		error = ite_on(dev, 0);
    454   1.1       mw 		if (error)
    455   1.1       mw 			return (error);
    456   1.1       mw 		first = 1;
    457   1.1       mw 	}
    458   1.9   chopps 	tp->t_oproc = itestart;
    459   1.9   chopps 	tp->t_param = ite_param;
    460   1.1       mw 	tp->t_dev = dev;
    461   1.9   chopps 	if ((tp->t_state & TS_ISOPEN) == 0) {
    462   1.1       mw 		ttychars(tp);
    463   1.1       mw 		tp->t_iflag = TTYDEF_IFLAG;
    464   1.1       mw 		tp->t_oflag = TTYDEF_OFLAG;
    465   1.9   chopps 		tp->t_cflag = TTYDEF_CFLAG;
    466   1.1       mw 		tp->t_lflag = TTYDEF_LFLAG;
    467   1.1       mw 		tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
    468   1.9   chopps 		tp->t_state = TS_WOPEN | TS_CARR_ON;
    469   1.1       mw 		ttsetwater(tp);
    470   1.9   chopps 	}
    471   1.9   chopps 	error = (*linesw[tp->t_line].l_open) (dev, tp);
    472   1.1       mw 	if (error == 0) {
    473   1.1       mw 		tp->t_winsize.ws_row = ip->rows;
    474   1.1       mw 		tp->t_winsize.ws_col = ip->cols;
    475   1.9   chopps 		if (!kbd_init) {
    476   1.9   chopps 			kbd_init = 1;
    477   1.9   chopps 			kbdenable();
    478   1.9   chopps 		}
    479   1.1       mw 	} else if (first)
    480   1.9   chopps 		ite_off(dev, 0);
    481   1.1       mw 	return (error);
    482   1.1       mw }
    483   1.1       mw 
    484   1.9   chopps int
    485   1.1       mw iteclose(dev, flag, mode, p)
    486   1.1       mw 	dev_t dev;
    487   1.1       mw 	int flag, mode;
    488   1.1       mw 	struct proc *p;
    489   1.1       mw {
    490  1.15   chopps 	struct tty *tp;
    491  1.15   chopps 
    492  1.15   chopps 	tp = getitesp(dev)->tp;
    493   1.1       mw 
    494   1.9   chopps 	KDASSERT(tp);
    495   1.9   chopps 	(*linesw[tp->t_line].l_close) (tp, flag);
    496   1.9   chopps 	ttyclose(tp);
    497   1.9   chopps 	ite_off(dev, 0);
    498   1.9   chopps 	return (0);
    499   1.1       mw }
    500   1.1       mw 
    501   1.9   chopps int
    502   1.1       mw iteread(dev, uio, flag)
    503   1.1       mw 	dev_t dev;
    504   1.1       mw 	struct uio *uio;
    505   1.9   chopps 	int flag;
    506   1.1       mw {
    507  1.15   chopps 	struct tty *tp;
    508  1.15   chopps 
    509  1.15   chopps 	tp = getitesp(dev)->tp;
    510   1.3       mw 
    511   1.9   chopps 	KDASSERT(tp);
    512   1.9   chopps 	return ((*linesw[tp->t_line].l_read) (tp, uio, flag));
    513   1.1       mw }
    514   1.1       mw 
    515   1.9   chopps int
    516   1.1       mw itewrite(dev, uio, flag)
    517   1.1       mw 	dev_t dev;
    518   1.1       mw 	struct uio *uio;
    519   1.9   chopps 	int flag;
    520   1.1       mw {
    521  1.15   chopps 	struct tty *tp;
    522  1.15   chopps 
    523  1.15   chopps 	tp = getitesp(dev)->tp;
    524   1.1       mw 
    525   1.9   chopps 	KDASSERT(tp);
    526   1.9   chopps 	return ((*linesw[tp->t_line].l_write) (tp, uio, flag));
    527  1.28   chopps }
    528  1.28   chopps 
    529  1.28   chopps struct tty *
    530  1.28   chopps itetty(dev)
    531  1.28   chopps 	dev_t dev;
    532  1.28   chopps {
    533  1.34      jtc 	return (getitesp(dev)->tp);
    534  1.27  mycroft }
    535  1.27  mycroft 
    536  1.27  mycroft int
    537  1.27  mycroft itestop(tp, flag)
    538  1.27  mycroft 	struct tty *tp;
    539  1.27  mycroft 	int flag;
    540  1.27  mycroft {
    541  1.33   chopps 	return (0);
    542   1.1       mw }
    543   1.1       mw 
    544   1.9   chopps int
    545   1.7   chopps iteioctl(dev, cmd, addr, flag, p)
    546   1.1       mw 	dev_t dev;
    547  1.24   chopps 	u_long cmd;
    548   1.1       mw 	caddr_t addr;
    549  1.24   chopps 	int flag;
    550   1.7   chopps 	struct proc *p;
    551   1.1       mw {
    552  1.17   chopps 	struct iterepeat *irp;
    553  1.15   chopps 	struct ite_softc *ip;
    554  1.29   chopps 	struct itebell *ib;
    555  1.15   chopps 	struct tty *tp;
    556   1.1       mw 	int error;
    557  1.15   chopps 
    558  1.15   chopps 	ip = getitesp(dev);
    559  1.15   chopps 	tp = ip->tp;
    560   1.1       mw 
    561   1.9   chopps 	KDASSERT(tp);
    562   1.3       mw 
    563  1.24   chopps 	error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, addr, flag, p);
    564   1.1       mw 	if (error >= 0)
    565   1.1       mw 		return (error);
    566   1.7   chopps 	error = ttioctl(tp, cmd, addr, flag, p);
    567   1.1       mw 	if (error >= 0)
    568   1.1       mw 		return (error);
    569   1.3       mw 
    570   1.9   chopps 	switch (cmd) {
    571  1.29   chopps 	case ITEIOCGBELL:
    572  1.29   chopps 		ib = (struct itebell *)addr;
    573  1.29   chopps 		ib->volume = bvolume;
    574  1.29   chopps 		ib->pitch = bpitch;
    575  1.29   chopps 		ib->msec = bmsec;
    576  1.30   chopps 		return (0);
    577  1.29   chopps 	case ITEIOCSBELL:
    578  1.29   chopps 		ib = (struct itebell *)addr;
    579  1.30   chopps 
    580  1.29   chopps 		if (ib->pitch > MAXBPITCH || ib->pitch < MINBPITCH ||
    581  1.29   chopps 		    ib->volume > MAXBVOLUME || ib->msec > MAXBTIME)
    582  1.30   chopps 			return (EINVAL);
    583  1.30   chopps 		bvolume = ib->volume;
    584  1.30   chopps 		bpitch = ib->pitch;
    585  1.30   chopps 		bmsec = ib->msec;
    586  1.30   chopps 		return (0);
    587  1.17   chopps 	case ITEIOCSKMAP:
    588  1.17   chopps 		if (addr == 0)
    589  1.17   chopps 			return(EFAULT);
    590  1.17   chopps 		bcopy(addr, &kbdmap, sizeof(struct kbdmap));
    591  1.17   chopps 		return(0);
    592  1.17   chopps 	case ITEIOCGKMAP:
    593  1.17   chopps 		if (addr == NULL)
    594  1.17   chopps 			return(EFAULT);
    595  1.17   chopps 		bcopy(&kbdmap, addr, sizeof(struct kbdmap));
    596  1.17   chopps 		return(0);
    597  1.17   chopps 	case ITEIOCGREPT:
    598  1.17   chopps 		irp = (struct iterepeat *)addr;
    599  1.17   chopps 		irp->start = start_repeat_timeo;
    600  1.17   chopps 		irp->next = next_repeat_timeo;
    601  1.30   chopps 		return (0);
    602  1.17   chopps 	case ITEIOCSREPT:
    603  1.17   chopps 		irp = (struct iterepeat *)addr;
    604  1.17   chopps 		if (irp->start < ITEMINREPEAT && irp->next < ITEMINREPEAT)
    605  1.17   chopps 			return(EINVAL);
    606  1.17   chopps 		start_repeat_timeo = irp->start;
    607  1.17   chopps 		next_repeat_timeo = irp->next;
    608  1.17   chopps 		return(0);
    609   1.9   chopps 	}
    610  1.29   chopps #if NGRFCC > 0
    611   1.5       mw 	/* XXX */
    612   1.9   chopps 	if (minor(dev) == 0) {
    613   1.9   chopps 		error = ite_grf_ioctl(ip, cmd, addr, flag, p);
    614   1.9   chopps 		if (error >= 0)
    615   1.9   chopps 			return (error);
    616   1.9   chopps 	}
    617  1.29   chopps #endif
    618   1.1       mw 	return (ENOTTY);
    619   1.1       mw }
    620   1.1       mw 
    621   1.9   chopps void
    622   1.1       mw itestart(tp)
    623   1.9   chopps 	struct tty *tp;
    624   1.1       mw {
    625   1.9   chopps 	struct clist *rbp;
    626  1.15   chopps 	struct ite_softc *ip;
    627   1.9   chopps 	u_char buf[ITEBURST];
    628  1.33   chopps 	int s, len;
    629   1.9   chopps 
    630  1.15   chopps 	ip = getitesp(tp->t_dev);
    631  1.15   chopps 
    632   1.9   chopps 	KDASSERT(tp);
    633   1.1       mw 
    634   1.9   chopps 	s = spltty(); {
    635   1.9   chopps 		if (tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP))
    636   1.9   chopps 			goto out;
    637   1.9   chopps 
    638   1.9   chopps 		tp->t_state |= TS_BUSY;
    639   1.9   chopps 		rbp = &tp->t_outq;
    640   1.9   chopps 
    641   1.9   chopps 		len = q_to_b(rbp, buf, ITEBURST);
    642   1.9   chopps 	} splx(s);
    643   1.9   chopps 
    644   1.9   chopps 	/* Here is a really good place to implement pre/jumpscroll() */
    645  1.11   chopps 	ite_putstr(buf, len, tp->t_dev);
    646   1.9   chopps 
    647   1.9   chopps 	s = spltty(); {
    648   1.9   chopps 		tp->t_state &= ~TS_BUSY;
    649   1.9   chopps 		/* we have characters remaining. */
    650   1.9   chopps 		if (rbp->c_cc) {
    651   1.9   chopps 			tp->t_state |= TS_TIMEOUT;
    652  1.15   chopps 			timeout(ttrstrt, tp, 1);
    653   1.9   chopps 		}
    654   1.9   chopps 		/* wakeup we are below */
    655   1.9   chopps 		if (rbp->c_cc <= tp->t_lowat) {
    656   1.9   chopps 			if (tp->t_state & TS_ASLEEP) {
    657   1.9   chopps 				tp->t_state &= ~TS_ASLEEP;
    658   1.9   chopps 				wakeup((caddr_t) rbp);
    659   1.9   chopps 			}
    660   1.9   chopps 			selwakeup(&tp->t_wsel);
    661   1.1       mw 		}
    662   1.9   chopps 	      out:
    663   1.9   chopps 	} splx(s);
    664   1.9   chopps }
    665   1.9   chopps 
    666   1.9   chopps int
    667   1.9   chopps ite_on(dev, flag)
    668   1.9   chopps 	dev_t dev;
    669   1.9   chopps 	int flag;
    670   1.9   chopps {
    671  1.15   chopps 	struct ite_softc *ip;
    672  1.15   chopps 	int unit;
    673   1.9   chopps 
    674  1.15   chopps 	unit = ITEUNIT(dev);
    675  1.19   chopps 	if (((1 << unit) & ite_confunits) == 0)
    676   1.9   chopps 		return (ENXIO);
    677  1.15   chopps 
    678  1.15   chopps 	ip = getitesp(dev);
    679  1.15   chopps 
    680   1.9   chopps 	/* force ite active, overriding graphics mode */
    681   1.9   chopps 	if (flag & 1) {
    682   1.9   chopps 		ip->flags |= ITE_ACTIVE;
    683   1.9   chopps 		ip->flags &= ~(ITE_INGRF | ITE_INITED);
    684   1.1       mw 	}
    685   1.9   chopps 	/* leave graphics mode */
    686   1.9   chopps 	if (flag & 2) {
    687   1.9   chopps 		ip->flags &= ~ITE_INGRF;
    688   1.9   chopps 		if ((ip->flags & ITE_ACTIVE) == 0)
    689   1.9   chopps 			return (0);
    690   1.1       mw 	}
    691   1.9   chopps 	ip->flags |= ITE_ACTIVE;
    692   1.9   chopps 	if (ip->flags & ITE_INGRF)
    693   1.9   chopps 		return (0);
    694   1.9   chopps 	iteinit(dev);
    695   1.9   chopps 	return (0);
    696   1.1       mw }
    697   1.1       mw 
    698  1.33   chopps void
    699   1.9   chopps ite_off(dev, flag)
    700   1.9   chopps 	dev_t dev;
    701   1.9   chopps 	int flag;
    702   1.9   chopps {
    703  1.15   chopps 	struct ite_softc *ip;
    704   1.9   chopps 
    705  1.15   chopps 	ip = getitesp(dev);
    706   1.9   chopps 	if (flag & 2)
    707   1.9   chopps 		ip->flags |= ITE_INGRF;
    708   1.9   chopps 	if ((ip->flags & ITE_ACTIVE) == 0)
    709   1.9   chopps 		return;
    710   1.9   chopps 	if ((flag & 1) ||
    711   1.9   chopps 	    (ip->flags & (ITE_INGRF | ITE_ISCONS | ITE_INITED)) == ITE_INITED)
    712   1.9   chopps 		SUBR_DEINIT(ip);
    713  1.33   chopps 	/* XXX hmm grfon() I think wants this to  go inactive. */
    714  1.33   chopps 	if ((flag & 2) == 0)
    715   1.9   chopps 		ip->flags &= ~ITE_ACTIVE;
    716   1.9   chopps }
    717   1.1       mw 
    718   1.9   chopps /* XXX called after changes made in underlying grf layer. */
    719   1.9   chopps /* I want to nuke this */
    720   1.9   chopps void
    721   1.9   chopps ite_reinit(dev)
    722   1.9   chopps 	dev_t dev;
    723   1.1       mw {
    724  1.15   chopps 	struct ite_softc *ip;
    725   1.9   chopps 
    726  1.15   chopps 	ip = getitesp(dev);
    727   1.9   chopps 	ip->flags &= ~ITE_INITED;
    728   1.9   chopps 	iteinit(dev);
    729   1.9   chopps }
    730   1.3       mw 
    731   1.9   chopps int
    732   1.9   chopps ite_param(tp, t)
    733   1.9   chopps 	struct tty *tp;
    734   1.9   chopps 	struct termios *t;
    735   1.9   chopps {
    736   1.9   chopps 	tp->t_ispeed = t->c_ispeed;
    737   1.9   chopps 	tp->t_ospeed = t->c_ospeed;
    738   1.9   chopps 	tp->t_cflag = t->c_cflag;
    739   1.9   chopps 	return (0);
    740   1.3       mw }
    741   1.3       mw 
    742   1.9   chopps void
    743   1.9   chopps ite_reset(ip)
    744   1.9   chopps 	struct ite_softc *ip;
    745   1.3       mw {
    746   1.9   chopps 	int i;
    747   1.9   chopps 
    748   1.9   chopps 	ip->curx = 0;
    749   1.9   chopps 	ip->cury = 0;
    750   1.9   chopps 	ip->attribute = ATTR_NOR;
    751   1.9   chopps 	ip->save_curx = 0;
    752   1.9   chopps 	ip->save_cury = 0;
    753   1.9   chopps 	ip->save_attribute = ATTR_NOR;
    754   1.9   chopps 	ip->ap = ip->argbuf;
    755   1.9   chopps 	ip->emul_level = 0;
    756   1.9   chopps 	ip->eightbit_C1 = 0;
    757   1.9   chopps 	ip->top_margin = 0;
    758   1.9   chopps 	ip->bottom_margin = ip->rows - 1;
    759   1.9   chopps 	ip->inside_margins = 0;
    760   1.9   chopps 	ip->linefeed_newline = 0;
    761  1.14   chopps 	ip->auto_wrap = ite_default_wrap;
    762   1.9   chopps 	ip->cursor_appmode = 0;
    763   1.9   chopps 	ip->keypad_appmode = 0;
    764   1.9   chopps 	ip->imode = 0;
    765   1.9   chopps 	ip->key_repeat = 1;
    766   1.9   chopps 	bzero(ip->tabs, ip->cols);
    767   1.9   chopps 	for (i = 0; i < ip->cols; i++)
    768   1.9   chopps 		ip->tabs[i] = ((i & 7) == 0);
    769   1.1       mw }
    770   1.1       mw 
    771  1.15   chopps /*
    772  1.15   chopps  * has to be global becuase of the shared filters.
    773  1.15   chopps  */
    774  1.15   chopps static u_char key_mod;
    775  1.15   chopps static u_char last_dead;
    776  1.15   chopps 
    777   1.9   chopps /* Used in console at startup only */
    778   1.9   chopps int
    779   1.9   chopps ite_cnfilter(c, caller)
    780   1.9   chopps 	u_char c;
    781   1.9   chopps 	enum caller caller;
    782   1.9   chopps {
    783   1.9   chopps 	struct key key;
    784   1.9   chopps 	u_char code, up, mask;
    785   1.9   chopps 	int s, i;
    786   1.9   chopps 
    787   1.9   chopps 	up = c & 0x80 ? 1 : 0;
    788   1.9   chopps 	c &= 0x7f;
    789   1.9   chopps 	code = 0;
    790   1.9   chopps 
    791   1.9   chopps 	s = spltty();
    792   1.9   chopps 
    793   1.9   chopps 	i = (int)c - KBD_LEFT_SHIFT;
    794   1.9   chopps 	if (i >= 0 && i <= (KBD_RIGHT_META - KBD_LEFT_SHIFT)) {
    795   1.9   chopps 		mask = 1 << i;
    796   1.9   chopps 		if (up)
    797  1.15   chopps 			key_mod &= ~mask;
    798   1.9   chopps 		else
    799  1.15   chopps 			key_mod |= mask;
    800   1.9   chopps 		splx(s);
    801   1.9   chopps 		return -1;
    802  1.10   chopps 	}
    803  1.10   chopps 
    804  1.10   chopps 	if (up) {
    805  1.10   chopps 		splx(s);
    806  1.10   chopps 		return -1;
    807   1.9   chopps 	}
    808  1.10   chopps 
    809   1.9   chopps 	/* translate modifiers */
    810  1.15   chopps 	if (key_mod & KBD_MOD_SHIFT) {
    811  1.15   chopps 		if (key_mod & KBD_MOD_ALT)
    812   1.9   chopps 			key = kbdmap.alt_shift_keys[c];
    813  1.10   chopps 		else
    814   1.9   chopps 			key = kbdmap.shift_keys[c];
    815  1.15   chopps 	} else if (key_mod & KBD_MOD_ALT)
    816   1.9   chopps 		key = kbdmap.alt_keys[c];
    817  1.10   chopps 	else {
    818   1.9   chopps 		key = kbdmap.keys[c];
    819  1.10   chopps 		/* if CAPS and key is CAPable (no pun intended) */
    820  1.15   chopps 		if ((key_mod & KBD_MOD_CAPS) && (key.mode & KBD_MODE_CAPS))
    821  1.10   chopps 			key = kbdmap.shift_keys[c];
    822  1.10   chopps 	}
    823   1.9   chopps 	code = key.code;
    824   1.1       mw 
    825   1.9   chopps 	/* if string return */
    826   1.9   chopps 	if (key.mode & (KBD_MODE_STRING | KBD_MODE_KPAD)) {
    827   1.9   chopps 		splx(s);
    828   1.9   chopps 		return -1;
    829   1.9   chopps 	}
    830   1.9   chopps 	/* handle dead keys */
    831   1.9   chopps 	if (key.mode & KBD_MODE_DEAD) {
    832   1.9   chopps 		/* if entered twice, send accent itself */
    833  1.39    veego 		if (last_dead == (key.mode & KBD_MODE_ACCMASK))
    834   1.9   chopps 			last_dead = 0;
    835   1.9   chopps 		else {
    836   1.9   chopps 			last_dead = key.mode & KBD_MODE_ACCMASK;
    837   1.9   chopps 			splx(s);
    838   1.9   chopps 			return -1;
    839   1.9   chopps 		}
    840   1.9   chopps 	}
    841   1.9   chopps 	if (last_dead) {
    842   1.9   chopps 		/* can't apply dead flag to string-keys */
    843   1.9   chopps 		if (code >= '@' && code < 0x7f)
    844   1.9   chopps 			code =
    845   1.9   chopps 			    acctable[KBD_MODE_ACCENT(last_dead)][code - '@'];
    846   1.9   chopps 		last_dead = 0;
    847   1.9   chopps 	}
    848  1.15   chopps 	if (key_mod & KBD_MOD_CTRL)
    849   1.9   chopps 		code &= 0x1f;
    850  1.15   chopps 	if (key_mod & KBD_MOD_META)
    851   1.9   chopps 		code |= 0x80;
    852   1.9   chopps 
    853   1.9   chopps 	/* do console mapping. */
    854   1.9   chopps 	code = code == '\r' ? '\n' : code;
    855   1.9   chopps 
    856   1.9   chopps 	splx(s);
    857   1.9   chopps 	return (code);
    858   1.9   chopps }
    859   1.1       mw 
    860   1.9   chopps /* And now the old stuff. */
    861   1.3       mw 
    862   1.9   chopps /* these are used to implement repeating keys.. */
    863  1.15   chopps static u_char last_char;
    864  1.15   chopps static u_char tout_pending;
    865   1.3       mw 
    866  1.32   chopps 
    867  1.32   chopps static void
    868  1.32   chopps ite_sifilter(void *arg1, void *arg2)
    869  1.32   chopps {
    870  1.33   chopps 	ite_filter((u_char)(size_t)arg1, (enum caller)(size_t)arg2);
    871  1.32   chopps }
    872  1.32   chopps 
    873  1.32   chopps 
    874  1.15   chopps /*ARGSUSED*/
    875   1.9   chopps static void
    876  1.15   chopps repeat_handler(arg)
    877  1.15   chopps 	void *arg;
    878   1.9   chopps {
    879   1.9   chopps 	tout_pending = 0;
    880   1.9   chopps 	if (last_char)
    881  1.33   chopps 		add_sicallback(ite_sifilter, (void *)(size_t)last_char,
    882  1.33   chopps 		    (void *)(size_t)ITEFILT_REPEATER);
    883   1.9   chopps }
    884   1.3       mw 
    885   1.9   chopps void
    886   1.9   chopps ite_filter(c, caller)
    887   1.9   chopps 	u_char c;
    888   1.9   chopps 	enum caller caller;
    889   1.9   chopps {
    890   1.9   chopps 	struct tty *kbd_tty;
    891   1.9   chopps 	u_char code, *str, up, mask;
    892   1.9   chopps 	struct key key;
    893   1.9   chopps 	int s, i;
    894   1.1       mw 
    895  1.31   chopps 	if (kbd_ite == NULL || kbd_ite->tp == NULL)
    896   1.9   chopps 		return;
    897  1.15   chopps 
    898  1.15   chopps 	kbd_tty = kbd_ite->tp;
    899   1.1       mw 
    900   1.9   chopps 	/* have to make sure we're at spltty in here */
    901   1.9   chopps 	s = spltty();
    902   1.1       mw 
    903   1.9   chopps 	/*
    904   1.9   chopps 	 * keyboard interrupts come at priority 2, while softint
    905   1.9   chopps 	 * generated keyboard-repeat interrupts come at level 1.  So,
    906   1.9   chopps 	 * to not allow a key-up event to get thru before a repeat for
    907   1.9   chopps 	 * the key-down, we remove any outstanding callout requests..
    908   1.9   chopps 	 */
    909  1.33   chopps 	rem_sicallback(ite_sifilter);
    910   1.1       mw 
    911   1.9   chopps 	up = c & 0x80 ? 1 : 0;
    912   1.9   chopps 	c &= 0x7f;
    913   1.9   chopps 	code = 0;
    914   1.9   chopps 
    915   1.9   chopps 	i = (int)c - KBD_LEFT_SHIFT;
    916   1.9   chopps 	if (i >= 0 && i <= (KBD_RIGHT_META - KBD_LEFT_SHIFT)) {
    917   1.9   chopps 		mask = 1 << i;
    918   1.9   chopps 		if (up)
    919  1.15   chopps 			key_mod &= ~mask;
    920   1.9   chopps 		else
    921  1.15   chopps 			key_mod |= mask;
    922   1.9   chopps 		splx(s);
    923   1.9   chopps 		return;
    924   1.9   chopps 	}
    925   1.9   chopps 	/* stop repeating on up event */
    926   1.9   chopps 	if (up) {
    927   1.9   chopps 		if (tout_pending) {
    928  1.15   chopps 			untimeout(repeat_handler, 0);
    929   1.9   chopps 			tout_pending = 0;
    930   1.9   chopps 			last_char = 0;
    931   1.9   chopps 		}
    932   1.9   chopps 		splx(s);
    933   1.9   chopps 		return;
    934   1.9   chopps 	} else if (tout_pending && last_char != c) {
    935   1.9   chopps 		/* different character, stop also */
    936  1.15   chopps 		untimeout(repeat_handler, 0);
    937   1.9   chopps 		tout_pending = 0;
    938   1.9   chopps 		last_char = 0;
    939   1.1       mw 	}
    940   1.9   chopps 	/* Safety button, switch back to ascii keymap. */
    941  1.15   chopps 	if (key_mod == (KBD_MOD_LALT | KBD_MOD_LMETA) && c == 0x50) {
    942   1.9   chopps 		bcopy(&ascii_kbdmap, &kbdmap, sizeof(struct kbdmap));
    943   1.1       mw 
    944   1.9   chopps 		splx(s);
    945   1.9   chopps 		return;
    946  1.13   chopps #ifdef DDB
    947  1.15   chopps 	} else if (key_mod == (KBD_MOD_LALT | KBD_MOD_LMETA) && c == 0x59) {
    948  1.13   chopps 		Debugger();
    949  1.13   chopps 		splx(s);
    950  1.13   chopps 		return;
    951  1.13   chopps #endif
    952   1.9   chopps 	}
    953   1.9   chopps 	/* translate modifiers */
    954  1.15   chopps 	if (key_mod & KBD_MOD_SHIFT) {
    955  1.15   chopps 		if (key_mod & KBD_MOD_ALT)
    956   1.9   chopps 			key = kbdmap.alt_shift_keys[c];
    957   1.9   chopps 		else
    958   1.9   chopps 			key = kbdmap.shift_keys[c];
    959  1.15   chopps 	} else if (key_mod & KBD_MOD_ALT)
    960   1.9   chopps 		key = kbdmap.alt_keys[c];
    961   1.9   chopps 	else {
    962   1.9   chopps 		key = kbdmap.keys[c];
    963   1.9   chopps 		/* if CAPS and key is CAPable (no pun intended) */
    964  1.15   chopps 		if ((key_mod & KBD_MOD_CAPS) && (key.mode & KBD_MODE_CAPS))
    965   1.9   chopps 			key = kbdmap.shift_keys[c];
    966   1.9   chopps 	}
    967   1.9   chopps 	code = key.code;
    968   1.1       mw 
    969   1.9   chopps 	/*
    970   1.9   chopps 	 * arrange to repeat the keystroke. By doing this at the level
    971   1.9   chopps 	 * of scan-codes, we can have function keys, and keys that
    972   1.9   chopps 	 * send strings, repeat too. This also entitles an additional
    973   1.9   chopps 	 * overhead, since we have to do the conversion each time, but
    974   1.9   chopps 	 * I guess that's ok.
    975   1.9   chopps 	 */
    976   1.9   chopps 	if (!tout_pending && caller == ITEFILT_TTY && kbd_ite->key_repeat) {
    977   1.9   chopps 		tout_pending = 1;
    978   1.9   chopps 		last_char = c;
    979  1.17   chopps 		timeout(repeat_handler, 0, start_repeat_timeo * hz / 100);
    980   1.9   chopps 	} else if (!tout_pending && caller == ITEFILT_REPEATER &&
    981   1.9   chopps 	    kbd_ite->key_repeat) {
    982   1.9   chopps 		tout_pending = 1;
    983   1.9   chopps 		last_char = c;
    984  1.17   chopps 		timeout(repeat_handler, 0, next_repeat_timeo * hz / 100);
    985   1.9   chopps 	}
    986   1.9   chopps 	/* handle dead keys */
    987   1.9   chopps 	if (key.mode & KBD_MODE_DEAD) {
    988   1.9   chopps 		/* if entered twice, send accent itself */
    989  1.39    veego 		if (last_dead == (key.mode & KBD_MODE_ACCMASK))
    990   1.9   chopps 			last_dead = 0;
    991   1.9   chopps 		else {
    992   1.9   chopps 			last_dead = key.mode & KBD_MODE_ACCMASK;
    993   1.9   chopps 			splx(s);
    994   1.9   chopps 			return;
    995   1.9   chopps 		}
    996   1.9   chopps 	}
    997   1.9   chopps 	if (last_dead) {
    998   1.9   chopps 		/* can't apply dead flag to string-keys */
    999   1.9   chopps 		if (!(key.mode & KBD_MODE_STRING) && code >= '@' &&
   1000   1.9   chopps 		    code < 0x7f)
   1001   1.9   chopps 			code = acctable[KBD_MODE_ACCENT(last_dead)][code - '@'];
   1002   1.9   chopps 		last_dead = 0;
   1003   1.9   chopps 	}
   1004   1.9   chopps 	/* if not string, apply META and CTRL modifiers */
   1005   1.9   chopps 	if (!(key.mode & KBD_MODE_STRING)
   1006   1.9   chopps 	    && (!(key.mode & KBD_MODE_KPAD) ||
   1007   1.9   chopps 		(kbd_ite && !kbd_ite->keypad_appmode))) {
   1008  1.15   chopps 		if (key_mod & KBD_MOD_CTRL)
   1009   1.9   chopps 			code &= 0x1f;
   1010  1.15   chopps 		if (key_mod & KBD_MOD_META)
   1011   1.9   chopps 			code |= 0x80;
   1012   1.9   chopps 	} else if ((key.mode & KBD_MODE_KPAD) &&
   1013   1.9   chopps 	    (kbd_ite && kbd_ite->keypad_appmode)) {
   1014  1.29   chopps 		static char in[] = {
   1015  1.29   chopps 		    0x0f /* 0 */, 0x1d /* 1 */, 0x1e /* 2 */, 0x1f /* 3 */,
   1016  1.29   chopps 		    0x2d /* 4 */, 0x2e /* 5 */, 0x2f /* 6 */, 0x3d /* 7 */,
   1017  1.29   chopps 		    0x3e /* 8 */, 0x3f /* 9 */, 0x4a /* - */, 0x5e /* + */,
   1018  1.29   chopps 		    0x3c /* . */, 0x43 /* e */, 0x5a /* ( */, 0x5b /* ) */,
   1019  1.29   chopps 		    0x5c /* / */, 0x5d /* * */
   1020  1.29   chopps 		};
   1021   1.9   chopps 		static char *out = "pqrstuvwxymlnMPQRS";
   1022  1.29   chopps 		char *cp = index (in, c);
   1023   1.9   chopps 
   1024   1.9   chopps 		/*
   1025   1.9   chopps 		 * keypad-appmode sends SS3 followed by the above
   1026   1.9   chopps 		 * translated character
   1027   1.9   chopps 		 */
   1028   1.9   chopps 		(*linesw[kbd_tty->t_line].l_rint) (27, kbd_tty);
   1029  1.20   chopps 		(*linesw[kbd_tty->t_line].l_rint) ('O', kbd_tty);
   1030   1.9   chopps 		(*linesw[kbd_tty->t_line].l_rint) (out[cp - in], kbd_tty);
   1031   1.9   chopps 		splx(s);
   1032   1.9   chopps 		return;
   1033   1.9   chopps 	} else {
   1034   1.9   chopps 		/* *NO* I don't like this.... */
   1035   1.9   chopps 		static u_char app_cursor[] =
   1036   1.9   chopps 		{
   1037   1.9   chopps 		    3, 27, 'O', 'A',
   1038   1.9   chopps 		    3, 27, 'O', 'B',
   1039   1.9   chopps 		    3, 27, 'O', 'C',
   1040   1.9   chopps 		    3, 27, 'O', 'D'};
   1041   1.9   chopps 
   1042   1.9   chopps 		str = kbdmap.strings + code;
   1043   1.9   chopps 		/*
   1044   1.9   chopps 		 * if this is a cursor key, AND it has the default
   1045   1.9   chopps 		 * keymap setting, AND we're in app-cursor mode, switch
   1046   1.9   chopps 		 * to the above table. This is *nasty* !
   1047   1.9   chopps 		 */
   1048   1.9   chopps 		if (c >= 0x4c && c <= 0x4f && kbd_ite->cursor_appmode
   1049   1.9   chopps 		    && !bcmp(str, "\x03\x1b[", 3) &&
   1050   1.9   chopps 		    index("ABCD", str[3]))
   1051   1.9   chopps 			str = app_cursor + 4 * (str[3] - 'A');
   1052   1.9   chopps 
   1053   1.9   chopps 		/*
   1054   1.9   chopps 		 * using a length-byte instead of 0-termination allows
   1055   1.9   chopps 		 * to embed \0 into strings, although this is not used
   1056   1.9   chopps 		 * in the default keymap
   1057   1.9   chopps 		 */
   1058   1.9   chopps 		for (i = *str++; i; i--)
   1059   1.9   chopps 			(*linesw[kbd_tty->t_line].l_rint) (*str++, kbd_tty);
   1060   1.9   chopps 		splx(s);
   1061   1.9   chopps 		return;
   1062   1.4       mw 	}
   1063   1.9   chopps 	(*linesw[kbd_tty->t_line].l_rint) (code, kbd_tty);
   1064   1.1       mw 
   1065   1.9   chopps 	splx(s);
   1066   1.9   chopps 	return;
   1067   1.1       mw }
   1068   1.1       mw 
   1069   1.1       mw /* helper functions, makes the code below more readable */
   1070  1.33   chopps inline static void
   1071   1.9   chopps ite_sendstr(str)
   1072   1.9   chopps 	char *str;
   1073   1.3       mw {
   1074  1.15   chopps 	struct tty *kbd_tty;
   1075   1.9   chopps 
   1076  1.15   chopps 	kbd_tty = kbd_ite->tp;
   1077   1.9   chopps 	KDASSERT(kbd_tty);
   1078   1.9   chopps 	while (*str)
   1079   1.9   chopps 		(*linesw[kbd_tty->t_line].l_rint) (*str++, kbd_tty);
   1080   1.3       mw }
   1081   1.3       mw 
   1082   1.3       mw static void
   1083   1.9   chopps alignment_display(ip)
   1084   1.9   chopps 	struct ite_softc *ip;
   1085   1.3       mw {
   1086   1.3       mw   int i, j;
   1087   1.3       mw 
   1088   1.3       mw   for (j = 0; j < ip->rows; j++)
   1089   1.3       mw     for (i = 0; i < ip->cols; i++)
   1090   1.9   chopps       SUBR_PUTC(ip, 'E', j, i, ATTR_NOR);
   1091   1.3       mw   attrclr(ip, 0, 0, ip->rows, ip->cols);
   1092   1.9   chopps   SUBR_CURSOR(ip, DRAW_CURSOR);
   1093   1.3       mw }
   1094   1.3       mw 
   1095  1.33   chopps inline static void
   1096   1.9   chopps snap_cury(ip)
   1097   1.9   chopps 	struct ite_softc *ip;
   1098   1.3       mw {
   1099   1.3       mw   if (ip->inside_margins)
   1100   1.3       mw     {
   1101   1.3       mw       if (ip->cury < ip->top_margin)
   1102   1.3       mw 	ip->cury = ip->top_margin;
   1103   1.3       mw       if (ip->cury > ip->bottom_margin)
   1104   1.3       mw 	ip->cury = ip->bottom_margin;
   1105   1.3       mw     }
   1106   1.3       mw }
   1107   1.3       mw 
   1108  1.33   chopps inline static void
   1109   1.9   chopps ite_dnchar(ip, n)
   1110   1.1       mw      struct ite_softc *ip;
   1111   1.1       mw      int n;
   1112   1.1       mw {
   1113  1.18   chopps   n = min(n, ip->cols - ip->curx);
   1114   1.3       mw   if (n < ip->cols - ip->curx)
   1115   1.3       mw     {
   1116   1.9   chopps       SUBR_SCROLL(ip, ip->cury, ip->curx + n, n, SCROLL_LEFT);
   1117   1.3       mw       attrmov(ip, ip->cury, ip->curx + n, ip->cury, ip->curx,
   1118   1.3       mw 	      1, ip->cols - ip->curx - n);
   1119   1.3       mw       attrclr(ip, ip->cury, ip->cols - n, 1, n);
   1120   1.3       mw     }
   1121   1.3       mw   while (n-- > 0)
   1122   1.9   chopps     SUBR_PUTC(ip, ' ', ip->cury, ip->cols - n - 1, ATTR_NOR);
   1123   1.9   chopps   SUBR_CURSOR(ip, DRAW_CURSOR);
   1124   1.1       mw }
   1125   1.1       mw 
   1126  1.33   chopps inline static void
   1127   1.9   chopps ite_inchar(ip, n)
   1128   1.1       mw      struct ite_softc *ip;
   1129   1.1       mw      int n;
   1130   1.1       mw {
   1131  1.18   chopps   n = min(n, ip->cols - ip->curx);
   1132   1.3       mw   if (n < ip->cols - ip->curx)
   1133   1.3       mw     {
   1134   1.9   chopps       SUBR_SCROLL(ip, ip->cury, ip->curx, n, SCROLL_RIGHT);
   1135   1.3       mw       attrmov(ip, ip->cury, ip->curx, ip->cury, ip->curx + n,
   1136   1.3       mw 	      1, ip->cols - ip->curx - n);
   1137   1.3       mw       attrclr(ip, ip->cury, ip->curx, 1, n);
   1138   1.3       mw     }
   1139   1.1       mw   while (n--)
   1140   1.9   chopps     SUBR_PUTC(ip, ' ', ip->cury, ip->curx + n, ATTR_NOR);
   1141   1.9   chopps   SUBR_CURSOR(ip, DRAW_CURSOR);
   1142   1.1       mw }
   1143   1.1       mw 
   1144  1.33   chopps inline static void
   1145   1.9   chopps ite_clrtoeol(ip)
   1146   1.1       mw      struct ite_softc *ip;
   1147   1.1       mw {
   1148   1.3       mw   int y = ip->cury, x = ip->curx;
   1149   1.3       mw   if (ip->cols - x > 0)
   1150   1.3       mw     {
   1151   1.9   chopps       SUBR_CLEAR(ip, y, x, 1, ip->cols - x);
   1152   1.3       mw       attrclr(ip, y, x, 1, ip->cols - x);
   1153   1.9   chopps       SUBR_CURSOR(ip, DRAW_CURSOR);
   1154   1.3       mw     }
   1155   1.1       mw }
   1156   1.1       mw 
   1157  1.33   chopps inline static void
   1158   1.9   chopps ite_clrtobol(ip)
   1159   1.1       mw      struct ite_softc *ip;
   1160   1.1       mw {
   1161  1.18   chopps   int y = ip->cury, x = min(ip->curx + 1, ip->cols);
   1162   1.9   chopps   SUBR_CLEAR(ip, y, 0, 1, x);
   1163   1.1       mw   attrclr(ip, y, 0, 1, x);
   1164   1.9   chopps   SUBR_CURSOR(ip, DRAW_CURSOR);
   1165   1.1       mw }
   1166   1.1       mw 
   1167  1.33   chopps inline static void
   1168   1.9   chopps ite_clrline(ip)
   1169   1.1       mw      struct ite_softc *ip;
   1170   1.1       mw {
   1171   1.3       mw   int y = ip->cury;
   1172   1.9   chopps   SUBR_CLEAR(ip, y, 0, 1, ip->cols);
   1173   1.1       mw   attrclr(ip, y, 0, 1, ip->cols);
   1174   1.9   chopps   SUBR_CURSOR(ip, DRAW_CURSOR);
   1175   1.1       mw }
   1176   1.1       mw 
   1177   1.1       mw 
   1178   1.1       mw 
   1179  1.33   chopps inline static void
   1180   1.9   chopps ite_clrtoeos(ip)
   1181   1.1       mw      struct ite_softc *ip;
   1182   1.1       mw {
   1183   1.9   chopps   ite_clrtoeol(ip);
   1184   1.3       mw   if (ip->cury < ip->rows - 1)
   1185   1.3       mw     {
   1186   1.9   chopps       SUBR_CLEAR(ip, ip->cury + 1, 0, ip->rows - 1 - ip->cury, ip->cols);
   1187   1.3       mw       attrclr(ip, ip->cury, 0, ip->rows - ip->cury, ip->cols);
   1188   1.9   chopps       SUBR_CURSOR(ip, DRAW_CURSOR);
   1189   1.3       mw     }
   1190   1.1       mw }
   1191   1.1       mw 
   1192  1.33   chopps inline static void
   1193   1.9   chopps ite_clrtobos(ip)
   1194   1.1       mw      struct ite_softc *ip;
   1195   1.1       mw {
   1196   1.9   chopps   ite_clrtobol(ip);
   1197   1.3       mw   if (ip->cury > 0)
   1198   1.3       mw     {
   1199   1.9   chopps       SUBR_CLEAR(ip, 0, 0, ip->cury, ip->cols);
   1200   1.3       mw       attrclr(ip, 0, 0, ip->cury, ip->cols);
   1201   1.9   chopps       SUBR_CURSOR(ip, DRAW_CURSOR);
   1202   1.3       mw     }
   1203   1.1       mw }
   1204   1.1       mw 
   1205  1.33   chopps inline static void
   1206   1.9   chopps ite_clrscreen(ip)
   1207   1.1       mw      struct ite_softc *ip;
   1208   1.1       mw {
   1209   1.9   chopps   SUBR_CLEAR(ip, 0, 0, ip->rows, ip->cols);
   1210   1.1       mw   attrclr(ip, 0, 0, ip->rows, ip->cols);
   1211   1.9   chopps   SUBR_CURSOR(ip, DRAW_CURSOR);
   1212   1.1       mw }
   1213   1.1       mw 
   1214   1.1       mw 
   1215   1.1       mw 
   1216  1.33   chopps inline static void
   1217   1.9   chopps ite_dnline(ip, n)
   1218   1.1       mw      struct ite_softc *ip;
   1219   1.1       mw      int n;
   1220   1.1       mw {
   1221   1.4       mw   /* interesting.. if the cursor is outside the scrolling
   1222   1.4       mw      region, this command is simply ignored.. */
   1223   1.4       mw   if (ip->cury < ip->top_margin || ip->cury > ip->bottom_margin)
   1224   1.4       mw     return;
   1225   1.4       mw 
   1226  1.18   chopps   n = min(n, ip->bottom_margin + 1 - ip->cury);
   1227   1.3       mw   if (n <= ip->bottom_margin - ip->cury)
   1228   1.3       mw     {
   1229   1.9   chopps       SUBR_SCROLL(ip, ip->cury + n, 0, n, SCROLL_UP);
   1230   1.3       mw       attrmov(ip, ip->cury + n, 0, ip->cury, 0,
   1231   1.3       mw 	      ip->bottom_margin + 1 - ip->cury - n, ip->cols);
   1232   1.3       mw     }
   1233   1.9   chopps   SUBR_CLEAR(ip, ip->bottom_margin - n + 1, 0, n, ip->cols);
   1234   1.1       mw   attrclr(ip, ip->bottom_margin - n + 1, 0, n, ip->cols);
   1235   1.9   chopps   SUBR_CURSOR(ip, DRAW_CURSOR);
   1236   1.1       mw }
   1237   1.1       mw 
   1238  1.33   chopps inline static void
   1239   1.9   chopps ite_inline(ip, n)
   1240   1.1       mw      struct ite_softc *ip;
   1241   1.1       mw      int n;
   1242   1.1       mw {
   1243   1.4       mw   /* interesting.. if the cursor is outside the scrolling
   1244   1.4       mw      region, this command is simply ignored.. */
   1245   1.4       mw   if (ip->cury < ip->top_margin || ip->cury > ip->bottom_margin)
   1246   1.4       mw     return;
   1247   1.4       mw 
   1248  1.18   chopps   n = min(n, ip->bottom_margin + 1 - ip->cury);
   1249   1.4       mw   if (n <= ip->bottom_margin - ip->cury)
   1250   1.3       mw     {
   1251   1.9   chopps       SUBR_SCROLL(ip, ip->cury, 0, n, SCROLL_DOWN);
   1252   1.4       mw       attrmov(ip, ip->cury, 0, ip->cury + n, 0,
   1253   1.4       mw 	      ip->bottom_margin + 1 - ip->cury - n, ip->cols);
   1254   1.3       mw     }
   1255   1.9   chopps   SUBR_CLEAR(ip, ip->cury, 0, n, ip->cols);
   1256   1.4       mw   attrclr(ip, ip->cury, 0, n, ip->cols);
   1257   1.9   chopps   SUBR_CURSOR(ip, DRAW_CURSOR);
   1258   1.1       mw }
   1259   1.1       mw 
   1260  1.33   chopps inline static void
   1261   1.9   chopps ite_lf (ip)
   1262   1.1       mw      struct ite_softc *ip;
   1263   1.1       mw {
   1264   1.4       mw   ++ip->cury;
   1265   1.4       mw   if ((ip->cury == ip->bottom_margin+1) || (ip->cury == ip->rows))
   1266   1.1       mw     {
   1267   1.4       mw       ip->cury--;
   1268   1.9   chopps       SUBR_SCROLL(ip, ip->top_margin + 1, 0, 1, SCROLL_UP);
   1269   1.9   chopps       ite_clrline(ip);
   1270   1.1       mw     }
   1271   1.9   chopps   SUBR_CURSOR(ip, MOVE_CURSOR);
   1272   1.1       mw   clr_attr(ip, ATTR_INV);
   1273   1.1       mw }
   1274   1.1       mw 
   1275  1.33   chopps inline static void
   1276   1.9   chopps ite_crlf (ip)
   1277   1.1       mw      struct ite_softc *ip;
   1278   1.1       mw {
   1279   1.1       mw   ip->curx = 0;
   1280   1.9   chopps   ite_lf (ip);
   1281   1.1       mw }
   1282   1.1       mw 
   1283  1.33   chopps inline static void
   1284   1.9   chopps ite_cr (ip)
   1285   1.1       mw      struct ite_softc *ip;
   1286   1.1       mw {
   1287   1.3       mw   if (ip->curx)
   1288   1.1       mw     {
   1289   1.1       mw       ip->curx = 0;
   1290   1.9   chopps       SUBR_CURSOR(ip, MOVE_CURSOR);
   1291   1.1       mw     }
   1292   1.1       mw }
   1293   1.1       mw 
   1294  1.33   chopps inline static void
   1295   1.9   chopps ite_rlf (ip)
   1296   1.1       mw      struct ite_softc *ip;
   1297   1.1       mw {
   1298   1.3       mw   ip->cury--;
   1299   1.4       mw   if ((ip->cury < 0) || (ip->cury == ip->top_margin - 1))
   1300   1.1       mw     {
   1301   1.3       mw       ip->cury++;
   1302   1.9   chopps       SUBR_SCROLL(ip, ip->top_margin, 0, 1, SCROLL_DOWN);
   1303   1.9   chopps       ite_clrline(ip);
   1304   1.1       mw     }
   1305   1.9   chopps   SUBR_CURSOR(ip, MOVE_CURSOR);
   1306   1.1       mw   clr_attr(ip, ATTR_INV);
   1307   1.1       mw }
   1308   1.1       mw 
   1309  1.33   chopps inline static int
   1310   1.1       mw atoi (cp)
   1311   1.1       mw     const char *cp;
   1312   1.1       mw {
   1313   1.1       mw   int n;
   1314   1.1       mw 
   1315   1.1       mw   for (n = 0; *cp && *cp >= '0' && *cp <= '9'; cp++)
   1316   1.1       mw     n = n * 10 + *cp - '0';
   1317   1.1       mw 
   1318   1.1       mw   return n;
   1319   1.1       mw }
   1320   1.1       mw 
   1321   1.1       mw static char *
   1322   1.1       mw index (cp, ch)
   1323   1.1       mw     const char *cp;
   1324   1.1       mw     char ch;
   1325   1.1       mw {
   1326   1.1       mw   while (*cp && *cp != ch) cp++;
   1327   1.3       mw   return *cp ? (char *) cp : 0;
   1328   1.1       mw }
   1329   1.1       mw 
   1330   1.1       mw 
   1331   1.1       mw 
   1332  1.33   chopps inline static int
   1333   1.1       mw ite_argnum (ip)
   1334   1.1       mw     struct ite_softc *ip;
   1335   1.1       mw {
   1336   1.1       mw   char ch;
   1337   1.1       mw   int n;
   1338   1.1       mw 
   1339   1.1       mw   /* convert argument string into number */
   1340   1.1       mw   if (ip->ap == ip->argbuf)
   1341   1.1       mw     return 1;
   1342   1.1       mw   ch = *ip->ap;
   1343   1.1       mw   *ip->ap = 0;
   1344   1.1       mw   n = atoi (ip->argbuf);
   1345   1.1       mw   *ip->ap = ch;
   1346   1.1       mw 
   1347   1.1       mw   return n;
   1348   1.1       mw }
   1349   1.1       mw 
   1350  1.33   chopps inline static int
   1351   1.1       mw ite_zargnum (ip)
   1352   1.1       mw     struct ite_softc *ip;
   1353   1.1       mw {
   1354  1.33   chopps   char ch;
   1355   1.1       mw   int n;
   1356   1.1       mw 
   1357   1.1       mw   /* convert argument string into number */
   1358   1.1       mw   if (ip->ap == ip->argbuf)
   1359   1.1       mw     return 0;
   1360   1.1       mw   ch = *ip->ap;
   1361   1.1       mw   *ip->ap = 0;
   1362   1.1       mw   n = atoi (ip->argbuf);
   1363   1.1       mw   *ip->ap = ch;
   1364   1.1       mw 
   1365   1.3       mw   return n;	/* don't "n ? n : 1" here, <CSI>0m != <CSI>1m ! */
   1366   1.1       mw }
   1367   1.1       mw 
   1368   1.3       mw void
   1369  1.11   chopps ite_putstr(s, len, dev)
   1370  1.11   chopps 	const char *s;
   1371  1.11   chopps 	int len;
   1372  1.11   chopps 	dev_t dev;
   1373  1.11   chopps {
   1374  1.15   chopps 	struct ite_softc *ip;
   1375  1.11   chopps 	int i;
   1376  1.15   chopps 
   1377  1.15   chopps 	ip = getitesp(dev);
   1378  1.11   chopps 
   1379  1.11   chopps 	/* XXX avoid problems */
   1380  1.11   chopps 	if ((ip->flags & (ITE_ACTIVE|ITE_INGRF)) != ITE_ACTIVE)
   1381  1.11   chopps 	  	return;
   1382  1.11   chopps 
   1383  1.11   chopps 	SUBR_CURSOR(ip, START_CURSOROPT);
   1384  1.11   chopps 	for (i = 0; i < len; i++)
   1385  1.11   chopps 		if (s[i])
   1386  1.11   chopps 			iteputchar(s[i], ip);
   1387  1.11   chopps 	SUBR_CURSOR(ip, END_CURSOROPT);
   1388  1.11   chopps }
   1389  1.11   chopps 
   1390  1.33   chopps static void
   1391  1.33   chopps iteprecheckwrap(ip)
   1392  1.33   chopps 	struct ite_softc *ip;
   1393  1.33   chopps {
   1394  1.33   chopps 	if (ip->auto_wrap && ip->curx == ip->cols) {
   1395  1.33   chopps 		ip->curx = 0;
   1396  1.33   chopps 		clr_attr(ip, ATTR_INV);
   1397  1.33   chopps 		if (++ip->cury >= ip->bottom_margin + 1) {
   1398  1.33   chopps 			ip->cury = ip->bottom_margin;
   1399  1.33   chopps 			SUBR_CURSOR(ip, MOVE_CURSOR);
   1400  1.33   chopps 			SUBR_SCROLL(ip, ip->top_margin + 1, 0, 1, SCROLL_UP);
   1401  1.33   chopps 			ite_clrtoeol(ip);
   1402  1.33   chopps 		} else
   1403  1.33   chopps 			SUBR_CURSOR(ip, MOVE_CURSOR);
   1404  1.33   chopps 	}
   1405  1.33   chopps }
   1406  1.33   chopps 
   1407  1.33   chopps static void
   1408  1.33   chopps itecheckwrap(ip)
   1409  1.33   chopps 	struct ite_softc *ip;
   1410  1.33   chopps {
   1411  1.33   chopps #if 0
   1412  1.33   chopps 	if (++ip->curx == ip->cols) {
   1413  1.33   chopps 		if (ip->auto_wrap) {
   1414  1.33   chopps 			ip->curx = 0;
   1415  1.33   chopps 			clr_attr(ip, ATTR_INV);
   1416  1.33   chopps 			if (++ip->cury >= ip->bottom_margin + 1) {
   1417  1.33   chopps 				ip->cury = ip->bottom_margin;
   1418  1.33   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1419  1.33   chopps 				SUBR_SCROLL(ip, ip->top_margin + 1, 0, 1, SCROLL_UP);
   1420  1.33   chopps 				ite_clrtoeol(ip);
   1421  1.33   chopps 				return;
   1422  1.33   chopps 			}
   1423  1.33   chopps 		} else
   1424  1.33   chopps 			/* stay there if no autowrap.. */
   1425  1.33   chopps 			ip->curx--;
   1426  1.33   chopps 	}
   1427  1.33   chopps #else
   1428  1.33   chopps 	if (ip->curx < ip->cols) {
   1429  1.33   chopps 		ip->curx++;
   1430  1.33   chopps 		SUBR_CURSOR(ip, MOVE_CURSOR);
   1431  1.33   chopps 	}
   1432  1.33   chopps #endif
   1433  1.33   chopps }
   1434  1.33   chopps 
   1435  1.11   chopps void
   1436  1.11   chopps iteputchar(c, ip)
   1437   1.1       mw 	register int c;
   1438  1.11   chopps 	struct ite_softc *ip;
   1439   1.1       mw {
   1440  1.11   chopps 	struct tty *kbd_tty;
   1441   1.9   chopps 	int n, x, y;
   1442   1.1       mw 	char *cp;
   1443   1.1       mw 
   1444  1.15   chopps 	if (kbd_ite == NULL)
   1445  1.15   chopps 		kbd_tty = NULL;
   1446  1.15   chopps 	else
   1447  1.15   chopps 		kbd_tty = kbd_ite->tp;
   1448   1.1       mw 
   1449  1.26   chopps 	if (ip->escape) {
   1450  1.26   chopps 		switch (ip->escape) {
   1451  1.26   chopps 		case ESC:
   1452  1.26   chopps 			switch (c) {
   1453  1.26   chopps 				/*
   1454  1.26   chopps 				 * first 7bit equivalents for the
   1455  1.26   chopps 				 * 8bit control characters
   1456  1.26   chopps 				 */
   1457  1.26   chopps 			case 'D':
   1458  1.26   chopps 				c = IND;
   1459  1.26   chopps 				ip->escape = 0;
   1460  1.26   chopps 				break;
   1461  1.26   chopps 				/*
   1462  1.26   chopps 				 * and fall into the next
   1463  1.26   chopps 				 * switch below (same for all `break')
   1464  1.26   chopps 				 */
   1465  1.26   chopps 			case 'E':
   1466  1.26   chopps 				c = NEL;
   1467  1.26   chopps 				ip->escape = 0;
   1468  1.26   chopps 				break;
   1469  1.26   chopps 			case 'H':
   1470  1.26   chopps 				c = HTS;
   1471  1.26   chopps 				ip->escape = 0;
   1472  1.26   chopps 				break;
   1473  1.26   chopps 			case 'M':
   1474  1.26   chopps 				c = RI;
   1475  1.26   chopps 				ip->escape = 0;
   1476  1.26   chopps 				break;
   1477  1.26   chopps 			case 'N':
   1478  1.26   chopps 				c = SS2;
   1479  1.26   chopps 				ip->escape = 0;
   1480  1.26   chopps 				break;
   1481  1.26   chopps 			case 'O':
   1482  1.26   chopps 				c = SS3;
   1483  1.26   chopps 				ip->escape = 0;
   1484  1.26   chopps 				break;
   1485  1.26   chopps 			case 'P':
   1486  1.26   chopps 				c = DCS;
   1487  1.26   chopps 				ip->escape = 0;
   1488  1.26   chopps 				break;
   1489  1.26   chopps 			case '[':
   1490  1.26   chopps 				c = CSI;
   1491  1.26   chopps 				ip->escape = 0;
   1492  1.26   chopps 				break;
   1493  1.26   chopps 			case '\\':
   1494  1.26   chopps 				c = ST;
   1495  1.26   chopps 				ip->escape = 0;
   1496  1.26   chopps 				break;
   1497  1.26   chopps 			case ']':
   1498  1.26   chopps 				c = OSC;
   1499  1.26   chopps 				ip->escape = 0;
   1500  1.26   chopps 				break;
   1501  1.26   chopps 			case '^':
   1502  1.26   chopps 				c = PM;
   1503  1.26   chopps 				ip->escape = 0;
   1504  1.26   chopps 				break;
   1505  1.26   chopps 			case '_':
   1506  1.26   chopps 				c = APC;
   1507  1.26   chopps 				ip->escape = 0;
   1508  1.26   chopps 				break;
   1509  1.26   chopps 				/* introduces 7/8bit control */
   1510  1.26   chopps 			case ' ':
   1511  1.26   chopps 				/* can be followed by either F or G */
   1512  1.26   chopps 				ip->escape = ' ';
   1513  1.26   chopps 				break;
   1514  1.26   chopps 			/*
   1515  1.26   chopps 			 * a lot of character set selections, not yet
   1516  1.26   chopps 			 * used... 94-character sets:
   1517  1.26   chopps 			 */
   1518  1.26   chopps 			case '(':	/* G0 */
   1519  1.26   chopps 			case ')':	/* G1 */
   1520  1.26   chopps 				ip->escape = c;
   1521  1.26   chopps 				return;
   1522  1.26   chopps 			case '*':	/* G2 */
   1523  1.26   chopps 			case '+':	/* G3 */
   1524  1.26   chopps 			case 'B':	/* ASCII */
   1525  1.26   chopps 			case 'A':	/* ISO latin 1 */
   1526  1.26   chopps 			case '<':	/* user preferred suplemental */
   1527  1.26   chopps 			case '0':	/* dec special graphics */
   1528  1.26   chopps 			/*
   1529  1.26   chopps 			 * 96-character sets:
   1530  1.26   chopps 			 */
   1531  1.26   chopps 			case '-':	/* G1 */
   1532  1.26   chopps 			case '.':	/* G2 */
   1533  1.26   chopps 			case '/':	/* G3 */
   1534  1.26   chopps 			/*
   1535  1.26   chopps 			 * national character sets:
   1536  1.26   chopps 			 */
   1537  1.26   chopps 			case '4':	/* dutch */
   1538  1.26   chopps 			case '5':
   1539  1.26   chopps 			case 'C':	/* finnish */
   1540  1.26   chopps 			case 'R':	/* french */
   1541  1.26   chopps 			case 'Q':	/* french canadian */
   1542  1.26   chopps 			case 'K':	/* german */
   1543  1.26   chopps 			case 'Y':	/* italian */
   1544  1.26   chopps 			case '6':	/* norwegian/danish */
   1545  1.26   chopps 				/*
   1546  1.26   chopps 				 * note: %5 and %6 are not supported (two
   1547  1.26   chopps 				 * chars..)
   1548  1.26   chopps 				 */
   1549  1.26   chopps 				ip->escape = 0;
   1550  1.26   chopps 				/* just ignore for now */
   1551  1.26   chopps 				return;
   1552  1.26   chopps 			/*
   1553  1.26   chopps 			 * locking shift modes (as you might guess, not
   1554  1.26   chopps 			 * yet supported..)
   1555  1.26   chopps 			 */
   1556  1.26   chopps 			case '`':
   1557  1.26   chopps 				ip->GR = ip->G1;
   1558  1.26   chopps 				ip->escape = 0;
   1559  1.26   chopps 				return;
   1560  1.26   chopps 			case 'n':
   1561  1.26   chopps 				ip->GL = ip->G2;
   1562  1.26   chopps 				ip->escape = 0;
   1563  1.26   chopps 				return;
   1564  1.26   chopps 			case '}':
   1565  1.26   chopps 				ip->GR = ip->G2;
   1566  1.26   chopps 				ip->escape = 0;
   1567  1.26   chopps 				return;
   1568  1.26   chopps 			case 'o':
   1569  1.26   chopps 				ip->GL = ip->G3;
   1570  1.26   chopps 				ip->escape = 0;
   1571  1.26   chopps 				return;
   1572  1.26   chopps 			case '|':
   1573  1.26   chopps 				ip->GR = ip->G3;
   1574  1.26   chopps 				ip->escape = 0;
   1575  1.26   chopps 				return;
   1576  1.26   chopps 			case '#':
   1577  1.26   chopps 				/* font width/height control */
   1578  1.26   chopps 				ip->escape = '#';
   1579  1.26   chopps 				return;
   1580  1.26   chopps 			case 'c':
   1581  1.26   chopps 				/* hard terminal reset .. */
   1582  1.26   chopps 				ite_reset(ip);
   1583  1.26   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1584  1.26   chopps 				ip->escape = 0;
   1585  1.26   chopps 				return;
   1586  1.26   chopps 			case '7':
   1587  1.26   chopps 				ip->save_curx = ip->curx;
   1588  1.26   chopps 				ip->save_cury = ip->cury;
   1589  1.26   chopps 				ip->save_attribute = ip->attribute;
   1590  1.26   chopps 				ip->escape = 0;
   1591  1.26   chopps 				return;
   1592  1.26   chopps 			case '8':
   1593  1.26   chopps 				ip->curx = ip->save_curx;
   1594  1.26   chopps 				ip->cury = ip->save_cury;
   1595  1.26   chopps 				ip->attribute = ip->save_attribute;
   1596  1.26   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1597  1.26   chopps 				ip->escape = 0;
   1598  1.26   chopps 				return;
   1599  1.26   chopps 			case '=':
   1600  1.26   chopps 				ip->keypad_appmode = 1;
   1601  1.26   chopps 				ip->escape = 0;
   1602  1.26   chopps 				return;
   1603  1.26   chopps 			case '>':
   1604  1.26   chopps 				ip->keypad_appmode = 0;
   1605  1.26   chopps 				ip->escape = 0;
   1606  1.26   chopps 				return;
   1607  1.26   chopps 			case 'Z':	/* request ID */
   1608  1.26   chopps 				/* XXX not clean */
   1609  1.26   chopps 				if (ip->emul_level == EMUL_VT100)
   1610  1.26   chopps 					ite_sendstr("\033[?61;0c");
   1611  1.26   chopps 				else
   1612  1.26   chopps 					ite_sendstr("\033[?63;0c");
   1613  1.26   chopps 				ip->escape = 0;
   1614  1.26   chopps 				return;
   1615  1.26   chopps 			default:
   1616  1.26   chopps 				/*
   1617  1.26   chopps 				 * default catch all for not recognized ESC
   1618  1.26   chopps 				 * sequences
   1619  1.26   chopps 				 */
   1620  1.26   chopps 				ip->escape = 0;
   1621  1.26   chopps 				return;
   1622  1.26   chopps 			}
   1623   1.3       mw 			break;
   1624  1.26   chopps 		case '(':
   1625  1.26   chopps 		case ')':
   1626  1.26   chopps 			ip->escape = 0;
   1627  1.26   chopps 			return;
   1628  1.26   chopps 		case ' ':
   1629  1.26   chopps 			switch (c) {
   1630  1.26   chopps 			case 'F':
   1631  1.26   chopps 				ip->eightbit_C1 = 0;
   1632  1.26   chopps 				ip->escape = 0;
   1633  1.26   chopps 				return;
   1634  1.26   chopps 			case 'G':
   1635  1.26   chopps 				ip->eightbit_C1 = 1;
   1636  1.26   chopps 				ip->escape = 0;
   1637  1.26   chopps 				return;
   1638  1.26   chopps 			default:
   1639  1.26   chopps 				/* not supported */
   1640  1.26   chopps 				ip->escape = 0;
   1641  1.26   chopps 				return;
   1642  1.26   chopps 			}
   1643   1.3       mw 			break;
   1644  1.26   chopps 		case '#':
   1645  1.26   chopps 			switch (c) {
   1646  1.26   chopps 			case '5':
   1647  1.26   chopps 				/* single height, single width */
   1648  1.26   chopps 				ip->escape = 0;
   1649  1.26   chopps 				return;
   1650  1.26   chopps 			case '6':
   1651  1.26   chopps 				/* double width, single height */
   1652  1.26   chopps 				ip->escape = 0;
   1653  1.26   chopps 				return;
   1654  1.26   chopps 			case '3':
   1655  1.26   chopps 				/* top half */
   1656  1.26   chopps 				ip->escape = 0;
   1657  1.26   chopps 				return;
   1658  1.26   chopps 			case '4':
   1659  1.26   chopps 				/* bottom half */
   1660  1.26   chopps 				ip->escape = 0;
   1661  1.26   chopps 				return;
   1662  1.26   chopps 			case '8':
   1663  1.26   chopps 				/* screen alignment pattern... */
   1664  1.26   chopps 				alignment_display(ip);
   1665  1.26   chopps 				ip->escape = 0;
   1666  1.26   chopps 				return;
   1667  1.26   chopps 			default:
   1668  1.26   chopps 				ip->escape = 0;
   1669  1.26   chopps 				return;
   1670  1.26   chopps 			}
   1671   1.3       mw 			break;
   1672  1.26   chopps 		case CSI:
   1673  1.26   chopps 			/* the biggie... */
   1674  1.26   chopps 			switch (c) {
   1675  1.26   chopps 			case '0':
   1676  1.26   chopps 			case '1':
   1677  1.26   chopps 			case '2':
   1678  1.26   chopps 			case '3':
   1679  1.26   chopps 			case '4':
   1680  1.26   chopps 			case '5':
   1681  1.26   chopps 			case '6':
   1682  1.26   chopps 			case '7':
   1683  1.26   chopps 			case '8':
   1684  1.26   chopps 			case '9':
   1685  1.26   chopps 			case ';':
   1686  1.26   chopps 			case '\"':
   1687  1.26   chopps 			case '$':
   1688  1.26   chopps 			case '>':
   1689  1.26   chopps 				if (ip->ap < ip->argbuf + MAX_ARGSIZE)
   1690  1.26   chopps 					*ip->ap++ = c;
   1691  1.26   chopps 				return;
   1692  1.26   chopps 			case BS:
   1693  1.26   chopps 				/*
   1694  1.26   chopps 				 * you wouldn't believe such perversion is
   1695  1.26   chopps 				 * possible? it is.. BS is allowed in between
   1696  1.26   chopps 				 * cursor sequences (at least), according to
   1697  1.26   chopps 				 * vttest..
   1698  1.26   chopps 				 */
   1699  1.26   chopps 				if (--ip->curx < 0)
   1700  1.26   chopps 					ip->curx = 0;
   1701  1.26   chopps 				else
   1702  1.26   chopps 					SUBR_CURSOR(ip, MOVE_CURSOR);
   1703  1.26   chopps 				break;
   1704  1.26   chopps 			case 'p':
   1705  1.26   chopps 				*ip->ap = 0;
   1706  1.26   chopps 				if (!strncmp(ip->argbuf, "61\"", 3))
   1707  1.26   chopps 					ip->emul_level = EMUL_VT100;
   1708  1.26   chopps 				else if (!strncmp(ip->argbuf, "63;1\"", 5)
   1709  1.26   chopps 				    || !strncmp(ip->argbuf, "62;1\"", 5))
   1710  1.26   chopps 					ip->emul_level = EMUL_VT300_7;
   1711  1.26   chopps 				else
   1712  1.26   chopps 					ip->emul_level = EMUL_VT300_8;
   1713  1.26   chopps 				ip->escape = 0;
   1714  1.26   chopps 				return;
   1715  1.26   chopps 			case '?':
   1716  1.26   chopps 				*ip->ap = 0;
   1717  1.26   chopps 				ip->escape = '?';
   1718  1.26   chopps 				ip->ap = ip->argbuf;
   1719  1.26   chopps 				return;
   1720  1.26   chopps 			case 'c':
   1721  1.26   chopps 				*ip->ap = 0;
   1722  1.26   chopps 				if (ip->argbuf[0] == '>') {
   1723  1.26   chopps 					ite_sendstr("\033[>24;0;0;0c");
   1724  1.26   chopps 				} else
   1725  1.26   chopps 					switch (ite_zargnum(ip)) {
   1726  1.26   chopps 					case 0:
   1727  1.26   chopps 						/*
   1728  1.26   chopps 						 * primary DA request, send
   1729  1.26   chopps 						 * primary DA response
   1730  1.26   chopps 						 */
   1731  1.26   chopps 						if (ip->emul_level
   1732  1.26   chopps 						    == EMUL_VT100)
   1733  1.26   chopps 							ite_sendstr(
   1734  1.26   chopps 							    "\033[?1;1c");
   1735  1.26   chopps 						else
   1736  1.26   chopps 							ite_sendstr(
   1737  1.26   chopps 							    "\033[?63;1c");
   1738  1.26   chopps 						break;
   1739  1.26   chopps 					}
   1740  1.26   chopps 				ip->escape = 0;
   1741  1.26   chopps 				return;
   1742  1.26   chopps 			case 'n':
   1743  1.26   chopps 				switch (ite_zargnum(ip)) {
   1744  1.26   chopps 				case 5:
   1745  1.26   chopps 					/* no malfunction */
   1746  1.26   chopps 					ite_sendstr("\033[0n");
   1747  1.26   chopps 					break;
   1748  1.26   chopps 				case 6:
   1749  1.26   chopps 					/* cursor position report */
   1750  1.26   chopps 					sprintf(ip->argbuf, "\033[%d;%dR",
   1751  1.26   chopps 					    ip->cury + 1, ip->curx + 1);
   1752  1.26   chopps 					ite_sendstr(ip->argbuf);
   1753  1.26   chopps 					break;
   1754  1.26   chopps 				}
   1755  1.26   chopps 				ip->escape = 0;
   1756  1.26   chopps 				return;
   1757  1.26   chopps 			case 'x':
   1758  1.26   chopps 				switch (ite_zargnum(ip)) {
   1759  1.26   chopps 				case 0:
   1760  1.26   chopps 					/* Fake some terminal parameters.  */
   1761  1.26   chopps 					ite_sendstr("\033[2;1;1;112;112;1;0x");
   1762  1.26   chopps 					break;
   1763  1.26   chopps 				case 1:
   1764  1.26   chopps 					ite_sendstr("\033[3;1;1;112;112;1;0x");
   1765  1.26   chopps 					break;
   1766  1.26   chopps 				}
   1767  1.26   chopps 				ip->escape = 0;
   1768  1.26   chopps 				return;
   1769  1.26   chopps 			case 'g':
   1770  1.26   chopps 				switch (ite_zargnum(ip)) {
   1771  1.26   chopps 				case 0:
   1772  1.26   chopps 					if (ip->curx < ip->cols)
   1773  1.26   chopps 						ip->tabs[ip->curx] = 0;
   1774  1.26   chopps 					break;
   1775  1.26   chopps 				case 3:
   1776  1.26   chopps 					for (n = 0; n < ip->cols; n++)
   1777  1.26   chopps 						ip->tabs[n] = 0;
   1778  1.26   chopps 					break;
   1779  1.26   chopps 				}
   1780  1.26   chopps 				ip->escape = 0;
   1781  1.26   chopps 				return;
   1782  1.26   chopps 			case 'h':
   1783  1.26   chopps 			case 'l':
   1784  1.26   chopps 				n = ite_zargnum(ip);
   1785  1.26   chopps 				switch (n) {
   1786  1.26   chopps 				case 4:
   1787  1.26   chopps 					/* insert/replace mode */
   1788  1.26   chopps 					ip->imode = (c == 'h');
   1789  1.26   chopps 					break;
   1790  1.26   chopps 				case 20:
   1791  1.26   chopps 					ip->linefeed_newline = (c == 'h');
   1792  1.26   chopps 					break;
   1793  1.26   chopps 				}
   1794  1.26   chopps 				ip->escape = 0;
   1795  1.26   chopps 				return;
   1796  1.26   chopps 			case 'M':
   1797  1.26   chopps 				ite_dnline(ip, ite_argnum(ip));
   1798  1.26   chopps 				ip->escape = 0;
   1799  1.26   chopps 				return;
   1800  1.26   chopps 			case 'L':
   1801  1.26   chopps 				ite_inline(ip, ite_argnum(ip));
   1802  1.26   chopps 				ip->escape = 0;
   1803  1.26   chopps 				return;
   1804  1.26   chopps 			case 'P':
   1805  1.26   chopps 				ite_dnchar(ip, ite_argnum(ip));
   1806  1.26   chopps 				ip->escape = 0;
   1807  1.26   chopps 				return;
   1808  1.26   chopps 			case '@':
   1809  1.26   chopps 				ite_inchar(ip, ite_argnum(ip));
   1810  1.26   chopps 				ip->escape = 0;
   1811  1.26   chopps 				return;
   1812  1.26   chopps 			case 'G':
   1813  1.26   chopps 				/*
   1814  1.26   chopps 				 * this one was *not* in my vt320 manual but in
   1815  1.26   chopps 				 * a vt320 termcap entry.. who is right? It's
   1816  1.26   chopps 				 * supposed to set the horizontal cursor
   1817  1.26   chopps 				 * position.
   1818  1.26   chopps 				 */
   1819  1.26   chopps 				*ip->ap = 0;
   1820  1.26   chopps 				x = atoi(ip->argbuf);
   1821  1.26   chopps 				if (x)
   1822  1.26   chopps 					x--;
   1823  1.26   chopps 				ip->curx = min(x, ip->cols - 1);
   1824  1.26   chopps 				ip->escape = 0;
   1825  1.26   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1826  1.26   chopps 				clr_attr(ip, ATTR_INV);
   1827  1.26   chopps 				return;
   1828  1.26   chopps 			case 'd':
   1829  1.26   chopps 				/*
   1830  1.26   chopps 				 * same thing here, this one's for setting the
   1831  1.26   chopps 				 * absolute vertical cursor position. Not
   1832  1.26   chopps 				 * documented...
   1833  1.26   chopps 				 */
   1834  1.26   chopps 				*ip->ap = 0;
   1835  1.26   chopps 				y = atoi(ip->argbuf);
   1836  1.26   chopps 				if (y)
   1837  1.26   chopps 					y--;
   1838  1.26   chopps 				if (ip->inside_margins)
   1839  1.26   chopps 					y += ip->top_margin;
   1840  1.26   chopps 				ip->cury = min(y, ip->rows - 1);
   1841  1.26   chopps 				ip->escape = 0;
   1842  1.26   chopps 				snap_cury(ip);
   1843  1.26   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1844  1.26   chopps 				clr_attr(ip, ATTR_INV);
   1845  1.26   chopps 				return;
   1846  1.26   chopps 			case 'H':
   1847  1.26   chopps 			case 'f':
   1848  1.26   chopps 				*ip->ap = 0;
   1849  1.26   chopps 				y = atoi(ip->argbuf);
   1850  1.26   chopps 				x = 0;
   1851  1.26   chopps 				cp = index(ip->argbuf, ';');
   1852  1.26   chopps 				if (cp)
   1853  1.26   chopps 					x = atoi(cp + 1);
   1854  1.26   chopps 				if (x)
   1855  1.26   chopps 					x--;
   1856  1.26   chopps 				if (y)
   1857  1.26   chopps 					y--;
   1858  1.26   chopps 				if (ip->inside_margins)
   1859  1.26   chopps 					y += ip->top_margin;
   1860  1.26   chopps 				ip->cury = min(y, ip->rows - 1);
   1861  1.26   chopps 				ip->curx = min(x, ip->cols - 1);
   1862  1.26   chopps 				ip->escape = 0;
   1863  1.26   chopps 				snap_cury(ip);
   1864  1.26   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1865  1.26   chopps 				clr_attr(ip, ATTR_INV);
   1866  1.26   chopps 				return;
   1867  1.26   chopps 			case 'A':
   1868  1.26   chopps 				n = ite_argnum(ip);
   1869  1.26   chopps 				n = ip->cury - (n ? n : 1);
   1870  1.26   chopps 				if (n < 0)
   1871  1.26   chopps 					n = 0;
   1872  1.26   chopps 				if (ip->inside_margins)
   1873  1.26   chopps 					n = max(ip->top_margin, n);
   1874  1.26   chopps 				else if (n == ip->top_margin - 1)
   1875  1.26   chopps 					/*
   1876  1.26   chopps 					 * allow scrolling outside region, but
   1877  1.26   chopps 					 * don't scroll out of active region
   1878  1.26   chopps 					 * without explicit CUP
   1879  1.26   chopps 					 */
   1880  1.26   chopps 					n = ip->top_margin;
   1881  1.26   chopps 				ip->cury = n;
   1882  1.26   chopps 				ip->escape = 0;
   1883  1.26   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1884  1.26   chopps 				clr_attr(ip, ATTR_INV);
   1885  1.26   chopps 				return;
   1886  1.26   chopps 			case 'B':
   1887  1.26   chopps 				n = ite_argnum(ip);
   1888  1.26   chopps 				n = ip->cury + (n ? n : 1);
   1889  1.26   chopps 				n = min(ip->rows - 1, n);
   1890  1.26   chopps 				if (ip->inside_margins)
   1891  1.26   chopps 					n = min(ip->bottom_margin, n);
   1892  1.26   chopps 				else if (n == ip->bottom_margin + 1)
   1893  1.26   chopps 					/*
   1894  1.26   chopps 					 * allow scrolling outside region, but
   1895  1.26   chopps 					 * don't scroll out of active region
   1896  1.26   chopps 					 * without explicit CUP
   1897  1.26   chopps 					 */
   1898  1.26   chopps 					n = ip->bottom_margin;
   1899  1.26   chopps 				ip->cury = n;
   1900  1.26   chopps 				ip->escape = 0;
   1901  1.26   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1902  1.26   chopps 				clr_attr(ip, ATTR_INV);
   1903  1.26   chopps 				return;
   1904  1.26   chopps 			case 'C':
   1905  1.26   chopps 				n = ite_argnum(ip);
   1906  1.26   chopps 				n = n ? n : 1;
   1907  1.26   chopps 				ip->curx = min(ip->curx + n, ip->cols - 1);
   1908  1.26   chopps 				ip->escape = 0;
   1909  1.26   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1910  1.26   chopps 				clr_attr(ip, ATTR_INV);
   1911  1.26   chopps 				return;
   1912  1.26   chopps 			case 'D':
   1913  1.26   chopps 				n = ite_argnum(ip);
   1914  1.26   chopps 				n = n ? n : 1;
   1915  1.26   chopps 				n = ip->curx - n;
   1916  1.26   chopps 				ip->curx = n >= 0 ? n : 0;
   1917  1.26   chopps 				ip->escape = 0;
   1918  1.26   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   1919  1.26   chopps 				clr_attr(ip, ATTR_INV);
   1920  1.26   chopps 				return;
   1921  1.26   chopps 			case 'J':
   1922  1.26   chopps 				*ip->ap = 0;
   1923  1.26   chopps 				n = ite_zargnum(ip);
   1924  1.26   chopps 				if (n == 0)
   1925  1.26   chopps 					ite_clrtoeos(ip);
   1926  1.26   chopps 				else if (n == 1)
   1927  1.26   chopps 					ite_clrtobos(ip);
   1928  1.26   chopps 				else if (n == 2)
   1929  1.26   chopps 					ite_clrscreen(ip);
   1930  1.26   chopps 				ip->escape = 0;
   1931  1.26   chopps 				return;
   1932  1.26   chopps 			case 'K':
   1933  1.26   chopps 				n = ite_zargnum(ip);
   1934  1.26   chopps 				if (n == 0)
   1935  1.26   chopps 					ite_clrtoeol(ip);
   1936  1.26   chopps 				else if (n == 1)
   1937  1.26   chopps 					ite_clrtobol(ip);
   1938  1.26   chopps 				else if (n == 2)
   1939  1.26   chopps 					ite_clrline(ip);
   1940  1.26   chopps 				ip->escape = 0;
   1941  1.26   chopps 				return;
   1942  1.26   chopps 			case 'X':
   1943  1.26   chopps 				n = ite_argnum(ip) - 1;
   1944  1.26   chopps 				n = min(n, ip->cols - 1 - ip->curx);
   1945  1.26   chopps 				for (; n >= 0; n--) {
   1946  1.26   chopps 					attrclr(ip, ip->cury, ip->curx + n, 1, 1);
   1947  1.26   chopps 					SUBR_PUTC(ip, ' ', ip->cury, ip->curx + n, ATTR_NOR);
   1948  1.26   chopps 				}
   1949  1.26   chopps 				ip->escape = 0;
   1950  1.26   chopps 				return;
   1951  1.26   chopps 			case '}':
   1952  1.26   chopps 			case '`':
   1953  1.26   chopps 				/* status line control */
   1954  1.26   chopps 				ip->escape = 0;
   1955  1.26   chopps 				return;
   1956  1.26   chopps 			case 'r':
   1957  1.26   chopps 				*ip->ap = 0;
   1958  1.26   chopps 				x = atoi(ip->argbuf);
   1959  1.26   chopps 				x = x ? x : 1;
   1960  1.26   chopps 				y = ip->rows;
   1961  1.26   chopps 				cp = index(ip->argbuf, ';');
   1962  1.26   chopps 				if (cp) {
   1963  1.26   chopps 					y = atoi(cp + 1);
   1964  1.26   chopps 					y = y ? y : ip->rows;
   1965  1.26   chopps 				}
   1966  1.26   chopps 				if (y - x < 2) {
   1967  1.26   chopps 					/*
   1968  1.26   chopps 					 * if illegal scrolling region, reset
   1969  1.26   chopps 					 * to defaults
   1970  1.26   chopps 					 */
   1971  1.26   chopps 					x = 1;
   1972  1.26   chopps 					y = ip->rows;
   1973  1.26   chopps 				}
   1974  1.26   chopps 				x--;
   1975  1.26   chopps 				y--;
   1976  1.26   chopps 				ip->top_margin = min(x, ip->rows - 1);
   1977  1.26   chopps 				ip->bottom_margin = min(y, ip->rows - 1);
   1978  1.26   chopps 				if (ip->inside_margins) {
   1979  1.26   chopps 					ip->cury = ip->top_margin;
   1980  1.26   chopps 					ip->curx = 0;
   1981  1.26   chopps 					SUBR_CURSOR(ip, MOVE_CURSOR);
   1982  1.26   chopps 				}
   1983  1.26   chopps 				ip->escape = 0;
   1984  1.26   chopps 				return;
   1985  1.26   chopps 			case 'm':
   1986  1.26   chopps 				/* big attribute setter/resetter */
   1987  1.26   chopps 				{ char *cp;
   1988  1.26   chopps 				*ip->ap = 0;
   1989  1.26   chopps 				/* kludge to make CSIm work (== CSI0m) */
   1990  1.26   chopps 				if (ip->ap == ip->argbuf)
   1991  1.26   chopps 					ip->ap++;
   1992  1.26   chopps 				for (cp = ip->argbuf; cp < ip->ap;) {
   1993  1.26   chopps 					switch (*cp) {
   1994  1.26   chopps 					case 0:
   1995  1.26   chopps 					case '0':
   1996  1.26   chopps 						clr_attr(ip, ATTR_ALL);
   1997  1.26   chopps 						cp++;
   1998  1.26   chopps 						break;
   1999  1.26   chopps 
   2000  1.26   chopps 					case '1':
   2001  1.26   chopps 						set_attr(ip, ATTR_BOLD);
   2002  1.26   chopps 						cp++;
   2003  1.26   chopps 						break;
   2004  1.26   chopps 
   2005  1.26   chopps 					case '2':
   2006  1.26   chopps 						switch (cp[1]) {
   2007  1.26   chopps 						case '2':
   2008  1.26   chopps 							clr_attr(ip, ATTR_BOLD);
   2009  1.26   chopps 							cp += 2;
   2010  1.26   chopps 							break;
   2011  1.26   chopps 
   2012  1.26   chopps 						case '4':
   2013  1.26   chopps 							clr_attr(ip, ATTR_UL);
   2014  1.26   chopps 							cp += 2;
   2015  1.26   chopps 							break;
   2016  1.26   chopps 
   2017  1.26   chopps 						case '5':
   2018  1.26   chopps 							clr_attr(ip, ATTR_BLINK);
   2019  1.26   chopps 							cp += 2;
   2020  1.26   chopps 							break;
   2021  1.26   chopps 
   2022  1.26   chopps 						case '7':
   2023  1.26   chopps 							clr_attr(ip, ATTR_INV);
   2024  1.26   chopps 							cp += 2;
   2025  1.26   chopps 							break;
   2026  1.26   chopps 
   2027  1.26   chopps 						default:
   2028  1.26   chopps 							cp++;
   2029  1.26   chopps 							break;
   2030  1.26   chopps 						}
   2031  1.26   chopps 						break;
   2032  1.26   chopps 
   2033  1.26   chopps 					case '4':
   2034  1.26   chopps 						set_attr(ip, ATTR_UL);
   2035  1.26   chopps 						cp++;
   2036  1.26   chopps 						break;
   2037  1.26   chopps 
   2038  1.26   chopps 					case '5':
   2039  1.26   chopps 						set_attr(ip, ATTR_BLINK);
   2040  1.26   chopps 						cp++;
   2041  1.26   chopps 						break;
   2042  1.26   chopps 
   2043  1.26   chopps 					case '7':
   2044  1.26   chopps 						set_attr(ip, ATTR_INV);
   2045  1.26   chopps 						cp++;
   2046  1.26   chopps 						break;
   2047  1.26   chopps 
   2048  1.26   chopps 					default:
   2049  1.26   chopps 						cp++;
   2050  1.26   chopps 						break;
   2051  1.26   chopps 					}
   2052  1.26   chopps 				}
   2053  1.26   chopps 				ip->escape = 0;
   2054  1.26   chopps 				return; }
   2055  1.26   chopps 			case 'u':
   2056  1.26   chopps 				/* DECRQTSR */
   2057  1.26   chopps 				ite_sendstr("\033P\033\\");
   2058  1.26   chopps 				ip->escape = 0;
   2059  1.26   chopps 				return;
   2060  1.26   chopps 			default:
   2061  1.26   chopps 				ip->escape = 0;
   2062  1.26   chopps 				return;
   2063  1.26   chopps 			}
   2064   1.3       mw 			break;
   2065  1.26   chopps 		case '?':	/* CSI ? */
   2066  1.26   chopps 			switch (c) {
   2067  1.26   chopps 			case '0':
   2068  1.26   chopps 			case '1':
   2069  1.26   chopps 			case '2':
   2070  1.26   chopps 			case '3':
   2071  1.26   chopps 			case '4':
   2072  1.26   chopps 			case '5':
   2073  1.26   chopps 			case '6':
   2074  1.26   chopps 			case '7':
   2075  1.26   chopps 			case '8':
   2076  1.26   chopps 			case '9':
   2077  1.26   chopps 			case ';':
   2078  1.26   chopps 			case '\"':
   2079  1.26   chopps 			case '$':
   2080  1.26   chopps 				/*
   2081  1.26   chopps 				 * Don't fill the last character;
   2082  1.26   chopps 				 * it's needed.
   2083  1.26   chopps 				 * XXX yeah, where ??
   2084  1.26   chopps 				 */
   2085  1.26   chopps 				if (ip->ap < ip->argbuf + MAX_ARGSIZE - 1)
   2086  1.26   chopps 					*ip->ap++ = c;
   2087  1.26   chopps 				return;
   2088  1.26   chopps 			case 'n':
   2089  1.26   chopps 				*ip->ap = 0;
   2090  1.26   chopps 				if (ip->ap == &ip->argbuf[2]) {
   2091  1.26   chopps 					if (!strncmp(ip->argbuf, "15", 2))
   2092  1.26   chopps 						/* printer status: no printer */
   2093  1.26   chopps 						ite_sendstr("\033[13n");
   2094  1.26   chopps 
   2095  1.26   chopps 					else if (!strncmp(ip->argbuf, "25", 2))
   2096  1.26   chopps 						/* udk status */
   2097  1.26   chopps 						ite_sendstr("\033[20n");
   2098  1.26   chopps 
   2099  1.26   chopps 					else if (!strncmp(ip->argbuf, "26", 2))
   2100  1.26   chopps 						/* keyboard dialect: US */
   2101  1.26   chopps 						ite_sendstr("\033[27;1n");
   2102  1.26   chopps 				}
   2103  1.26   chopps 				ip->escape = 0;
   2104  1.26   chopps 				return;
   2105  1.26   chopps 			case 'h':
   2106  1.26   chopps 			case 'l':
   2107  1.26   chopps 				n = ite_zargnum(ip);
   2108  1.26   chopps 				switch (n) {
   2109  1.26   chopps 				case 1:
   2110  1.26   chopps 					ip->cursor_appmode = (c == 'h');
   2111  1.26   chopps 					break;
   2112  1.26   chopps 				case 3:
   2113  1.26   chopps 					/* 132/80 columns (132 == 'h') */
   2114  1.26   chopps 					break;
   2115  1.26   chopps 				case 4:	/* smooth scroll */
   2116  1.26   chopps 					break;
   2117  1.26   chopps 				case 5:
   2118  1.26   chopps 					/*
   2119  1.26   chopps 					 * light background (=='h') /dark
   2120  1.26   chopps 					 * background(=='l')
   2121  1.26   chopps 					 */
   2122  1.26   chopps 					break;
   2123  1.26   chopps 				case 6:	/* origin mode */
   2124  1.26   chopps 					ip->inside_margins = (c == 'h');
   2125  1.26   chopps 					ip->curx = 0;
   2126  1.26   chopps 					ip->cury = ip->inside_margins ?
   2127  1.26   chopps 					    ip->top_margin : 0;
   2128  1.26   chopps 					SUBR_CURSOR(ip, MOVE_CURSOR);
   2129  1.26   chopps 					break;
   2130  1.26   chopps 				case 7:	/* auto wraparound */
   2131  1.26   chopps 					ip->auto_wrap = (c == 'h');
   2132  1.26   chopps 					break;
   2133  1.26   chopps 				case 8:	/* keyboard repeat */
   2134  1.26   chopps 					ip->key_repeat = (c == 'h');
   2135  1.26   chopps 					break;
   2136  1.26   chopps 				case 20:	/* newline mode */
   2137  1.26   chopps 					ip->linefeed_newline = (c == 'h');
   2138  1.26   chopps 					break;
   2139  1.26   chopps 				case 25:	/* cursor on/off */
   2140  1.26   chopps 					SUBR_CURSOR(ip, (c == 'h') ?
   2141  1.26   chopps 					    DRAW_CURSOR : ERASE_CURSOR);
   2142  1.26   chopps 					break;
   2143  1.26   chopps 				}
   2144  1.26   chopps 				ip->escape = 0;
   2145  1.26   chopps 				return;
   2146  1.26   chopps 			default:
   2147  1.26   chopps 				ip->escape = 0;
   2148  1.26   chopps 				return;
   2149  1.26   chopps 			}
   2150   1.3       mw 			break;
   2151  1.26   chopps 		default:
   2152  1.26   chopps 			ip->escape = 0;
   2153  1.26   chopps 			return;
   2154  1.26   chopps 		}
   2155  1.26   chopps 	}
   2156   1.1       mw 	switch (c) {
   2157  1.26   chopps 	case VT:		/* VT is treated like LF */
   2158  1.26   chopps 	case FF:		/* so is FF */
   2159   1.1       mw 	case LF:
   2160  1.26   chopps 		/*
   2161  1.26   chopps 		 * cr->crlf distinction is done here, on output, not on input!
   2162  1.26   chopps 		 */
   2163   1.1       mw 		if (ip->linefeed_newline)
   2164  1.26   chopps 			ite_crlf(ip);
   2165   1.1       mw 		else
   2166  1.26   chopps 			ite_lf(ip);
   2167   1.1       mw 		break;
   2168   1.1       mw 	case CR:
   2169  1.26   chopps 		ite_cr(ip);
   2170   1.1       mw 		break;
   2171   1.1       mw 	case BS:
   2172   1.1       mw 		if (--ip->curx < 0)
   2173   1.1       mw 			ip->curx = 0;
   2174   1.1       mw 		else
   2175   1.9   chopps 			SUBR_CURSOR(ip, MOVE_CURSOR);
   2176   1.1       mw 		break;
   2177   1.1       mw 	case HT:
   2178   1.3       mw 		for (n = ip->curx + 1; n < ip->cols; n++) {
   2179   1.3       mw 			if (ip->tabs[n]) {
   2180   1.3       mw 				ip->curx = n;
   2181   1.9   chopps 				SUBR_CURSOR(ip, MOVE_CURSOR);
   2182   1.3       mw 				break;
   2183   1.3       mw 			}
   2184   1.3       mw 		}
   2185   1.1       mw 		break;
   2186   1.1       mw 	case BEL:
   2187  1.40       is 		if (kbd_tty && kbd_ite && kbd_ite->tp == kbd_tty
   2188  1.40       is #ifdef DRACO
   2189  1.40       is 		    && !is_draco()
   2190  1.40       is #endif
   2191  1.40       is 		    )
   2192  1.29   chopps 			ite_bell();
   2193   1.1       mw 		break;
   2194   1.1       mw 	case SO:
   2195   1.1       mw 		ip->GL = ip->G1;
   2196   1.1       mw 		break;
   2197   1.1       mw 	case SI:
   2198   1.1       mw 		ip->GL = ip->G0;
   2199   1.1       mw 		break;
   2200   1.1       mw 	case ENQ:
   2201   1.1       mw 		/* send answer-back message !! */
   2202   1.1       mw 		break;
   2203   1.1       mw 	case CAN:
   2204   1.1       mw 		ip->escape = 0;	/* cancel any escape sequence in progress */
   2205   1.1       mw 		break;
   2206   1.1       mw 	case SUB:
   2207   1.1       mw 		ip->escape = 0;	/* dito, but see below */
   2208   1.1       mw 		/* should also display a reverse question mark!! */
   2209   1.1       mw 		break;
   2210   1.1       mw 	case ESC:
   2211   1.1       mw 		ip->escape = ESC;
   2212   1.1       mw 		break;
   2213  1.26   chopps 	/*
   2214  1.26   chopps 	 * now it gets weird.. 8bit control sequences..
   2215  1.26   chopps 	 */
   2216  1.26   chopps 	case IND:
   2217  1.26   chopps 		/* index: move cursor down, scroll */
   2218  1.26   chopps 		ite_lf(ip);
   2219  1.26   chopps 		break;
   2220  1.26   chopps 	case NEL:
   2221  1.26   chopps 		/* next line. next line, first pos. */
   2222  1.26   chopps 		ite_crlf(ip);
   2223   1.1       mw 		break;
   2224  1.26   chopps 	case HTS:
   2225  1.26   chopps 		/* set horizontal tab */
   2226   1.3       mw 		if (ip->curx < ip->cols)
   2227  1.26   chopps 			ip->tabs[ip->curx] = 1;
   2228   1.1       mw 		break;
   2229  1.26   chopps 	case RI:
   2230  1.26   chopps 		/* reverse index */
   2231  1.26   chopps 		ite_rlf(ip);
   2232   1.1       mw 		break;
   2233  1.26   chopps 	case SS2:
   2234  1.26   chopps 		/* go into G2 for one character */
   2235   1.1       mw 		/* not yet supported */
   2236   1.1       mw 		break;
   2237  1.26   chopps 	case SS3:
   2238  1.26   chopps 		/* go into G3 for one character */
   2239   1.1       mw 		break;
   2240  1.26   chopps 	case DCS:
   2241  1.26   chopps 		/* device control string introducer */
   2242   1.1       mw 		ip->escape = DCS;
   2243   1.1       mw 		ip->ap = ip->argbuf;
   2244   1.1       mw 		break;
   2245  1.26   chopps 	case CSI:
   2246  1.26   chopps 		/* control sequence introducer */
   2247   1.1       mw 		ip->escape = CSI;
   2248   1.1       mw 		ip->ap = ip->argbuf;
   2249   1.1       mw 		break;
   2250  1.26   chopps 	case ST:
   2251  1.26   chopps 		/* string terminator */
   2252   1.1       mw 		/* ignore, if not used as terminator */
   2253   1.1       mw 		break;
   2254  1.26   chopps 	case OSC:
   2255  1.26   chopps 		/*
   2256  1.26   chopps 		 * introduces OS command. Ignore everything
   2257  1.26   chopps 		 * upto ST
   2258  1.26   chopps 		 */
   2259   1.1       mw 		ip->escape = OSC;
   2260   1.1       mw 		break;
   2261  1.26   chopps 	case PM:
   2262  1.26   chopps 		/* privacy message, ignore everything upto ST */
   2263   1.1       mw 		ip->escape = PM;
   2264   1.1       mw 		break;
   2265  1.26   chopps 	case APC:
   2266  1.26   chopps 		/*
   2267  1.26   chopps 		 * application program command, ignore * everything upto ST
   2268  1.26   chopps 		 */
   2269   1.1       mw 		ip->escape = APC;
   2270   1.1       mw 		break;
   2271   1.1       mw 	default:
   2272  1.26   chopps 		if ((c & 0x7f) < ' ' || c == DEL)
   2273   1.1       mw 			break;
   2274   1.1       mw 		if (ip->imode)
   2275   1.9   chopps 			ite_inchar(ip, 1);
   2276   1.9   chopps 		iteprecheckwrap(ip);
   2277   1.3       mw #ifdef DO_WEIRD_ATTRIBUTES
   2278   1.1       mw 		if ((ip->attribute & ATTR_INV) || attrtest(ip, ATTR_INV)) {
   2279   1.1       mw 			attrset(ip, ATTR_INV);
   2280   1.9   chopps 			SUBR_PUTC(ip, c, ip->cury, ip->curx, ATTR_INV);
   2281  1.26   chopps 		} else
   2282   1.9   chopps 			SUBR_PUTC(ip, c, ip->cury, ip->curx, ATTR_NOR);
   2283   1.3       mw #else
   2284   1.9   chopps 		SUBR_PUTC(ip, c, ip->cury, ip->curx, ip->attribute);
   2285   1.3       mw #endif
   2286   1.9   chopps 		SUBR_CURSOR(ip, DRAW_CURSOR);
   2287   1.9   chopps 		itecheckwrap(ip);
   2288   1.1       mw 		break;
   2289   1.1       mw 	}
   2290   1.1       mw }
   2291   1.1       mw 
   2292