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