We shouldn't reference off the end of the display line when checking
[u/mdw/putty] / terminal.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <ctype.h>
4
5 #include <time.h>
6 #include <assert.h>
7 #include "putty.h"
8 #include "terminal.h"
9
10 #define poslt(p1,p2) ( (p1).y < (p2).y || ( (p1).y == (p2).y && (p1).x < (p2).x ) )
11 #define posle(p1,p2) ( (p1).y < (p2).y || ( (p1).y == (p2).y && (p1).x <= (p2).x ) )
12 #define poseq(p1,p2) ( (p1).y == (p2).y && (p1).x == (p2).x )
13 #define posdiff(p1,p2) ( ((p1).y - (p2).y) * (term->cols+1) + (p1).x - (p2).x )
14
15 /* Product-order comparisons for rectangular block selection. */
16 #define posPlt(p1,p2) ( (p1).y <= (p2).y && (p1).x < (p2).x )
17 #define posPle(p1,p2) ( (p1).y <= (p2).y && (p1).x <= (p2).x )
18
19 #define incpos(p) ( (p).x == term->cols ? ((p).x = 0, (p).y++, 1) : ((p).x++, 0) )
20 #define decpos(p) ( (p).x == 0 ? ((p).x = term->cols, (p).y--, 1) : ((p).x--, 0) )
21
22 #define VT52_PLUS
23
24 #define CL_ANSIMIN 0x0001 /* Codes in all ANSI like terminals. */
25 #define CL_VT100 0x0002 /* VT100 */
26 #define CL_VT100AVO 0x0004 /* VT100 +AVO; 132x24 (not 132x14) & attrs */
27 #define CL_VT102 0x0008 /* VT102 */
28 #define CL_VT220 0x0010 /* VT220 */
29 #define CL_VT320 0x0020 /* VT320 */
30 #define CL_VT420 0x0040 /* VT420 */
31 #define CL_VT510 0x0080 /* VT510, NB VT510 includes ANSI */
32 #define CL_VT340TEXT 0x0100 /* VT340 extensions that appear in the VT420 */
33 #define CL_SCOANSI 0x1000 /* SCOANSI not in ANSIMIN. */
34 #define CL_ANSI 0x2000 /* ANSI ECMA-48 not in the VT100..VT420 */
35 #define CL_OTHER 0x4000 /* Others, Xterm, linux, putty, dunno, etc */
36
37 #define TM_VT100 (CL_ANSIMIN|CL_VT100)
38 #define TM_VT100AVO (TM_VT100|CL_VT100AVO)
39 #define TM_VT102 (TM_VT100AVO|CL_VT102)
40 #define TM_VT220 (TM_VT102|CL_VT220)
41 #define TM_VTXXX (TM_VT220|CL_VT340TEXT|CL_VT510|CL_VT420|CL_VT320)
42 #define TM_SCOANSI (CL_ANSIMIN|CL_SCOANSI)
43
44 #define TM_PUTTY (0xFFFF)
45
46 #define compatibility(x) \
47 if ( ((CL_##x)&term->compatibility_level) == 0 ) { \
48 term->termstate=TOPLEVEL; \
49 break; \
50 }
51 #define compatibility2(x,y) \
52 if ( ((CL_##x|CL_##y)&term->compatibility_level) == 0 ) { \
53 term->termstate=TOPLEVEL; \
54 break; \
55 }
56
57 #define has_compat(x) ( ((CL_##x)&term->compatibility_level) != 0 )
58
59 const char sco2ansicolour[] = { 0, 4, 2, 6, 1, 5, 3, 7 };
60
61 #define sel_nl_sz (sizeof(sel_nl)/sizeof(wchar_t))
62 const wchar_t sel_nl[] = SEL_NL;
63
64 /*
65 * Fetch the character at a particular position in a line array,
66 * for purposes of `wordtype'. The reason this isn't just a simple
67 * array reference is that if the character we find is UCSWIDE,
68 * then we must look one space further to the left.
69 */
70 #define UCSGET(a, x) \
71 ( (x)>0 && ((a)[(x)] & (CHAR_MASK | CSET_MASK)) == UCSWIDE ? \
72 (a)[(x)-1] : (a)[(x)] )
73
74 /*
75 * Internal prototypes.
76 */
77 static unsigned long *resizeline(unsigned long *, int);
78 static unsigned long *lineptr(Terminal *, int, int);
79 static void do_paint(Terminal *, Context, int);
80 static void erase_lots(Terminal *, int, int, int);
81 static void swap_screen(Terminal *, int, int, int);
82 static void update_sbar(Terminal *);
83 static void deselect(Terminal *);
84 static void term_print_finish(Terminal *);
85 #ifdef OPTIMISE_SCROLL
86 static void scroll_display(Terminal *, int, int, int);
87 #endif /* OPTIMISE_SCROLL */
88
89 /*
90 * Resize a line to make it `cols' columns wide.
91 */
92 static unsigned long *resizeline(unsigned long *line, int cols)
93 {
94 int i, oldlen;
95 unsigned long lineattrs;
96
97 if (line[0] != (unsigned long)cols) {
98 /*
99 * This line is the wrong length, which probably means it
100 * hasn't been accessed since a resize. Resize it now.
101 */
102 oldlen = line[0];
103 lineattrs = line[oldlen + 1];
104 line = sresize(line, 2 + cols, TTYPE);
105 line[0] = cols;
106 for (i = oldlen; i < cols; i++)
107 line[i + 1] = ERASE_CHAR;
108 line[cols + 1] = lineattrs & LATTR_MODE;
109 }
110
111 return line;
112 }
113
114 /*
115 * Get the number of lines in the scrollback.
116 */
117 static int sblines(Terminal *term)
118 {
119 int sblines = count234(term->scrollback);
120 if (term->cfg.erase_to_scrollback &&
121 term->alt_which && term->alt_screen) {
122 sblines += term->alt_sblines;
123 }
124 return sblines;
125 }
126
127 /*
128 * Retrieve a line of the screen or of the scrollback, according to
129 * whether the y coordinate is non-negative or negative
130 * (respectively).
131 */
132 static unsigned long *lineptr(Terminal *term, int y, int lineno)
133 {
134 unsigned long *line, *newline;
135 tree234 *whichtree;
136 int treeindex;
137
138 if (y >= 0) {
139 whichtree = term->screen;
140 treeindex = y;
141 } else {
142 int altlines = 0;
143 if (term->cfg.erase_to_scrollback &&
144 term->alt_which && term->alt_screen) {
145 altlines = term->alt_sblines;
146 }
147 if (y < -altlines) {
148 whichtree = term->scrollback;
149 treeindex = y + altlines + count234(term->scrollback);
150 } else {
151 whichtree = term->alt_screen;
152 treeindex = y + term->alt_sblines;
153 /* treeindex = y + count234(term->alt_screen); */
154 }
155 }
156 line = index234(whichtree, treeindex);
157
158 /* We assume that we don't screw up and retrieve something out of range. */
159 assert(line != NULL);
160
161 newline = resizeline(line, term->cols);
162 if (newline != line) {
163 delpos234(whichtree, treeindex);
164 addpos234(whichtree, newline, treeindex);
165 line = newline;
166 }
167
168 return line + 1;
169 }
170
171 #define lineptr(x) lineptr(term,x,__LINE__)
172
173 /*
174 * Set up power-on settings for the terminal.
175 */
176 static void power_on(Terminal *term)
177 {
178 term->curs.x = term->curs.y = 0;
179 term->alt_x = term->alt_y = 0;
180 term->savecurs.x = term->savecurs.y = 0;
181 term->alt_t = term->marg_t = 0;
182 if (term->rows != -1)
183 term->alt_b = term->marg_b = term->rows - 1;
184 else
185 term->alt_b = term->marg_b = 0;
186 if (term->cols != -1) {
187 int i;
188 for (i = 0; i < term->cols; i++)
189 term->tabs[i] = (i % 8 == 0 ? TRUE : FALSE);
190 }
191 term->alt_om = term->dec_om = term->cfg.dec_om;
192 term->alt_ins = term->insert = FALSE;
193 term->alt_wnext = term->wrapnext = term->save_wnext = FALSE;
194 term->alt_wrap = term->wrap = term->cfg.wrap_mode;
195 term->alt_cset = term->cset = term->save_cset = 0;
196 term->alt_utf = term->utf = term->save_utf = 0;
197 term->utf_state = 0;
198 term->alt_sco_acs = term->sco_acs = term->save_sco_acs = 0;
199 term->cset_attr[0] = term->cset_attr[1] = term->save_csattr = ATTR_ASCII;
200 term->rvideo = 0;
201 term->in_vbell = FALSE;
202 term->cursor_on = 1;
203 term->big_cursor = 0;
204 term->default_attr = term->save_attr = term->curr_attr = ATTR_DEFAULT;
205 term->term_editing = term->term_echoing = FALSE;
206 term->app_cursor_keys = term->cfg.app_cursor;
207 term->app_keypad_keys = term->cfg.app_keypad;
208 term->use_bce = term->cfg.bce;
209 term->blink_is_real = term->cfg.blinktext;
210 term->erase_char = ERASE_CHAR;
211 term->alt_which = 0;
212 term_print_finish(term);
213 {
214 int i;
215 for (i = 0; i < 256; i++)
216 term->wordness[i] = term->cfg.wordness[i];
217 }
218 if (term->screen) {
219 swap_screen(term, 1, FALSE, FALSE);
220 erase_lots(term, FALSE, TRUE, TRUE);
221 swap_screen(term, 0, FALSE, FALSE);
222 erase_lots(term, FALSE, TRUE, TRUE);
223 }
224 }
225
226 /*
227 * Force a screen update.
228 */
229 void term_update(Terminal *term)
230 {
231 Context ctx;
232 ctx = get_ctx(term->frontend);
233 if (ctx) {
234 int need_sbar_update = term->seen_disp_event;
235 if (term->seen_disp_event && term->cfg.scroll_on_disp) {
236 term->disptop = 0; /* return to main screen */
237 term->seen_disp_event = 0;
238 need_sbar_update = TRUE;
239 }
240
241 /* Allocate temporary buffers for Arabic shaping and bidi. */
242 if (!term->cfg.arabicshaping || !term->cfg.bidi)
243 {
244 term->wcFrom = sresize(term->wcFrom, term->cols, bidi_char);
245 term->ltemp = sresize(term->ltemp, term->cols+1, unsigned long);
246 term->wcTo = sresize(term->wcTo, term->cols, bidi_char);
247 }
248
249 if (need_sbar_update)
250 update_sbar(term);
251 do_paint(term, ctx, TRUE);
252 sys_cursor(term->frontend, term->curs.x, term->curs.y - term->disptop);
253 free_ctx(ctx);
254 }
255 }
256
257 /*
258 * Called from front end when a keypress occurs, to trigger
259 * anything magical that needs to happen in that situation.
260 */
261 void term_seen_key_event(Terminal *term)
262 {
263 /*
264 * On any keypress, clear the bell overload mechanism
265 * completely, on the grounds that large numbers of
266 * beeps coming from deliberate key action are likely
267 * to be intended (e.g. beeps from filename completion
268 * blocking repeatedly).
269 */
270 term->beep_overloaded = FALSE;
271 while (term->beephead) {
272 struct beeptime *tmp = term->beephead;
273 term->beephead = tmp->next;
274 sfree(tmp);
275 }
276 term->beeptail = NULL;
277 term->nbeeps = 0;
278
279 /*
280 * Reset the scrollback on keypress, if we're doing that.
281 */
282 if (term->cfg.scroll_on_key) {
283 term->disptop = 0; /* return to main screen */
284 term->seen_disp_event = 1;
285 }
286 }
287
288 /*
289 * Same as power_on(), but an external function.
290 */
291 void term_pwron(Terminal *term)
292 {
293 power_on(term);
294 if (term->ldisc) /* cause ldisc to notice changes */
295 ldisc_send(term->ldisc, NULL, 0, 0);
296 fix_cpos;
297 term->disptop = 0;
298 deselect(term);
299 term_update(term);
300 }
301
302 /*
303 * When the user reconfigures us, we need to check the forbidden-
304 * alternate-screen config option, disable raw mouse mode if the
305 * user has disabled mouse reporting, and abandon a print job if
306 * the user has disabled printing.
307 */
308 void term_reconfig(Terminal *term, Config *cfg)
309 {
310 /*
311 * Before adopting the new config, check all those terminal
312 * settings which control power-on defaults; and if they've
313 * changed, we will modify the current state as well as the
314 * default one. The full list is: Auto wrap mode, DEC Origin
315 * Mode, BCE, blinking text, character classes.
316 */
317 int reset_wrap, reset_decom, reset_bce, reset_blink, reset_charclass;
318 int i;
319
320 reset_wrap = (term->cfg.wrap_mode != cfg->wrap_mode);
321 reset_decom = (term->cfg.dec_om != cfg->dec_om);
322 reset_bce = (term->cfg.bce != cfg->bce);
323 reset_blink = (term->cfg.blinktext != cfg->blinktext);
324 reset_charclass = 0;
325 for (i = 0; i < lenof(term->cfg.wordness); i++)
326 if (term->cfg.wordness[i] != cfg->wordness[i])
327 reset_charclass = 1;
328
329 term->cfg = *cfg; /* STRUCTURE COPY */
330
331 if (reset_wrap)
332 term->alt_wrap = term->wrap = term->cfg.wrap_mode;
333 if (reset_decom)
334 term->alt_om = term->dec_om = term->cfg.dec_om;
335 if (reset_bce) {
336 term->use_bce = term->cfg.bce;
337 if (term->use_bce)
338 term->erase_char = (' ' | ATTR_ASCII |
339 (term->curr_attr &
340 (ATTR_FGMASK | ATTR_BGMASK)));
341 else
342 term->erase_char = ERASE_CHAR;
343 }
344 if (reset_blink)
345 term->blink_is_real = term->cfg.blinktext;
346 if (reset_charclass)
347 for (i = 0; i < 256; i++)
348 term->wordness[i] = term->cfg.wordness[i];
349
350 if (term->cfg.no_alt_screen)
351 swap_screen(term, 0, FALSE, FALSE);
352 if (term->cfg.no_mouse_rep) {
353 term->xterm_mouse = 0;
354 set_raw_mouse_mode(term->frontend, 0);
355 }
356 if (term->cfg.no_remote_charset) {
357 term->cset_attr[0] = term->cset_attr[1] = ATTR_ASCII;
358 term->sco_acs = term->alt_sco_acs = 0;
359 term->utf = 0;
360 }
361 if (!*term->cfg.printer) {
362 term_print_finish(term);
363 }
364 }
365
366 /*
367 * Clear the scrollback.
368 */
369 void term_clrsb(Terminal *term)
370 {
371 unsigned long *line;
372 term->disptop = 0;
373 while ((line = delpos234(term->scrollback, 0)) != NULL) {
374 sfree(line);
375 }
376 term->tempsblines = 0;
377 term->alt_sblines = 0;
378 update_sbar(term);
379 }
380
381 /*
382 * Initialise the terminal.
383 */
384 Terminal *term_init(Config *mycfg, struct unicode_data *ucsdata,
385 void *frontend)
386 {
387 Terminal *term;
388
389 /*
390 * Allocate a new Terminal structure and initialise the fields
391 * that need it.
392 */
393 term = snew(Terminal);
394 term->frontend = frontend;
395 term->ucsdata = ucsdata;
396 term->cfg = *mycfg; /* STRUCTURE COPY */
397 term->logctx = NULL;
398 term->compatibility_level = TM_PUTTY;
399 strcpy(term->id_string, "\033[?6c");
400 term->last_blink = term->last_tblink = 0;
401 term->paste_buffer = NULL;
402 term->paste_len = 0;
403 term->last_paste = 0;
404 bufchain_init(&term->inbuf);
405 bufchain_init(&term->printer_buf);
406 term->printing = term->only_printing = FALSE;
407 term->print_job = NULL;
408 term->vt52_mode = FALSE;
409 term->cr_lf_return = FALSE;
410 term->seen_disp_event = FALSE;
411 term->xterm_mouse = term->mouse_is_down = FALSE;
412 term->reset_132 = FALSE;
413 term->blinker = term->tblinker = 0;
414 term->has_focus = 1;
415 term->repeat_off = FALSE;
416 term->termstate = TOPLEVEL;
417 term->selstate = NO_SELECTION;
418 term->curstype = 0;
419
420 term->screen = term->alt_screen = term->scrollback = NULL;
421 term->tempsblines = 0;
422 term->alt_sblines = 0;
423 term->disptop = 0;
424 term->disptext = term->dispcurs = NULL;
425 term->tabs = NULL;
426 deselect(term);
427 term->rows = term->cols = -1;
428 power_on(term);
429 term->beephead = term->beeptail = NULL;
430 #ifdef OPTIMISE_SCROLL
431 term->scrollhead = term->scrolltail = NULL;
432 #endif /* OPTIMISE_SCROLL */
433 term->nbeeps = 0;
434 term->lastbeep = FALSE;
435 term->beep_overloaded = FALSE;
436 term->attr_mask = 0xffffffff;
437 term->resize_fn = NULL;
438 term->resize_ctx = NULL;
439 term->in_term_out = FALSE;
440 term->ltemp = NULL;
441 term->wcFrom = NULL;
442 term->wcTo = NULL;
443
444 term->bidi_cache_size = 0;
445 term->pre_bidi_cache = term->post_bidi_cache = NULL;
446
447 return term;
448 }
449
450 void term_free(Terminal *term)
451 {
452 unsigned long *line;
453 struct beeptime *beep;
454 int i;
455
456 while ((line = delpos234(term->scrollback, 0)) != NULL)
457 sfree(line);
458 freetree234(term->scrollback);
459 while ((line = delpos234(term->screen, 0)) != NULL)
460 sfree(line);
461 freetree234(term->screen);
462 while ((line = delpos234(term->alt_screen, 0)) != NULL)
463 sfree(line);
464 freetree234(term->alt_screen);
465 sfree(term->disptext);
466 while (term->beephead) {
467 beep = term->beephead;
468 term->beephead = beep->next;
469 sfree(beep);
470 }
471 bufchain_clear(&term->inbuf);
472 if(term->print_job)
473 printer_finish_job(term->print_job);
474 bufchain_clear(&term->printer_buf);
475 sfree(term->paste_buffer);
476 sfree(term->ltemp);
477 sfree(term->wcFrom);
478 sfree(term->wcTo);
479
480 for (i = 0; i < term->bidi_cache_size; i++) {
481 sfree(term->pre_bidi_cache[i]);
482 sfree(term->post_bidi_cache[i]);
483 }
484 sfree(term->pre_bidi_cache);
485 sfree(term->post_bidi_cache);
486
487 sfree(term);
488 }
489
490 /*
491 * Set up the terminal for a given size.
492 */
493 void term_size(Terminal *term, int newrows, int newcols, int newsavelines)
494 {
495 tree234 *newalt;
496 unsigned long *newdisp, *line;
497 int i, j;
498 int sblen;
499 int save_alt_which = term->alt_which;
500
501 if (newrows == term->rows && newcols == term->cols &&
502 newsavelines == term->savelines)
503 return; /* nothing to do */
504
505 deselect(term);
506 swap_screen(term, 0, FALSE, FALSE);
507
508 term->alt_t = term->marg_t = 0;
509 term->alt_b = term->marg_b = newrows - 1;
510
511 if (term->rows == -1) {
512 term->scrollback = newtree234(NULL);
513 term->screen = newtree234(NULL);
514 term->tempsblines = 0;
515 term->rows = 0;
516 }
517
518 /*
519 * Resize the screen and scrollback. We only need to shift
520 * lines around within our data structures, because lineptr()
521 * will take care of resizing each individual line if
522 * necessary. So:
523 *
524 * - If the new screen is longer, we shunt lines in from temporary
525 * scrollback if possible, otherwise we add new blank lines at
526 * the bottom.
527 *
528 * - If the new screen is shorter, we remove any blank lines at
529 * the bottom if possible, otherwise shunt lines above the cursor
530 * to scrollback if possible, otherwise delete lines below the
531 * cursor.
532 *
533 * - Then, if the new scrollback length is less than the
534 * amount of scrollback we actually have, we must throw some
535 * away.
536 */
537 sblen = count234(term->scrollback);
538 /* Do this loop to expand the screen if newrows > rows */
539 assert(term->rows == count234(term->screen));
540 while (term->rows < newrows) {
541 if (term->tempsblines > 0) {
542 /* Insert a line from the scrollback at the top of the screen. */
543 assert(sblen >= term->tempsblines);
544 line = delpos234(term->scrollback, --sblen);
545 term->tempsblines -= 1;
546 addpos234(term->screen, line, 0);
547 term->curs.y += 1;
548 term->savecurs.y += 1;
549 } else {
550 /* Add a new blank line at the bottom of the screen. */
551 line = snewn(newcols + 2, TTYPE);
552 line[0] = newcols;
553 for (j = 0; j < newcols; j++)
554 line[j + 1] = ERASE_CHAR;
555 line[newcols + 1] = LATTR_NORM;
556 addpos234(term->screen, line, count234(term->screen));
557 }
558 term->rows += 1;
559 }
560 /* Do this loop to shrink the screen if newrows < rows */
561 while (term->rows > newrows) {
562 if (term->curs.y < term->rows - 1) {
563 /* delete bottom row, unless it contains the cursor */
564 sfree(delpos234(term->screen, term->rows - 1));
565 } else {
566 /* push top row to scrollback */
567 line = delpos234(term->screen, 0);
568 addpos234(term->scrollback, line, sblen++);
569 term->tempsblines += 1;
570 term->curs.y -= 1;
571 term->savecurs.y -= 1;
572 }
573 term->rows -= 1;
574 }
575 assert(term->rows == newrows);
576 assert(count234(term->screen) == newrows);
577
578 /* Delete any excess lines from the scrollback. */
579 while (sblen > newsavelines) {
580 line = delpos234(term->scrollback, 0);
581 sfree(line);
582 sblen--;
583 }
584 if (sblen < term->tempsblines)
585 term->tempsblines = sblen;
586 assert(count234(term->scrollback) <= newsavelines);
587 assert(count234(term->scrollback) >= term->tempsblines);
588 term->disptop = 0;
589
590 /* Make a new displayed text buffer. */
591 newdisp = snewn(newrows * (newcols + 1), TTYPE);
592 for (i = 0; i < newrows * (newcols + 1); i++)
593 newdisp[i] = ATTR_INVALID;
594 sfree(term->disptext);
595 term->disptext = newdisp;
596 term->dispcurs = NULL;
597
598 /* Make a new alternate screen. */
599 newalt = newtree234(NULL);
600 for (i = 0; i < newrows; i++) {
601 line = snewn(newcols + 2, TTYPE);
602 line[0] = newcols;
603 for (j = 0; j < newcols; j++)
604 line[j + 1] = term->erase_char;
605 line[newcols + 1] = LATTR_NORM;
606 addpos234(newalt, line, i);
607 }
608 if (term->alt_screen) {
609 while (NULL != (line = delpos234(term->alt_screen, 0)))
610 sfree(line);
611 freetree234(term->alt_screen);
612 }
613 term->alt_screen = newalt;
614 term->alt_sblines = 0;
615
616 term->tabs = sresize(term->tabs, newcols, unsigned char);
617 {
618 int i;
619 for (i = (term->cols > 0 ? term->cols : 0); i < newcols; i++)
620 term->tabs[i] = (i % 8 == 0 ? TRUE : FALSE);
621 }
622
623 /* Check that the cursor positions are still valid. */
624 if (term->savecurs.y < 0)
625 term->savecurs.y = 0;
626 if (term->savecurs.y >= newrows)
627 term->savecurs.y = newrows - 1;
628 if (term->curs.y < 0)
629 term->curs.y = 0;
630 if (term->curs.y >= newrows)
631 term->curs.y = newrows - 1;
632 if (term->curs.x >= newcols)
633 term->curs.x = newcols - 1;
634 term->alt_x = term->alt_y = 0;
635 term->wrapnext = term->alt_wnext = FALSE;
636
637 term->rows = newrows;
638 term->cols = newcols;
639 term->savelines = newsavelines;
640 fix_cpos;
641
642 swap_screen(term, save_alt_which, FALSE, FALSE);
643
644 update_sbar(term);
645 term_update(term);
646 if (term->resize_fn)
647 term->resize_fn(term->resize_ctx, term->cols, term->rows);
648 }
649
650 /*
651 * Hand a function and context pointer to the terminal which it can
652 * use to notify a back end of resizes.
653 */
654 void term_provide_resize_fn(Terminal *term,
655 void (*resize_fn)(void *, int, int),
656 void *resize_ctx)
657 {
658 term->resize_fn = resize_fn;
659 term->resize_ctx = resize_ctx;
660 if (term->cols > 0 && term->rows > 0)
661 resize_fn(resize_ctx, term->cols, term->rows);
662 }
663
664 /* Find the bottom line on the screen that has any content.
665 * If only the top line has content, returns 0.
666 * If no lines have content, return -1.
667 */
668 static int find_last_nonempty_line(Terminal * term, tree234 * screen)
669 {
670 int i;
671 for (i = count234(screen) - 1; i >= 0; i--) {
672 unsigned long *line = index234(screen, i);
673 int j;
674 int cols = line[0];
675 for (j = 0; j < cols; j++) {
676 if (line[j + 1] != term->erase_char) break;
677 }
678 if (j != cols) break;
679 }
680 return i;
681 }
682
683 /*
684 * Swap screens. If `reset' is TRUE and we have been asked to
685 * switch to the alternate screen, we must bring most of its
686 * configuration from the main screen and erase the contents of the
687 * alternate screen completely. (This is even true if we're already
688 * on it! Blame xterm.)
689 */
690 static void swap_screen(Terminal *term, int which, int reset, int keep_cur_pos)
691 {
692 int t;
693 tree234 *ttr;
694
695 if (!which)
696 reset = FALSE; /* do no weird resetting if which==0 */
697
698 if (which != term->alt_which) {
699 term->alt_which = which;
700
701 ttr = term->alt_screen;
702 term->alt_screen = term->screen;
703 term->screen = ttr;
704 term->alt_sblines = find_last_nonempty_line(term, term->alt_screen) + 1;
705 t = term->curs.x;
706 if (!reset && !keep_cur_pos)
707 term->curs.x = term->alt_x;
708 term->alt_x = t;
709 t = term->curs.y;
710 if (!reset && !keep_cur_pos)
711 term->curs.y = term->alt_y;
712 term->alt_y = t;
713 t = term->marg_t;
714 if (!reset) term->marg_t = term->alt_t;
715 term->alt_t = t;
716 t = term->marg_b;
717 if (!reset) term->marg_b = term->alt_b;
718 term->alt_b = t;
719 t = term->dec_om;
720 if (!reset) term->dec_om = term->alt_om;
721 term->alt_om = t;
722 t = term->wrap;
723 if (!reset) term->wrap = term->alt_wrap;
724 term->alt_wrap = t;
725 t = term->wrapnext;
726 if (!reset) term->wrapnext = term->alt_wnext;
727 term->alt_wnext = t;
728 t = term->insert;
729 if (!reset) term->insert = term->alt_ins;
730 term->alt_ins = t;
731 t = term->cset;
732 if (!reset) term->cset = term->alt_cset;
733 term->alt_cset = t;
734 t = term->utf;
735 if (!reset) term->utf = term->alt_utf;
736 term->alt_utf = t;
737 t = term->sco_acs;
738 if (!reset) term->sco_acs = term->alt_sco_acs;
739 term->alt_sco_acs = t;
740 }
741
742 if (reset && term->screen) {
743 /*
744 * Yes, this _is_ supposed to honour background-colour-erase.
745 */
746 erase_lots(term, FALSE, TRUE, TRUE);
747 }
748
749 /*
750 * This might not be possible if we're called during
751 * initialisation.
752 */
753 if (term->screen)
754 fix_cpos;
755 }
756
757 /*
758 * Update the scroll bar.
759 */
760 static void update_sbar(Terminal *term)
761 {
762 int nscroll = sblines(term);
763 set_sbar(term->frontend, nscroll + term->rows,
764 nscroll + term->disptop, term->rows);
765 }
766
767 /*
768 * Check whether the region bounded by the two pointers intersects
769 * the scroll region, and de-select the on-screen selection if so.
770 */
771 static void check_selection(Terminal *term, pos from, pos to)
772 {
773 if (poslt(from, term->selend) && poslt(term->selstart, to))
774 deselect(term);
775 }
776
777 /*
778 * Scroll the screen. (`lines' is +ve for scrolling forward, -ve
779 * for backward.) `sb' is TRUE if the scrolling is permitted to
780 * affect the scrollback buffer.
781 *
782 * NB this function invalidates all pointers into lines of the
783 * screen data structures. In particular, you MUST call fix_cpos
784 * after calling scroll() and before doing anything else that
785 * uses the cpos shortcut pointer.
786 */
787 static void scroll(Terminal *term, int topline, int botline, int lines, int sb)
788 {
789 unsigned long *line, *line2;
790 int i, seltop, olddisptop, shift;
791
792 if (topline != 0 || term->alt_which != 0)
793 sb = FALSE;
794
795 olddisptop = term->disptop;
796 shift = lines;
797 if (lines < 0) {
798 while (lines < 0) {
799 line = delpos234(term->screen, botline);
800 line = resizeline(line, term->cols);
801 for (i = 0; i < term->cols; i++)
802 line[i + 1] = term->erase_char;
803 line[term->cols + 1] = 0;
804 addpos234(term->screen, line, topline);
805
806 if (term->selstart.y >= topline && term->selstart.y <= botline) {
807 term->selstart.y++;
808 if (term->selstart.y > botline) {
809 term->selstart.y = botline + 1;
810 term->selstart.x = 0;
811 }
812 }
813 if (term->selend.y >= topline && term->selend.y <= botline) {
814 term->selend.y++;
815 if (term->selend.y > botline) {
816 term->selend.y = botline + 1;
817 term->selend.x = 0;
818 }
819 }
820
821 lines++;
822 }
823 } else {
824 while (lines > 0) {
825 line = delpos234(term->screen, topline);
826 if (sb && term->savelines > 0) {
827 int sblen = count234(term->scrollback);
828 /*
829 * We must add this line to the scrollback. We'll
830 * remove a line from the top of the scrollback to
831 * replace it, or allocate a new one if the
832 * scrollback isn't full.
833 */
834 if (sblen == term->savelines) {
835 sblen--, line2 = delpos234(term->scrollback, 0);
836 } else {
837 line2 = snewn(term->cols + 2, TTYPE);
838 line2[0] = term->cols;
839 term->tempsblines += 1;
840 }
841 addpos234(term->scrollback, line, sblen);
842 line = line2;
843
844 /*
845 * If the user is currently looking at part of the
846 * scrollback, and they haven't enabled any options
847 * that are going to reset the scrollback as a
848 * result of this movement, then the chances are
849 * they'd like to keep looking at the same line. So
850 * we move their viewpoint at the same rate as the
851 * scroll, at least until their viewpoint hits the
852 * top end of the scrollback buffer, at which point
853 * we don't have the choice any more.
854 *
855 * Thanks to Jan Holmen Holsten for the idea and
856 * initial implementation.
857 */
858 if (term->disptop > -term->savelines && term->disptop < 0)
859 term->disptop--;
860 }
861 line = resizeline(line, term->cols);
862 for (i = 0; i < term->cols; i++)
863 line[i + 1] = term->erase_char;
864 line[term->cols + 1] = LATTR_NORM;
865 addpos234(term->screen, line, botline);
866
867 /*
868 * If the selection endpoints move into the scrollback,
869 * we keep them moving until they hit the top. However,
870 * of course, if the line _hasn't_ moved into the
871 * scrollback then we don't do this, and cut them off
872 * at the top of the scroll region.
873 *
874 * This applies to selstart and selend (for an existing
875 * selection), and also selanchor (for one being
876 * selected as we speak).
877 */
878 seltop = sb ? -term->savelines : topline;
879
880 if (term->selstate != NO_SELECTION) {
881 if (term->selstart.y >= seltop &&
882 term->selstart.y <= botline) {
883 term->selstart.y--;
884 if (term->selstart.y < seltop) {
885 term->selstart.y = seltop;
886 term->selstart.x = 0;
887 }
888 }
889 if (term->selend.y >= seltop && term->selend.y <= botline) {
890 term->selend.y--;
891 if (term->selend.y < seltop) {
892 term->selend.y = seltop;
893 term->selend.x = 0;
894 }
895 }
896 if (term->selanchor.y >= seltop &&
897 term->selanchor.y <= botline) {
898 term->selanchor.y--;
899 if (term->selanchor.y < seltop) {
900 term->selanchor.y = seltop;
901 term->selanchor.x = 0;
902 }
903 }
904 }
905
906 lines--;
907 }
908 }
909 #ifdef OPTIMISE_SCROLL
910 shift += term->disptop - olddisptop;
911 if (shift < term->rows && shift > -term->rows && shift != 0)
912 scroll_display(term, topline, botline, shift);
913 #endif /* OPTIMISE_SCROLL */
914 }
915
916 #ifdef OPTIMISE_SCROLL
917 /*
918 * Add a scroll of a region on the screen into the pending scroll list.
919 * `lines' is +ve for scrolling forward, -ve for backward.
920 *
921 * If the scroll is on the same area as the last scroll in the list,
922 * merge them.
923 */
924 static void save_scroll(Terminal *term, int topline, int botline, int lines)
925 {
926 struct scrollregion *newscroll;
927 if (term->scrolltail &&
928 term->scrolltail->topline == topline &&
929 term->scrolltail->botline == botline) {
930 term->scrolltail->lines += lines;
931 } else {
932 newscroll = snew(struct scrollregion);
933 newscroll->topline = topline;
934 newscroll->botline = botline;
935 newscroll->lines = lines;
936 newscroll->next = NULL;
937
938 if (!term->scrollhead)
939 term->scrollhead = newscroll;
940 else
941 term->scrolltail->next = newscroll;
942 term->scrolltail = newscroll;
943 }
944 }
945
946 /*
947 * Scroll the physical display, and our conception of it in disptext.
948 */
949 static void scroll_display(Terminal *term, int topline, int botline, int lines)
950 {
951 unsigned long *start, *end;
952 int distance, size, i;
953
954 start = term->disptext + topline * (term->cols + 1);
955 end = term->disptext + (botline + 1) * (term->cols + 1);
956 distance = (lines > 0 ? lines : -lines) * (term->cols + 1);
957 size = end - start - distance;
958 if (lines > 0) {
959 memmove(start, start + distance, size * TSIZE);
960 if (term->dispcurs >= start + distance &&
961 term->dispcurs <= start + distance + size)
962 term->dispcurs -= distance;
963 for (i = 0; i < distance; i++)
964 (start + size)[i] |= ATTR_INVALID;
965 } else {
966 memmove(start + distance, start, size * TSIZE);
967 if (term->dispcurs >= start && term->dispcurs <= start + size)
968 term->dispcurs += distance;
969 for (i = 0; i < distance; i++)
970 start[i] |= ATTR_INVALID;
971 }
972 save_scroll(term, topline, botline, lines);
973 }
974 #endif /* OPTIMISE_SCROLL */
975
976 /*
977 * Move the cursor to a given position, clipping at boundaries. We
978 * may or may not want to clip at the scroll margin: marg_clip is 0
979 * not to, 1 to disallow _passing_ the margins, and 2 to disallow
980 * even _being_ outside the margins.
981 */
982 static void move(Terminal *term, int x, int y, int marg_clip)
983 {
984 if (x < 0)
985 x = 0;
986 if (x >= term->cols)
987 x = term->cols - 1;
988 if (marg_clip) {
989 if ((term->curs.y >= term->marg_t || marg_clip == 2) &&
990 y < term->marg_t)
991 y = term->marg_t;
992 if ((term->curs.y <= term->marg_b || marg_clip == 2) &&
993 y > term->marg_b)
994 y = term->marg_b;
995 }
996 if (y < 0)
997 y = 0;
998 if (y >= term->rows)
999 y = term->rows - 1;
1000 term->curs.x = x;
1001 term->curs.y = y;
1002 fix_cpos;
1003 term->wrapnext = FALSE;
1004 }
1005
1006 /*
1007 * Save or restore the cursor and SGR mode.
1008 */
1009 static void save_cursor(Terminal *term, int save)
1010 {
1011 if (save) {
1012 term->savecurs = term->curs;
1013 term->save_attr = term->curr_attr;
1014 term->save_cset = term->cset;
1015 term->save_utf = term->utf;
1016 term->save_wnext = term->wrapnext;
1017 term->save_csattr = term->cset_attr[term->cset];
1018 term->save_sco_acs = term->sco_acs;
1019 } else {
1020 term->curs = term->savecurs;
1021 /* Make sure the window hasn't shrunk since the save */
1022 if (term->curs.x >= term->cols)
1023 term->curs.x = term->cols - 1;
1024 if (term->curs.y >= term->rows)
1025 term->curs.y = term->rows - 1;
1026
1027 term->curr_attr = term->save_attr;
1028 term->cset = term->save_cset;
1029 term->utf = term->save_utf;
1030 term->wrapnext = term->save_wnext;
1031 /*
1032 * wrapnext might reset to False if the x position is no
1033 * longer at the rightmost edge.
1034 */
1035 if (term->wrapnext && term->curs.x < term->cols-1)
1036 term->wrapnext = FALSE;
1037 term->cset_attr[term->cset] = term->save_csattr;
1038 term->sco_acs = term->save_sco_acs;
1039 fix_cpos;
1040 if (term->use_bce)
1041 term->erase_char = (' ' | ATTR_ASCII |
1042 (term->curr_attr &
1043 (ATTR_FGMASK | ATTR_BGMASK)));
1044 }
1045 }
1046
1047 /*
1048 * This function is called before doing _anything_ which affects
1049 * only part of a line of text. It is used to mark the boundary
1050 * between two character positions, and it indicates that some sort
1051 * of effect is going to happen on only one side of that boundary.
1052 *
1053 * The effect of this function is to check whether a CJK
1054 * double-width character is straddling the boundary, and to remove
1055 * it and replace it with two spaces if so. (Of course, one or
1056 * other of those spaces is then likely to be replaced with
1057 * something else again, as a result of whatever happens next.)
1058 *
1059 * Also, if the boundary is at the right-hand _edge_ of the screen,
1060 * it implies something deliberate is being done to the rightmost
1061 * column position; hence we must clear LATTR_WRAPPED2.
1062 *
1063 * The input to the function is the coordinates of the _second_
1064 * character of the pair.
1065 */
1066 static void check_boundary(Terminal *term, int x, int y)
1067 {
1068 unsigned long *ldata;
1069
1070 /* Validate input coordinates, just in case. */
1071 if (x == 0 || x > term->cols)
1072 return;
1073
1074 ldata = lineptr(y);
1075 if (x == term->cols) {
1076 ldata[x] &= ~LATTR_WRAPPED2;
1077 } else {
1078 if ((ldata[x] & (CHAR_MASK | CSET_MASK)) == UCSWIDE) {
1079 ldata[x-1] = ldata[x] =
1080 (ldata[x-1] &~ (CHAR_MASK | CSET_MASK)) | ATTR_ASCII | ' ';
1081 }
1082 }
1083 }
1084
1085 /*
1086 * Erase a large portion of the screen: the whole screen, or the
1087 * whole line, or parts thereof.
1088 */
1089 static void erase_lots(Terminal *term,
1090 int line_only, int from_begin, int to_end)
1091 {
1092 pos start, end;
1093 int erase_lattr;
1094 int erasing_lines_from_top = 0;
1095
1096 if (line_only) {
1097 start.y = term->curs.y;
1098 start.x = 0;
1099 end.y = term->curs.y + 1;
1100 end.x = 0;
1101 erase_lattr = FALSE;
1102 } else {
1103 start.y = 0;
1104 start.x = 0;
1105 end.y = term->rows;
1106 end.x = 0;
1107 erase_lattr = TRUE;
1108 }
1109 if (!from_begin) {
1110 start = term->curs;
1111 }
1112 if (!to_end) {
1113 end = term->curs;
1114 incpos(end);
1115 }
1116 if (!from_begin || !to_end)
1117 check_boundary(term, term->curs.x, term->curs.y);
1118 check_selection(term, start, end);
1119
1120 /* Clear screen also forces a full window redraw, just in case. */
1121 if (start.y == 0 && start.x == 0 && end.y == term->rows)
1122 term_invalidate(term);
1123
1124 /* Lines scrolled away shouldn't be brought back on if the terminal
1125 * resizes. */
1126 if (start.y == 0 && start.x == 0 && end.x == 0 && erase_lattr)
1127 erasing_lines_from_top = 1;
1128
1129 if (term->cfg.erase_to_scrollback && erasing_lines_from_top) {
1130 /* If it's a whole number of lines, starting at the top, and
1131 * we're fully erasing them, erase by scrolling and keep the
1132 * lines in the scrollback. */
1133 int scrolllines = end.y;
1134 if (end.y == term->rows) {
1135 /* Shrink until we find a non-empty row.*/
1136 scrolllines = find_last_nonempty_line(term, term->screen) + 1;
1137 }
1138 if (scrolllines > 0)
1139 scroll(term, 0, scrolllines - 1, scrolllines, TRUE);
1140 fix_cpos;
1141 } else {
1142 unsigned long *ldata = lineptr(start.y);
1143 while (poslt(start, end)) {
1144 if (start.x == term->cols) {
1145 if (!erase_lattr)
1146 ldata[start.x] &= ~(LATTR_WRAPPED | LATTR_WRAPPED2);
1147 else
1148 ldata[start.x] = LATTR_NORM;
1149 } else {
1150 ldata[start.x] = term->erase_char;
1151 }
1152 if (incpos(start) && start.y < term->rows)
1153 ldata = lineptr(start.y);
1154 }
1155 }
1156
1157 /* After an erase of lines from the top of the screen, we shouldn't
1158 * bring the lines back again if the terminal enlarges (since the user or
1159 * application has explictly thrown them away). */
1160 if (erasing_lines_from_top && !(term->alt_which))
1161 term->tempsblines = 0;
1162 }
1163
1164 /*
1165 * Insert or delete characters within the current line. n is +ve if
1166 * insertion is desired, and -ve for deletion.
1167 */
1168 static void insch(Terminal *term, int n)
1169 {
1170 int dir = (n < 0 ? -1 : +1);
1171 int m;
1172 pos cursplus;
1173 unsigned long *ldata;
1174
1175 n = (n < 0 ? -n : n);
1176 if (n > term->cols - term->curs.x)
1177 n = term->cols - term->curs.x;
1178 m = term->cols - term->curs.x - n;
1179 cursplus.y = term->curs.y;
1180 cursplus.x = term->curs.x + n;
1181 check_selection(term, term->curs, cursplus);
1182 check_boundary(term, term->curs.x, term->curs.y);
1183 if (dir < 0)
1184 check_boundary(term, term->curs.x + n, term->curs.y);
1185 ldata = lineptr(term->curs.y);
1186 if (dir < 0) {
1187 memmove(ldata + term->curs.x, ldata + term->curs.x + n, m * TSIZE);
1188 while (n--)
1189 ldata[term->curs.x + m++] = term->erase_char;
1190 } else {
1191 memmove(ldata + term->curs.x + n, ldata + term->curs.x, m * TSIZE);
1192 while (n--)
1193 ldata[term->curs.x + n] = term->erase_char;
1194 }
1195 }
1196
1197 /*
1198 * Toggle terminal mode `mode' to state `state'. (`query' indicates
1199 * whether the mode is a DEC private one or a normal one.)
1200 */
1201 static void toggle_mode(Terminal *term, int mode, int query, int state)
1202 {
1203 unsigned long ticks;
1204
1205 if (query)
1206 switch (mode) {
1207 case 1: /* DECCKM: application cursor keys */
1208 term->app_cursor_keys = state;
1209 break;
1210 case 2: /* DECANM: VT52 mode */
1211 term->vt52_mode = !state;
1212 if (term->vt52_mode) {
1213 term->blink_is_real = FALSE;
1214 term->vt52_bold = FALSE;
1215 } else {
1216 term->blink_is_real = term->cfg.blinktext;
1217 }
1218 break;
1219 case 3: /* DECCOLM: 80/132 columns */
1220 deselect(term);
1221 if (!term->cfg.no_remote_resize)
1222 request_resize(term->frontend, state ? 132 : 80, term->rows);
1223 term->reset_132 = state;
1224 term->alt_t = term->marg_t = 0;
1225 term->alt_b = term->marg_b = term->rows - 1;
1226 move(term, 0, 0, 0);
1227 erase_lots(term, FALSE, TRUE, TRUE);
1228 break;
1229 case 5: /* DECSCNM: reverse video */
1230 /*
1231 * Toggle reverse video. If we receive an OFF within the
1232 * visual bell timeout period after an ON, we trigger an
1233 * effective visual bell, so that ESC[?5hESC[?5l will
1234 * always be an actually _visible_ visual bell.
1235 */
1236 ticks = GETTICKCOUNT();
1237 /* turn off a previous vbell to avoid inconsistencies */
1238 if (ticks - term->vbell_startpoint >= VBELL_TIMEOUT)
1239 term->in_vbell = FALSE;
1240 if (term->rvideo && !state && /* we're turning it off... */
1241 (ticks - term->rvbell_startpoint) < VBELL_TIMEOUT) {/*...soon*/
1242 /* If there's no vbell timeout already, or this one lasts
1243 * longer, replace vbell_timeout with ours. */
1244 if (!term->in_vbell ||
1245 (term->rvbell_startpoint - term->vbell_startpoint <
1246 VBELL_TIMEOUT))
1247 term->vbell_startpoint = term->rvbell_startpoint;
1248 term->in_vbell = TRUE; /* may clear rvideo but set in_vbell */
1249 } else if (!term->rvideo && state) {
1250 /* This is an ON, so we notice the time and save it. */
1251 term->rvbell_startpoint = ticks;
1252 }
1253 term->rvideo = state;
1254 term->seen_disp_event = TRUE;
1255 if (state)
1256 term_update(term);
1257 break;
1258 case 6: /* DECOM: DEC origin mode */
1259 term->dec_om = state;
1260 break;
1261 case 7: /* DECAWM: auto wrap */
1262 term->wrap = state;
1263 break;
1264 case 8: /* DECARM: auto key repeat */
1265 term->repeat_off = !state;
1266 break;
1267 case 10: /* DECEDM: set local edit mode */
1268 term->term_editing = state;
1269 if (term->ldisc) /* cause ldisc to notice changes */
1270 ldisc_send(term->ldisc, NULL, 0, 0);
1271 break;
1272 case 25: /* DECTCEM: enable/disable cursor */
1273 compatibility2(OTHER, VT220);
1274 term->cursor_on = state;
1275 term->seen_disp_event = TRUE;
1276 break;
1277 case 47: /* alternate screen */
1278 compatibility(OTHER);
1279 deselect(term);
1280 swap_screen(term, term->cfg.no_alt_screen ? 0 : state, FALSE, FALSE);
1281 term->disptop = 0;
1282 break;
1283 case 1000: /* xterm mouse 1 */
1284 term->xterm_mouse = state ? 1 : 0;
1285 set_raw_mouse_mode(term->frontend, state);
1286 break;
1287 case 1002: /* xterm mouse 2 */
1288 term->xterm_mouse = state ? 2 : 0;
1289 set_raw_mouse_mode(term->frontend, state);
1290 break;
1291 case 1047: /* alternate screen */
1292 compatibility(OTHER);
1293 deselect(term);
1294 swap_screen(term, term->cfg.no_alt_screen ? 0 : state, TRUE, TRUE);
1295 term->disptop = 0;
1296 break;
1297 case 1048: /* save/restore cursor */
1298 if (!term->cfg.no_alt_screen)
1299 save_cursor(term, state);
1300 if (!state) term->seen_disp_event = TRUE;
1301 break;
1302 case 1049: /* cursor & alternate screen */
1303 if (state && !term->cfg.no_alt_screen)
1304 save_cursor(term, state);
1305 if (!state) term->seen_disp_event = TRUE;
1306 compatibility(OTHER);
1307 deselect(term);
1308 swap_screen(term, term->cfg.no_alt_screen ? 0 : state, TRUE, FALSE);
1309 if (!state && !term->cfg.no_alt_screen)
1310 save_cursor(term, state);
1311 term->disptop = 0;
1312 break;
1313 } else
1314 switch (mode) {
1315 case 4: /* IRM: set insert mode */
1316 compatibility(VT102);
1317 term->insert = state;
1318 break;
1319 case 12: /* SRM: set echo mode */
1320 term->term_echoing = !state;
1321 if (term->ldisc) /* cause ldisc to notice changes */
1322 ldisc_send(term->ldisc, NULL, 0, 0);
1323 break;
1324 case 20: /* LNM: Return sends ... */
1325 term->cr_lf_return = state;
1326 break;
1327 case 34: /* WYULCURM: Make cursor BIG */
1328 compatibility2(OTHER, VT220);
1329 term->big_cursor = !state;
1330 }
1331 }
1332
1333 /*
1334 * Process an OSC sequence: set window title or icon name.
1335 */
1336 static void do_osc(Terminal *term)
1337 {
1338 if (term->osc_w) {
1339 while (term->osc_strlen--)
1340 term->wordness[(unsigned char)
1341 term->osc_string[term->osc_strlen]] = term->esc_args[0];
1342 } else {
1343 term->osc_string[term->osc_strlen] = '\0';
1344 switch (term->esc_args[0]) {
1345 case 0:
1346 case 1:
1347 if (!term->cfg.no_remote_wintitle)
1348 set_icon(term->frontend, term->osc_string);
1349 if (term->esc_args[0] == 1)
1350 break;
1351 /* fall through: parameter 0 means set both */
1352 case 2:
1353 case 21:
1354 if (!term->cfg.no_remote_wintitle)
1355 set_title(term->frontend, term->osc_string);
1356 break;
1357 }
1358 }
1359 }
1360
1361 /*
1362 * ANSI printing routines.
1363 */
1364 static void term_print_setup(Terminal *term)
1365 {
1366 bufchain_clear(&term->printer_buf);
1367 term->print_job = printer_start_job(term->cfg.printer);
1368 }
1369 static void term_print_flush(Terminal *term)
1370 {
1371 void *data;
1372 int len;
1373 int size;
1374 while ((size = bufchain_size(&term->printer_buf)) > 5) {
1375 bufchain_prefix(&term->printer_buf, &data, &len);
1376 if (len > size-5)
1377 len = size-5;
1378 printer_job_data(term->print_job, data, len);
1379 bufchain_consume(&term->printer_buf, len);
1380 }
1381 }
1382 static void term_print_finish(Terminal *term)
1383 {
1384 void *data;
1385 int len, size;
1386 char c;
1387
1388 if (!term->printing && !term->only_printing)
1389 return; /* we need do nothing */
1390
1391 term_print_flush(term);
1392 while ((size = bufchain_size(&term->printer_buf)) > 0) {
1393 bufchain_prefix(&term->printer_buf, &data, &len);
1394 c = *(char *)data;
1395 if (c == '\033' || c == '\233') {
1396 bufchain_consume(&term->printer_buf, size);
1397 break;
1398 } else {
1399 printer_job_data(term->print_job, &c, 1);
1400 bufchain_consume(&term->printer_buf, 1);
1401 }
1402 }
1403 printer_finish_job(term->print_job);
1404 term->print_job = NULL;
1405 term->printing = term->only_printing = FALSE;
1406 }
1407
1408 /*
1409 * Remove everything currently in `inbuf' and stick it up on the
1410 * in-memory display. There's a big state machine in here to
1411 * process escape sequences...
1412 */
1413 void term_out(Terminal *term)
1414 {
1415 int c, unget;
1416 unsigned char localbuf[256], *chars;
1417 int nchars = 0;
1418
1419 unget = -1;
1420
1421 chars = NULL; /* placate compiler warnings */
1422 while (nchars > 0 || bufchain_size(&term->inbuf) > 0) {
1423 if (unget == -1) {
1424 if (nchars == 0) {
1425 void *ret;
1426 bufchain_prefix(&term->inbuf, &ret, &nchars);
1427 if (nchars > sizeof(localbuf))
1428 nchars = sizeof(localbuf);
1429 memcpy(localbuf, ret, nchars);
1430 bufchain_consume(&term->inbuf, nchars);
1431 chars = localbuf;
1432 assert(chars != NULL);
1433 }
1434 c = *chars++;
1435 nchars--;
1436
1437 /*
1438 * Optionally log the session traffic to a file. Useful for
1439 * debugging and possibly also useful for actual logging.
1440 */
1441 if (term->cfg.logtype == LGTYP_DEBUG && term->logctx)
1442 logtraffic(term->logctx, (unsigned char) c, LGTYP_DEBUG);
1443 } else {
1444 c = unget;
1445 unget = -1;
1446 }
1447
1448 /* Note only VT220+ are 8-bit VT102 is seven bit, it shouldn't even
1449 * be able to display 8-bit characters, but I'll let that go 'cause
1450 * of i18n.
1451 */
1452
1453 /*
1454 * If we're printing, add the character to the printer
1455 * buffer.
1456 */
1457 if (term->printing) {
1458 bufchain_add(&term->printer_buf, &c, 1);
1459
1460 /*
1461 * If we're in print-only mode, we use a much simpler
1462 * state machine designed only to recognise the ESC[4i
1463 * termination sequence.
1464 */
1465 if (term->only_printing) {
1466 if (c == '\033')
1467 term->print_state = 1;
1468 else if (c == (unsigned char)'\233')
1469 term->print_state = 2;
1470 else if (c == '[' && term->print_state == 1)
1471 term->print_state = 2;
1472 else if (c == '4' && term->print_state == 2)
1473 term->print_state = 3;
1474 else if (c == 'i' && term->print_state == 3)
1475 term->print_state = 4;
1476 else
1477 term->print_state = 0;
1478 if (term->print_state == 4) {
1479 term_print_finish(term);
1480 }
1481 continue;
1482 }
1483 }
1484
1485 /* First see about all those translations. */
1486 if (term->termstate == TOPLEVEL) {
1487 if (in_utf(term))
1488 switch (term->utf_state) {
1489 case 0:
1490 if (c < 0x80) {
1491 /* UTF-8 must be stateless so we ignore iso2022. */
1492 if (term->ucsdata->unitab_ctrl[c] != 0xFF)
1493 c = term->ucsdata->unitab_ctrl[c];
1494 else c = ((unsigned char)c) | ATTR_ASCII;
1495 break;
1496 } else if ((c & 0xe0) == 0xc0) {
1497 term->utf_size = term->utf_state = 1;
1498 term->utf_char = (c & 0x1f);
1499 } else if ((c & 0xf0) == 0xe0) {
1500 term->utf_size = term->utf_state = 2;
1501 term->utf_char = (c & 0x0f);
1502 } else if ((c & 0xf8) == 0xf0) {
1503 term->utf_size = term->utf_state = 3;
1504 term->utf_char = (c & 0x07);
1505 } else if ((c & 0xfc) == 0xf8) {
1506 term->utf_size = term->utf_state = 4;
1507 term->utf_char = (c & 0x03);
1508 } else if ((c & 0xfe) == 0xfc) {
1509 term->utf_size = term->utf_state = 5;
1510 term->utf_char = (c & 0x01);
1511 } else {
1512 c = UCSERR;
1513 break;
1514 }
1515 continue;
1516 case 1:
1517 case 2:
1518 case 3:
1519 case 4:
1520 case 5:
1521 if ((c & 0xC0) != 0x80) {
1522 unget = c;
1523 c = UCSERR;
1524 term->utf_state = 0;
1525 break;
1526 }
1527 term->utf_char = (term->utf_char << 6) | (c & 0x3f);
1528 if (--term->utf_state)
1529 continue;
1530
1531 c = term->utf_char;
1532
1533 /* Is somebody trying to be evil! */
1534 if (c < 0x80 ||
1535 (c < 0x800 && term->utf_size >= 2) ||
1536 (c < 0x10000 && term->utf_size >= 3) ||
1537 (c < 0x200000 && term->utf_size >= 4) ||
1538 (c < 0x4000000 && term->utf_size >= 5))
1539 c = UCSERR;
1540
1541 /* Unicode line separator and paragraph separator are CR-LF */
1542 if (c == 0x2028 || c == 0x2029)
1543 c = 0x85;
1544
1545 /* High controls are probably a Baaad idea too. */
1546 if (c < 0xA0)
1547 c = 0xFFFD;
1548
1549 /* The UTF-16 surrogates are not nice either. */
1550 /* The standard give the option of decoding these:
1551 * I don't want to! */
1552 if (c >= 0xD800 && c < 0xE000)
1553 c = UCSERR;
1554
1555 /* ISO 10646 characters now limited to UTF-16 range. */
1556 if (c > 0x10FFFF)
1557 c = UCSERR;
1558
1559 /* This is currently a TagPhobic application.. */
1560 if (c >= 0xE0000 && c <= 0xE007F)
1561 continue;
1562
1563 /* U+FEFF is best seen as a null. */
1564 if (c == 0xFEFF)
1565 continue;
1566 /* But U+FFFE is an error. */
1567 if (c == 0xFFFE || c == 0xFFFF)
1568 c = UCSERR;
1569
1570 /* Oops this is a 16bit implementation */
1571 if (c >= 0x10000)
1572 c = 0xFFFD;
1573 break;
1574 }
1575 /* Are we in the nasty ACS mode? Note: no sco in utf mode. */
1576 else if(term->sco_acs &&
1577 (c!='\033' && c!='\012' && c!='\015' && c!='\b'))
1578 {
1579 if (term->sco_acs == 2) c |= 0x80;
1580 c |= ATTR_SCOACS;
1581 } else {
1582 switch (term->cset_attr[term->cset]) {
1583 /*
1584 * Linedraw characters are different from 'ESC ( B'
1585 * only for a small range. For ones outside that
1586 * range, make sure we use the same font as well as
1587 * the same encoding.
1588 */
1589 case ATTR_LINEDRW:
1590 if (term->ucsdata->unitab_ctrl[c] != 0xFF)
1591 c = term->ucsdata->unitab_ctrl[c];
1592 else
1593 c = ((unsigned char) c) | ATTR_LINEDRW;
1594 break;
1595
1596 case ATTR_GBCHR:
1597 /* If UK-ASCII, make the '#' a LineDraw Pound */
1598 if (c == '#') {
1599 c = '}' | ATTR_LINEDRW;
1600 break;
1601 }
1602 /*FALLTHROUGH*/ case ATTR_ASCII:
1603 if (term->ucsdata->unitab_ctrl[c] != 0xFF)
1604 c = term->ucsdata->unitab_ctrl[c];
1605 else
1606 c = ((unsigned char) c) | ATTR_ASCII;
1607 break;
1608 case ATTR_SCOACS:
1609 if (c>=' ') c = ((unsigned char)c) | ATTR_SCOACS;
1610 break;
1611 }
1612 }
1613 }
1614
1615 /* How about C1 controls ? */
1616 if ((c & -32) == 0x80 && term->termstate < DO_CTRLS &&
1617 !term->vt52_mode && has_compat(VT220)) {
1618 term->termstate = SEEN_ESC;
1619 term->esc_query = FALSE;
1620 c = '@' + (c & 0x1F);
1621 }
1622
1623 /* Or the GL control. */
1624 if (c == '\177' && term->termstate < DO_CTRLS && has_compat(OTHER)) {
1625 if (term->curs.x && !term->wrapnext)
1626 term->curs.x--;
1627 term->wrapnext = FALSE;
1628 fix_cpos;
1629 if (!term->cfg.no_dbackspace) /* destructive bksp might be disabled */
1630 *term->cpos = (' ' | term->curr_attr | ATTR_ASCII);
1631 } else
1632 /* Or normal C0 controls. */
1633 if ((c & -32) == 0 && term->termstate < DO_CTRLS) {
1634 switch (c) {
1635 case '\005': /* ENQ: terminal type query */
1636 /* Strictly speaking this is VT100 but a VT100 defaults to
1637 * no response. Other terminals respond at their option.
1638 *
1639 * Don't put a CR in the default string as this tends to
1640 * upset some weird software.
1641 *
1642 * An xterm returns "xterm" (5 characters)
1643 */
1644 compatibility(ANSIMIN);
1645 if (term->ldisc) {
1646 char abuf[256], *s, *d;
1647 int state = 0;
1648 for (s = term->cfg.answerback, d = abuf; *s; s++) {
1649 if (state) {
1650 if (*s >= 'a' && *s <= 'z')
1651 *d++ = (*s - ('a' - 1));
1652 else if ((*s >= '@' && *s <= '_') ||
1653 *s == '?' || (*s & 0x80))
1654 *d++ = ('@' ^ *s);
1655 else if (*s == '~')
1656 *d++ = '^';
1657 state = 0;
1658 } else if (*s == '^') {
1659 state = 1;
1660 } else
1661 *d++ = *s;
1662 }
1663 lpage_send(term->ldisc, DEFAULT_CODEPAGE,
1664 abuf, d - abuf, 0);
1665 }
1666 break;
1667 case '\007': /* BEL: Bell */
1668 {
1669 struct beeptime *newbeep;
1670 unsigned long ticks;
1671
1672 ticks = GETTICKCOUNT();
1673
1674 if (!term->beep_overloaded) {
1675 newbeep = snew(struct beeptime);
1676 newbeep->ticks = ticks;
1677 newbeep->next = NULL;
1678 if (!term->beephead)
1679 term->beephead = newbeep;
1680 else
1681 term->beeptail->next = newbeep;
1682 term->beeptail = newbeep;
1683 term->nbeeps++;
1684 }
1685
1686 /*
1687 * Throw out any beeps that happened more than
1688 * t seconds ago.
1689 */
1690 while (term->beephead &&
1691 term->beephead->ticks < ticks - term->cfg.bellovl_t) {
1692 struct beeptime *tmp = term->beephead;
1693 term->beephead = tmp->next;
1694 sfree(tmp);
1695 if (!term->beephead)
1696 term->beeptail = NULL;
1697 term->nbeeps--;
1698 }
1699
1700 if (term->cfg.bellovl && term->beep_overloaded &&
1701 ticks - term->lastbeep >= (unsigned)term->cfg.bellovl_s) {
1702 /*
1703 * If we're currently overloaded and the
1704 * last beep was more than s seconds ago,
1705 * leave overload mode.
1706 */
1707 term->beep_overloaded = FALSE;
1708 } else if (term->cfg.bellovl && !term->beep_overloaded &&
1709 term->nbeeps >= term->cfg.bellovl_n) {
1710 /*
1711 * Now, if we have n or more beeps
1712 * remaining in the queue, go into overload
1713 * mode.
1714 */
1715 term->beep_overloaded = TRUE;
1716 }
1717 term->lastbeep = ticks;
1718
1719 /*
1720 * Perform an actual beep if we're not overloaded.
1721 */
1722 if (!term->cfg.bellovl || !term->beep_overloaded) {
1723 beep(term->frontend, term->cfg.beep);
1724 if (term->cfg.beep == BELL_VISUAL) {
1725 term->in_vbell = TRUE;
1726 term->vbell_startpoint = ticks;
1727 term_update(term);
1728 }
1729 }
1730 term->seen_disp_event = TRUE;
1731 }
1732 break;
1733 case '\b': /* BS: Back space */
1734 if (term->curs.x == 0 &&
1735 (term->curs.y == 0 || term->wrap == 0))
1736 /* do nothing */ ;
1737 else if (term->curs.x == 0 && term->curs.y > 0)
1738 term->curs.x = term->cols - 1, term->curs.y--;
1739 else if (term->wrapnext)
1740 term->wrapnext = FALSE;
1741 else
1742 term->curs.x--;
1743 fix_cpos;
1744 term->seen_disp_event = TRUE;
1745 break;
1746 case '\016': /* LS1: Locking-shift one */
1747 compatibility(VT100);
1748 term->cset = 1;
1749 break;
1750 case '\017': /* LS0: Locking-shift zero */
1751 compatibility(VT100);
1752 term->cset = 0;
1753 break;
1754 case '\033': /* ESC: Escape */
1755 if (term->vt52_mode)
1756 term->termstate = VT52_ESC;
1757 else {
1758 compatibility(ANSIMIN);
1759 term->termstate = SEEN_ESC;
1760 term->esc_query = FALSE;
1761 }
1762 break;
1763 case '\015': /* CR: Carriage return */
1764 term->curs.x = 0;
1765 term->wrapnext = FALSE;
1766 fix_cpos;
1767 term->seen_disp_event = TRUE;
1768 term->paste_hold = 0;
1769 if (term->logctx)
1770 logtraffic(term->logctx, (unsigned char) c, LGTYP_ASCII);
1771 break;
1772 case '\014': /* FF: Form feed */
1773 if (has_compat(SCOANSI)) {
1774 move(term, 0, 0, 0);
1775 erase_lots(term, FALSE, FALSE, TRUE);
1776 term->disptop = 0;
1777 term->wrapnext = FALSE;
1778 term->seen_disp_event = 1;
1779 break;
1780 }
1781 case '\013': /* VT: Line tabulation */
1782 compatibility(VT100);
1783 case '\012': /* LF: Line feed */
1784 if (term->curs.y == term->marg_b)
1785 scroll(term, term->marg_t, term->marg_b, 1, TRUE);
1786 else if (term->curs.y < term->rows - 1)
1787 term->curs.y++;
1788 if (term->cfg.lfhascr)
1789 term->curs.x = 0;
1790 fix_cpos;
1791 term->wrapnext = FALSE;
1792 term->seen_disp_event = 1;
1793 term->paste_hold = 0;
1794 if (term->logctx)
1795 logtraffic(term->logctx, (unsigned char) c, LGTYP_ASCII);
1796 break;
1797 case '\t': /* HT: Character tabulation */
1798 {
1799 pos old_curs = term->curs;
1800 unsigned long *ldata = lineptr(term->curs.y);
1801
1802 do {
1803 term->curs.x++;
1804 } while (term->curs.x < term->cols - 1 &&
1805 !term->tabs[term->curs.x]);
1806
1807 if ((ldata[term->cols] & LATTR_MODE) != LATTR_NORM) {
1808 if (term->curs.x >= term->cols / 2)
1809 term->curs.x = term->cols / 2 - 1;
1810 } else {
1811 if (term->curs.x >= term->cols)
1812 term->curs.x = term->cols - 1;
1813 }
1814
1815 fix_cpos;
1816 check_selection(term, old_curs, term->curs);
1817 }
1818 term->seen_disp_event = TRUE;
1819 break;
1820 }
1821 } else
1822 switch (term->termstate) {
1823 case TOPLEVEL:
1824 /* Only graphic characters get this far;
1825 * ctrls are stripped above */
1826 if (term->wrapnext && term->wrap) {
1827 term->cpos[1] |= LATTR_WRAPPED;
1828 if (term->curs.y == term->marg_b)
1829 scroll(term, term->marg_t, term->marg_b, 1, TRUE);
1830 else if (term->curs.y < term->rows - 1)
1831 term->curs.y++;
1832 term->curs.x = 0;
1833 fix_cpos;
1834 term->wrapnext = FALSE;
1835 }
1836 if (term->insert)
1837 insch(term, 1);
1838 if (term->selstate != NO_SELECTION) {
1839 pos cursplus = term->curs;
1840 incpos(cursplus);
1841 check_selection(term, term->curs, cursplus);
1842 }
1843 if (((c & CSET_MASK) == ATTR_ASCII || (c & CSET_MASK) == 0) &&
1844 term->logctx)
1845 logtraffic(term->logctx, (unsigned char) c, LGTYP_ASCII);
1846 {
1847 int width = 0;
1848 if (DIRECT_CHAR(c))
1849 width = 1;
1850 if (!width)
1851 width = wcwidth((wchar_t) c);
1852 switch (width) {
1853 case 2:
1854 /*
1855 * If we're about to display a double-width
1856 * character starting in the rightmost
1857 * column, then we do something special
1858 * instead. We must print a space in the
1859 * last column of the screen, then wrap;
1860 * and we also set LATTR_WRAPPED2 which
1861 * instructs subsequent cut-and-pasting not
1862 * only to splice this line to the one
1863 * after it, but to ignore the space in the
1864 * last character position as well.
1865 * (Because what was actually output to the
1866 * terminal was presumably just a sequence
1867 * of CJK characters, and we don't want a
1868 * space to be pasted in the middle of
1869 * those just because they had the
1870 * misfortune to start in the wrong parity
1871 * column. xterm concurs.)
1872 */
1873 check_boundary(term, term->curs.x, term->curs.y);
1874 check_boundary(term, term->curs.x+2, term->curs.y);
1875 if (term->curs.x == term->cols-1) {
1876 *term->cpos++ = ATTR_ASCII | ' ' | term->curr_attr;
1877 *term->cpos |= LATTR_WRAPPED | LATTR_WRAPPED2;
1878 if (term->curs.y == term->marg_b)
1879 scroll(term, term->marg_t, term->marg_b,
1880 1, TRUE);
1881 else if (term->curs.y < term->rows - 1)
1882 term->curs.y++;
1883 term->curs.x = 0;
1884 fix_cpos;
1885 /* Now we must check_boundary again, of course. */
1886 check_boundary(term, term->curs.x, term->curs.y);
1887 check_boundary(term, term->curs.x+2, term->curs.y);
1888 }
1889 *term->cpos++ = c | term->curr_attr;
1890 *term->cpos++ = UCSWIDE | term->curr_attr;
1891 term->curs.x++;
1892 break;
1893 case 1:
1894 check_boundary(term, term->curs.x, term->curs.y);
1895 check_boundary(term, term->curs.x+1, term->curs.y);
1896 *term->cpos++ = c | term->curr_attr;
1897 break;
1898 default:
1899 continue;
1900 }
1901 }
1902 term->curs.x++;
1903 if (term->curs.x == term->cols) {
1904 term->cpos--;
1905 term->curs.x--;
1906 term->wrapnext = TRUE;
1907 if (term->wrap && term->vt52_mode) {
1908 term->cpos[1] |= LATTR_WRAPPED;
1909 if (term->curs.y == term->marg_b)
1910 scroll(term, term->marg_t, term->marg_b, 1, TRUE);
1911 else if (term->curs.y < term->rows - 1)
1912 term->curs.y++;
1913 term->curs.x = 0;
1914 fix_cpos;
1915 term->wrapnext = FALSE;
1916 }
1917 }
1918 term->seen_disp_event = 1;
1919 break;
1920
1921 case OSC_MAYBE_ST:
1922 /*
1923 * This state is virtually identical to SEEN_ESC, with the
1924 * exception that we have an OSC sequence in the pipeline,
1925 * and _if_ we see a backslash, we process it.
1926 */
1927 if (c == '\\') {
1928 do_osc(term);
1929 term->termstate = TOPLEVEL;
1930 break;
1931 }
1932 /* else fall through */
1933 case SEEN_ESC:
1934 if (c >= ' ' && c <= '/') {
1935 if (term->esc_query)
1936 term->esc_query = -1;
1937 else
1938 term->esc_query = c;
1939 break;
1940 }
1941 term->termstate = TOPLEVEL;
1942 switch (ANSI(c, term->esc_query)) {
1943 case '[': /* enter CSI mode */
1944 term->termstate = SEEN_CSI;
1945 term->esc_nargs = 1;
1946 term->esc_args[0] = ARG_DEFAULT;
1947 term->esc_query = FALSE;
1948 break;
1949 case ']': /* OSC: xterm escape sequences */
1950 /* Compatibility is nasty here, xterm, linux, decterm yuk! */
1951 compatibility(OTHER);
1952 term->termstate = SEEN_OSC;
1953 term->esc_args[0] = 0;
1954 break;
1955 case '7': /* DECSC: save cursor */
1956 compatibility(VT100);
1957 save_cursor(term, TRUE);
1958 break;
1959 case '8': /* DECRC: restore cursor */
1960 compatibility(VT100);
1961 save_cursor(term, FALSE);
1962 term->seen_disp_event = TRUE;
1963 break;
1964 case '=': /* DECKPAM: Keypad application mode */
1965 compatibility(VT100);
1966 term->app_keypad_keys = TRUE;
1967 break;
1968 case '>': /* DECKPNM: Keypad numeric mode */
1969 compatibility(VT100);
1970 term->app_keypad_keys = FALSE;
1971 break;
1972 case 'D': /* IND: exactly equivalent to LF */
1973 compatibility(VT100);
1974 if (term->curs.y == term->marg_b)
1975 scroll(term, term->marg_t, term->marg_b, 1, TRUE);
1976 else if (term->curs.y < term->rows - 1)
1977 term->curs.y++;
1978 fix_cpos;
1979 term->wrapnext = FALSE;
1980 term->seen_disp_event = TRUE;
1981 break;
1982 case 'E': /* NEL: exactly equivalent to CR-LF */
1983 compatibility(VT100);
1984 term->curs.x = 0;
1985 if (term->curs.y == term->marg_b)
1986 scroll(term, term->marg_t, term->marg_b, 1, TRUE);
1987 else if (term->curs.y < term->rows - 1)
1988 term->curs.y++;
1989 fix_cpos;
1990 term->wrapnext = FALSE;
1991 term->seen_disp_event = TRUE;
1992 break;
1993 case 'M': /* RI: reverse index - backwards LF */
1994 compatibility(VT100);
1995 if (term->curs.y == term->marg_t)
1996 scroll(term, term->marg_t, term->marg_b, -1, TRUE);
1997 else if (term->curs.y > 0)
1998 term->curs.y--;
1999 fix_cpos;
2000 term->wrapnext = FALSE;
2001 term->seen_disp_event = TRUE;
2002 break;
2003 case 'Z': /* DECID: terminal type query */
2004 compatibility(VT100);
2005 if (term->ldisc)
2006 ldisc_send(term->ldisc, term->id_string,
2007 strlen(term->id_string), 0);
2008 break;
2009 case 'c': /* RIS: restore power-on settings */
2010 compatibility(VT100);
2011 power_on(term);
2012 if (term->ldisc) /* cause ldisc to notice changes */
2013 ldisc_send(term->ldisc, NULL, 0, 0);
2014 if (term->reset_132) {
2015 if (!term->cfg.no_remote_resize)
2016 request_resize(term->frontend, 80, term->rows);
2017 term->reset_132 = 0;
2018 }
2019 fix_cpos;
2020 term->disptop = 0;
2021 term->seen_disp_event = TRUE;
2022 break;
2023 case 'H': /* HTS: set a tab */
2024 compatibility(VT100);
2025 term->tabs[term->curs.x] = TRUE;
2026 break;
2027
2028 case ANSI('8', '#'): /* DECALN: fills screen with Es :-) */
2029 compatibility(VT100);
2030 {
2031 unsigned long *ldata;
2032 int i, j;
2033 pos scrtop, scrbot;
2034
2035 for (i = 0; i < term->rows; i++) {
2036 ldata = lineptr(i);
2037 for (j = 0; j < term->cols; j++)
2038 ldata[j] = ATTR_DEFAULT | 'E';
2039 ldata[term->cols] = 0;
2040 }
2041 term->disptop = 0;
2042 term->seen_disp_event = TRUE;
2043 scrtop.x = scrtop.y = 0;
2044 scrbot.x = 0;
2045 scrbot.y = term->rows;
2046 check_selection(term, scrtop, scrbot);
2047 }
2048 break;
2049
2050 case ANSI('3', '#'):
2051 case ANSI('4', '#'):
2052 case ANSI('5', '#'):
2053 case ANSI('6', '#'):
2054 compatibility(VT100);
2055 {
2056 unsigned long nlattr;
2057 unsigned long *ldata;
2058 switch (ANSI(c, term->esc_query)) {
2059 case ANSI('3', '#'): /* DECDHL: 2*height, top */
2060 nlattr = LATTR_TOP;
2061 break;
2062 case ANSI('4', '#'): /* DECDHL: 2*height, bottom */
2063 nlattr = LATTR_BOT;
2064 break;
2065 case ANSI('5', '#'): /* DECSWL: normal */
2066 nlattr = LATTR_NORM;
2067 break;
2068 default: /* case ANSI('6', '#'): DECDWL: 2*width */
2069 nlattr = LATTR_WIDE;
2070 break;
2071 }
2072 ldata = lineptr(term->curs.y);
2073 ldata[term->cols] &= ~LATTR_MODE;
2074 ldata[term->cols] |= nlattr;
2075 }
2076 break;
2077 /* GZD4: G0 designate 94-set */
2078 case ANSI('A', '('):
2079 compatibility(VT100);
2080 if (!term->cfg.no_remote_charset)
2081 term->cset_attr[0] = ATTR_GBCHR;
2082 break;
2083 case ANSI('B', '('):
2084 compatibility(VT100);
2085 if (!term->cfg.no_remote_charset)
2086 term->cset_attr[0] = ATTR_ASCII;
2087 break;
2088 case ANSI('0', '('):
2089 compatibility(VT100);
2090 if (!term->cfg.no_remote_charset)
2091 term->cset_attr[0] = ATTR_LINEDRW;
2092 break;
2093 case ANSI('U', '('):
2094 compatibility(OTHER);
2095 if (!term->cfg.no_remote_charset)
2096 term->cset_attr[0] = ATTR_SCOACS;
2097 break;
2098 /* G1D4: G1-designate 94-set */
2099 case ANSI('A', ')'):
2100 compatibility(VT100);
2101 if (!term->cfg.no_remote_charset)
2102 term->cset_attr[1] = ATTR_GBCHR;
2103 break;
2104 case ANSI('B', ')'):
2105 compatibility(VT100);
2106 if (!term->cfg.no_remote_charset)
2107 term->cset_attr[1] = ATTR_ASCII;
2108 break;
2109 case ANSI('0', ')'):
2110 compatibility(VT100);
2111 if (!term->cfg.no_remote_charset)
2112 term->cset_attr[1] = ATTR_LINEDRW;
2113 break;
2114 case ANSI('U', ')'):
2115 compatibility(OTHER);
2116 if (!term->cfg.no_remote_charset)
2117 term->cset_attr[1] = ATTR_SCOACS;
2118 break;
2119 /* DOCS: Designate other coding system */
2120 case ANSI('8', '%'): /* Old Linux code */
2121 case ANSI('G', '%'):
2122 compatibility(OTHER);
2123 if (!term->cfg.no_remote_charset)
2124 term->utf = 1;
2125 break;
2126 case ANSI('@', '%'):
2127 compatibility(OTHER);
2128 if (!term->cfg.no_remote_charset)
2129 term->utf = 0;
2130 break;
2131 }
2132 break;
2133 case SEEN_CSI:
2134 term->termstate = TOPLEVEL; /* default */
2135 if (isdigit(c)) {
2136 if (term->esc_nargs <= ARGS_MAX) {
2137 if (term->esc_args[term->esc_nargs - 1] == ARG_DEFAULT)
2138 term->esc_args[term->esc_nargs - 1] = 0;
2139 term->esc_args[term->esc_nargs - 1] =
2140 10 * term->esc_args[term->esc_nargs - 1] + c - '0';
2141 }
2142 term->termstate = SEEN_CSI;
2143 } else if (c == ';') {
2144 if (++term->esc_nargs <= ARGS_MAX)
2145 term->esc_args[term->esc_nargs - 1] = ARG_DEFAULT;
2146 term->termstate = SEEN_CSI;
2147 } else if (c < '@') {
2148 if (term->esc_query)
2149 term->esc_query = -1;
2150 else if (c == '?')
2151 term->esc_query = TRUE;
2152 else
2153 term->esc_query = c;
2154 term->termstate = SEEN_CSI;
2155 } else
2156 switch (ANSI(c, term->esc_query)) {
2157 case 'A': /* CUU: move up N lines */
2158 move(term, term->curs.x,
2159 term->curs.y - def(term->esc_args[0], 1), 1);
2160 term->seen_disp_event = TRUE;
2161 break;
2162 case 'e': /* VPR: move down N lines */
2163 compatibility(ANSI);
2164 /* FALLTHROUGH */
2165 case 'B': /* CUD: Cursor down */
2166 move(term, term->curs.x,
2167 term->curs.y + def(term->esc_args[0], 1), 1);
2168 term->seen_disp_event = TRUE;
2169 break;
2170 case ANSI('c', '>'): /* DA: report xterm version */
2171 compatibility(OTHER);
2172 /* this reports xterm version 136 so that VIM can
2173 use the drag messages from the mouse reporting */
2174 if (term->ldisc)
2175 ldisc_send(term->ldisc, "\033[>0;136;0c", 11, 0);
2176 break;
2177 case 'a': /* HPR: move right N cols */
2178 compatibility(ANSI);
2179 /* FALLTHROUGH */
2180 case 'C': /* CUF: Cursor right */
2181 move(term, term->curs.x + def(term->esc_args[0], 1),
2182 term->curs.y, 1);
2183 term->seen_disp_event = TRUE;
2184 break;
2185 case 'D': /* CUB: move left N cols */
2186 move(term, term->curs.x - def(term->esc_args[0], 1),
2187 term->curs.y, 1);
2188 term->seen_disp_event = TRUE;
2189 break;
2190 case 'E': /* CNL: move down N lines and CR */
2191 compatibility(ANSI);
2192 move(term, 0,
2193 term->curs.y + def(term->esc_args[0], 1), 1);
2194 term->seen_disp_event = TRUE;
2195 break;
2196 case 'F': /* CPL: move up N lines and CR */
2197 compatibility(ANSI);
2198 move(term, 0,
2199 term->curs.y - def(term->esc_args[0], 1), 1);
2200 term->seen_disp_event = TRUE;
2201 break;
2202 case 'G': /* CHA */
2203 case '`': /* HPA: set horizontal posn */
2204 compatibility(ANSI);
2205 move(term, def(term->esc_args[0], 1) - 1,
2206 term->curs.y, 0);
2207 term->seen_disp_event = TRUE;
2208 break;
2209 case 'd': /* VPA: set vertical posn */
2210 compatibility(ANSI);
2211 move(term, term->curs.x,
2212 ((term->dec_om ? term->marg_t : 0) +
2213 def(term->esc_args[0], 1) - 1),
2214 (term->dec_om ? 2 : 0));
2215 term->seen_disp_event = TRUE;
2216 break;
2217 case 'H': /* CUP */
2218 case 'f': /* HVP: set horz and vert posns at once */
2219 if (term->esc_nargs < 2)
2220 term->esc_args[1] = ARG_DEFAULT;
2221 move(term, def(term->esc_args[1], 1) - 1,
2222 ((term->dec_om ? term->marg_t : 0) +
2223 def(term->esc_args[0], 1) - 1),
2224 (term->dec_om ? 2 : 0));
2225 term->seen_disp_event = TRUE;
2226 break;
2227 case 'J': /* ED: erase screen or parts of it */
2228 {
2229 unsigned int i = def(term->esc_args[0], 0) + 1;
2230 if (i > 3)
2231 i = 0;
2232 erase_lots(term, FALSE, !!(i & 2), !!(i & 1));
2233 }
2234 term->disptop = 0;
2235 term->seen_disp_event = TRUE;
2236 break;
2237 case 'K': /* EL: erase line or parts of it */
2238 {
2239 unsigned int i = def(term->esc_args[0], 0) + 1;
2240 if (i > 3)
2241 i = 0;
2242 erase_lots(term, TRUE, !!(i & 2), !!(i & 1));
2243 }
2244 term->seen_disp_event = TRUE;
2245 break;
2246 case 'L': /* IL: insert lines */
2247 compatibility(VT102);
2248 if (term->curs.y <= term->marg_b)
2249 scroll(term, term->curs.y, term->marg_b,
2250 -def(term->esc_args[0], 1), FALSE);
2251 fix_cpos;
2252 term->seen_disp_event = TRUE;
2253 break;
2254 case 'M': /* DL: delete lines */
2255 compatibility(VT102);
2256 if (term->curs.y <= term->marg_b)
2257 scroll(term, term->curs.y, term->marg_b,
2258 def(term->esc_args[0], 1),
2259 TRUE);
2260 fix_cpos;
2261 term->seen_disp_event = TRUE;
2262 break;
2263 case '@': /* ICH: insert chars */
2264 /* XXX VTTEST says this is vt220, vt510 manual says vt102 */
2265 compatibility(VT102);
2266 insch(term, def(term->esc_args[0], 1));
2267 term->seen_disp_event = TRUE;
2268 break;
2269 case 'P': /* DCH: delete chars */
2270 compatibility(VT102);
2271 insch(term, -def(term->esc_args[0], 1));
2272 term->seen_disp_event = TRUE;
2273 break;
2274 case 'c': /* DA: terminal type query */
2275 compatibility(VT100);
2276 /* This is the response for a VT102 */
2277 if (term->ldisc)
2278 ldisc_send(term->ldisc, term->id_string,
2279 strlen(term->id_string), 0);
2280 break;
2281 case 'n': /* DSR: cursor position query */
2282 if (term->ldisc) {
2283 if (term->esc_args[0] == 6) {
2284 char buf[32];
2285 sprintf(buf, "\033[%d;%dR", term->curs.y + 1,
2286 term->curs.x + 1);
2287 ldisc_send(term->ldisc, buf, strlen(buf), 0);
2288 } else if (term->esc_args[0] == 5) {
2289 ldisc_send(term->ldisc, "\033[0n", 4, 0);
2290 }
2291 }
2292 break;
2293 case 'h': /* SM: toggle modes to high */
2294 case ANSI_QUE('h'):
2295 compatibility(VT100);
2296 {
2297 int i;
2298 for (i = 0; i < term->esc_nargs; i++)
2299 toggle_mode(term, term->esc_args[i],
2300 term->esc_query, TRUE);
2301 }
2302 break;
2303 case 'i': /* MC: Media copy */
2304 case ANSI_QUE('i'):
2305 compatibility(VT100);
2306 {
2307 if (term->esc_nargs != 1) break;
2308 if (term->esc_args[0] == 5 && *term->cfg.printer) {
2309 term->printing = TRUE;
2310 term->only_printing = !term->esc_query;
2311 term->print_state = 0;
2312 term_print_setup(term);
2313 } else if (term->esc_args[0] == 4 &&
2314 term->printing) {
2315 term_print_finish(term);
2316 }
2317 }
2318 break;
2319 case 'l': /* RM: toggle modes to low */
2320 case ANSI_QUE('l'):
2321 compatibility(VT100);
2322 {
2323 int i;
2324 for (i = 0; i < term->esc_nargs; i++)
2325 toggle_mode(term, term->esc_args[i],
2326 term->esc_query, FALSE);
2327 }
2328 break;
2329 case 'g': /* TBC: clear tabs */
2330 compatibility(VT100);
2331 if (term->esc_nargs == 1) {
2332 if (term->esc_args[0] == 0) {
2333 term->tabs[term->curs.x] = FALSE;
2334 } else if (term->esc_args[0] == 3) {
2335 int i;
2336 for (i = 0; i < term->cols; i++)
2337 term->tabs[i] = FALSE;
2338 }
2339 }
2340 break;
2341 case 'r': /* DECSTBM: set scroll margins */
2342 compatibility(VT100);
2343 if (term->esc_nargs <= 2) {
2344 int top, bot;
2345 top = def(term->esc_args[0], 1) - 1;
2346 bot = (term->esc_nargs <= 1
2347 || term->esc_args[1] == 0 ?
2348 term->rows :
2349 def(term->esc_args[1], term->rows)) - 1;
2350 if (bot >= term->rows)
2351 bot = term->rows - 1;
2352 /* VTTEST Bug 9 - if region is less than 2 lines
2353 * don't change region.
2354 */
2355 if (bot - top > 0) {
2356 term->marg_t = top;
2357 term->marg_b = bot;
2358 term->curs.x = 0;
2359 /*
2360 * I used to think the cursor should be
2361 * placed at the top of the newly marginned
2362 * area. Apparently not: VMS TPU falls over
2363 * if so.
2364 *
2365 * Well actually it should for
2366 * Origin mode - RDB
2367 */
2368 term->curs.y = (term->dec_om ?
2369 term->marg_t : 0);
2370 fix_cpos;
2371 term->seen_disp_event = TRUE;
2372 }
2373 }
2374 break;
2375 case 'm': /* SGR: set graphics rendition */
2376 {
2377 /*
2378 * A VT100 without the AVO only had one
2379 * attribute, either underline or
2380 * reverse video depending on the
2381 * cursor type, this was selected by
2382 * CSI 7m.
2383 *
2384 * case 2:
2385 * This is sometimes DIM, eg on the
2386 * GIGI and Linux
2387 * case 8:
2388 * This is sometimes INVIS various ANSI.
2389 * case 21:
2390 * This like 22 disables BOLD, DIM and INVIS
2391 *
2392 * The ANSI colours appear on any
2393 * terminal that has colour (obviously)
2394 * but the interaction between sgr0 and
2395 * the colours varies but is usually
2396 * related to the background colour
2397 * erase item. The interaction between
2398 * colour attributes and the mono ones
2399 * is also very implementation
2400 * dependent.
2401 *
2402 * The 39 and 49 attributes are likely
2403 * to be unimplemented.
2404 */
2405 int i;
2406 for (i = 0; i < term->esc_nargs; i++) {
2407 switch (def(term->esc_args[i], 0)) {
2408 case 0: /* restore defaults */
2409 term->curr_attr = term->default_attr;
2410 break;
2411 case 1: /* enable bold */
2412 compatibility(VT100AVO);
2413 term->curr_attr |= ATTR_BOLD;
2414 break;
2415 case 21: /* (enable double underline) */
2416 compatibility(OTHER);
2417 case 4: /* enable underline */
2418 compatibility(VT100AVO);
2419 term->curr_attr |= ATTR_UNDER;
2420 break;
2421 case 5: /* enable blink */
2422 compatibility(VT100AVO);
2423 term->curr_attr |= ATTR_BLINK;
2424 break;
2425 case 6: /* SCO light bkgrd */
2426 compatibility(SCOANSI);
2427 term->blink_is_real = FALSE;
2428 term->curr_attr |= ATTR_BLINK;
2429 break;
2430 case 7: /* enable reverse video */
2431 term->curr_attr |= ATTR_REVERSE;
2432 break;
2433 case 10: /* SCO acs off */
2434 compatibility(SCOANSI);
2435 if (term->cfg.no_remote_charset) break;
2436 term->sco_acs = 0; break;
2437 case 11: /* SCO acs on */
2438 compatibility(SCOANSI);
2439 if (term->cfg.no_remote_charset) break;
2440 term->sco_acs = 1; break;
2441 case 12: /* SCO acs on, |0x80 */
2442 compatibility(SCOANSI);
2443 if (term->cfg.no_remote_charset) break;
2444 term->sco_acs = 2; break;
2445 case 22: /* disable bold */
2446 compatibility2(OTHER, VT220);
2447 term->curr_attr &= ~ATTR_BOLD;
2448 break;
2449 case 24: /* disable underline */
2450 compatibility2(OTHER, VT220);
2451 term->curr_attr &= ~ATTR_UNDER;
2452 break;
2453 case 25: /* disable blink */
2454 compatibility2(OTHER, VT220);
2455 term->curr_attr &= ~ATTR_BLINK;
2456 break;
2457 case 27: /* disable reverse video */
2458 compatibility2(OTHER, VT220);
2459 term->curr_attr &= ~ATTR_REVERSE;
2460 break;
2461 case 30:
2462 case 31:
2463 case 32:
2464 case 33:
2465 case 34:
2466 case 35:
2467 case 36:
2468 case 37:
2469 /* foreground */
2470 term->curr_attr &= ~ATTR_FGMASK;
2471 term->curr_attr |=
2472 (term->esc_args[i] - 30)<<ATTR_FGSHIFT;
2473 break;
2474 case 90:
2475 case 91:
2476 case 92:
2477 case 93:
2478 case 94:
2479 case 95:
2480 case 96:
2481 case 97:
2482 /* xterm-style bright foreground */
2483 term->curr_attr &= ~ATTR_FGMASK;
2484 term->curr_attr |=
2485 ((term->esc_args[i] - 90 + 16)
2486 << ATTR_FGSHIFT);
2487 break;
2488 case 39: /* default-foreground */
2489 term->curr_attr &= ~ATTR_FGMASK;
2490 term->curr_attr |= ATTR_DEFFG;
2491 break;
2492 case 40:
2493 case 41:
2494 case 42:
2495 case 43:
2496 case 44:
2497 case 45:
2498 case 46:
2499 case 47:
2500 /* background */
2501 term->curr_attr &= ~ATTR_BGMASK;
2502 term->curr_attr |=
2503 (term->esc_args[i] - 40)<<ATTR_BGSHIFT;
2504 break;
2505 case 100:
2506 case 101:
2507 case 102:
2508 case 103:
2509 case 104:
2510 case 105:
2511 case 106:
2512 case 107:
2513 /* xterm-style bright background */
2514 term->curr_attr &= ~ATTR_BGMASK;
2515 term->curr_attr |=
2516 ((term->esc_args[i] - 100 + 16)
2517 << ATTR_BGSHIFT);
2518 break;
2519 case 49: /* default-background */
2520 term->curr_attr &= ~ATTR_BGMASK;
2521 term->curr_attr |= ATTR_DEFBG;
2522 break;
2523 }
2524 }
2525 if (term->use_bce)
2526 term->erase_char = (' ' | ATTR_ASCII |
2527 (term->curr_attr &
2528 (ATTR_FGMASK |
2529 ATTR_BGMASK)));
2530 }
2531 break;
2532 case 's': /* save cursor */
2533 save_cursor(term, TRUE);
2534 break;
2535 case 'u': /* restore cursor */
2536 save_cursor(term, FALSE);
2537 term->seen_disp_event = TRUE;
2538 break;
2539 case 't': /* DECSLPP: set page size - ie window height */
2540 /*
2541 * VT340/VT420 sequence DECSLPP, DEC only allows values
2542 * 24/25/36/48/72/144 other emulators (eg dtterm) use
2543 * illegal values (eg first arg 1..9) for window changing
2544 * and reports.
2545 */
2546 if (term->esc_nargs <= 1
2547 && (term->esc_args[0] < 1 ||
2548 term->esc_args[0] >= 24)) {
2549 compatibility(VT340TEXT);
2550 if (!term->cfg.no_remote_resize)
2551 request_resize(term->frontend, term->cols,
2552 def(term->esc_args[0], 24));
2553 deselect(term);
2554 } else if (term->esc_nargs >= 1 &&
2555 term->esc_args[0] >= 1 &&
2556 term->esc_args[0] < 24) {
2557 compatibility(OTHER);
2558
2559 switch (term->esc_args[0]) {
2560 int x, y, len;
2561 char buf[80], *p;
2562 case 1:
2563 set_iconic(term->frontend, FALSE);
2564 break;
2565 case 2:
2566 set_iconic(term->frontend, TRUE);
2567 break;
2568 case 3:
2569 if (term->esc_nargs >= 3) {
2570 if (!term->cfg.no_remote_resize)
2571 move_window(term->frontend,
2572 def(term->esc_args[1], 0),
2573 def(term->esc_args[2], 0));
2574 }
2575 break;
2576 case 4:
2577 /* We should resize the window to a given
2578 * size in pixels here, but currently our
2579 * resizing code isn't healthy enough to
2580 * manage it. */
2581 break;
2582 case 5:
2583 /* move to top */
2584 set_zorder(term->frontend, TRUE);
2585 break;
2586 case 6:
2587 /* move to bottom */
2588 set_zorder(term->frontend, FALSE);
2589 break;
2590 case 7:
2591 refresh_window(term->frontend);
2592 break;
2593 case 8:
2594 if (term->esc_nargs >= 3) {
2595 if (!term->cfg.no_remote_resize)
2596 request_resize(term->frontend,
2597 def(term->esc_args[2], term->cfg.width),
2598 def(term->esc_args[1], term->cfg.height));
2599 }
2600 break;
2601 case 9:
2602 if (term->esc_nargs >= 2)
2603 set_zoomed(term->frontend,
2604 term->esc_args[1] ?
2605 TRUE : FALSE);
2606 break;
2607 case 11:
2608 if (term->ldisc)
2609 ldisc_send(term->ldisc,
2610 is_iconic(term->frontend) ?
2611 "\033[1t" : "\033[2t", 4, 0);
2612 break;
2613 case 13:
2614 if (term->ldisc) {
2615 get_window_pos(term->frontend, &x, &y);
2616 len = sprintf(buf, "\033[3;%d;%dt", x, y);
2617 ldisc_send(term->ldisc, buf, len, 0);
2618 }
2619 break;
2620 case 14:
2621 if (term->ldisc) {
2622 get_window_pixels(term->frontend, &x, &y);
2623 len = sprintf(buf, "\033[4;%d;%dt", x, y);
2624 ldisc_send(term->ldisc, buf, len, 0);
2625 }
2626 break;
2627 case 18:
2628 if (term->ldisc) {
2629 len = sprintf(buf, "\033[8;%d;%dt",
2630 term->rows, term->cols);
2631 ldisc_send(term->ldisc, buf, len, 0);
2632 }
2633 break;
2634 case 19:
2635 /*
2636 * Hmmm. Strictly speaking we
2637 * should return `the size of the
2638 * screen in characters', but
2639 * that's not easy: (a) window
2640 * furniture being what it is it's
2641 * hard to compute, and (b) in
2642 * resize-font mode maximising the
2643 * window wouldn't change the
2644 * number of characters. *shrug*. I
2645 * think we'll ignore it for the
2646 * moment and see if anyone
2647 * complains, and then ask them
2648 * what they would like it to do.
2649 */
2650 break;
2651 case 20:
2652 if (term->ldisc &&
2653 !term->cfg.no_remote_qtitle) {
2654 p = get_window_title(term->frontend, TRUE);
2655 len = strlen(p);
2656 ldisc_send(term->ldisc, "\033]L", 3, 0);
2657 ldisc_send(term->ldisc, p, len, 0);
2658 ldisc_send(term->ldisc, "\033\\", 2, 0);
2659 }
2660 break;
2661 case 21:
2662 if (term->ldisc &&
2663 !term->cfg.no_remote_qtitle) {
2664 p = get_window_title(term->frontend,FALSE);
2665 len = strlen(p);
2666 ldisc_send(term->ldisc, "\033]l", 3, 0);
2667 ldisc_send(term->ldisc, p, len, 0);
2668 ldisc_send(term->ldisc, "\033\\", 2, 0);
2669 }
2670 break;
2671 }
2672 }
2673 break;
2674 case 'S': /* SU: Scroll up */
2675 compatibility(SCOANSI);
2676 scroll(term, term->marg_t, term->marg_b,
2677 def(term->esc_args[0], 1), TRUE);
2678 fix_cpos;
2679 term->wrapnext = FALSE;
2680 term->seen_disp_event = TRUE;
2681 break;
2682 case 'T': /* SD: Scroll down */
2683 compatibility(SCOANSI);
2684 scroll(term, term->marg_t, term->marg_b,
2685 -def(term->esc_args[0], 1), TRUE);
2686 fix_cpos;
2687 term->wrapnext = FALSE;
2688 term->seen_disp_event = TRUE;
2689 break;
2690 case ANSI('|', '*'): /* DECSNLS */
2691 /*
2692 * Set number of lines on screen
2693 * VT420 uses VGA like hardware and can
2694 * support any size in reasonable range
2695 * (24..49 AIUI) with no default specified.
2696 */
2697 compatibility(VT420);
2698 if (term->esc_nargs == 1 && term->esc_args[0] > 0) {
2699 if (!term->cfg.no_remote_resize)
2700 request_resize(term->frontend, term->cols,
2701 def(term->esc_args[0],
2702 term->cfg.height));
2703 deselect(term);
2704 }
2705 break;
2706 case ANSI('|', '$'): /* DECSCPP */
2707 /*
2708 * Set number of columns per page
2709 * Docs imply range is only 80 or 132, but
2710 * I'll allow any.
2711 */
2712 compatibility(VT340TEXT);
2713 if (term->esc_nargs <= 1) {
2714 if (!term->cfg.no_remote_resize)
2715 request_resize(term->frontend,
2716 def(term->esc_args[0],
2717 term->cfg.width), term->rows);
2718 deselect(term);
2719 }
2720 break;
2721 case 'X': /* ECH: write N spaces w/o moving cursor */
2722 /* XXX VTTEST says this is vt220, vt510 manual
2723 * says vt100 */
2724 compatibility(ANSIMIN);
2725 {
2726 int n = def(term->esc_args[0], 1);
2727 pos cursplus;
2728 unsigned long *p = term->cpos;
2729 if (n > term->cols - term->curs.x)
2730 n = term->cols - term->curs.x;
2731 cursplus = term->curs;
2732 cursplus.x += n;
2733 check_boundary(term, term->curs.x, term->curs.y);
2734 check_boundary(term, term->curs.x+n, term->curs.y);
2735 check_selection(term, term->curs, cursplus);
2736 while (n--)
2737 *p++ = term->erase_char;
2738 term->seen_disp_event = TRUE;
2739 }
2740 break;
2741 case 'x': /* DECREQTPARM: report terminal characteristics */
2742 compatibility(VT100);
2743 if (term->ldisc) {
2744 char buf[32];
2745 int i = def(term->esc_args[0], 0);
2746 if (i == 0 || i == 1) {
2747 strcpy(buf, "\033[2;1;1;112;112;1;0x");
2748 buf[2] += i;
2749 ldisc_send(term->ldisc, buf, 20, 0);
2750 }
2751 }
2752 break;
2753 case 'Z': /* CBT: BackTab for xterm */
2754 compatibility(OTHER);
2755 {
2756 int i = def(term->esc_args[0], 1);
2757 pos old_curs = term->curs;
2758
2759 for(;i>0 && term->curs.x>0; i--) {
2760 do {
2761 term->curs.x--;
2762 } while (term->curs.x >0 &&
2763 !term->tabs[term->curs.x]);
2764 }
2765 fix_cpos;
2766 check_selection(term, old_curs, term->curs);
2767 }
2768 break;
2769 case ANSI('c', '='): /* Hide or Show Cursor */
2770 compatibility(SCOANSI);
2771 switch(term->esc_args[0]) {
2772 case 0: /* hide cursor */
2773 term->cursor_on = FALSE;
2774 break;
2775 case 1: /* restore cursor */
2776 term->big_cursor = FALSE;
2777 term->cursor_on = TRUE;
2778 break;
2779 case 2: /* block cursor */
2780 term->big_cursor = TRUE;
2781 term->cursor_on = TRUE;
2782 break;
2783 }
2784 break;
2785 case ANSI('C', '='):
2786 /*
2787 * set cursor start on scanline esc_args[0] and
2788 * end on scanline esc_args[1].If you set
2789 * the bottom scan line to a value less than
2790 * the top scan line, the cursor will disappear.
2791 */
2792 compatibility(SCOANSI);
2793 if (term->esc_nargs >= 2) {
2794 if (term->esc_args[0] > term->esc_args[1])
2795 term->cursor_on = FALSE;
2796 else
2797 term->cursor_on = TRUE;
2798 }
2799 break;
2800 case ANSI('D', '='):
2801 compatibility(SCOANSI);
2802 term->blink_is_real = FALSE;
2803 if (term->esc_args[0]>=1)
2804 term->curr_attr |= ATTR_BLINK;
2805 else
2806 term->curr_attr &= ~ATTR_BLINK;
2807 break;
2808 case ANSI('E', '='):
2809 compatibility(SCOANSI);
2810 term->blink_is_real = (term->esc_args[0] >= 1);
2811 break;
2812 case ANSI('F', '='): /* set normal foreground */
2813 compatibility(SCOANSI);
2814 if (term->esc_args[0] >= 0 && term->esc_args[0] < 16) {
2815 long colour =
2816 (sco2ansicolour[term->esc_args[0] & 0x7] |
2817 ((term->esc_args[0] & 0x8) << 1)) <<
2818 ATTR_FGSHIFT;
2819 term->curr_attr &= ~ATTR_FGMASK;
2820 term->curr_attr |= colour;
2821 term->default_attr &= ~ATTR_FGMASK;
2822 term->default_attr |= colour;
2823 }
2824 break;
2825 case ANSI('G', '='): /* set normal background */
2826 compatibility(SCOANSI);
2827 if (term->esc_args[0] >= 0 && term->esc_args[0] < 16) {
2828 long colour =
2829 (sco2ansicolour[term->esc_args[0] & 0x7] |
2830 ((term->esc_args[0] & 0x8) << 1)) <<
2831 ATTR_BGSHIFT;
2832 term->curr_attr &= ~ATTR_BGMASK;
2833 term->curr_attr |= colour;
2834 term->default_attr &= ~ATTR_BGMASK;
2835 term->default_attr |= colour;
2836 }
2837 break;
2838 case ANSI('L', '='):
2839 compatibility(SCOANSI);
2840 term->use_bce = (term->esc_args[0] <= 0);
2841 term->erase_char = ERASE_CHAR;
2842 if (term->use_bce)
2843 term->erase_char = (' ' | ATTR_ASCII |
2844 (term->curr_attr &
2845 (ATTR_FGMASK | ATTR_BGMASK)));
2846 break;
2847 case ANSI('p', '"'): /* DECSCL: set compat level */
2848 /*
2849 * Allow the host to make this emulator a
2850 * 'perfect' VT102. This first appeared in
2851 * the VT220, but we do need to get back to
2852 * PuTTY mode so I won't check it.
2853 *
2854 * The arg in 40..42,50 are a PuTTY extension.
2855 * The 2nd arg, 8bit vs 7bit is not checked.
2856 *
2857 * Setting VT102 mode should also change
2858 * the Fkeys to generate PF* codes as a
2859 * real VT102 has no Fkeys. The VT220 does
2860 * this, F11..F13 become ESC,BS,LF other
2861 * Fkeys send nothing.
2862 *
2863 * Note ESC c will NOT change this!
2864 */
2865
2866 switch (term->esc_args[0]) {
2867 case 61:
2868 term->compatibility_level &= ~TM_VTXXX;
2869 term->compatibility_level |= TM_VT102;
2870 break;
2871 case 62:
2872 term->compatibility_level &= ~TM_VTXXX;
2873 term->compatibility_level |= TM_VT220;
2874 break;
2875
2876 default:
2877 if (term->esc_args[0] > 60 &&
2878 term->esc_args[0] < 70)
2879 term->compatibility_level |= TM_VTXXX;
2880 break;
2881
2882 case 40:
2883 term->compatibility_level &= TM_VTXXX;
2884 break;
2885 case 41:
2886 term->compatibility_level = TM_PUTTY;
2887 break;
2888 case 42:
2889 term->compatibility_level = TM_SCOANSI;
2890 break;
2891
2892 case ARG_DEFAULT:
2893 term->compatibility_level = TM_PUTTY;
2894 break;
2895 case 50:
2896 break;
2897 }
2898
2899 /* Change the response to CSI c */
2900 if (term->esc_args[0] == 50) {
2901 int i;
2902 char lbuf[64];
2903 strcpy(term->id_string, "\033[?");
2904 for (i = 1; i < term->esc_nargs; i++) {
2905 if (i != 1)
2906 strcat(term->id_string, ";");
2907 sprintf(lbuf, "%d", term->esc_args[i]);
2908 strcat(term->id_string, lbuf);
2909 }
2910 strcat(term->id_string, "c");
2911 }
2912 #if 0
2913 /* Is this a good idea ?
2914 * Well we should do a soft reset at this point ...
2915 */
2916 if (!has_compat(VT420) && has_compat(VT100)) {
2917 if (!term->cfg.no_remote_resize) {
2918 if (term->reset_132)
2919 request_resize(132, 24);
2920 else
2921 request_resize(80, 24);
2922 }
2923 }
2924 #endif
2925 break;
2926 }
2927 break;
2928 case SEEN_OSC:
2929 term->osc_w = FALSE;
2930 switch (c) {
2931 case 'P': /* Linux palette sequence */
2932 term->termstate = SEEN_OSC_P;
2933 term->osc_strlen = 0;
2934 break;
2935 case 'R': /* Linux palette reset */
2936 palette_reset(term->frontend);
2937 term_invalidate(term);
2938 term->termstate = TOPLEVEL;
2939 break;
2940 case 'W': /* word-set */
2941 term->termstate = SEEN_OSC_W;
2942 term->osc_w = TRUE;
2943 break;
2944 case '0':
2945 case '1':
2946 case '2':
2947 case '3':
2948 case '4':
2949 case '5':
2950 case '6':
2951 case '7':
2952 case '8':
2953 case '9':
2954 term->esc_args[0] = 10 * term->esc_args[0] + c - '0';
2955 break;
2956 case 'L':
2957 /*
2958 * Grotty hack to support xterm and DECterm title
2959 * sequences concurrently.
2960 */
2961 if (term->esc_args[0] == 2) {
2962 term->esc_args[0] = 1;
2963 break;
2964 }
2965 /* else fall through */
2966 default:
2967 term->termstate = OSC_STRING;
2968 term->osc_strlen = 0;
2969 }
2970 break;
2971 case OSC_STRING:
2972 /*
2973 * This OSC stuff is EVIL. It takes just one character to get into
2974 * sysline mode and it's not initially obvious how to get out.
2975 * So I've added CR and LF as string aborts.
2976 * This shouldn't effect compatibility as I believe embedded
2977 * control characters are supposed to be interpreted (maybe?)
2978 * and they don't display anything useful anyway.
2979 *
2980 * -- RDB
2981 */
2982 if (c == '\012' || c == '\015') {
2983 term->termstate = TOPLEVEL;
2984 } else if (c == 0234 || c == '\007') {
2985 /*
2986 * These characters terminate the string; ST and BEL
2987 * terminate the sequence and trigger instant
2988 * processing of it, whereas ESC goes back to SEEN_ESC
2989 * mode unless it is followed by \, in which case it is
2990 * synonymous with ST in the first place.
2991 */
2992 do_osc(term);
2993 term->termstate = TOPLEVEL;
2994 } else if (c == '\033')
2995 term->termstate = OSC_MAYBE_ST;
2996 else if (term->osc_strlen < OSC_STR_MAX)
2997 term->osc_string[term->osc_strlen++] = c;
2998 break;
2999 case SEEN_OSC_P:
3000 {
3001 int max = (term->osc_strlen == 0 ? 21 : 16);
3002 int val;
3003 if (c >= '0' && c <= '9')
3004 val = c - '0';
3005 else if (c >= 'A' && c <= 'A' + max - 10)
3006 val = c - 'A' + 10;
3007 else if (c >= 'a' && c <= 'a' + max - 10)
3008 val = c - 'a' + 10;
3009 else {
3010 term->termstate = TOPLEVEL;
3011 break;
3012 }
3013 term->osc_string[term->osc_strlen++] = val;
3014 if (term->osc_strlen >= 7) {
3015 palette_set(term->frontend, term->osc_string[0],
3016 term->osc_string[1] * 16 + term->osc_string[2],
3017 term->osc_string[3] * 16 + term->osc_string[4],
3018 term->osc_string[5] * 16 + term->osc_string[6]);
3019 term_invalidate(term);
3020 term->termstate = TOPLEVEL;
3021 }
3022 }
3023 break;
3024 case SEEN_OSC_W:
3025 switch (c) {
3026 case '0':
3027 case '1':
3028 case '2':
3029 case '3':
3030 case '4':
3031 case '5':
3032 case '6':
3033 case '7':
3034 case '8':
3035 case '9':
3036 term->esc_args[0] = 10 * term->esc_args[0] + c - '0';
3037 break;
3038 default:
3039 term->termstate = OSC_STRING;
3040 term->osc_strlen = 0;
3041 }
3042 break;
3043 case VT52_ESC:
3044 term->termstate = TOPLEVEL;
3045 term->seen_disp_event = TRUE;
3046 switch (c) {
3047 case 'A':
3048 move(term, term->curs.x, term->curs.y - 1, 1);
3049 break;
3050 case 'B':
3051 move(term, term->curs.x, term->curs.y + 1, 1);
3052 break;
3053 case 'C':
3054 move(term, term->curs.x + 1, term->curs.y, 1);
3055 break;
3056 case 'D':
3057 move(term, term->curs.x - 1, term->curs.y, 1);
3058 break;
3059 /*
3060 * From the VT100 Manual
3061 * NOTE: The special graphics characters in the VT100
3062 * are different from those in the VT52
3063 *
3064 * From VT102 manual:
3065 * 137 _ Blank - Same
3066 * 140 ` Reserved - Humm.
3067 * 141 a Solid rectangle - Similar
3068 * 142 b 1/ - Top half of fraction for the
3069 * 143 c 3/ - subscript numbers below.
3070 * 144 d 5/
3071 * 145 e 7/
3072 * 146 f Degrees - Same
3073 * 147 g Plus or minus - Same
3074 * 150 h Right arrow
3075 * 151 i Ellipsis (dots)
3076 * 152 j Divide by
3077 * 153 k Down arrow
3078 * 154 l Bar at scan 0
3079 * 155 m Bar at scan 1
3080 * 156 n Bar at scan 2
3081 * 157 o Bar at scan 3 - Similar
3082 * 160 p Bar at scan 4 - Similar
3083 * 161 q Bar at scan 5 - Similar
3084 * 162 r Bar at scan 6 - Same
3085 * 163 s Bar at scan 7 - Similar
3086 * 164 t Subscript 0
3087 * 165 u Subscript 1
3088 * 166 v Subscript 2
3089 * 167 w Subscript 3
3090 * 170 x Subscript 4
3091 * 171 y Subscript 5
3092 * 172 z Subscript 6
3093 * 173 { Subscript 7
3094 * 174 | Subscript 8
3095 * 175 } Subscript 9
3096 * 176 ~ Paragraph
3097 *
3098 */
3099 case 'F':
3100 term->cset_attr[term->cset = 0] = ATTR_LINEDRW;
3101 break;
3102 case 'G':
3103 term->cset_attr[term->cset = 0] = ATTR_ASCII;
3104 break;
3105 case 'H':
3106 move(term, 0, 0, 0);
3107 break;
3108 case 'I':
3109 if (term->curs.y == 0)
3110 scroll(term, 0, term->rows - 1, -1, TRUE);
3111 else if (term->curs.y > 0)
3112 term->curs.y--;
3113 fix_cpos;
3114 term->wrapnext = FALSE;
3115 break;
3116 case 'J':
3117 erase_lots(term, FALSE, FALSE, TRUE);
3118 term->disptop = 0;
3119 break;
3120 case 'K':
3121 erase_lots(term, TRUE, FALSE, TRUE);
3122 break;
3123 #if 0
3124 case 'V':
3125 /* XXX Print cursor line */
3126 break;
3127 case 'W':
3128 /* XXX Start controller mode */
3129 break;
3130 case 'X':
3131 /* XXX Stop controller mode */
3132 break;
3133 #endif
3134 case 'Y':
3135 term->termstate = VT52_Y1;
3136 break;
3137 case 'Z':
3138 if (term->ldisc)
3139 ldisc_send(term->ldisc, "\033/Z", 3, 0);
3140 break;
3141 case '=':
3142 term->app_keypad_keys = TRUE;
3143 break;
3144 case '>':
3145 term->app_keypad_keys = FALSE;
3146 break;
3147 case '<':
3148 /* XXX This should switch to VT100 mode not current or default
3149 * VT mode. But this will only have effect in a VT220+
3150 * emulation.
3151 */
3152 term->vt52_mode = FALSE;
3153 term->blink_is_real = term->cfg.blinktext;
3154 break;
3155 #if 0
3156 case '^':
3157 /* XXX Enter auto print mode */
3158 break;
3159 case '_':
3160 /* XXX Exit auto print mode */
3161 break;
3162 case ']':
3163 /* XXX Print screen */
3164 break;
3165 #endif
3166
3167 #ifdef VT52_PLUS
3168 case 'E':
3169 /* compatibility(ATARI) */
3170 move(term, 0, 0, 0);
3171 erase_lots(term, FALSE, FALSE, TRUE);
3172 term->disptop = 0;
3173 break;
3174 case 'L':
3175 /* compatibility(ATARI) */
3176 if (term->curs.y <= term->marg_b)
3177 scroll(term, term->curs.y, term->marg_b, -1, FALSE);
3178 break;
3179 case 'M':
3180 /* compatibility(ATARI) */
3181 if (term->curs.y <= term->marg_b)
3182 scroll(term, term->curs.y, term->marg_b, 1, TRUE);
3183 break;
3184 case 'b':
3185 /* compatibility(ATARI) */
3186 term->termstate = VT52_FG;
3187 break;
3188 case 'c':
3189 /* compatibility(ATARI) */
3190 term->termstate = VT52_BG;
3191 break;
3192 case 'd':
3193 /* compatibility(ATARI) */
3194 erase_lots(term, FALSE, TRUE, FALSE);
3195 term->disptop = 0;
3196 break;
3197 case 'e':
3198 /* compatibility(ATARI) */
3199 term->cursor_on = TRUE;
3200 break;
3201 case 'f':
3202 /* compatibility(ATARI) */
3203 term->cursor_on = FALSE;
3204 break;
3205 /* case 'j': Save cursor position - broken on ST */
3206 /* case 'k': Restore cursor position */
3207 case 'l':
3208 /* compatibility(ATARI) */
3209 erase_lots(term, TRUE, TRUE, TRUE);
3210 term->curs.x = 0;
3211 term->wrapnext = FALSE;
3212 fix_cpos;
3213 break;
3214 case 'o':
3215 /* compatibility(ATARI) */
3216 erase_lots(term, TRUE, TRUE, FALSE);
3217 break;
3218 case 'p':
3219 /* compatibility(ATARI) */
3220 term->curr_attr |= ATTR_REVERSE;
3221 break;
3222 case 'q':
3223 /* compatibility(ATARI) */
3224 term->curr_attr &= ~ATTR_REVERSE;
3225 break;
3226 case 'v': /* wrap Autowrap on - Wyse style */
3227 /* compatibility(ATARI) */
3228 term->wrap = 1;
3229 break;
3230 case 'w': /* Autowrap off */
3231 /* compatibility(ATARI) */
3232 term->wrap = 0;
3233 break;
3234
3235 case 'R':
3236 /* compatibility(OTHER) */
3237 term->vt52_bold = FALSE;
3238 term->curr_attr = ATTR_DEFAULT;
3239 if (term->use_bce)
3240 term->erase_char = (' ' | ATTR_ASCII |
3241 (term->curr_attr &
3242 (ATTR_FGMASK | ATTR_BGMASK)));
3243 break;
3244 case 'S':
3245 /* compatibility(VI50) */
3246 term->curr_attr |= ATTR_UNDER;
3247 break;
3248 case 'W':
3249 /* compatibility(VI50) */
3250 term->curr_attr &= ~ATTR_UNDER;
3251 break;
3252 case 'U':
3253 /* compatibility(VI50) */
3254 term->vt52_bold = TRUE;
3255 term->curr_attr |= ATTR_BOLD;
3256 break;
3257 case 'T':
3258 /* compatibility(VI50) */
3259 term->vt52_bold = FALSE;
3260 term->curr_attr &= ~ATTR_BOLD;
3261 break;
3262 #endif
3263 }
3264 break;
3265 case VT52_Y1:
3266 term->termstate = VT52_Y2;
3267 move(term, term->curs.x, c - ' ', 0);
3268 break;
3269 case VT52_Y2:
3270 term->termstate = TOPLEVEL;
3271 move(term, c - ' ', term->curs.y, 0);
3272 break;
3273
3274 #ifdef VT52_PLUS
3275 case VT52_FG:
3276 term->termstate = TOPLEVEL;
3277 term->curr_attr &= ~ATTR_FGMASK;
3278 term->curr_attr &= ~ATTR_BOLD;
3279 term->curr_attr |= (c & 0x7) << ATTR_FGSHIFT;
3280 if ((c & 0x8) || term->vt52_bold)
3281 term->curr_attr |= ATTR_BOLD;
3282
3283 if (term->use_bce)
3284 term->erase_char = (' ' | ATTR_ASCII |
3285 (term->curr_attr &
3286 (ATTR_FGMASK | ATTR_BGMASK)));
3287 break;
3288 case VT52_BG:
3289 term->termstate = TOPLEVEL;
3290 term->curr_attr &= ~ATTR_BGMASK;
3291 term->curr_attr &= ~ATTR_BLINK;
3292 term->curr_attr |= (c & 0x7) << ATTR_BGSHIFT;
3293
3294 /* Note: bold background */
3295 if (c & 0x8)
3296 term->curr_attr |= ATTR_BLINK;
3297
3298 if (term->use_bce)
3299 term->erase_char = (' ' | ATTR_ASCII |
3300 (term->curr_attr &
3301 (ATTR_FGMASK | ATTR_BGMASK)));
3302 break;
3303 #endif
3304 default: break; /* placate gcc warning about enum use */
3305 }
3306 if (term->selstate != NO_SELECTION) {
3307 pos cursplus = term->curs;
3308 incpos(cursplus);
3309 check_selection(term, term->curs, cursplus);
3310 }
3311 }
3312
3313 term_print_flush(term);
3314 }
3315
3316 #if 0
3317 /*
3318 * Compare two lines to determine whether they are sufficiently
3319 * alike to scroll-optimise one to the other. Return the degree of
3320 * similarity.
3321 */
3322 static int linecmp(Terminal *term, unsigned long *a, unsigned long *b)
3323 {
3324 int i, n;
3325
3326 for (i = n = 0; i < term->cols; i++)
3327 n += (*a++ == *b++);
3328 return n;
3329 }
3330 #endif
3331
3332 /*
3333 * To prevent having to run the reasonably tricky bidi algorithm
3334 * too many times, we maintain a cache of the last lineful of data
3335 * fed to the algorithm on each line of the display.
3336 */
3337 static int term_bidi_cache_hit(Terminal *term, int line,
3338 unsigned long *lbefore, int width)
3339 {
3340 if (!term->pre_bidi_cache)
3341 return FALSE; /* cache doesn't even exist yet! */
3342
3343 if (line >= term->bidi_cache_size)
3344 return FALSE; /* cache doesn't have this many lines */
3345
3346 if (!term->pre_bidi_cache[line])
3347 return FALSE; /* cache doesn't contain _this_ line */
3348
3349 if (!memcmp(term->pre_bidi_cache[line], lbefore,
3350 width * sizeof(unsigned long)))
3351 return TRUE; /* aha! the line matches the cache */
3352
3353 return FALSE; /* it didn't match. */
3354 }
3355
3356 static void term_bidi_cache_store(Terminal *term, int line,
3357 unsigned long *lbefore,
3358 unsigned long *lafter, int width)
3359 {
3360 if (!term->pre_bidi_cache || term->bidi_cache_size <= line) {
3361 int j = term->bidi_cache_size;
3362 term->bidi_cache_size = line+1;
3363 term->pre_bidi_cache = sresize(term->pre_bidi_cache,
3364 term->bidi_cache_size,
3365 unsigned long *);
3366 term->post_bidi_cache = sresize(term->post_bidi_cache,
3367 term->bidi_cache_size,
3368 unsigned long *);
3369 while (j < term->bidi_cache_size) {
3370 term->pre_bidi_cache[j] = term->post_bidi_cache[j] = NULL;
3371 j++;
3372 }
3373 }
3374
3375 sfree(term->pre_bidi_cache[line]);
3376 sfree(term->post_bidi_cache[line]);
3377
3378 term->pre_bidi_cache[line] = snewn(width, unsigned long);
3379 term->post_bidi_cache[line] = snewn(width, unsigned long);
3380
3381 memcpy(term->pre_bidi_cache[line], lbefore, width * sizeof(unsigned long));
3382 memcpy(term->post_bidi_cache[line], lafter, width * sizeof(unsigned long));
3383 }
3384
3385 /*
3386 * Given a context, update the window. Out of paranoia, we don't
3387 * allow WM_PAINT responses to do scrolling optimisations.
3388 */
3389 static void do_paint(Terminal *term, Context ctx, int may_optimise)
3390 {
3391 int i, it, j, our_curs_y, our_curs_x;
3392 unsigned long rv, cursor;
3393 pos scrpos;
3394 char ch[1024];
3395 long cursor_background = ERASE_CHAR;
3396 unsigned long ticks;
3397 #ifdef OPTIMISE_SCROLL
3398 struct scrollregion *sr;
3399 #endif /* OPTIMISE_SCROLL */
3400
3401 /*
3402 * Check the visual bell state.
3403 */
3404 if (term->in_vbell) {
3405 ticks = GETTICKCOUNT();
3406 if (ticks - term->vbell_startpoint >= VBELL_TIMEOUT)
3407 term->in_vbell = FALSE;
3408 }
3409
3410 rv = (!term->rvideo ^ !term->in_vbell ? ATTR_REVERSE : 0);
3411
3412 /* Depends on:
3413 * screen array, disptop, scrtop,
3414 * selection, rv,
3415 * cfg.blinkpc, blink_is_real, tblinker,
3416 * curs.y, curs.x, blinker, cfg.blink_cur, cursor_on, has_focus, wrapnext
3417 */
3418
3419 /* Has the cursor position or type changed ? */
3420 if (term->cursor_on) {
3421 if (term->has_focus) {
3422 if (term->blinker || !term->cfg.blink_cur)
3423 cursor = TATTR_ACTCURS;
3424 else
3425 cursor = 0;
3426 } else
3427 cursor = TATTR_PASCURS;
3428 if (term->wrapnext)
3429 cursor |= TATTR_RIGHTCURS;
3430 } else
3431 cursor = 0;
3432 our_curs_y = term->curs.y - term->disptop;
3433 {
3434 /*
3435 * Adjust the cursor position in the case where it's
3436 * resting on the right-hand half of a CJK wide character.
3437 * xterm's behaviour here, which seems adequate to me, is
3438 * to display the cursor covering the _whole_ character,
3439 * exactly as if it were one space to the left.
3440 */
3441 unsigned long *ldata = lineptr(term->curs.y);
3442 our_curs_x = term->curs.x;
3443 if (our_curs_x > 0 &&
3444 (ldata[our_curs_x] & (CHAR_MASK | CSET_MASK)) == UCSWIDE)
3445 our_curs_x--;
3446 }
3447
3448 if (term->dispcurs && (term->curstype != cursor ||
3449 term->dispcurs !=
3450 term->disptext + our_curs_y * (term->cols + 1) +
3451 our_curs_x)) {
3452 if (term->dispcurs > term->disptext &&
3453 (*term->dispcurs & (CHAR_MASK | CSET_MASK)) == UCSWIDE)
3454 term->dispcurs[-1] |= ATTR_INVALID;
3455 if ( (term->dispcurs[1] & (CHAR_MASK | CSET_MASK)) == UCSWIDE)
3456 term->dispcurs[1] |= ATTR_INVALID;
3457 *term->dispcurs |= ATTR_INVALID;
3458 term->curstype = 0;
3459 }
3460 term->dispcurs = NULL;
3461
3462 #ifdef OPTIMISE_SCROLL
3463 /* Do scrolls */
3464 sr = term->scrollhead;
3465 while (sr) {
3466 struct scrollregion *next = sr->next;
3467 do_scroll(ctx, sr->topline, sr->botline, sr->lines);
3468 sfree(sr);
3469 sr = next;
3470 }
3471 term->scrollhead = term->scrolltail = NULL;
3472 #endif /* OPTIMISE_SCROLL */
3473
3474 /* The normal screen data */
3475 for (i = 0; i < term->rows; i++) {
3476 unsigned long *ldata;
3477 int lattr;
3478 int idx, dirty_line, dirty_run, selected;
3479 unsigned long attr = 0;
3480 int updated_line = 0;
3481 int start = 0;
3482 int ccount = 0;
3483 int last_run_dirty = 0;
3484
3485 scrpos.y = i + term->disptop;
3486 ldata = lineptr(scrpos.y);
3487 lattr = (ldata[term->cols] & LATTR_MODE);
3488
3489 idx = i * (term->cols + 1);
3490 dirty_run = dirty_line = (ldata[term->cols] !=
3491 term->disptext[idx + term->cols]);
3492 term->disptext[idx + term->cols] = ldata[term->cols];
3493
3494 /* Do Arabic shaping and bidi. */
3495 if(!term->cfg.bidi || !term->cfg.arabicshaping) {
3496
3497 if (!term_bidi_cache_hit(term, i, ldata, term->cols)) {
3498
3499 for(it=0; it<term->cols ; it++)
3500 {
3501 int uc = (ldata[it] & 0xFFFF);
3502
3503 switch (uc & CSET_MASK) {
3504 case ATTR_LINEDRW:
3505 if (!term->cfg.rawcnp) {
3506 uc = term->ucsdata->unitab_xterm[uc & 0xFF];
3507 break;
3508 }
3509 case ATTR_ASCII:
3510 uc = term->ucsdata->unitab_line[uc & 0xFF];
3511 break;
3512 case ATTR_SCOACS:
3513 uc = term->ucsdata->unitab_scoacs[uc&0xFF];
3514 break;
3515 }
3516 switch (uc & CSET_MASK) {
3517 case ATTR_ACP:
3518 uc = term->ucsdata->unitab_font[uc & 0xFF];
3519 break;
3520 case ATTR_OEMCP:
3521 uc = term->ucsdata->unitab_oemcp[uc & 0xFF];
3522 break;
3523 }
3524
3525 term->wcFrom[it].origwc = term->wcFrom[it].wc = uc;
3526 term->wcFrom[it].index = it;
3527 }
3528
3529 if(!term->cfg.bidi)
3530 do_bidi(term->wcFrom, term->cols);
3531
3532 /* this is saved iff done from inside the shaping */
3533 if(!term->cfg.bidi && term->cfg.arabicshaping)
3534 for(it=0; it<term->cols; it++)
3535 term->wcTo[it] = term->wcFrom[it];
3536
3537 if(!term->cfg.arabicshaping)
3538 do_shape(term->wcFrom, term->wcTo, term->cols);
3539
3540 for(it=0; it<term->cols ; it++)
3541 {
3542 term->ltemp[it] = ldata[term->wcTo[it].index];
3543
3544 if (term->wcTo[it].origwc != term->wcTo[it].wc)
3545 term->ltemp[it] = ((term->ltemp[it] & 0xFFFF0000) |
3546 term->wcTo[it].wc);
3547 }
3548 term_bidi_cache_store(term, i, ldata, term->ltemp, term->cols);
3549 ldata = term->ltemp;
3550 } else {
3551 ldata = term->post_bidi_cache[i];
3552 }
3553 }
3554
3555 for (j = 0; j < term->cols; j++, idx++) {
3556 unsigned long tattr, tchar;
3557 unsigned long *d = ldata + j;
3558 int break_run;
3559 scrpos.x = j;
3560
3561 tchar = (*d & (CHAR_MASK | CSET_MASK));
3562 tattr = (*d & (ATTR_MASK ^ CSET_MASK));
3563 switch (tchar & CSET_MASK) {
3564 case ATTR_ASCII:
3565 tchar = term->ucsdata->unitab_line[tchar & 0xFF];
3566 break;
3567 case ATTR_LINEDRW:
3568 tchar = term->ucsdata->unitab_xterm[tchar & 0xFF];
3569 break;
3570 case ATTR_SCOACS:
3571 tchar = term->ucsdata->unitab_scoacs[tchar&0xFF];
3572 break;
3573 }
3574 tattr |= (tchar & CSET_MASK);
3575 tchar &= CHAR_MASK;
3576 if (j < term->cols-1 &&
3577 (d[1] & (CHAR_MASK | CSET_MASK)) == UCSWIDE)
3578 tattr |= ATTR_WIDE;
3579
3580 /* Video reversing things */
3581 if (term->selstate == DRAGGING || term->selstate == SELECTED) {
3582 if (term->seltype == LEXICOGRAPHIC)
3583 selected = (posle(term->selstart, scrpos) &&
3584 poslt(scrpos, term->selend));
3585 else
3586 selected = (posPle(term->selstart, scrpos) &&
3587 posPlt(scrpos, term->selend));
3588 } else
3589 selected = FALSE;
3590 tattr = (tattr ^ rv
3591 ^ (selected ? ATTR_REVERSE : 0));
3592
3593 /* 'Real' blinking ? */
3594 if (term->blink_is_real && (tattr & ATTR_BLINK)) {
3595 if (term->has_focus && term->tblinker) {
3596 tchar = term->ucsdata->unitab_line[(unsigned char)' '];
3597 }
3598 tattr &= ~ATTR_BLINK;
3599 }
3600
3601 /*
3602 * Check the font we'll _probably_ be using to see if
3603 * the character is wide when we don't want it to be.
3604 */
3605 if ((tchar | tattr) != (term->disptext[idx]& ~ATTR_NARROW)) {
3606 if ((tattr & ATTR_WIDE) == 0 &&
3607 char_width(ctx, (tchar | tattr) & 0xFFFF) == 2)
3608 tattr |= ATTR_NARROW;
3609 } else if (term->disptext[idx]&ATTR_NARROW)
3610 tattr |= ATTR_NARROW;
3611
3612 /* Cursor here ? Save the 'background' */
3613 if (i == our_curs_y && j == our_curs_x) {
3614 cursor_background = tattr | tchar;
3615 term->dispcurs = term->disptext + idx;
3616 }
3617
3618 if ((term->disptext[idx] ^ tattr) & ATTR_WIDE)
3619 dirty_line = TRUE;
3620
3621 break_run = (((tattr ^ attr) & term->attr_mask) ||
3622 j - start >= sizeof(ch));
3623
3624 /* Special hack for VT100 Linedraw glyphs */
3625 if ((attr & CSET_MASK) == 0x2300 && tchar >= 0xBA
3626 && tchar <= 0xBD) break_run = TRUE;
3627
3628 if (!term->ucsdata->dbcs_screenfont && !dirty_line) {
3629 if ((tchar | tattr) == term->disptext[idx])
3630 break_run = TRUE;
3631 else if (!dirty_run && ccount == 1)
3632 break_run = TRUE;
3633 }
3634
3635 if (break_run) {
3636 if ((dirty_run || last_run_dirty) && ccount > 0) {
3637 do_text(ctx, start, i, ch, ccount, attr, lattr);
3638 updated_line = 1;
3639 }
3640 start = j;
3641 ccount = 0;
3642 attr = tattr;
3643 if (term->ucsdata->dbcs_screenfont)
3644 last_run_dirty = dirty_run;
3645 dirty_run = dirty_line;
3646 }
3647
3648 if ((tchar | tattr) != term->disptext[idx])
3649 dirty_run = TRUE;
3650 ch[ccount++] = (char) tchar;
3651 term->disptext[idx] = tchar | tattr;
3652
3653 /* If it's a wide char step along to the next one. */
3654 if (tattr & ATTR_WIDE) {
3655 if (++j < term->cols) {
3656 idx++;
3657 d++;
3658 /*
3659 * By construction above, the cursor should not
3660 * be on the right-hand half of this character.
3661 * Ever.
3662 */
3663 assert(!(i == our_curs_y && j == our_curs_x));
3664 if (term->disptext[idx] != *d)
3665 dirty_run = TRUE;
3666 term->disptext[idx] = *d;
3667 }
3668 }
3669 }
3670 if (dirty_run && ccount > 0) {
3671 do_text(ctx, start, i, ch, ccount, attr, lattr);
3672 updated_line = 1;
3673 }
3674
3675 /* Cursor on this line ? (and changed) */
3676 if (i == our_curs_y && (term->curstype != cursor || updated_line)) {
3677 ch[0] = (char) (cursor_background & CHAR_MASK);
3678 attr = (cursor_background & ATTR_MASK) | cursor;
3679 do_cursor(ctx, our_curs_x, i, ch, 1, attr, lattr);
3680 term->curstype = cursor;
3681 }
3682 }
3683 }
3684
3685 /*
3686 * Flick the switch that says if blinking things should be shown or hidden.
3687 */
3688
3689 void term_blink(Terminal *term, int flg)
3690 {
3691 long now, blink_diff;
3692
3693 now = GETTICKCOUNT();
3694 blink_diff = now - term->last_tblink;
3695
3696 /* Make sure the text blinks no more than 2Hz; we'll use 0.45 s period. */
3697 if (blink_diff < 0 || blink_diff > (TICKSPERSEC * 9 / 20)) {
3698 term->last_tblink = now;
3699 term->tblinker = !term->tblinker;
3700 }
3701
3702 if (flg) {
3703 term->blinker = 1;
3704 term->last_blink = now;
3705 return;
3706 }
3707
3708 blink_diff = now - term->last_blink;
3709
3710 /* Make sure the cursor blinks no faster than system blink rate */
3711 if (blink_diff >= 0 && blink_diff < (long) CURSORBLINK)
3712 return;
3713
3714 term->last_blink = now;
3715 term->blinker = !term->blinker;
3716 }
3717
3718 /*
3719 * Invalidate the whole screen so it will be repainted in full.
3720 */
3721 void term_invalidate(Terminal *term)
3722 {
3723 int i;
3724
3725 for (i = 0; i < term->rows * (term->cols + 1); i++)
3726 term->disptext[i] = ATTR_INVALID;
3727 }
3728
3729 /*
3730 * Paint the window in response to a WM_PAINT message.
3731 */
3732 void term_paint(Terminal *term, Context ctx,
3733 int left, int top, int right, int bottom, int immediately)
3734 {
3735 int i, j;
3736 if (left < 0) left = 0;
3737 if (top < 0) top = 0;
3738 if (right >= term->cols) right = term->cols-1;
3739 if (bottom >= term->rows) bottom = term->rows-1;
3740
3741 for (i = top; i <= bottom && i < term->rows; i++) {
3742 if ((term->disptext[i * (term->cols + 1) + term->cols] &
3743 LATTR_MODE) == LATTR_NORM)
3744 for (j = left; j <= right && j < term->cols; j++)
3745 term->disptext[i * (term->cols + 1) + j] = ATTR_INVALID;
3746 else
3747 for (j = left / 2; j <= right / 2 + 1 && j < term->cols; j++)
3748 term->disptext[i * (term->cols + 1) + j] = ATTR_INVALID;
3749 }
3750
3751 /* This should happen soon enough, also for some reason it sometimes
3752 * fails to actually do anything when re-sizing ... painting the wrong
3753 * window perhaps ?
3754 */
3755 if (immediately)
3756 do_paint (term, ctx, FALSE);
3757 }
3758
3759 /*
3760 * Attempt to scroll the scrollback. The second parameter gives the
3761 * position we want to scroll to; the first is +1 to denote that
3762 * this position is relative to the beginning of the scrollback, -1
3763 * to denote it is relative to the end, and 0 to denote that it is
3764 * relative to the current position.
3765 */
3766 void term_scroll(Terminal *term, int rel, int where)
3767 {
3768 int sbtop = -sblines(term);
3769 #ifdef OPTIMISE_SCROLL
3770 int olddisptop = term->disptop;
3771 int shift;
3772 #endif /* OPTIMISE_SCROLL */
3773
3774 term->disptop = (rel < 0 ? 0 : rel > 0 ? sbtop : term->disptop) + where;
3775 if (term->disptop < sbtop)
3776 term->disptop = sbtop;
3777 if (term->disptop > 0)
3778 term->disptop = 0;
3779 update_sbar(term);
3780 #ifdef OPTIMISE_SCROLL
3781 shift = (term->disptop - olddisptop);
3782 if (shift < term->rows && shift > -term->rows)
3783 scroll_display(term, 0, term->rows - 1, shift);
3784 #endif /* OPTIMISE_SCROLL */
3785 term_update(term);
3786 }
3787
3788 static void clipme(Terminal *term, pos top, pos bottom, int rect, int desel)
3789 {
3790 wchar_t *workbuf;
3791 wchar_t *wbptr; /* where next char goes within workbuf */
3792 int old_top_x;
3793 int wblen = 0; /* workbuf len */
3794 int buflen; /* amount of memory allocated to workbuf */
3795
3796 buflen = 5120; /* Default size */
3797 workbuf = snewn(buflen, wchar_t);
3798 wbptr = workbuf; /* start filling here */
3799 old_top_x = top.x; /* needed for rect==1 */
3800
3801 while (poslt(top, bottom)) {
3802 int nl = FALSE;
3803 unsigned long *ldata = lineptr(top.y);
3804 pos nlpos;
3805
3806 /*
3807 * nlpos will point at the maximum position on this line we
3808 * should copy up to. So we start it at the end of the
3809 * line...
3810 */
3811 nlpos.y = top.y;
3812 nlpos.x = term->cols;
3813
3814 /*
3815 * ... move it backwards if there's unused space at the end
3816 * of the line (and also set `nl' if this is the case,
3817 * because in normal selection mode this means we need a
3818 * newline at the end)...
3819 */
3820 if (!(ldata[term->cols] & LATTR_WRAPPED)) {
3821 while (((ldata[nlpos.x - 1] & 0xFF) == 0x20 ||
3822 (DIRECT_CHAR(ldata[nlpos.x - 1]) &&
3823 (ldata[nlpos.x - 1] & CHAR_MASK) == 0x20))
3824 && poslt(top, nlpos))
3825 decpos(nlpos);
3826 if (poslt(nlpos, bottom))
3827 nl = TRUE;
3828 } else if (ldata[term->cols] & LATTR_WRAPPED2) {
3829 /* Ignore the last char on the line in a WRAPPED2 line. */
3830 decpos(nlpos);
3831 }
3832
3833 /*
3834 * ... and then clip it to the terminal x coordinate if
3835 * we're doing rectangular selection. (In this case we
3836 * still did the above, so that copying e.g. the right-hand
3837 * column from a table doesn't fill with spaces on the
3838 * right.)
3839 */
3840 if (rect) {
3841 if (nlpos.x > bottom.x)
3842 nlpos.x = bottom.x;
3843 nl = (top.y < bottom.y);
3844 }
3845
3846 while (poslt(top, bottom) && poslt(top, nlpos)) {
3847 #if 0
3848 char cbuf[16], *p;
3849 sprintf(cbuf, "<U+%04x>", (ldata[top.x] & 0xFFFF));
3850 #else
3851 wchar_t cbuf[16], *p;
3852 int uc = (ldata[top.x] & 0xFFFF);
3853 int set, c;
3854
3855 if (uc == UCSWIDE) {
3856 top.x++;
3857 continue;
3858 }
3859
3860 switch (uc & CSET_MASK) {
3861 case ATTR_LINEDRW:
3862 if (!term->cfg.rawcnp) {
3863 uc = term->ucsdata->unitab_xterm[uc & 0xFF];
3864 break;
3865 }
3866 case ATTR_ASCII:
3867 uc = term->ucsdata->unitab_line[uc & 0xFF];
3868 break;
3869 case ATTR_SCOACS:
3870 uc = term->ucsdata->unitab_scoacs[uc&0xFF];
3871 break;
3872 }
3873 switch (uc & CSET_MASK) {
3874 case ATTR_ACP:
3875 uc = term->ucsdata->unitab_font[uc & 0xFF];
3876 break;
3877 case ATTR_OEMCP:
3878 uc = term->ucsdata->unitab_oemcp[uc & 0xFF];
3879 break;
3880 }
3881
3882 set = (uc & CSET_MASK);
3883 c = (uc & CHAR_MASK);
3884 cbuf[0] = uc;
3885 cbuf[1] = 0;
3886
3887 if (DIRECT_FONT(uc)) {
3888 if (c >= ' ' && c != 0x7F) {
3889 char buf[4];
3890 WCHAR wbuf[4];
3891 int rv;
3892 if (is_dbcs_leadbyte(term->ucsdata->font_codepage, (BYTE) c)) {
3893 buf[0] = c;
3894 buf[1] = (char) (0xFF & ldata[top.x + 1]);
3895 rv = mb_to_wc(term->ucsdata->font_codepage, 0, buf, 2, wbuf, 4);
3896 top.x++;
3897 } else {
3898 buf[0] = c;
3899 rv = mb_to_wc(term->ucsdata->font_codepage, 0, buf, 1, wbuf, 4);
3900 }
3901
3902 if (rv > 0) {
3903 memcpy(cbuf, wbuf, rv * sizeof(wchar_t));
3904 cbuf[rv] = 0;
3905 }
3906 }
3907 }
3908 #endif
3909
3910 for (p = cbuf; *p; p++) {
3911 /* Enough overhead for trailing NL and nul */
3912 if (wblen >= buflen - 16) {
3913 buflen += 100;
3914 workbuf = sresize(workbuf, buflen, wchar_t);
3915 wbptr = workbuf + wblen;
3916 }
3917 wblen++;
3918 *wbptr++ = *p;
3919 }
3920 top.x++;
3921 }
3922 if (nl) {
3923 int i;
3924 for (i = 0; i < sel_nl_sz; i++) {
3925 wblen++;
3926 *wbptr++ = sel_nl[i];
3927 }
3928 }
3929 top.y++;
3930 top.x = rect ? old_top_x : 0;
3931 }
3932 #if SELECTION_NUL_TERMINATED
3933 wblen++;
3934 *wbptr++ = 0;
3935 #endif
3936 write_clip(term->frontend, workbuf, wblen, desel); /* transfer to clipbd */
3937 if (buflen > 0) /* indicates we allocated this buffer */
3938 sfree(workbuf);
3939 }
3940
3941 void term_copyall(Terminal *term)
3942 {
3943 pos top;
3944 pos bottom;
3945 tree234 *screen = term->screen;
3946 top.y = -sblines(term);
3947 top.x = 0;
3948 bottom.y = find_last_nonempty_line(term, screen);
3949 bottom.x = term->cols;
3950 clipme(term, top, bottom, 0, TRUE);
3951 }
3952
3953 /*
3954 * The wordness array is mainly for deciding the disposition of the
3955 * US-ASCII characters.
3956 */
3957 static int wordtype(Terminal *term, int uc)
3958 {
3959 struct ucsword {
3960 int start, end, ctype;
3961 };
3962 static const struct ucsword ucs_words[] = {
3963 {
3964 128, 160, 0}, {
3965 161, 191, 1}, {
3966 215, 215, 1}, {
3967 247, 247, 1}, {
3968 0x037e, 0x037e, 1}, /* Greek question mark */
3969 {
3970 0x0387, 0x0387, 1}, /* Greek ano teleia */
3971 {
3972 0x055a, 0x055f, 1}, /* Armenian punctuation */
3973 {
3974 0x0589, 0x0589, 1}, /* Armenian full stop */
3975 {
3976 0x0700, 0x070d, 1}, /* Syriac punctuation */
3977 {
3978 0x104a, 0x104f, 1}, /* Myanmar punctuation */
3979 {
3980 0x10fb, 0x10fb, 1}, /* Georgian punctuation */
3981 {
3982 0x1361, 0x1368, 1}, /* Ethiopic punctuation */
3983 {
3984 0x166d, 0x166e, 1}, /* Canadian Syl. punctuation */
3985 {
3986 0x17d4, 0x17dc, 1}, /* Khmer punctuation */
3987 {
3988 0x1800, 0x180a, 1}, /* Mongolian punctuation */
3989 {
3990 0x2000, 0x200a, 0}, /* Various spaces */
3991 {
3992 0x2070, 0x207f, 2}, /* superscript */
3993 {
3994 0x2080, 0x208f, 2}, /* subscript */
3995 {
3996 0x200b, 0x27ff, 1}, /* punctuation and symbols */
3997 {
3998 0x3000, 0x3000, 0}, /* ideographic space */
3999 {
4000 0x3001, 0x3020, 1}, /* ideographic punctuation */
4001 {
4002 0x303f, 0x309f, 3}, /* Hiragana */
4003 {
4004 0x30a0, 0x30ff, 3}, /* Katakana */
4005 {
4006 0x3300, 0x9fff, 3}, /* CJK Ideographs */
4007 {
4008 0xac00, 0xd7a3, 3}, /* Hangul Syllables */
4009 {
4010 0xf900, 0xfaff, 3}, /* CJK Ideographs */
4011 {
4012 0xfe30, 0xfe6b, 1}, /* punctuation forms */
4013 {
4014 0xff00, 0xff0f, 1}, /* half/fullwidth ASCII */
4015 {
4016 0xff1a, 0xff20, 1}, /* half/fullwidth ASCII */
4017 {
4018 0xff3b, 0xff40, 1}, /* half/fullwidth ASCII */
4019 {
4020 0xff5b, 0xff64, 1}, /* half/fullwidth ASCII */
4021 {
4022 0xfff0, 0xffff, 0}, /* half/fullwidth ASCII */
4023 {
4024 0, 0, 0}
4025 };
4026 const struct ucsword *wptr;
4027
4028 uc &= (CSET_MASK | CHAR_MASK);
4029
4030 switch (uc & CSET_MASK) {
4031 case ATTR_LINEDRW:
4032 uc = term->ucsdata->unitab_xterm[uc & 0xFF];
4033 break;
4034 case ATTR_ASCII:
4035 uc = term->ucsdata->unitab_line[uc & 0xFF];
4036 break;
4037 case ATTR_SCOACS:
4038 uc = term->ucsdata->unitab_scoacs[uc&0xFF];
4039 break;
4040 }
4041 switch (uc & CSET_MASK) {
4042 case ATTR_ACP:
4043 uc = term->ucsdata->unitab_font[uc & 0xFF];
4044 break;
4045 case ATTR_OEMCP:
4046 uc = term->ucsdata->unitab_oemcp[uc & 0xFF];
4047 break;
4048 }
4049
4050 /* For DBCS font's I can't do anything usefull. Even this will sometimes
4051 * fail as there's such a thing as a double width space. :-(
4052 */
4053 if (term->ucsdata->dbcs_screenfont &&
4054 term->ucsdata->font_codepage == term->ucsdata->line_codepage)
4055 return (uc != ' ');
4056
4057 if (uc < 0x80)
4058 return term->wordness[uc];
4059
4060 for (wptr = ucs_words; wptr->start; wptr++) {
4061 if (uc >= wptr->start && uc <= wptr->end)
4062 return wptr->ctype;
4063 }
4064
4065 return 2;
4066 }
4067
4068 /*
4069 * Spread the selection outwards according to the selection mode.
4070 */
4071 static pos sel_spread_half(Terminal *term, pos p, int dir)
4072 {
4073 unsigned long *ldata;
4074 short wvalue;
4075 int topy = -sblines(term);
4076
4077 ldata = lineptr(p.y);
4078
4079 switch (term->selmode) {
4080 case SM_CHAR:
4081 /*
4082 * In this mode, every character is a separate unit, except
4083 * for runs of spaces at the end of a non-wrapping line.
4084 */
4085 if (!(ldata[term->cols] & LATTR_WRAPPED)) {
4086 unsigned long *q = ldata + term->cols;
4087 while (q > ldata && (q[-1] & CHAR_MASK) == 0x20)
4088 q--;
4089 if (q == ldata + term->cols)
4090 q--;
4091 if (p.x >= q - ldata)
4092 p.x = (dir == -1 ? q - ldata : term->cols - 1);
4093 }
4094 break;
4095 case SM_WORD:
4096 /*
4097 * In this mode, the units are maximal runs of characters
4098 * whose `wordness' has the same value.
4099 */
4100 wvalue = wordtype(term, UCSGET(ldata, p.x));
4101 if (dir == +1) {
4102 while (1) {
4103 int maxcols = (ldata[term->cols] & LATTR_WRAPPED2 ?
4104 term->cols-1 : term->cols);
4105 if (p.x < maxcols-1) {
4106 if (wordtype(term, UCSGET(ldata, p.x + 1)) == wvalue)
4107 p.x++;
4108 else
4109 break;
4110 } else {
4111 if (ldata[term->cols] & LATTR_WRAPPED) {
4112 unsigned long *ldata2;
4113 ldata2 = lineptr(p.y+1);
4114 if (wordtype(term, UCSGET(ldata2, 0)) == wvalue) {
4115 p.x = 0;
4116 p.y++;
4117 ldata = ldata2;
4118 } else
4119 break;
4120 } else
4121 break;
4122 }
4123 }
4124 } else {
4125 while (1) {
4126 if (p.x > 0) {
4127 if (wordtype(term, UCSGET(ldata, p.x - 1)) == wvalue)
4128 p.x--;
4129 else
4130 break;
4131 } else {
4132 unsigned long *ldata2;
4133 int maxcols;
4134 if (p.y <= topy)
4135 break;
4136 ldata2 = lineptr(p.y-1);
4137 maxcols = (ldata2[term->cols] & LATTR_WRAPPED2 ?
4138 term->cols-1 : term->cols);
4139 if (ldata2[term->cols] & LATTR_WRAPPED) {
4140 if (wordtype(term, UCSGET(ldata2, maxcols-1))
4141 == wvalue) {
4142 p.x = maxcols-1;
4143 p.y--;
4144 ldata = ldata2;
4145 } else
4146 break;
4147 } else
4148 break;
4149 }
4150 }
4151 }
4152 break;
4153 case SM_LINE:
4154 /*
4155 * In this mode, every line is a unit.
4156 */
4157 p.x = (dir == -1 ? 0 : term->cols - 1);
4158 break;
4159 }
4160 return p;
4161 }
4162
4163 static void sel_spread(Terminal *term)
4164 {
4165 if (term->seltype == LEXICOGRAPHIC) {
4166 term->selstart = sel_spread_half(term, term->selstart, -1);
4167 decpos(term->selend);
4168 term->selend = sel_spread_half(term, term->selend, +1);
4169 incpos(term->selend);
4170 }
4171 }
4172
4173 void term_do_paste(Terminal *term)
4174 {
4175 wchar_t *data;
4176 int len;
4177
4178 get_clip(term->frontend, &data, &len);
4179 if (data && len > 0) {
4180 wchar_t *p, *q;
4181
4182 term_seen_key_event(term); /* pasted data counts */
4183
4184 if (term->paste_buffer)
4185 sfree(term->paste_buffer);
4186 term->paste_pos = term->paste_hold = term->paste_len = 0;
4187 term->paste_buffer = snewn(len, wchar_t);
4188
4189 p = q = data;
4190 while (p < data + len) {
4191 while (p < data + len &&
4192 !(p <= data + len - sel_nl_sz &&
4193 !memcmp(p, sel_nl, sizeof(sel_nl))))
4194 p++;
4195
4196 {
4197 int i;
4198 for (i = 0; i < p - q; i++) {
4199 term->paste_buffer[term->paste_len++] = q[i];
4200 }
4201 }
4202
4203 if (p <= data + len - sel_nl_sz &&
4204 !memcmp(p, sel_nl, sizeof(sel_nl))) {
4205 term->paste_buffer[term->paste_len++] = '\015';
4206 p += sel_nl_sz;
4207 }
4208 q = p;
4209 }
4210
4211 /* Assume a small paste will be OK in one go. */
4212 if (term->paste_len < 256) {
4213 if (term->ldisc)
4214 luni_send(term->ldisc, term->paste_buffer, term->paste_len, 0);
4215 if (term->paste_buffer)
4216 sfree(term->paste_buffer);
4217 term->paste_buffer = 0;
4218 term->paste_pos = term->paste_hold = term->paste_len = 0;
4219 }
4220 }
4221 get_clip(term->frontend, NULL, NULL);
4222 }
4223
4224 void term_mouse(Terminal *term, Mouse_Button braw, Mouse_Button bcooked,
4225 Mouse_Action a, int x, int y, int shift, int ctrl, int alt)
4226 {
4227 pos selpoint;
4228 unsigned long *ldata;
4229 int raw_mouse = (term->xterm_mouse &&
4230 !term->cfg.no_mouse_rep &&
4231 !(term->cfg.mouse_override && shift));
4232 int default_seltype;
4233
4234 if (y < 0) {
4235 y = 0;
4236 if (a == MA_DRAG && !raw_mouse)
4237 term_scroll(term, 0, -1);
4238 }
4239 if (y >= term->rows) {
4240 y = term->rows - 1;
4241 if (a == MA_DRAG && !raw_mouse)
4242 term_scroll(term, 0, +1);
4243 }
4244 if (x < 0) {
4245 if (y > 0) {
4246 x = term->cols - 1;
4247 y--;
4248 } else
4249 x = 0;
4250 }
4251 if (x >= term->cols)
4252 x = term->cols - 1;
4253
4254 selpoint.y = y + term->disptop;
4255 selpoint.x = x;
4256 ldata = lineptr(selpoint.y);
4257 if ((ldata[term->cols] & LATTR_MODE) != LATTR_NORM)
4258 selpoint.x /= 2;
4259
4260 if (raw_mouse) {
4261 int encstate = 0, r, c;
4262 char abuf[16];
4263
4264 if (term->ldisc) {
4265
4266 switch (braw) {
4267 case MBT_LEFT:
4268 encstate = 0x20; /* left button down */
4269 break;
4270 case MBT_MIDDLE:
4271 encstate = 0x21;
4272 break;
4273 case MBT_RIGHT:
4274 encstate = 0x22;
4275 break;
4276 case MBT_WHEEL_UP:
4277 encstate = 0x60;
4278 break;
4279 case MBT_WHEEL_DOWN:
4280 encstate = 0x61;
4281 break;
4282 default: break; /* placate gcc warning about enum use */
4283 }
4284 switch (a) {
4285 case MA_DRAG:
4286 if (term->xterm_mouse == 1)
4287 return;
4288 encstate += 0x20;
4289 break;
4290 case MA_RELEASE:
4291 encstate = 0x23;
4292 term->mouse_is_down = 0;
4293 break;
4294 case MA_CLICK:
4295 if (term->mouse_is_down == braw)
4296 return;
4297 term->mouse_is_down = braw;
4298 break;
4299 default: break; /* placate gcc warning about enum use */
4300 }
4301 if (shift)
4302 encstate += 0x04;
4303 if (ctrl)
4304 encstate += 0x10;
4305 r = y + 33;
4306 c = x + 33;
4307
4308 sprintf(abuf, "\033[M%c%c%c", encstate, c, r);
4309 ldisc_send(term->ldisc, abuf, 6, 0);
4310 }
4311 return;
4312 }
4313
4314 /*
4315 * Set the selection type (rectangular or normal) at the start
4316 * of a selection attempt, from the state of Alt.
4317 */
4318 if (!alt ^ !term->cfg.rect_select)
4319 default_seltype = RECTANGULAR;
4320 else
4321 default_seltype = LEXICOGRAPHIC;
4322
4323 if (term->selstate == NO_SELECTION) {
4324 term->seltype = default_seltype;
4325 }
4326
4327 if (bcooked == MBT_SELECT && a == MA_CLICK) {
4328 deselect(term);
4329 term->selstate = ABOUT_TO;
4330 term->seltype = default_seltype;
4331 term->selanchor = selpoint;
4332 term->selmode = SM_CHAR;
4333 } else if (bcooked == MBT_SELECT && (a == MA_2CLK || a == MA_3CLK)) {
4334 deselect(term);
4335 term->selmode = (a == MA_2CLK ? SM_WORD : SM_LINE);
4336 term->selstate = DRAGGING;
4337 term->selstart = term->selanchor = selpoint;
4338 term->selend = term->selstart;
4339 incpos(term->selend);
4340 sel_spread(term);
4341 } else if ((bcooked == MBT_SELECT && a == MA_DRAG) ||
4342 (bcooked == MBT_EXTEND && a != MA_RELEASE)) {
4343 if (term->selstate == ABOUT_TO && poseq(term->selanchor, selpoint))
4344 return;
4345 if (bcooked == MBT_EXTEND && a != MA_DRAG &&
4346 term->selstate == SELECTED) {
4347 if (term->seltype == LEXICOGRAPHIC) {
4348 /*
4349 * For normal selection, we extend by moving
4350 * whichever end of the current selection is closer
4351 * to the mouse.
4352 */
4353 if (posdiff(selpoint, term->selstart) <
4354 posdiff(term->selend, term->selstart) / 2) {
4355 term->selanchor = term->selend;
4356 decpos(term->selanchor);
4357 } else {
4358 term->selanchor = term->selstart;
4359 }
4360 } else {
4361 /*
4362 * For rectangular selection, we have a choice of
4363 * _four_ places to put selanchor and selpoint: the
4364 * four corners of the selection.
4365 */
4366 if (2*selpoint.x < term->selstart.x + term->selend.x)
4367 term->selanchor.x = term->selend.x-1;
4368 else
4369 term->selanchor.x = term->selstart.x;
4370
4371 if (2*selpoint.y < term->selstart.y + term->selend.y)
4372 term->selanchor.y = term->selend.y;
4373 else
4374 term->selanchor.y = term->selstart.y;
4375 }
4376 term->selstate = DRAGGING;
4377 }
4378 if (term->selstate != ABOUT_TO && term->selstate != DRAGGING)
4379 term->selanchor = selpoint;
4380 term->selstate = DRAGGING;
4381 if (term->seltype == LEXICOGRAPHIC) {
4382 /*
4383 * For normal selection, we set (selstart,selend) to
4384 * (selpoint,selanchor) in some order.
4385 */
4386 if (poslt(selpoint, term->selanchor)) {
4387 term->selstart = selpoint;
4388 term->selend = term->selanchor;
4389 incpos(term->selend);
4390 } else {
4391 term->selstart = term->selanchor;
4392 term->selend = selpoint;
4393 incpos(term->selend);
4394 }
4395 } else {
4396 /*
4397 * For rectangular selection, we may need to
4398 * interchange x and y coordinates (if the user has
4399 * dragged in the -x and +y directions, or vice versa).
4400 */
4401 term->selstart.x = min(term->selanchor.x, selpoint.x);
4402 term->selend.x = 1+max(term->selanchor.x, selpoint.x);
4403 term->selstart.y = min(term->selanchor.y, selpoint.y);
4404 term->selend.y = max(term->selanchor.y, selpoint.y);
4405 }
4406 sel_spread(term);
4407 } else if ((bcooked == MBT_SELECT || bcooked == MBT_EXTEND) &&
4408 a == MA_RELEASE) {
4409 if (term->selstate == DRAGGING) {
4410 /*
4411 * We've completed a selection. We now transfer the
4412 * data to the clipboard.
4413 */
4414 clipme(term, term->selstart, term->selend,
4415 (term->seltype == RECTANGULAR), FALSE);
4416 term->selstate = SELECTED;
4417 } else
4418 term->selstate = NO_SELECTION;
4419 } else if (bcooked == MBT_PASTE
4420 && (a == MA_CLICK
4421 #if MULTICLICK_ONLY_EVENT
4422 || a == MA_2CLK || a == MA_3CLK
4423 #endif
4424 )) {
4425 request_paste(term->frontend);
4426 }
4427
4428 term_update(term);
4429 }
4430
4431 void term_key(Terminal *term, Key_Sym keysym, wchar_t *text, size_t tlen,
4432 unsigned int modifiers, unsigned int flags)
4433 {
4434 char output[10];
4435 char *p = output;
4436 int prependesc = FALSE;
4437 #if 0
4438 int i;
4439
4440 fprintf(stderr, "keysym = %d, %d chars:", keysym, tlen);
4441 for (i = 0; i < tlen; i++)
4442 fprintf(stderr, " %04x", (unsigned)text[i]);
4443 fprintf(stderr, "\n");
4444 #endif
4445
4446 /* XXX Num Lock */
4447 if ((flags & PKF_REPEAT) && term->repeat_off)
4448 return;
4449
4450 /* Currently, Meta always just prefixes everything with ESC. */
4451 if (modifiers & PKM_META)
4452 prependesc = TRUE;
4453 modifiers &= ~PKM_META;
4454
4455 /*
4456 * Alt is only used for Alt+keypad, which isn't supported yet, so
4457 * ignore it.
4458 */
4459 modifiers &= ~PKM_ALT;
4460
4461 /* Standard local function keys */
4462 switch (modifiers & (PKM_SHIFT | PKM_CONTROL)) {
4463 case PKM_SHIFT:
4464 if (keysym == PK_PAGEUP)
4465 /* scroll up one page */;
4466 if (keysym == PK_PAGEDOWN)
4467 /* scroll down on page */;
4468 if (keysym == PK_INSERT)
4469 term_do_paste(term);
4470 break;
4471 case PKM_CONTROL:
4472 if (keysym == PK_PAGEUP)
4473 /* scroll up one line */;
4474 if (keysym == PK_PAGEDOWN)
4475 /* scroll down one line */;
4476 /* Control-Numlock for app-keypad mode switch */
4477 if (keysym == PK_PF1)
4478 term->app_keypad_keys ^= 1;
4479 break;
4480 }
4481
4482 if (modifiers & PKM_ALT) {
4483 /* Alt+F4 (close) */
4484 /* Alt+Return (full screen) */
4485 /* Alt+Space (system menu) */
4486 }
4487
4488 if (keysym == PK_NULL && (modifiers & PKM_CONTROL) && tlen == 1 &&
4489 text[0] >= 0x20 && text[0] <= 0x7e) {
4490 /* ASCII chars + Control */
4491 if ((text[0] >= 0x40 && text[0] <= 0x5f) ||
4492 (text[0] >= 0x61 && text[0] <= 0x7a))
4493 text[0] &= 0x1f;
4494 else {
4495 /*
4496 * Control-2 should return ^@ (0x00), Control-6 should return
4497 * ^^ (0x1E), and Control-Minus should return ^_ (0x1F). Since
4498 * the DOS keyboard handling did it, and we have nothing better
4499 * to do with the key combo in question, we'll also map
4500 * Control-Backquote to ^\ (0x1C).
4501 */
4502 switch (text[0]) {
4503 case ' ': text[0] = 0x00; break;
4504 case '-': text[0] = 0x1f; break;
4505 case '/': text[0] = 0x1f; break;
4506 case '2': text[0] = 0x00; break;
4507 case '3': text[0] = 0x1b; break;
4508 case '4': text[0] = 0x1c; break;
4509 case '5': text[0] = 0x1d; break;
4510 case '6': text[0] = 0x1e; break;
4511 case '7': text[0] = 0x1f; break;
4512 case '8': text[0] = 0x7f; break;
4513 case '`': text[0] = 0x1c; break;
4514 }
4515 }
4516 }
4517
4518 /* Nethack keypad */
4519 if (term->cfg.nethack_keypad) {
4520 char c = 0;
4521 switch (keysym) {
4522 case PK_KP1: c = 'b'; break;
4523 case PK_KP2: c = 'j'; break;
4524 case PK_KP3: c = 'n'; break;
4525 case PK_KP4: c = 'h'; break;
4526 case PK_KP5: c = '.'; break;
4527 case PK_KP6: c = 'l'; break;
4528 case PK_KP7: c = 'y'; break;
4529 case PK_KP8: c = 'k'; break;
4530 case PK_KP9: c = 'u'; break;
4531 default: break; /* else gcc warns `enum value not used' */
4532 }
4533 if (c != 0) {
4534 if (c != '.') {
4535 if (modifiers & PKM_CONTROL)
4536 c &= 0x1f;
4537 else if (modifiers & PKM_SHIFT)
4538 c = toupper(c);
4539 }
4540 *p++ = c;
4541 goto done;
4542 }
4543 }
4544
4545 /* Numeric Keypad */
4546 if (PK_ISKEYPAD(keysym)) {
4547 int xkey = 0;
4548
4549 /*
4550 * In VT400 mode, PFn always emits an escape sequence. In
4551 * Linux and tilde modes, this only happens in app keypad mode.
4552 */
4553 if (term->cfg.funky_type == FUNKY_VT400 ||
4554 ((term->cfg.funky_type == FUNKY_LINUX ||
4555 term->cfg.funky_type == FUNKY_TILDE) &&
4556 term->app_keypad_keys && !term->cfg.no_applic_k)) {
4557 switch (keysym) {
4558 case PK_PF1: xkey = 'P'; break;
4559 case PK_PF2: xkey = 'Q'; break;
4560 case PK_PF3: xkey = 'R'; break;
4561 case PK_PF4: xkey = 'S'; break;
4562 default: break; /* else gcc warns `enum value not used' */
4563 }
4564 }
4565 if (term->app_keypad_keys && !term->cfg.no_applic_k) {
4566 switch (keysym) {
4567 case PK_KP0: xkey = 'p'; break;
4568 case PK_KP1: xkey = 'q'; break;
4569 case PK_KP2: xkey = 'r'; break;
4570 case PK_KP3: xkey = 's'; break;
4571 case PK_KP4: xkey = 't'; break;
4572 case PK_KP5: xkey = 'u'; break;
4573 case PK_KP6: xkey = 'v'; break;
4574 case PK_KP7: xkey = 'w'; break;
4575 case PK_KP8: xkey = 'x'; break;
4576 case PK_KP9: xkey = 'y'; break;
4577 case PK_KPDECIMAL: xkey = 'n'; break;
4578 case PK_KPENTER: xkey = 'M'; break;
4579 default: break; /* else gcc warns `enum value not used' */
4580 }
4581 if (term->cfg.funky_type == FUNKY_XTERM && tlen > 0) {
4582 /*
4583 * xterm can't see the layout of the keypad, so it has
4584 * to rely on the X keysyms returned by the keys.
4585 * Hence, we look at the strings here, not the PuTTY
4586 * keysyms (which describe the layout).
4587 */
4588 switch (text[0]) {
4589 case '+':
4590 if (modifiers & PKM_SHIFT)
4591 xkey = 'l';
4592 else
4593 xkey = 'k';
4594 break;
4595 case '/': xkey = 'o'; break;
4596 case '*': xkey = 'j'; break;
4597 case '-': xkey = 'm'; break;
4598 }
4599 } else {
4600 /*
4601 * In all other modes, we try to retain the layout of
4602 * the DEC keypad in application mode.
4603 */
4604 switch (keysym) {
4605 case PK_KPBIGPLUS:
4606 /* This key covers the '-' and ',' keys on a VT220 */
4607 if (modifiers & PKM_SHIFT)
4608 xkey = 'm'; /* VT220 '-' */
4609 else
4610 xkey = 'l'; /* VT220 ',' */
4611 break;
4612 case PK_KPMINUS: xkey = 'm'; break;
4613 case PK_KPCOMMA: xkey = 'l'; break;
4614 default: break; /* else gcc warns `enum value not used' */
4615 }
4616 }
4617 }
4618 if (xkey) {
4619 if (term->vt52_mode) {
4620 if (xkey >= 'P' && xkey <= 'S')
4621 p += sprintf((char *) p, "\x1B%c", xkey);
4622 else
4623 p += sprintf((char *) p, "\x1B?%c", xkey);
4624 } else
4625 p += sprintf((char *) p, "\x1BO%c", xkey);
4626 goto done;
4627 }
4628 /* Not in application mode -- treat the number pad as arrow keys? */
4629 if ((flags & PKF_NUMLOCK) == 0) {
4630 switch (keysym) {
4631 case PK_KP0: keysym = PK_INSERT; break;
4632 case PK_KP1: keysym = PK_END; break;
4633 case PK_KP2: keysym = PK_DOWN; break;
4634 case PK_KP3: keysym = PK_PAGEDOWN; break;
4635 case PK_KP4: keysym = PK_LEFT; break;
4636 case PK_KP5: keysym = PK_REST; break;
4637 case PK_KP6: keysym = PK_RIGHT; break;
4638 case PK_KP7: keysym = PK_HOME; break;
4639 case PK_KP8: keysym = PK_UP; break;
4640 case PK_KP9: keysym = PK_PAGEUP; break;
4641 default: break; /* else gcc warns `enum value not used' */
4642 }
4643 }
4644 }
4645
4646 /* Miscellaneous keys */
4647 switch (keysym) {
4648 case PK_ESCAPE:
4649 *p++ = 0x1b;
4650 goto done;
4651 case PK_BACKSPACE:
4652 if (modifiers == 0)
4653 *p++ = (term->cfg.bksp_is_delete ? 0x7F : 0x08);
4654 else if (modifiers == PKM_SHIFT)
4655 /* We do the opposite of what is configured */
4656 *p++ = (term->cfg.bksp_is_delete ? 0x08 : 0x7F);
4657 else break;
4658 goto done;
4659 case PK_TAB:
4660 if (modifiers == 0)
4661 *p++ = 0x09;
4662 else if (modifiers == PKM_SHIFT)
4663 *p++ = 0x1B, *p++ = '[', *p++ = 'Z';
4664 else break;
4665 goto done;
4666 /* XXX window.c has ctrl+shift+space sending 0xa0 */
4667 case PK_PAUSE:
4668 if (modifiers == PKM_CONTROL)
4669 *p++ = 26;
4670 else break;
4671 goto done;
4672 case PK_RETURN:
4673 case PK_KPENTER: /* Odd keypad modes handled above */
4674 if (modifiers == 0) {
4675 *p++ = 0x0d;
4676 if (term->cr_lf_return)
4677 *p++ = 0x0a;
4678 goto done;
4679 }
4680 default: break; /* else gcc warns `enum value not used' */
4681 }
4682
4683 /* SCO function keys and editing keys */
4684 if (term->cfg.funky_type == FUNKY_SCO) {
4685 if (PK_ISFKEY(keysym) && keysym <= PK_F12) {
4686 static char const codes[] =
4687 "MNOPQRSTUVWX" "YZabcdefghij" "klmnopqrstuv" "wxyz@[\\]^_`{";
4688 int index = keysym - PK_F1;
4689
4690 if (modifiers & PKM_SHIFT) index += 12;
4691 if (modifiers & PKM_CONTROL) index += 24;
4692 p += sprintf((char *) p, "\x1B[%c", codes[index]);
4693 goto done;
4694 }
4695 if (PK_ISEDITING(keysym)) {
4696 int xkey = 0;
4697
4698 switch (keysym) {
4699 case PK_DELETE: *p++ = 0x7f; goto done;
4700 case PK_HOME: xkey = 'H'; break;
4701 case PK_INSERT: xkey = 'L'; break;
4702 case PK_END: xkey = 'F'; break;
4703 case PK_PAGEUP: xkey = 'I'; break;
4704 case PK_PAGEDOWN: xkey = 'G'; break;
4705 default: break; /* else gcc warns `enum value not used' */
4706 }
4707 p += sprintf((char *) p, "\x1B[%c", xkey);
4708 }
4709 }
4710
4711 if (PK_ISEDITING(keysym) && (modifiers & PKM_SHIFT) == 0) {
4712 int code;
4713
4714 if (term->cfg.funky_type == FUNKY_XTERM) {
4715 /* Xterm shuffles these keys, apparently. */
4716 switch (keysym) {
4717 case PK_HOME: keysym = PK_INSERT; break;
4718 case PK_INSERT: keysym = PK_HOME; break;
4719 case PK_DELETE: keysym = PK_END; break;
4720 case PK_END: keysym = PK_PAGEUP; break;
4721 case PK_PAGEUP: keysym = PK_DELETE; break;
4722 case PK_PAGEDOWN: keysym = PK_PAGEDOWN; break;
4723 default: break; /* else gcc warns `enum value not used' */
4724 }
4725 }
4726
4727 /* RXVT Home/End */
4728 if (term->cfg.rxvt_homeend &&
4729 (keysym == PK_HOME || keysym == PK_END)) {
4730 p += sprintf((char *) p, keysym == PK_HOME ? "\x1B[H" : "\x1BOw");
4731 goto done;
4732 }
4733
4734 if (term->vt52_mode) {
4735 int xkey;
4736
4737 /*
4738 * A real VT52 doesn't have these, and a VT220 doesn't
4739 * send anything for them in VT52 mode.
4740 */
4741 switch (keysym) {
4742 case PK_HOME: xkey = 'H'; break;
4743 case PK_INSERT: xkey = 'L'; break;
4744 case PK_DELETE: xkey = 'M'; break;
4745 case PK_END: xkey = 'E'; break;
4746 case PK_PAGEUP: xkey = 'I'; break;
4747 case PK_PAGEDOWN: xkey = 'G'; break;
4748 default: xkey=0; break; /* else gcc warns `enum value not used'*/
4749 }
4750 p += sprintf((char *) p, "\x1B%c", xkey);
4751 goto done;
4752 }
4753
4754 switch (keysym) {
4755 case PK_HOME: code = 1; break;
4756 case PK_INSERT: code = 2; break;
4757 case PK_DELETE: code = 3; break;
4758 case PK_END: code = 4; break;
4759 case PK_PAGEUP: code = 5; break;
4760 case PK_PAGEDOWN: code = 6; break;
4761 default: code = 0; break; /* else gcc warns `enum value not used' */
4762 }
4763 p += sprintf((char *) p, "\x1B[%d~", code);
4764 goto done;
4765 }
4766
4767 if (PK_ISFKEY(keysym)) {
4768 /* Map Shift+F1-F10 to F11-F20 */
4769 if (keysym >= PK_F1 && keysym <= PK_F10 && (modifiers & PKM_SHIFT))
4770 keysym += 10;
4771 if ((term->vt52_mode || term->cfg.funky_type == FUNKY_VT100P) &&
4772 keysym <= PK_F14) {
4773 /* XXX This overrides the XTERM/VT52 mode below */
4774 int offt = 0;
4775 if (keysym >= PK_F6) offt++;
4776 if (keysym >= PK_F12) offt++;
4777 p += sprintf((char *) p, term->vt52_mode ? "\x1B%c" : "\x1BO%c",
4778 'P' + keysym - PK_F1 - offt);
4779 goto done;
4780 }
4781 if (term->cfg.funky_type == FUNKY_LINUX && keysym <= PK_F5) {
4782 p += sprintf((char *) p, "\x1B[[%c", 'A' + keysym - PK_F1);
4783 goto done;
4784 }
4785 if (term->cfg.funky_type == FUNKY_XTERM && keysym <= PK_F4) {
4786 if (term->vt52_mode)
4787 p += sprintf((char *) p, "\x1B%c", 'P' + keysym - PK_F1);
4788 else
4789 p += sprintf((char *) p, "\x1BO%c", 'P' + keysym - PK_F1);
4790 goto done;
4791 }
4792 p += sprintf((char *) p, "\x1B[%d~", 11 + keysym - PK_F1);
4793 goto done;
4794 }
4795
4796 if (PK_ISCURSOR(keysym)) {
4797 int xkey;
4798
4799 switch (keysym) {
4800 case PK_UP: xkey = 'A'; break;
4801 case PK_DOWN: xkey = 'B'; break;
4802 case PK_RIGHT: xkey = 'C'; break;
4803 case PK_LEFT: xkey = 'D'; break;
4804 case PK_REST: xkey = 'G'; break; /* centre key on number pad */
4805 default: xkey = 0; break; /* else gcc warns `enum value not used' */
4806 }
4807 if (term->vt52_mode)
4808 p += sprintf((char *) p, "\x1B%c", xkey);
4809 else {
4810 int app_flg = (term->app_cursor_keys && !term->cfg.no_applic_c);
4811
4812 /* Useful mapping of Ctrl-arrows */
4813 if (modifiers == PKM_CONTROL)
4814 app_flg = !app_flg;
4815
4816 if (app_flg)
4817 p += sprintf((char *) p, "\x1BO%c", xkey);
4818 else
4819 p += sprintf((char *) p, "\x1B[%c", xkey);
4820 }
4821 goto done;
4822 }
4823
4824 done:
4825 if (p > output || tlen > 0) {
4826 /*
4827 * Interrupt an ongoing paste. I'm not sure
4828 * this is sensible, but for the moment it's
4829 * preferable to having to faff about buffering
4830 * things.
4831 */
4832 term_nopaste(term);
4833
4834 /*
4835 * We need not bother about stdin backlogs
4836 * here, because in GUI PuTTY we can't do
4837 * anything about it anyway; there's no means
4838 * of asking Windows to hold off on KEYDOWN
4839 * messages. We _have_ to buffer everything
4840 * we're sent.
4841 */
4842 term_seen_key_event(term);
4843
4844 if (prependesc) {
4845 #if 0
4846 fprintf(stderr, "sending ESC\n");
4847 #endif
4848 ldisc_send(term->ldisc, "\x1b", 1, 1);
4849 }
4850
4851 if (p > output) {
4852 #if 0
4853 fprintf(stderr, "sending %d bytes:", p - output);
4854 for (i = 0; i < p - output; i++)
4855 fprintf(stderr, " %02x", output[i]);
4856 fprintf(stderr, "\n");
4857 #endif
4858 ldisc_send(term->ldisc, output, p - output, 1);
4859 } else if (tlen > 0) {
4860 #if 0
4861 fprintf(stderr, "sending %d unichars:", tlen);
4862 for (i = 0; i < tlen; i++)
4863 fprintf(stderr, " %04x", (unsigned) text[i]);
4864 fprintf(stderr, "\n");
4865 #endif
4866 luni_send(term->ldisc, text, tlen, 1);
4867 }
4868 }
4869 }
4870
4871 void term_nopaste(Terminal *term)
4872 {
4873 if (term->paste_len == 0)
4874 return;
4875 sfree(term->paste_buffer);
4876 term->paste_buffer = NULL;
4877 term->paste_len = 0;
4878 }
4879
4880 int term_paste_pending(Terminal *term)
4881 {
4882 return term->paste_len != 0;
4883 }
4884
4885 void term_paste(Terminal *term)
4886 {
4887 long now, paste_diff;
4888
4889 if (term->paste_len == 0)
4890 return;
4891
4892 /* Don't wait forever to paste */
4893 if (term->paste_hold) {
4894 now = GETTICKCOUNT();
4895 paste_diff = now - term->last_paste;
4896 if (paste_diff >= 0 && paste_diff < 450)
4897 return;
4898 }
4899 term->paste_hold = 0;
4900
4901 while (term->paste_pos < term->paste_len) {
4902 int n = 0;
4903 while (n + term->paste_pos < term->paste_len) {
4904 if (term->paste_buffer[term->paste_pos + n++] == '\015')
4905 break;
4906 }
4907 if (term->ldisc)
4908 luni_send(term->ldisc, term->paste_buffer + term->paste_pos, n, 0);
4909 term->paste_pos += n;
4910
4911 if (term->paste_pos < term->paste_len) {
4912 term->paste_hold = 1;
4913 return;
4914 }
4915 }
4916 sfree(term->paste_buffer);
4917 term->paste_buffer = NULL;
4918 term->paste_len = 0;
4919 }
4920
4921 static void deselect(Terminal *term)
4922 {
4923 term->selstate = NO_SELECTION;
4924 term->selstart.x = term->selstart.y = term->selend.x = term->selend.y = 0;
4925 }
4926
4927 void term_deselect(Terminal *term)
4928 {
4929 deselect(term);
4930 term_update(term);
4931 }
4932
4933 int term_ldisc(Terminal *term, int option)
4934 {
4935 if (option == LD_ECHO)
4936 return term->term_echoing;
4937 if (option == LD_EDIT)
4938 return term->term_editing;
4939 return FALSE;
4940 }
4941
4942 int term_data(Terminal *term, int is_stderr, const char *data, int len)
4943 {
4944 bufchain_add(&term->inbuf, data, len);
4945
4946 if (!term->in_term_out) {
4947 term->in_term_out = TRUE;
4948 term_blink(term, 1);
4949 term_out(term);
4950 term->in_term_out = FALSE;
4951 }
4952
4953 /*
4954 * term_out() always completely empties inbuf. Therefore,
4955 * there's no reason at all to return anything other than zero
4956 * from this function, because there _can't_ be a question of
4957 * the remote side needing to wait until term_out() has cleared
4958 * a backlog.
4959 *
4960 * This is a slightly suboptimal way to deal with SSH2 - in
4961 * principle, the window mechanism would allow us to continue
4962 * to accept data on forwarded ports and X connections even
4963 * while the terminal processing was going slowly - but we
4964 * can't do the 100% right thing without moving the terminal
4965 * processing into a separate thread, and that might hurt
4966 * portability. So we manage stdout buffering the old SSH1 way:
4967 * if the terminal processing goes slowly, the whole SSH
4968 * connection stops accepting data until it's ready.
4969 *
4970 * In practice, I can't imagine this causing serious trouble.
4971 */
4972 return 0;
4973 }
4974
4975 void term_provide_logctx(Terminal *term, void *logctx)
4976 {
4977 term->logctx = logctx;
4978 }