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