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