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