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