wsemul_vt100.c revision 1.24 1 1.24 christos /* $NetBSD: wsemul_vt100.c,v 1.24 2003/04/19 23:28:46 christos Exp $ */
2 1.1 drochner
3 1.1 drochner /*
4 1.1 drochner * Copyright (c) 1998
5 1.1 drochner * Matthias Drochner. All rights reserved.
6 1.1 drochner *
7 1.1 drochner * Redistribution and use in source and binary forms, with or without
8 1.1 drochner * modification, are permitted provided that the following conditions
9 1.1 drochner * are met:
10 1.1 drochner * 1. Redistributions of source code must retain the above copyright
11 1.1 drochner * notice, this list of conditions and the following disclaimer.
12 1.1 drochner * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 drochner * notice, this list of conditions and the following disclaimer in the
14 1.1 drochner * documentation and/or other materials provided with the distribution.
15 1.1 drochner * 3. All advertising materials mentioning features or use of this software
16 1.1 drochner * must display the following acknowledgement:
17 1.1 drochner * This product includes software developed for the NetBSD Project
18 1.1 drochner * by Matthias Drochner.
19 1.1 drochner * 4. The name of the author may not be used to endorse or promote products
20 1.1 drochner * derived from this software without specific prior written permission.
21 1.1 drochner *
22 1.1 drochner * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 drochner * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 drochner * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 drochner * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 drochner * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 drochner * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 drochner * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 drochner * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 drochner * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 drochner * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 drochner *
33 1.1 drochner */
34 1.16 lukem
35 1.16 lukem #include <sys/cdefs.h>
36 1.24 christos __KERNEL_RCSID(0, "$NetBSD: wsemul_vt100.c,v 1.24 2003/04/19 23:28:46 christos Exp $");
37 1.1 drochner
38 1.1 drochner #include <sys/param.h>
39 1.1 drochner #include <sys/systm.h>
40 1.1 drochner #include <sys/time.h>
41 1.1 drochner #include <sys/malloc.h>
42 1.1 drochner #include <sys/fcntl.h>
43 1.1 drochner
44 1.1 drochner #include <dev/wscons/wsconsio.h>
45 1.1 drochner #include <dev/wscons/wsdisplayvar.h>
46 1.1 drochner #include <dev/wscons/wsemulvar.h>
47 1.1 drochner #include <dev/wscons/wsemul_vt100var.h>
48 1.1 drochner #include <dev/wscons/ascii.h>
49 1.1 drochner
50 1.1 drochner #include "opt_wskernattr.h"
51 1.1 drochner
52 1.15 augustss void *wsemul_vt100_cnattach(const struct wsscreen_descr *, void *,
53 1.15 augustss int, int, long);
54 1.15 augustss void *wsemul_vt100_attach(int console, const struct wsscreen_descr *,
55 1.15 augustss void *, int, int, void *, long);
56 1.15 augustss void wsemul_vt100_output(void *cookie, const u_char *data, u_int count, int);
57 1.15 augustss void wsemul_vt100_detach(void *cookie, u_int *crowp, u_int *ccolp);
58 1.15 augustss void wsemul_vt100_resetop(void *, enum wsemul_resetops);
59 1.1 drochner
60 1.1 drochner const struct wsemul_ops wsemul_vt100_ops = {
61 1.1 drochner "vt100",
62 1.1 drochner wsemul_vt100_cnattach,
63 1.1 drochner wsemul_vt100_attach,
64 1.1 drochner wsemul_vt100_output,
65 1.1 drochner wsemul_vt100_translate,
66 1.1 drochner wsemul_vt100_detach,
67 1.9 drochner wsemul_vt100_resetop
68 1.1 drochner };
69 1.1 drochner
70 1.1 drochner struct wsemul_vt100_emuldata wsemul_vt100_console_emuldata;
71 1.1 drochner
72 1.15 augustss static void wsemul_vt100_init(struct wsemul_vt100_emuldata *,
73 1.15 augustss const struct wsscreen_descr *,
74 1.15 augustss void *, int, int, long);
75 1.15 augustss
76 1.15 augustss static void wsemul_vt100_output_normal(struct wsemul_vt100_emuldata *,
77 1.15 augustss u_char, int);
78 1.15 augustss static void wsemul_vt100_output_c0c1(struct wsemul_vt100_emuldata *,
79 1.15 augustss u_char, int);
80 1.21 sommerfe static void wsemul_vt100_nextline(struct wsemul_vt100_emuldata *);
81 1.15 augustss typedef u_int vt100_handler(struct wsemul_vt100_emuldata *, u_char);
82 1.21 sommerfe
83 1.1 drochner static vt100_handler
84 1.1 drochner wsemul_vt100_output_esc,
85 1.1 drochner wsemul_vt100_output_csi,
86 1.1 drochner wsemul_vt100_output_scs94,
87 1.1 drochner wsemul_vt100_output_scs94_percent,
88 1.1 drochner wsemul_vt100_output_scs96,
89 1.1 drochner wsemul_vt100_output_scs96_percent,
90 1.3 drochner wsemul_vt100_output_esc_hash,
91 1.1 drochner wsemul_vt100_output_esc_spc,
92 1.1 drochner wsemul_vt100_output_string,
93 1.1 drochner wsemul_vt100_output_string_esc,
94 1.1 drochner wsemul_vt100_output_dcs,
95 1.1 drochner wsemul_vt100_output_dcs_dollar;
96 1.1 drochner
97 1.1 drochner #define VT100_EMUL_STATE_NORMAL 0 /* normal processing */
98 1.1 drochner #define VT100_EMUL_STATE_ESC 1 /* got ESC */
99 1.1 drochner #define VT100_EMUL_STATE_CSI 2 /* got CSI (ESC[) */
100 1.3 drochner #define VT100_EMUL_STATE_SCS94 3 /* got ESC{()*+} */
101 1.3 drochner #define VT100_EMUL_STATE_SCS94_PERCENT 4 /* got ESC{()*+}% */
102 1.3 drochner #define VT100_EMUL_STATE_SCS96 5 /* got ESC{-./} */
103 1.3 drochner #define VT100_EMUL_STATE_SCS96_PERCENT 6 /* got ESC{-./}% */
104 1.3 drochner #define VT100_EMUL_STATE_ESC_HASH 7 /* got ESC# */
105 1.3 drochner #define VT100_EMUL_STATE_ESC_SPC 8 /* got ESC<SPC> */
106 1.3 drochner #define VT100_EMUL_STATE_STRING 9 /* waiting for ST (ESC\) */
107 1.3 drochner #define VT100_EMUL_STATE_STRING_ESC 10 /* waiting for ST, got ESC */
108 1.3 drochner #define VT100_EMUL_STATE_DCS 11 /* got DCS (ESC P) */
109 1.3 drochner #define VT100_EMUL_STATE_DCS_DOLLAR 12 /* got DCS<p>$ */
110 1.1 drochner
111 1.1 drochner vt100_handler *vt100_output[] = {
112 1.1 drochner wsemul_vt100_output_esc,
113 1.1 drochner wsemul_vt100_output_csi,
114 1.1 drochner wsemul_vt100_output_scs94,
115 1.1 drochner wsemul_vt100_output_scs94_percent,
116 1.1 drochner wsemul_vt100_output_scs96,
117 1.1 drochner wsemul_vt100_output_scs96_percent,
118 1.3 drochner wsemul_vt100_output_esc_hash,
119 1.1 drochner wsemul_vt100_output_esc_spc,
120 1.1 drochner wsemul_vt100_output_string,
121 1.1 drochner wsemul_vt100_output_string_esc,
122 1.1 drochner wsemul_vt100_output_dcs,
123 1.1 drochner wsemul_vt100_output_dcs_dollar,
124 1.1 drochner };
125 1.1 drochner
126 1.1 drochner static void
127 1.15 augustss wsemul_vt100_init(struct wsemul_vt100_emuldata *edp,
128 1.15 augustss const struct wsscreen_descr *type, void *cookie, int ccol, int crow,
129 1.15 augustss long defattr)
130 1.1 drochner {
131 1.1 drochner edp->emulops = type->textops;
132 1.1 drochner edp->emulcookie = cookie;
133 1.1 drochner edp->scrcapabilities = type->capabilities;
134 1.1 drochner edp->nrows = type->nrows;
135 1.1 drochner edp->ncols = type->ncols;
136 1.1 drochner edp->crow = crow;
137 1.1 drochner edp->ccol = ccol;
138 1.1 drochner edp->defattr = defattr;
139 1.1 drochner }
140 1.1 drochner
141 1.1 drochner void *
142 1.15 augustss wsemul_vt100_cnattach(const struct wsscreen_descr *type, void *cookie,
143 1.15 augustss int ccol, int crow, long defattr)
144 1.1 drochner {
145 1.1 drochner struct wsemul_vt100_emuldata *edp;
146 1.5 drochner #if defined(WS_KERNEL_FG) || defined(WS_KERNEL_BG) || \
147 1.5 drochner defined(WS_KERNEL_COLATTR) || defined(WS_KERNEL_MONOATTR)
148 1.1 drochner int res;
149 1.5 drochner #endif
150 1.1 drochner
151 1.1 drochner edp = &wsemul_vt100_console_emuldata;
152 1.1 drochner wsemul_vt100_init(edp, type, cookie, ccol, crow, defattr);
153 1.1 drochner #ifdef DIAGNOSTIC
154 1.1 drochner edp->console = 1;
155 1.1 drochner #endif
156 1.1 drochner edp->cbcookie = NULL;
157 1.1 drochner
158 1.1 drochner #if defined(WS_KERNEL_FG) || defined(WS_KERNEL_BG) || \
159 1.1 drochner defined(WS_KERNEL_COLATTR) || defined(WS_KERNEL_MONOATTR)
160 1.1 drochner #ifndef WS_KERNEL_FG
161 1.1 drochner #define WS_KERNEL_FG WSCOL_WHITE
162 1.1 drochner #endif
163 1.1 drochner #ifndef WS_KERNEL_BG
164 1.1 drochner #define WS_KERNEL_BG WSCOL_BLACK
165 1.1 drochner #endif
166 1.1 drochner #ifndef WS_KERNEL_COLATTR
167 1.1 drochner #define WS_KERNEL_COLATTR 0
168 1.1 drochner #endif
169 1.1 drochner #ifndef WS_KERNEL_MONOATTR
170 1.1 drochner #define WS_KERNEL_MONOATTR 0
171 1.1 drochner #endif
172 1.1 drochner if (type->capabilities & WSSCREEN_WSCOLORS)
173 1.18 junyoung res = (*edp->emulops->allocattr)(cookie,
174 1.1 drochner WS_KERNEL_FG, WS_KERNEL_BG,
175 1.1 drochner WS_KERNEL_COLATTR | WSATTR_WSCOLORS,
176 1.1 drochner &edp->kernattr);
177 1.1 drochner else
178 1.18 junyoung res = (*edp->emulops->allocattr)(cookie, 0, 0,
179 1.1 drochner WS_KERNEL_MONOATTR,
180 1.1 drochner &edp->kernattr);
181 1.1 drochner if (res)
182 1.1 drochner #endif
183 1.1 drochner edp->kernattr = defattr;
184 1.1 drochner
185 1.1 drochner edp->tabs = 0;
186 1.3 drochner edp->dblwid = 0;
187 1.3 drochner edp->dw = 0;
188 1.1 drochner edp->dcsarg = 0;
189 1.3 drochner edp->isolatin1tab = edp->decgraphtab = edp->dectechtab = 0;
190 1.3 drochner edp->nrctab = 0;
191 1.1 drochner wsemul_vt100_reset(edp);
192 1.1 drochner return (edp);
193 1.1 drochner }
194 1.1 drochner
195 1.1 drochner void *
196 1.15 augustss wsemul_vt100_attach(int console, const struct wsscreen_descr *type,
197 1.15 augustss void *cookie, int ccol, int crow, void *cbcookie, long defattr)
198 1.1 drochner {
199 1.1 drochner struct wsemul_vt100_emuldata *edp;
200 1.1 drochner
201 1.1 drochner if (console) {
202 1.1 drochner edp = &wsemul_vt100_console_emuldata;
203 1.1 drochner #ifdef DIAGNOSTIC
204 1.1 drochner KASSERT(edp->console == 1);
205 1.1 drochner #endif
206 1.1 drochner } else {
207 1.1 drochner edp = malloc(sizeof *edp, M_DEVBUF, M_WAITOK);
208 1.1 drochner wsemul_vt100_init(edp, type, cookie, ccol, crow, defattr);
209 1.1 drochner #ifdef DIAGNOSTIC
210 1.1 drochner edp->console = 0;
211 1.1 drochner #endif
212 1.1 drochner }
213 1.1 drochner edp->cbcookie = cbcookie;
214 1.1 drochner
215 1.4 drochner edp->tabs = malloc(edp->ncols, M_DEVBUF, M_NOWAIT);
216 1.17 tsutsui edp->dblwid = malloc(edp->nrows, M_DEVBUF, M_NOWAIT|M_ZERO);
217 1.3 drochner edp->dw = 0;
218 1.1 drochner edp->dcsarg = malloc(DCS_MAXLEN, M_DEVBUF, M_NOWAIT);
219 1.3 drochner edp->isolatin1tab = malloc(128 * sizeof(int), M_DEVBUF, M_NOWAIT);
220 1.3 drochner edp->decgraphtab = malloc(128 * sizeof(int), M_DEVBUF, M_NOWAIT);
221 1.3 drochner edp->dectechtab = malloc(128 * sizeof(int), M_DEVBUF, M_NOWAIT);
222 1.3 drochner edp->nrctab = malloc(128 * sizeof(int), M_DEVBUF, M_NOWAIT);
223 1.3 drochner vt100_initchartables(edp);
224 1.1 drochner wsemul_vt100_reset(edp);
225 1.1 drochner return (edp);
226 1.1 drochner }
227 1.1 drochner
228 1.1 drochner void
229 1.15 augustss wsemul_vt100_detach(void *cookie, u_int *crowp, u_int *ccolp)
230 1.1 drochner {
231 1.1 drochner struct wsemul_vt100_emuldata *edp = cookie;
232 1.1 drochner
233 1.1 drochner *crowp = edp->crow;
234 1.1 drochner *ccolp = edp->ccol;
235 1.3 drochner #define f(ptr) if (ptr) {free(ptr, M_DEVBUF); ptr = 0;}
236 1.3 drochner f(edp->tabs)
237 1.3 drochner f(edp->dblwid)
238 1.3 drochner f(edp->dcsarg)
239 1.3 drochner f(edp->isolatin1tab)
240 1.3 drochner f(edp->decgraphtab)
241 1.3 drochner f(edp->dectechtab)
242 1.3 drochner f(edp->nrctab)
243 1.3 drochner #undef f
244 1.1 drochner if (edp != &wsemul_vt100_console_emuldata)
245 1.1 drochner free(edp, M_DEVBUF);
246 1.9 drochner }
247 1.9 drochner
248 1.9 drochner void
249 1.15 augustss wsemul_vt100_resetop(void *cookie, enum wsemul_resetops op)
250 1.9 drochner {
251 1.9 drochner struct wsemul_vt100_emuldata *edp = cookie;
252 1.9 drochner
253 1.9 drochner switch (op) {
254 1.9 drochner case WSEMUL_RESET:
255 1.9 drochner wsemul_vt100_reset(edp);
256 1.9 drochner break;
257 1.9 drochner case WSEMUL_SYNCFONT:
258 1.9 drochner vt100_initchartables(edp);
259 1.10 drochner break;
260 1.10 drochner case WSEMUL_CLEARSCREEN:
261 1.10 drochner wsemul_vt100_ed(edp, 2);
262 1.10 drochner edp->ccol = edp->crow = 0;
263 1.10 drochner (*edp->emulops->cursor)(edp->emulcookie,
264 1.10 drochner edp->flags & VTFL_CURSORON, 0, 0);
265 1.10 drochner break;
266 1.10 drochner default:
267 1.9 drochner break;
268 1.9 drochner }
269 1.1 drochner }
270 1.1 drochner
271 1.1 drochner void
272 1.15 augustss wsemul_vt100_reset(struct wsemul_vt100_emuldata *edp)
273 1.1 drochner {
274 1.1 drochner int i;
275 1.1 drochner
276 1.1 drochner edp->state = VT100_EMUL_STATE_NORMAL;
277 1.1 drochner edp->flags = VTFL_DECAWM | VTFL_CURSORON;
278 1.13 mycroft edp->bkgdattr = edp->curattr = edp->defattr;
279 1.1 drochner edp->attrflags = 0;
280 1.1 drochner edp->fgcol = WSCOL_WHITE;
281 1.1 drochner edp->bgcol = WSCOL_BLACK;
282 1.1 drochner edp->scrreg_startrow = 0;
283 1.1 drochner edp->scrreg_nrows = edp->nrows;
284 1.1 drochner if (edp->tabs) {
285 1.8 augustss memset(edp->tabs, 0, edp->ncols);
286 1.6 drochner for (i = 8; i < edp->ncols; i += 8)
287 1.1 drochner edp->tabs[i] = 1;
288 1.1 drochner }
289 1.1 drochner edp->dcspos = 0;
290 1.1 drochner edp->dcstype = 0;
291 1.3 drochner edp->chartab_G[0] = 0;
292 1.3 drochner edp->chartab_G[1] = edp->nrctab; /* ??? */
293 1.3 drochner edp->chartab_G[2] = edp->isolatin1tab;
294 1.3 drochner edp->chartab_G[3] = edp->isolatin1tab;
295 1.3 drochner edp->chartab0 = 0;
296 1.3 drochner edp->chartab1 = 2;
297 1.3 drochner edp->sschartab = 0;
298 1.1 drochner }
299 1.1 drochner
300 1.1 drochner /*
301 1.1 drochner * now all the state machine bits
302 1.1 drochner */
303 1.1 drochner
304 1.21 sommerfe /*
305 1.21 sommerfe * Move the cursor to the next line if possible. If the cursor is at
306 1.21 sommerfe * the bottom of the scroll area, then scroll it up. If the cursor is
307 1.21 sommerfe * at the bottom of the screen then don't move it down.
308 1.21 sommerfe */
309 1.7 drochner static void
310 1.21 sommerfe wsemul_vt100_nextline(struct wsemul_vt100_emuldata *edp)
311 1.21 sommerfe {
312 1.21 sommerfe if (ROWS_BELOW == 0) {
313 1.21 sommerfe /* Bottom of the scroll region. */
314 1.21 sommerfe wsemul_vt100_scrollup(edp, 1);
315 1.21 sommerfe } else {
316 1.21 sommerfe if ((edp->crow+1) < edp->nrows)
317 1.21 sommerfe /* Cursor not at the bottom of the screen. */
318 1.21 sommerfe edp->crow++;
319 1.21 sommerfe CHECK_DW;
320 1.21 sommerfe }
321 1.21 sommerfe }
322 1.21 sommerfe
323 1.22 sommerfe static void
324 1.15 augustss wsemul_vt100_output_normal(struct wsemul_vt100_emuldata *edp, u_char c,
325 1.15 augustss int kernel)
326 1.1 drochner {
327 1.7 drochner u_int *ct, dc;
328 1.7 drochner
329 1.7 drochner if ((edp->flags & (VTFL_LASTCHAR | VTFL_DECAWM)) ==
330 1.7 drochner (VTFL_LASTCHAR | VTFL_DECAWM)) {
331 1.21 sommerfe wsemul_vt100_nextline(edp);
332 1.7 drochner edp->ccol = 0;
333 1.7 drochner edp->flags &= ~VTFL_LASTCHAR;
334 1.7 drochner }
335 1.7 drochner
336 1.7 drochner if (c & 0x80) {
337 1.7 drochner c &= 0x7f;
338 1.7 drochner ct = edp->chartab_G[edp->chartab1];
339 1.7 drochner } else {
340 1.7 drochner if (edp->sschartab) {
341 1.7 drochner ct = edp->chartab_G[edp->sschartab];
342 1.7 drochner edp->sschartab = 0;
343 1.7 drochner } else
344 1.7 drochner ct = edp->chartab_G[edp->chartab0];
345 1.7 drochner }
346 1.7 drochner dc = (ct ? ct[c] : c);
347 1.7 drochner
348 1.7 drochner if ((edp->flags & VTFL_INSERTMODE) && COLS_LEFT)
349 1.7 drochner COPYCOLS(edp->ccol, edp->ccol + 1, COLS_LEFT);
350 1.7 drochner
351 1.7 drochner (*edp->emulops->putchar)(edp->emulcookie, edp->crow,
352 1.7 drochner edp->ccol << edp->dw, dc,
353 1.7 drochner kernel ? edp->kernattr : edp->curattr);
354 1.7 drochner
355 1.7 drochner if (COLS_LEFT)
356 1.7 drochner edp->ccol++;
357 1.7 drochner else
358 1.7 drochner edp->flags |= VTFL_LASTCHAR;
359 1.7 drochner }
360 1.7 drochner
361 1.7 drochner static void
362 1.15 augustss wsemul_vt100_output_c0c1(struct wsemul_vt100_emuldata *edp, u_char c,
363 1.15 augustss int kernel)
364 1.7 drochner {
365 1.7 drochner u_int n;
366 1.1 drochner
367 1.1 drochner switch (c) {
368 1.19 junyoung case ASCII_NUL:
369 1.19 junyoung default:
370 1.1 drochner /* ignore */
371 1.1 drochner break;
372 1.19 junyoung case ASCII_BEL:
373 1.1 drochner wsdisplay_emulbell(edp->cbcookie);
374 1.1 drochner break;
375 1.19 junyoung case ASCII_BS:
376 1.1 drochner if (edp->ccol > 0) {
377 1.1 drochner edp->ccol--;
378 1.1 drochner edp->flags &= ~VTFL_LASTCHAR;
379 1.1 drochner }
380 1.1 drochner break;
381 1.19 junyoung case ASCII_CR:
382 1.1 drochner edp->ccol = 0;
383 1.1 drochner edp->flags &= ~VTFL_LASTCHAR;
384 1.1 drochner break;
385 1.19 junyoung case ASCII_HT:
386 1.1 drochner if (edp->tabs) {
387 1.3 drochner if (!COLS_LEFT)
388 1.1 drochner break;
389 1.3 drochner for (n = edp->ccol + 1; n < NCOLS - 1; n++)
390 1.1 drochner if (edp->tabs[n])
391 1.1 drochner break;
392 1.1 drochner } else {
393 1.1 drochner n = edp->ccol + min(8 - (edp->ccol & 7), COLS_LEFT);
394 1.1 drochner }
395 1.1 drochner edp->ccol = n;
396 1.1 drochner break;
397 1.19 junyoung case ASCII_SO: /* LS1 */
398 1.3 drochner edp->chartab0 = 1;
399 1.3 drochner break;
400 1.19 junyoung case ASCII_SI: /* LS0 */
401 1.3 drochner edp->chartab0 = 0;
402 1.1 drochner break;
403 1.19 junyoung case ASCII_ESC:
404 1.14 jdolecek if (kernel) {
405 1.14 jdolecek printf("wsemul_vt100_output_c0c1: ESC in kernel output ignored\n");
406 1.14 jdolecek break; /* ignore the ESC */
407 1.14 jdolecek }
408 1.14 jdolecek
409 1.7 drochner if (edp->state == VT100_EMUL_STATE_STRING) {
410 1.7 drochner /* might be a string end */
411 1.7 drochner edp->state = VT100_EMUL_STATE_STRING_ESC;
412 1.7 drochner } else {
413 1.7 drochner /* XXX cancel current escape sequence */
414 1.7 drochner edp->state = VT100_EMUL_STATE_ESC;
415 1.7 drochner }
416 1.1 drochner break;
417 1.1 drochner #if 0
418 1.19 junyoung case CSI: /* 8-bit */
419 1.7 drochner /* XXX cancel current escape sequence */
420 1.1 drochner edp->nargs = 0;
421 1.8 augustss memset(edp->args, 0, sizeof (edp->args));
422 1.3 drochner edp->modif1 = edp->modif2 = '\0';
423 1.7 drochner edp->state = VT100_EMUL_STATE_CSI;
424 1.1 drochner break;
425 1.19 junyoung case DCS: /* 8-bit */
426 1.7 drochner /* XXX cancel current escape sequence */
427 1.1 drochner edp->nargs = 0;
428 1.8 augustss memset(edp->args, 0, sizeof (edp->args));
429 1.7 drochner edp->state = VT100_EMUL_STATE_DCS;
430 1.1 drochner break;
431 1.19 junyoung case ST: /* string end 8-bit */
432 1.7 drochner /* XXX only in VT100_EMUL_STATE_STRING */
433 1.7 drochner wsemul_vt100_handle_dcs(edp);
434 1.7 drochner return (VT100_EMUL_STATE_NORMAL);
435 1.1 drochner #endif
436 1.19 junyoung case ASCII_LF:
437 1.19 junyoung case ASCII_VT:
438 1.19 junyoung case ASCII_FF:
439 1.21 sommerfe wsemul_vt100_nextline(edp);
440 1.1 drochner break;
441 1.1 drochner }
442 1.1 drochner }
443 1.1 drochner
444 1.1 drochner static u_int
445 1.15 augustss wsemul_vt100_output_esc(struct wsemul_vt100_emuldata *edp, u_char c)
446 1.1 drochner {
447 1.1 drochner u_int newstate = VT100_EMUL_STATE_NORMAL;
448 1.3 drochner int i;
449 1.1 drochner
450 1.1 drochner switch (c) {
451 1.19 junyoung case '[': /* CSI */
452 1.1 drochner edp->nargs = 0;
453 1.8 augustss memset(edp->args, 0, sizeof (edp->args));
454 1.3 drochner edp->modif1 = edp->modif2 = '\0';
455 1.1 drochner newstate = VT100_EMUL_STATE_CSI;
456 1.1 drochner break;
457 1.19 junyoung case '7': /* DECSC */
458 1.24 christos edp->flags |= VTFL_SAVEDCURS;
459 1.1 drochner edp->savedcursor_row = edp->crow;
460 1.1 drochner edp->savedcursor_col = edp->ccol;
461 1.3 drochner edp->savedattr = edp->curattr;
462 1.13 mycroft edp->savedbkgdattr = edp->bkgdattr;
463 1.3 drochner edp->savedattrflags = edp->attrflags;
464 1.3 drochner edp->savedfgcol = edp->fgcol;
465 1.3 drochner edp->savedbgcol = edp->bgcol;
466 1.3 drochner for (i = 0; i < 4; i++)
467 1.3 drochner edp->savedchartab_G[i] = edp->chartab_G[i];
468 1.3 drochner edp->savedchartab0 = edp->chartab0;
469 1.3 drochner edp->savedchartab1 = edp->chartab1;
470 1.1 drochner break;
471 1.19 junyoung case '8': /* DECRC */
472 1.24 christos if ((edp->flags & VTFL_SAVEDCURS) == 0)
473 1.24 christos break;
474 1.1 drochner edp->crow = edp->savedcursor_row;
475 1.1 drochner edp->ccol = edp->savedcursor_col;
476 1.3 drochner edp->curattr = edp->savedattr;
477 1.13 mycroft edp->bkgdattr = edp->savedbkgdattr;
478 1.3 drochner edp->attrflags = edp->savedattrflags;
479 1.3 drochner edp->fgcol = edp->savedfgcol;
480 1.3 drochner edp->bgcol = edp->savedbgcol;
481 1.3 drochner for (i = 0; i < 4; i++)
482 1.3 drochner edp->chartab_G[i] = edp->savedchartab_G[i];
483 1.3 drochner edp->chartab0 = edp->savedchartab0;
484 1.3 drochner edp->chartab1 = edp->savedchartab1;
485 1.1 drochner break;
486 1.19 junyoung case '=': /* DECKPAM application mode */
487 1.1 drochner edp->flags |= VTFL_APPLKEYPAD;
488 1.1 drochner break;
489 1.19 junyoung case '>': /* DECKPNM numeric mode */
490 1.1 drochner edp->flags &= ~VTFL_APPLKEYPAD;
491 1.1 drochner break;
492 1.19 junyoung case 'E': /* NEL */
493 1.1 drochner edp->ccol = 0;
494 1.1 drochner /* FALLTHRU */
495 1.19 junyoung case 'D': /* IND */
496 1.21 sommerfe wsemul_vt100_nextline(edp);
497 1.1 drochner break;
498 1.19 junyoung case 'H': /* HTS */
499 1.1 drochner KASSERT(edp->tabs != 0);
500 1.1 drochner edp->tabs[edp->ccol] = 1;
501 1.1 drochner break;
502 1.19 junyoung case '~': /* LS1R */
503 1.3 drochner edp->chartab1 = 1;
504 1.3 drochner break;
505 1.19 junyoung case 'n': /* LS2 */
506 1.3 drochner edp->chartab0 = 2;
507 1.3 drochner break;
508 1.19 junyoung case '}': /* LS2R */
509 1.3 drochner edp->chartab1 = 2;
510 1.3 drochner break;
511 1.19 junyoung case 'o': /* LS3 */
512 1.3 drochner edp->chartab0 = 3;
513 1.3 drochner break;
514 1.19 junyoung case '|': /* LS3R */
515 1.3 drochner edp->chartab1 = 3;
516 1.1 drochner break;
517 1.19 junyoung case 'N': /* SS2 */
518 1.3 drochner edp->sschartab = 2;
519 1.3 drochner break;
520 1.19 junyoung case 'O': /* SS3 */
521 1.3 drochner edp->sschartab = 3;
522 1.1 drochner break;
523 1.19 junyoung case 'M': /* RI */
524 1.1 drochner if (ROWS_ABOVE > 0) {
525 1.1 drochner edp->crow--;
526 1.3 drochner CHECK_DW;
527 1.1 drochner break;
528 1.1 drochner }
529 1.1 drochner wsemul_vt100_scrolldown(edp, 1);
530 1.1 drochner break;
531 1.19 junyoung case 'P': /* DCS */
532 1.1 drochner edp->nargs = 0;
533 1.8 augustss memset(edp->args, 0, sizeof (edp->args));
534 1.1 drochner newstate = VT100_EMUL_STATE_DCS;
535 1.1 drochner break;
536 1.19 junyoung case 'c': /* RIS */
537 1.1 drochner wsemul_vt100_reset(edp);
538 1.3 drochner wsemul_vt100_ed(edp, 2);
539 1.1 drochner edp->ccol = edp->crow = 0;
540 1.1 drochner break;
541 1.19 junyoung case '(': case ')': case '*': case '+': /* SCS */
542 1.3 drochner edp->designating = c - '(';
543 1.1 drochner newstate = VT100_EMUL_STATE_SCS94;
544 1.1 drochner break;
545 1.19 junyoung case '-': case '.': case '/': /* SCS */
546 1.3 drochner edp->designating = c - '-' + 1;
547 1.1 drochner newstate = VT100_EMUL_STATE_SCS96;
548 1.1 drochner break;
549 1.19 junyoung case '#':
550 1.3 drochner newstate = VT100_EMUL_STATE_ESC_HASH;
551 1.1 drochner break;
552 1.19 junyoung case ' ': /* 7/8 bit */
553 1.1 drochner newstate = VT100_EMUL_STATE_ESC_SPC;
554 1.1 drochner break;
555 1.19 junyoung case ']': /* OSC operating system command */
556 1.19 junyoung case '^': /* PM privacy message */
557 1.19 junyoung case '_': /* APC application program command */
558 1.1 drochner /* ignored */
559 1.1 drochner newstate = VT100_EMUL_STATE_STRING;
560 1.1 drochner break;
561 1.19 junyoung case '<': /* exit VT52 mode - ignored */
562 1.1 drochner break;
563 1.19 junyoung default:
564 1.1 drochner #ifdef VT100_PRINTUNKNOWN
565 1.1 drochner printf("ESC%c unknown\n", c);
566 1.1 drochner #endif
567 1.1 drochner break;
568 1.1 drochner }
569 1.1 drochner
570 1.1 drochner return (newstate);
571 1.1 drochner }
572 1.1 drochner
573 1.1 drochner static u_int
574 1.15 augustss wsemul_vt100_output_scs94(struct wsemul_vt100_emuldata *edp, u_char c)
575 1.1 drochner {
576 1.1 drochner u_int newstate = VT100_EMUL_STATE_NORMAL;
577 1.1 drochner
578 1.1 drochner switch (c) {
579 1.19 junyoung case '%': /* probably DEC supplemental graphic */
580 1.1 drochner newstate = VT100_EMUL_STATE_SCS94_PERCENT;
581 1.1 drochner break;
582 1.19 junyoung case 'A': /* british / national */
583 1.3 drochner edp->chartab_G[edp->designating] = edp->nrctab;
584 1.3 drochner break;
585 1.19 junyoung case 'B': /* ASCII */
586 1.3 drochner edp->chartab_G[edp->designating] = 0;
587 1.3 drochner break;
588 1.19 junyoung case '<': /* user preferred supplemental */
589 1.3 drochner /* XXX not really "user" preferred */
590 1.3 drochner edp->chartab_G[edp->designating] = edp->isolatin1tab;
591 1.3 drochner break;
592 1.19 junyoung case '0': /* DEC special graphic */
593 1.3 drochner edp->chartab_G[edp->designating] = edp->decgraphtab;
594 1.3 drochner break;
595 1.19 junyoung case '>': /* DEC tech */
596 1.3 drochner edp->chartab_G[edp->designating] = edp->dectechtab;
597 1.1 drochner break;
598 1.19 junyoung default:
599 1.1 drochner #ifdef VT100_PRINTUNKNOWN
600 1.3 drochner printf("ESC%c%c unknown\n", edp->designating + '(', c);
601 1.1 drochner #endif
602 1.1 drochner break;
603 1.1 drochner }
604 1.1 drochner return (newstate);
605 1.1 drochner }
606 1.1 drochner
607 1.1 drochner static u_int
608 1.15 augustss wsemul_vt100_output_scs94_percent(struct wsemul_vt100_emuldata *edp, u_char c)
609 1.1 drochner {
610 1.1 drochner switch (c) {
611 1.19 junyoung case '5': /* DEC supplemental graphic */
612 1.3 drochner /* XXX there are differences */
613 1.3 drochner edp->chartab_G[edp->designating] = edp->isolatin1tab;
614 1.1 drochner break;
615 1.19 junyoung default:
616 1.1 drochner #ifdef VT100_PRINTUNKNOWN
617 1.3 drochner printf("ESC%c%%%c unknown\n", edp->designating + '(', c);
618 1.1 drochner #endif
619 1.1 drochner break;
620 1.1 drochner }
621 1.1 drochner return (VT100_EMUL_STATE_NORMAL);
622 1.1 drochner }
623 1.1 drochner
624 1.1 drochner static u_int
625 1.15 augustss wsemul_vt100_output_scs96(struct wsemul_vt100_emuldata *edp, u_char c)
626 1.1 drochner {
627 1.1 drochner u_int newstate = VT100_EMUL_STATE_NORMAL;
628 1.3 drochner int nrc;
629 1.1 drochner
630 1.1 drochner switch (c) {
631 1.19 junyoung case '%': /* probably portugese */
632 1.1 drochner newstate = VT100_EMUL_STATE_SCS96_PERCENT;
633 1.1 drochner break;
634 1.19 junyoung case 'A': /* ISO-latin-1 supplemental */
635 1.3 drochner edp->chartab_G[edp->designating] = edp->isolatin1tab;
636 1.3 drochner break;
637 1.19 junyoung case '4': /* dutch */
638 1.3 drochner nrc = 1;
639 1.3 drochner goto setnrc;
640 1.19 junyoung case '5': case 'C': /* finnish */
641 1.3 drochner nrc = 2;
642 1.3 drochner goto setnrc;
643 1.19 junyoung case 'R': /* french */
644 1.3 drochner nrc = 3;
645 1.3 drochner goto setnrc;
646 1.19 junyoung case 'Q': /* french canadian */
647 1.3 drochner nrc = 4;
648 1.3 drochner goto setnrc;
649 1.19 junyoung case 'K': /* german */
650 1.3 drochner nrc = 5;
651 1.3 drochner goto setnrc;
652 1.19 junyoung case 'Y': /* italian */
653 1.3 drochner nrc = 6;
654 1.3 drochner goto setnrc;
655 1.19 junyoung case 'E': case '6': /* norwegian / danish */
656 1.3 drochner nrc = 7;
657 1.3 drochner goto setnrc;
658 1.19 junyoung case 'Z': /* spanish */
659 1.3 drochner nrc = 9;
660 1.3 drochner goto setnrc;
661 1.19 junyoung case '7': case 'H': /* swedish */
662 1.3 drochner nrc = 10;
663 1.3 drochner goto setnrc;
664 1.19 junyoung case '=': /* swiss */
665 1.3 drochner nrc = 11;
666 1.3 drochner setnrc:
667 1.3 drochner vt100_setnrc(edp, nrc); /* what table ??? */
668 1.1 drochner break;
669 1.19 junyoung default:
670 1.1 drochner #ifdef VT100_PRINTUNKNOWN
671 1.3 drochner printf("ESC%c%c unknown\n", edp->designating + '-' - 1, c);
672 1.1 drochner #endif
673 1.1 drochner break;
674 1.1 drochner }
675 1.1 drochner return (newstate);
676 1.1 drochner }
677 1.1 drochner
678 1.1 drochner static u_int
679 1.15 augustss wsemul_vt100_output_scs96_percent(struct wsemul_vt100_emuldata *edp, u_char c)
680 1.1 drochner {
681 1.1 drochner switch (c) {
682 1.19 junyoung case '6': /* portugese */
683 1.3 drochner vt100_setnrc(edp, 8);
684 1.1 drochner break;
685 1.19 junyoung default:
686 1.1 drochner #ifdef VT100_PRINTUNKNOWN
687 1.3 drochner printf("ESC%c%%%c unknown\n", edp->designating + '-', c);
688 1.1 drochner #endif
689 1.1 drochner break;
690 1.1 drochner }
691 1.1 drochner return (VT100_EMUL_STATE_NORMAL);
692 1.1 drochner }
693 1.1 drochner
694 1.1 drochner static u_int
695 1.15 augustss wsemul_vt100_output_esc_spc(struct wsemul_vt100_emuldata *edp, u_char c)
696 1.1 drochner {
697 1.1 drochner switch (c) {
698 1.19 junyoung case 'F': /* 7-bit controls */
699 1.19 junyoung case 'G': /* 8-bit controls */
700 1.1 drochner #ifdef VT100_PRINTNOTIMPL
701 1.1 drochner printf("ESC<SPC>%c ignored\n", c);
702 1.1 drochner #endif
703 1.1 drochner break;
704 1.19 junyoung default:
705 1.1 drochner #ifdef VT100_PRINTUNKNOWN
706 1.1 drochner printf("ESC<SPC>%c unknown\n", c);
707 1.1 drochner #endif
708 1.1 drochner break;
709 1.1 drochner }
710 1.1 drochner return (VT100_EMUL_STATE_NORMAL);
711 1.1 drochner }
712 1.1 drochner
713 1.1 drochner static u_int
714 1.15 augustss wsemul_vt100_output_string(struct wsemul_vt100_emuldata *edp, u_char c)
715 1.1 drochner {
716 1.7 drochner if (edp->dcstype && edp->dcspos < DCS_MAXLEN)
717 1.7 drochner edp->dcsarg[edp->dcspos++] = c;
718 1.1 drochner return (VT100_EMUL_STATE_STRING);
719 1.1 drochner }
720 1.1 drochner
721 1.1 drochner static u_int
722 1.15 augustss wsemul_vt100_output_string_esc(struct wsemul_vt100_emuldata *edp, u_char c)
723 1.1 drochner {
724 1.1 drochner if (c == '\\') { /* ST complete */
725 1.1 drochner wsemul_vt100_handle_dcs(edp);
726 1.1 drochner return (VT100_EMUL_STATE_NORMAL);
727 1.1 drochner } else
728 1.1 drochner return (VT100_EMUL_STATE_STRING);
729 1.1 drochner }
730 1.1 drochner
731 1.1 drochner static u_int
732 1.15 augustss wsemul_vt100_output_dcs(struct wsemul_vt100_emuldata *edp, u_char c)
733 1.1 drochner {
734 1.1 drochner u_int newstate = VT100_EMUL_STATE_DCS;
735 1.1 drochner
736 1.1 drochner switch (c) {
737 1.19 junyoung case '0': case '1': case '2': case '3': case '4':
738 1.19 junyoung case '5': case '6': case '7': case '8': case '9':
739 1.1 drochner /* argument digit */
740 1.1 drochner if (edp->nargs > VT100_EMUL_NARGS - 1)
741 1.1 drochner break;
742 1.1 drochner edp->args[edp->nargs] = (edp->args[edp->nargs] * 10) +
743 1.1 drochner (c - '0');
744 1.1 drochner break;
745 1.19 junyoung case ';': /* argument terminator */
746 1.1 drochner edp->nargs++;
747 1.1 drochner break;
748 1.19 junyoung default:
749 1.1 drochner edp->nargs++;
750 1.1 drochner if (edp->nargs > VT100_EMUL_NARGS) {
751 1.1 drochner #ifdef VT100_DEBUG
752 1.1 drochner printf("vt100: too many arguments\n");
753 1.1 drochner #endif
754 1.1 drochner edp->nargs = VT100_EMUL_NARGS;
755 1.1 drochner }
756 1.1 drochner newstate = VT100_EMUL_STATE_STRING;
757 1.1 drochner switch (c) {
758 1.19 junyoung case '$':
759 1.1 drochner newstate = VT100_EMUL_STATE_DCS_DOLLAR;
760 1.1 drochner break;
761 1.19 junyoung case '{': /* DECDLD soft charset */
762 1.19 junyoung case '!': /* DECRQUPSS user preferred supplemental set */
763 1.1 drochner /* 'u' must follow - need another state */
764 1.19 junyoung case '|': /* DECUDK program F6..F20 */
765 1.1 drochner #ifdef VT100_PRINTNOTIMPL
766 1.1 drochner printf("DCS%c ignored\n", c);
767 1.1 drochner #endif
768 1.1 drochner break;
769 1.19 junyoung default:
770 1.1 drochner #ifdef VT100_PRINTUNKNOWN
771 1.1 drochner printf("DCS%c (%d, %d) unknown\n", c, ARG(0), ARG(1));
772 1.1 drochner #endif
773 1.1 drochner break;
774 1.1 drochner }
775 1.1 drochner }
776 1.1 drochner
777 1.1 drochner return (newstate);
778 1.1 drochner }
779 1.1 drochner
780 1.1 drochner static u_int
781 1.15 augustss wsemul_vt100_output_dcs_dollar(struct wsemul_vt100_emuldata *edp, u_char c)
782 1.1 drochner {
783 1.1 drochner switch (c) {
784 1.19 junyoung case 'p': /* DECRSTS terminal state restore */
785 1.19 junyoung case 'q': /* DECRQSS control function request */
786 1.1 drochner #ifdef VT100_PRINTNOTIMPL
787 1.1 drochner printf("DCS$%c ignored\n", c);
788 1.1 drochner #endif
789 1.1 drochner break;
790 1.19 junyoung case 't': /* DECRSPS restore presentation state */
791 1.1 drochner switch (ARG(0)) {
792 1.19 junyoung case 0: /* error */
793 1.1 drochner break;
794 1.19 junyoung case 1: /* cursor information restore */
795 1.1 drochner #ifdef VT100_PRINTNOTIMPL
796 1.1 drochner printf("DCS1$t ignored\n");
797 1.1 drochner #endif
798 1.1 drochner break;
799 1.19 junyoung case 2: /* tab stop restore */
800 1.1 drochner edp->dcspos = 0;
801 1.1 drochner edp->dcstype = DCSTYPE_TABRESTORE;
802 1.1 drochner break;
803 1.19 junyoung default:
804 1.1 drochner #ifdef VT100_PRINTUNKNOWN
805 1.1 drochner printf("DCS%d$t unknown\n", ARG(0));
806 1.1 drochner #endif
807 1.1 drochner break;
808 1.1 drochner }
809 1.1 drochner break;
810 1.19 junyoung default:
811 1.1 drochner #ifdef VT100_PRINTUNKNOWN
812 1.1 drochner printf("DCS$%c (%d, %d) unknown\n", c, ARG(0), ARG(1));
813 1.1 drochner #endif
814 1.1 drochner break;
815 1.1 drochner }
816 1.1 drochner return (VT100_EMUL_STATE_STRING);
817 1.1 drochner }
818 1.1 drochner
819 1.1 drochner static u_int
820 1.15 augustss wsemul_vt100_output_esc_hash(struct wsemul_vt100_emuldata *edp, u_char c)
821 1.1 drochner {
822 1.23 drochner int i, j;
823 1.1 drochner
824 1.1 drochner switch (c) {
825 1.19 junyoung case '5': /* DECSWL single width, single height */
826 1.3 drochner if (edp->dw) {
827 1.3 drochner for (i = 0; i < edp->ncols / 2; i++)
828 1.3 drochner (*edp->emulops->copycols)(edp->emulcookie,
829 1.3 drochner edp->crow,
830 1.3 drochner 2 * i, i, 1);
831 1.3 drochner (*edp->emulops->erasecols)(edp->emulcookie, edp->crow,
832 1.3 drochner i, edp->ncols - i,
833 1.13 mycroft edp->bkgdattr);
834 1.3 drochner edp->dblwid[edp->crow] = 0;
835 1.3 drochner edp->dw = 0;
836 1.1 drochner }
837 1.1 drochner break;
838 1.19 junyoung case '6': /* DECDWL double width, single height */
839 1.19 junyoung case '3': /* DECDHL double width, double height, top half */
840 1.19 junyoung case '4': /* DECDHL double width, double height, bottom half */
841 1.3 drochner if (!edp->dw) {
842 1.3 drochner for (i = edp->ncols / 2 - 1; i >= 0; i--)
843 1.3 drochner (*edp->emulops->copycols)(edp->emulcookie,
844 1.3 drochner edp->crow,
845 1.3 drochner i, 2 * i, 1);
846 1.3 drochner for (i = 0; i < edp->ncols / 2; i++)
847 1.3 drochner (*edp->emulops->erasecols)(edp->emulcookie,
848 1.3 drochner edp->crow,
849 1.3 drochner 2 * i + 1, 1,
850 1.13 mycroft edp->bkgdattr);
851 1.3 drochner edp->dblwid[edp->crow] = 1;
852 1.3 drochner edp->dw = 1;
853 1.3 drochner if (edp->ccol > (edp->ncols >> 1) - 1)
854 1.3 drochner edp->ccol = (edp->ncols >> 1) - 1;
855 1.3 drochner }
856 1.1 drochner break;
857 1.23 drochner case '8': /* DECALN */
858 1.1 drochner for (i = 0; i < edp->nrows; i++)
859 1.1 drochner for (j = 0; j < edp->ncols; j++)
860 1.2 drochner (*edp->emulops->putchar)(edp->emulcookie, i, j,
861 1.2 drochner 'E', edp->curattr);
862 1.1 drochner edp->ccol = 0;
863 1.1 drochner edp->crow = 0;
864 1.1 drochner break;
865 1.19 junyoung default:
866 1.1 drochner #ifdef VT100_PRINTUNKNOWN
867 1.1 drochner printf("ESC#%c unknown\n", c);
868 1.1 drochner #endif
869 1.1 drochner break;
870 1.1 drochner }
871 1.1 drochner return (VT100_EMUL_STATE_NORMAL);
872 1.1 drochner }
873 1.1 drochner
874 1.1 drochner static u_int
875 1.15 augustss wsemul_vt100_output_csi(struct wsemul_vt100_emuldata *edp, u_char c)
876 1.1 drochner {
877 1.1 drochner u_int newstate = VT100_EMUL_STATE_CSI;
878 1.1 drochner
879 1.1 drochner switch (c) {
880 1.19 junyoung case '0': case '1': case '2': case '3': case '4':
881 1.19 junyoung case '5': case '6': case '7': case '8': case '9':
882 1.1 drochner /* argument digit */
883 1.1 drochner if (edp->nargs > VT100_EMUL_NARGS - 1)
884 1.1 drochner break;
885 1.1 drochner edp->args[edp->nargs] = (edp->args[edp->nargs] * 10) +
886 1.1 drochner (c - '0');
887 1.1 drochner break;
888 1.19 junyoung case ';': /* argument terminator */
889 1.1 drochner edp->nargs++;
890 1.1 drochner break;
891 1.19 junyoung case '?': /* DEC specific */
892 1.19 junyoung case '>': /* DA query */
893 1.3 drochner edp->modif1 = c;
894 1.1 drochner break;
895 1.19 junyoung case '!':
896 1.19 junyoung case '"':
897 1.19 junyoung case '$':
898 1.19 junyoung case '&':
899 1.3 drochner edp->modif2 = c;
900 1.1 drochner break;
901 1.19 junyoung default: /* end of escape sequence */
902 1.1 drochner edp->nargs++;
903 1.1 drochner if (edp->nargs > VT100_EMUL_NARGS) {
904 1.1 drochner #ifdef VT100_DEBUG
905 1.1 drochner printf("vt100: too many arguments\n");
906 1.1 drochner #endif
907 1.1 drochner edp->nargs = VT100_EMUL_NARGS;
908 1.1 drochner }
909 1.1 drochner wsemul_vt100_handle_csi(edp, c);
910 1.1 drochner newstate = VT100_EMUL_STATE_NORMAL;
911 1.1 drochner break;
912 1.1 drochner }
913 1.1 drochner return (newstate);
914 1.1 drochner }
915 1.1 drochner
916 1.1 drochner void
917 1.15 augustss wsemul_vt100_output(void *cookie, const u_char *data, u_int count, int kernel)
918 1.1 drochner {
919 1.1 drochner struct wsemul_vt100_emuldata *edp = cookie;
920 1.1 drochner
921 1.1 drochner #ifdef DIAGNOSTIC
922 1.1 drochner if (kernel && !edp->console)
923 1.1 drochner panic("wsemul_vt100_output: kernel output, not console");
924 1.1 drochner #endif
925 1.1 drochner
926 1.12 mycroft if (edp->flags & VTFL_CURSORON)
927 1.12 mycroft (*edp->emulops->cursor)(edp->emulcookie, 0,
928 1.12 mycroft edp->crow, edp->ccol << edp->dw);
929 1.1 drochner for (; count > 0; data++, count--) {
930 1.7 drochner if ((*data & 0x7f) < 0x20) {
931 1.7 drochner wsemul_vt100_output_c0c1(edp, *data, kernel);
932 1.7 drochner continue;
933 1.7 drochner }
934 1.1 drochner if (edp->state == VT100_EMUL_STATE_NORMAL || kernel) {
935 1.7 drochner wsemul_vt100_output_normal(edp, *data, kernel);
936 1.1 drochner continue;
937 1.1 drochner }
938 1.1 drochner #ifdef DIAGNOSTIC
939 1.1 drochner if (edp->state > sizeof(vt100_output) / sizeof(vt100_output[0]))
940 1.20 provos panic("wsemul_vt100: invalid state %d", edp->state);
941 1.1 drochner #endif
942 1.1 drochner edp->state = vt100_output[edp->state - 1](edp, *data);
943 1.1 drochner }
944 1.12 mycroft if (edp->flags & VTFL_CURSORON)
945 1.12 mycroft (*edp->emulops->cursor)(edp->emulcookie, 1,
946 1.12 mycroft edp->crow, edp->ccol << edp->dw);
947 1.1 drochner }
948