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