Size on split-window is -l not -s. Doh.
[tmux-openbsd.git] / screen-write.c
blob4c8382de78f6b4412d0b760b914227aff44a70e1
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
21 #include <string.h>
23 #include "tmux.h"
25 void screen_write_initctx(struct screen_write_ctx *, struct tty_ctx *, int);
26 void screen_write_overwrite(struct screen_write_ctx *, u_int);
27 int screen_write_combine(
28 struct screen_write_ctx *, const struct utf8_data *);
30 /* Initialise writing with a window. */
31 void
32 screen_write_start(
33 struct screen_write_ctx *ctx, struct window_pane *wp, struct screen *s)
35 ctx->wp = wp;
36 if (wp != NULL && s == NULL)
37 ctx->s = wp->screen;
38 else
39 ctx->s = s;
42 /* Finish writing. */
43 /* ARGSUSED */
44 void
45 screen_write_stop(unused struct screen_write_ctx *ctx)
49 /* Write character. */
50 void
51 screen_write_putc(
52 struct screen_write_ctx *ctx, struct grid_cell *gc, u_char ch)
54 gc->data = ch;
55 screen_write_cell(ctx, gc, NULL);
58 /* Calculate string length, with embedded formatting. */
59 size_t printflike2
60 screen_write_cstrlen(int utf8flag, const char *fmt, ...)
62 va_list ap;
63 char *msg, *msg2, *ptr, *ptr2;
64 size_t size;
66 va_start(ap, fmt);
67 xvasprintf(&msg, fmt, ap);
68 va_end(ap);
69 msg2 = xmalloc(strlen(msg) + 1);
71 ptr = msg;
72 ptr2 = msg2;
73 while (*ptr != '\0') {
74 if (ptr[0] == '#' && ptr[1] == '[') {
75 while (*ptr != ']' && *ptr != '\0')
76 ptr++;
77 if (*ptr == ']')
78 ptr++;
79 continue;
81 *ptr2++ = *ptr++;
83 *ptr2 = '\0';
85 size = screen_write_strlen(utf8flag, "%s", msg2);
87 xfree(msg);
88 xfree(msg2);
90 return (size);
93 /* Calculate string length. */
94 size_t printflike2
95 screen_write_strlen(int utf8flag, const char *fmt, ...)
97 va_list ap;
98 char *msg;
99 struct utf8_data utf8data;
100 u_char *ptr;
101 size_t left, size = 0;
103 va_start(ap, fmt);
104 xvasprintf(&msg, fmt, ap);
105 va_end(ap);
107 ptr = msg;
108 while (*ptr != '\0') {
109 if (utf8flag && *ptr > 0x7f && utf8_open(&utf8data, *ptr)) {
110 ptr++;
112 left = strlen(ptr);
113 if (left < utf8data.size - 1)
114 break;
115 while (utf8_append(&utf8data, *ptr))
116 ptr++;
117 ptr++;
119 size += utf8data.width;
120 } else {
121 size++;
122 ptr++;
126 xfree(msg);
127 return (size);
130 /* Write simple string (no UTF-8 or maximum length). */
131 void printflike3
132 screen_write_puts(
133 struct screen_write_ctx *ctx, struct grid_cell *gc, const char *fmt, ...)
135 va_list ap;
137 va_start(ap, fmt);
138 screen_write_vnputs(ctx, -1, gc, 0, fmt, ap);
139 va_end(ap);
142 /* Write string with length limit (-1 for unlimited). */
143 void printflike5
144 screen_write_nputs(struct screen_write_ctx *ctx,
145 ssize_t maxlen, struct grid_cell *gc, int utf8flag, const char *fmt, ...)
147 va_list ap;
149 va_start(ap, fmt);
150 screen_write_vnputs(ctx, maxlen, gc, utf8flag, fmt, ap);
151 va_end(ap);
154 void
155 screen_write_vnputs(struct screen_write_ctx *ctx, ssize_t maxlen,
156 struct grid_cell *gc, int utf8flag, const char *fmt, va_list ap)
158 char *msg;
159 struct utf8_data utf8data;
160 u_char *ptr;
161 size_t left, size = 0;
163 xvasprintf(&msg, fmt, ap);
165 ptr = msg;
166 while (*ptr != '\0') {
167 if (utf8flag && *ptr > 0x7f && utf8_open(&utf8data, *ptr)) {
168 ptr++;
170 left = strlen(ptr);
171 if (left < utf8data.size - 1)
172 break;
173 while (utf8_append(&utf8data, *ptr))
174 ptr++;
175 ptr++;
177 if (maxlen > 0 &&
178 size + utf8data.width > (size_t) maxlen) {
179 while (size < (size_t) maxlen) {
180 screen_write_putc(ctx, gc, ' ');
181 size++;
183 break;
185 size += utf8data.width;
187 gc->flags |= GRID_FLAG_UTF8;
188 screen_write_cell(ctx, gc, &utf8data);
189 gc->flags &= ~GRID_FLAG_UTF8;
190 } else {
191 if (maxlen > 0 && size + 1 > (size_t) maxlen)
192 break;
194 size++;
195 screen_write_putc(ctx, gc, *ptr);
196 ptr++;
200 xfree(msg);
203 /* Write string, similar to nputs, but with embedded formatting (#[]). */
204 void printflike5
205 screen_write_cnputs(struct screen_write_ctx *ctx,
206 ssize_t maxlen, struct grid_cell *gc, int utf8flag, const char *fmt, ...)
208 struct grid_cell lgc;
209 struct utf8_data utf8data;
210 va_list ap;
211 char *msg;
212 u_char *ptr, *last;
213 size_t left, size = 0;
215 va_start(ap, fmt);
216 xvasprintf(&msg, fmt, ap);
217 va_end(ap);
219 memcpy(&lgc, gc, sizeof lgc);
221 ptr = msg;
222 while (*ptr != '\0') {
223 if (ptr[0] == '#' && ptr[1] == '[') {
224 ptr += 2;
225 last = ptr + strcspn(ptr, "]");
226 if (*last == '\0') {
227 /* No ]. Not much point in doing anything. */
228 break;
230 *last = '\0';
232 screen_write_parsestyle(gc, &lgc, ptr);
233 ptr = last + 1;
234 continue;
237 if (utf8flag && *ptr > 0x7f && utf8_open(&utf8data, *ptr)) {
238 ptr++;
240 left = strlen(ptr);
241 if (left < utf8data.size - 1)
242 break;
243 while (utf8_append(&utf8data, *ptr))
244 ptr++;
245 ptr++;
247 if (maxlen > 0 &&
248 size + utf8data.width > (size_t) maxlen) {
249 while (size < (size_t) maxlen) {
250 screen_write_putc(ctx, gc, ' ');
251 size++;
253 break;
255 size += utf8data.width;
257 lgc.flags |= GRID_FLAG_UTF8;
258 screen_write_cell(ctx, &lgc, &utf8data);
259 lgc.flags &= ~GRID_FLAG_UTF8;
260 } else {
261 if (maxlen > 0 && size + 1 > (size_t) maxlen)
262 break;
264 size++;
265 screen_write_putc(ctx, &lgc, *ptr);
266 ptr++;
270 xfree(msg);
273 /* Parse an embedded style of the form "fg=colour,bg=colour,bright,...". */
274 void
275 screen_write_parsestyle(
276 struct grid_cell *defgc, struct grid_cell *gc, const char *in)
278 const char delimiters[] = " ,";
279 char tmp[32];
280 int val;
281 size_t end;
282 u_char fg, bg, attr, flags;
284 if (*in == '\0')
285 return;
286 if (strchr(delimiters, in[strlen(in) - 1]) != NULL)
287 return;
289 fg = gc->fg;
290 bg = gc->bg;
291 attr = gc->attr;
292 flags = gc->flags;
293 do {
294 end = strcspn(in, delimiters);
295 if (end > (sizeof tmp) - 1)
296 return;
297 memcpy(tmp, in, end);
298 tmp[end] = '\0';
300 if (strcasecmp(tmp, "default") == 0) {
301 fg = defgc->fg;
302 bg = defgc->bg;
303 attr = defgc->attr;
304 } else if (end > 3 && strncasecmp(tmp + 1, "g=", 2) == 0) {
305 if ((val = colour_fromstring(tmp + 3)) == -1)
306 return;
307 if (*in == 'f' || *in == 'F') {
308 if (val != 8) {
309 if (val & 0x100) {
310 flags |= GRID_FLAG_FG256;
311 val &= ~0x100;
312 } else
313 flags &= ~GRID_FLAG_FG256;
314 fg = val;
315 } else
316 fg = defgc->fg;
317 } else if (*in == 'b' || *in == 'B') {
318 if (val != 8) {
319 if (val & 0x100) {
320 flags |= GRID_FLAG_BG256;
321 val &= ~0x100;
322 } else
323 flags &= ~GRID_FLAG_BG256;
324 bg = val;
325 } else
326 bg = defgc->bg;
327 } else
328 return;
329 } else if (end > 2 && strncasecmp(tmp, "no", 2) == 0) {
330 if ((val = attributes_fromstring(tmp + 2)) == -1)
331 return;
332 attr &= ~val;
333 } else {
334 if ((val = attributes_fromstring(tmp)) == -1)
335 return;
336 attr |= val;
339 in += end + strspn(in + end, delimiters);
340 } while (*in != '\0');
341 gc->fg = fg;
342 gc->bg = bg;
343 gc->attr = attr;
344 gc->flags = flags;
347 /* Copy from another screen. */
348 void
349 screen_write_copy(struct screen_write_ctx *ctx,
350 struct screen *src, u_int px, u_int py, u_int nx, u_int ny)
352 struct screen *s = ctx->s;
353 struct grid *gd = src->grid;
354 struct grid_line *gl;
355 const struct grid_cell *gc;
356 const struct grid_utf8 *gu;
357 struct utf8_data utf8data;
358 u_int xx, yy, cx, cy, ax, bx;
360 cx = s->cx;
361 cy = s->cy;
362 for (yy = py; yy < py + ny; yy++) {
363 gl = &gd->linedata[yy];
364 if (yy < gd->hsize + gd->sy) {
366 * Find start and end position and copy between
367 * them. Limit to the real end of the line then use a
368 * clear EOL only if copying to the end, otherwise
369 * could overwrite whatever is there already.
371 if (px > gl->cellsize)
372 ax = gl->cellsize;
373 else
374 ax = px;
375 if (px + nx == gd->sx && px + nx > gl->cellsize)
376 bx = gl->cellsize;
377 else
378 bx = px + nx;
380 for (xx = ax; xx < bx; xx++) {
381 if (xx >= gl->cellsize)
382 gc = &grid_default_cell;
383 else
384 gc = &gl->celldata[xx];
385 if (!(gc->flags & GRID_FLAG_UTF8)) {
386 screen_write_cell(ctx, gc, NULL);
387 continue;
389 /* Reinject the UTF-8 sequence. */
390 gu = &gl->utf8data[xx];
391 utf8data.size = grid_utf8_copy(
392 gu, utf8data.data, sizeof utf8data.data);
393 utf8data.width = gu->width;
394 screen_write_cell(ctx, gc, &utf8data);
396 if (px + nx == gd->sx && px + nx > gl->cellsize)
397 screen_write_clearendofline(ctx);
398 } else
399 screen_write_clearline(ctx);
400 cy++;
401 screen_write_cursormove(ctx, cx, cy);
405 /* Set up context for TTY command. */
406 void
407 screen_write_initctx(
408 struct screen_write_ctx *ctx, struct tty_ctx *ttyctx, int save_last)
410 struct screen *s = ctx->s;
411 struct grid *gd = s->grid;
412 const struct grid_cell *gc;
413 const struct grid_utf8 *gu;
414 u_int xx;
416 ttyctx->wp = ctx->wp;
418 ttyctx->ocx = s->cx;
419 ttyctx->ocy = s->cy;
421 ttyctx->orlower = s->rlower;
422 ttyctx->orupper = s->rupper;
424 if (!save_last)
425 return;
427 /* Save the last cell on the screen. */
428 gc = &grid_default_cell;
429 for (xx = 1; xx <= screen_size_x(s); xx++) {
430 gc = grid_view_peek_cell(gd, screen_size_x(s) - xx, s->cy);
431 if (!(gc->flags & GRID_FLAG_PADDING))
432 break;
434 ttyctx->last_width = xx;
435 memcpy(&ttyctx->last_cell, gc, sizeof ttyctx->last_cell);
436 if (gc->flags & GRID_FLAG_UTF8) {
437 gu = grid_view_peek_utf8(gd, screen_size_x(s) - xx, s->cy);
438 memcpy(&ttyctx->last_utf8, gu, sizeof ttyctx->last_utf8);
442 /* Cursor up by ny. */
443 void
444 screen_write_cursorup(struct screen_write_ctx *ctx, u_int ny)
446 struct screen *s = ctx->s;
448 if (ny == 0)
449 ny = 1;
451 if (s->cy < s->rupper) {
452 /* Above region. */
453 if (ny > s->cy)
454 ny = s->cy;
455 } else {
456 /* Below region. */
457 if (ny > s->cy - s->rupper)
458 ny = s->cy - s->rupper;
460 if (ny == 0)
461 return;
463 s->cy -= ny;
466 /* Cursor down by ny. */
467 void
468 screen_write_cursordown(struct screen_write_ctx *ctx, u_int ny)
470 struct screen *s = ctx->s;
472 if (ny == 0)
473 ny = 1;
475 if (s->cy > s->rlower) {
476 /* Below region. */
477 if (ny > screen_size_y(s) - 1 - s->cy)
478 ny = screen_size_y(s) - 1 - s->cy;
479 } else {
480 /* Above region. */
481 if (ny > s->rlower - s->cy)
482 ny = s->rlower - s->cy;
484 if (ny == 0)
485 return;
487 s->cy += ny;
490 /* Cursor right by nx. */
491 void
492 screen_write_cursorright(struct screen_write_ctx *ctx, u_int nx)
494 struct screen *s = ctx->s;
496 if (nx == 0)
497 nx = 1;
499 if (nx > screen_size_x(s) - 1 - s->cx)
500 nx = screen_size_x(s) - 1 - s->cx;
501 if (nx == 0)
502 return;
504 s->cx += nx;
507 /* Cursor left by nx. */
508 void
509 screen_write_cursorleft(struct screen_write_ctx *ctx, u_int nx)
511 struct screen *s = ctx->s;
513 if (nx == 0)
514 nx = 1;
516 if (nx > s->cx)
517 nx = s->cx;
518 if (nx == 0)
519 return;
521 s->cx -= nx;
524 /* Backspace; cursor left unless at start of wrapped line when can move up. */
525 void
526 screen_write_backspace(struct screen_write_ctx *ctx)
528 struct screen *s = ctx->s;
529 struct grid_line *gl;
531 if (s->cx == 0) {
532 if (s->cy == 0)
533 return;
534 gl = &s->grid->linedata[s->grid->hsize + s->cy - 1];
535 if (gl->flags & GRID_LINE_WRAPPED) {
536 s->cy--;
537 s->cx = screen_size_x(s) - 1;
539 } else
540 s->cx--;
543 /* VT100 alignment test. */
544 void
545 screen_write_alignmenttest(struct screen_write_ctx *ctx)
547 struct screen *s = ctx->s;
548 struct tty_ctx ttyctx;
549 struct grid_cell gc;
550 u_int xx, yy;
552 screen_write_initctx(ctx, &ttyctx, 0);
554 memcpy(&gc, &grid_default_cell, sizeof gc);
555 gc.data = 'E';
557 for (yy = 0; yy < screen_size_y(s); yy++) {
558 for (xx = 0; xx < screen_size_x(s); xx++)
559 grid_view_set_cell(s->grid, xx, yy, &gc);
562 s->cx = 0;
563 s->cy = 0;
565 s->rupper = 0;
567 s->rlower = screen_size_y(s) - 1;
569 tty_write(tty_cmd_alignmenttest, &ttyctx);
572 /* Insert nx characters. */
573 void
574 screen_write_insertcharacter(struct screen_write_ctx *ctx, u_int nx)
576 struct screen *s = ctx->s;
577 struct tty_ctx ttyctx;
579 if (nx == 0)
580 nx = 1;
582 if (nx > screen_size_x(s) - s->cx)
583 nx = screen_size_x(s) - s->cx;
584 if (nx == 0)
585 return;
587 screen_write_initctx(ctx, &ttyctx, 0);
589 if (s->cx <= screen_size_x(s) - 1)
590 grid_view_insert_cells(s->grid, s->cx, s->cy, nx);
592 ttyctx.num = nx;
593 tty_write(tty_cmd_insertcharacter, &ttyctx);
596 /* Delete nx characters. */
597 void
598 screen_write_deletecharacter(struct screen_write_ctx *ctx, u_int nx)
600 struct screen *s = ctx->s;
601 struct tty_ctx ttyctx;
603 if (nx == 0)
604 nx = 1;
606 if (nx > screen_size_x(s) - s->cx)
607 nx = screen_size_x(s) - s->cx;
608 if (nx == 0)
609 return;
611 screen_write_initctx(ctx, &ttyctx, 0);
613 if (s->cx <= screen_size_x(s) - 1)
614 grid_view_delete_cells(s->grid, s->cx, s->cy, nx);
616 ttyctx.num = nx;
617 tty_write(tty_cmd_deletecharacter, &ttyctx);
620 /* Insert ny lines. */
621 void
622 screen_write_insertline(struct screen_write_ctx *ctx, u_int ny)
624 struct screen *s = ctx->s;
625 struct tty_ctx ttyctx;
627 if (ny == 0)
628 ny = 1;
630 if (s->cy < s->rupper || s->cy > s->rlower) {
631 if (ny > screen_size_y(s) - s->cy)
632 ny = screen_size_y(s) - s->cy;
633 if (ny == 0)
634 return;
636 screen_write_initctx(ctx, &ttyctx, 0);
638 grid_view_insert_lines(s->grid, s->cy, ny);
640 ttyctx.num = ny;
641 tty_write(tty_cmd_insertline, &ttyctx);
642 return;
645 if (ny > s->rlower + 1 - s->cy)
646 ny = s->rlower + 1 - s->cy;
647 if (ny == 0)
648 return;
650 screen_write_initctx(ctx, &ttyctx, 0);
652 if (s->cy < s->rupper || s->cy > s->rlower)
653 grid_view_insert_lines(s->grid, s->cy, ny);
654 else
655 grid_view_insert_lines_region(s->grid, s->rlower, s->cy, ny);
657 ttyctx.num = ny;
658 tty_write(tty_cmd_insertline, &ttyctx);
661 /* Delete ny lines. */
662 void
663 screen_write_deleteline(struct screen_write_ctx *ctx, u_int ny)
665 struct screen *s = ctx->s;
666 struct tty_ctx ttyctx;
668 if (ny == 0)
669 ny = 1;
671 if (s->cy < s->rupper || s->cy > s->rlower) {
672 if (ny > screen_size_y(s) - s->cy)
673 ny = screen_size_y(s) - s->cy;
674 if (ny == 0)
675 return;
677 screen_write_initctx(ctx, &ttyctx, 0);
679 grid_view_delete_lines(s->grid, s->cy, ny);
681 ttyctx.num = ny;
682 tty_write(tty_cmd_deleteline, &ttyctx);
683 return;
686 if (ny > s->rlower + 1 - s->cy)
687 ny = s->rlower + 1 - s->cy;
688 if (ny == 0)
689 return;
691 screen_write_initctx(ctx, &ttyctx, 0);
693 if (s->cy < s->rupper || s->cy > s->rlower)
694 grid_view_delete_lines(s->grid, s->cy, ny);
695 else
696 grid_view_delete_lines_region(s->grid, s->rlower, s->cy, ny);
698 ttyctx.num = ny;
699 tty_write(tty_cmd_deleteline, &ttyctx);
702 /* Clear line at cursor. */
703 void
704 screen_write_clearline(struct screen_write_ctx *ctx)
706 struct screen *s = ctx->s;
707 struct tty_ctx ttyctx;
709 screen_write_initctx(ctx, &ttyctx, 0);
711 grid_view_clear(s->grid, 0, s->cy, screen_size_x(s), 1);
713 tty_write(tty_cmd_clearline, &ttyctx);
716 /* Clear to end of line from cursor. */
717 void
718 screen_write_clearendofline(struct screen_write_ctx *ctx)
720 struct screen *s = ctx->s;
721 struct tty_ctx ttyctx;
722 u_int sx;
724 screen_write_initctx(ctx, &ttyctx, 0);
726 sx = screen_size_x(s);
728 if (s->cx <= sx - 1)
729 grid_view_clear(s->grid, s->cx, s->cy, sx - s->cx, 1);
731 tty_write(tty_cmd_clearendofline, &ttyctx);
734 /* Clear to start of line from cursor. */
735 void
736 screen_write_clearstartofline(struct screen_write_ctx *ctx)
738 struct screen *s = ctx->s;
739 struct tty_ctx ttyctx;
740 u_int sx;
742 screen_write_initctx(ctx, &ttyctx, 0);
744 sx = screen_size_x(s);
746 if (s->cx > sx - 1)
747 grid_view_clear(s->grid, 0, s->cy, sx, 1);
748 else
749 grid_view_clear(s->grid, 0, s->cy, s->cx + 1, 1);
751 tty_write(tty_cmd_clearstartofline, &ttyctx);
754 /* Move cursor to px,py. */
755 void
756 screen_write_cursormove(struct screen_write_ctx *ctx, u_int px, u_int py)
758 struct screen *s = ctx->s;
760 if (px > screen_size_x(s) - 1)
761 px = screen_size_x(s) - 1;
762 if (py > screen_size_y(s) - 1)
763 py = screen_size_y(s) - 1;
765 s->cx = px;
766 s->cy = py;
769 /* Set cursor mode. */
770 void
771 screen_write_cursormode(struct screen_write_ctx *ctx, int state)
773 struct screen *s = ctx->s;
775 if (state)
776 s->mode |= MODE_CURSOR;
777 else
778 s->mode &= ~MODE_CURSOR;
781 /* Reverse index (up with scroll). */
782 void
783 screen_write_reverseindex(struct screen_write_ctx *ctx)
785 struct screen *s = ctx->s;
786 struct tty_ctx ttyctx;
788 screen_write_initctx(ctx, &ttyctx, 0);
790 if (s->cy == s->rupper)
791 grid_view_scroll_region_down(s->grid, s->rupper, s->rlower);
792 else if (s->cy > 0)
793 s->cy--;
795 tty_write(tty_cmd_reverseindex, &ttyctx);
798 /* Set scroll region. */
799 void
800 screen_write_scrollregion(
801 struct screen_write_ctx *ctx, u_int rupper, u_int rlower)
803 struct screen *s = ctx->s;
805 if (rupper > screen_size_y(s) - 1)
806 rupper = screen_size_y(s) - 1;
807 if (rlower > screen_size_y(s) - 1)
808 rlower = screen_size_y(s) - 1;
809 if (rupper >= rlower) /* cannot be one line */
810 return;
812 /* Cursor moves to top-left. */
813 s->cx = 0;
814 s->cy = 0;
816 s->rupper = rupper;
817 s->rlower = rlower;
820 /* Set insert mode. */
821 void
822 screen_write_insertmode(struct screen_write_ctx *ctx, int state)
824 struct screen *s = ctx->s;
826 if (state)
827 s->mode |= MODE_INSERT;
828 else
829 s->mode &= ~MODE_INSERT;
832 /* Set UTF-8 mouse mode. */
833 void
834 screen_write_utf8mousemode(struct screen_write_ctx *ctx, int state)
836 struct screen *s = ctx->s;
838 if (state)
839 s->mode |= MODE_MOUSE_UTF8;
840 else
841 s->mode &= ~MODE_MOUSE_UTF8;
844 /* Set mouse mode off. */
845 void
846 screen_write_mousemode_off(struct screen_write_ctx *ctx)
848 struct screen *s = ctx->s;
850 s->mode &= ~ALL_MOUSE_MODES;
853 /* Set mouse mode on. */
854 void
855 screen_write_mousemode_on(struct screen_write_ctx *ctx, int mode)
857 struct screen *s = ctx->s;
859 s->mode &= ~ALL_MOUSE_MODES;
860 s->mode |= mode;
863 /* Line feed. */
864 void
865 screen_write_linefeed(struct screen_write_ctx *ctx, int wrapped)
867 struct screen *s = ctx->s;
868 struct grid_line *gl;
869 struct tty_ctx ttyctx;
871 screen_write_initctx(ctx, &ttyctx, 0);
873 gl = &s->grid->linedata[s->grid->hsize + s->cy];
874 if (wrapped)
875 gl->flags |= GRID_LINE_WRAPPED;
876 else
877 gl->flags &= ~GRID_LINE_WRAPPED;
879 if (s->cy == s->rlower)
880 grid_view_scroll_region_up(s->grid, s->rupper, s->rlower);
881 else if (s->cy < screen_size_y(s) - 1)
882 s->cy++;
884 ttyctx.num = wrapped;
885 tty_write(tty_cmd_linefeed, &ttyctx);
888 /* Carriage return (cursor to start of line). */
889 void
890 screen_write_carriagereturn(struct screen_write_ctx *ctx)
892 struct screen *s = ctx->s;
894 s->cx = 0;
897 /* Set keypad cursor keys mode. */
898 void
899 screen_write_kcursormode(struct screen_write_ctx *ctx, int state)
901 struct screen *s = ctx->s;
903 if (state)
904 s->mode |= MODE_KCURSOR;
905 else
906 s->mode &= ~MODE_KCURSOR;
909 /* Set keypad number keys mode. */
910 void
911 screen_write_kkeypadmode(struct screen_write_ctx *ctx, int state)
913 struct screen *s = ctx->s;
915 if (state)
916 s->mode |= MODE_KKEYPAD;
917 else
918 s->mode &= ~MODE_KKEYPAD;
921 /* Clear to end of screen from cursor. */
922 void
923 screen_write_clearendofscreen(struct screen_write_ctx *ctx)
925 struct screen *s = ctx->s;
926 struct tty_ctx ttyctx;
927 u_int sx, sy;
929 screen_write_initctx(ctx, &ttyctx, 0);
931 sx = screen_size_x(s);
932 sy = screen_size_y(s);
934 /* Scroll into history if it is enabled and clearing entire screen. */
935 if (s->cy == 0 && s->grid->flags & GRID_HISTORY)
936 grid_view_clear_history(s->grid);
937 else {
938 if (s->cx <= sx - 1)
939 grid_view_clear(s->grid, s->cx, s->cy, sx - s->cx, 1);
940 grid_view_clear(s->grid, 0, s->cy + 1, sx, sy - (s->cy + 1));
943 tty_write(tty_cmd_clearendofscreen, &ttyctx);
946 /* Clear to start of screen. */
947 void
948 screen_write_clearstartofscreen(struct screen_write_ctx *ctx)
950 struct screen *s = ctx->s;
951 struct tty_ctx ttyctx;
952 u_int sx;
954 screen_write_initctx(ctx, &ttyctx, 0);
956 sx = screen_size_x(s);
958 if (s->cy > 0)
959 grid_view_clear(s->grid, 0, 0, sx, s->cy);
960 if (s->cx > sx - 1)
961 grid_view_clear(s->grid, 0, s->cy, sx, 1);
962 else
963 grid_view_clear(s->grid, 0, s->cy, s->cx + 1, 1);
965 tty_write(tty_cmd_clearstartofscreen, &ttyctx);
968 /* Clear entire screen. */
969 void
970 screen_write_clearscreen(struct screen_write_ctx *ctx)
972 struct screen *s = ctx->s;
973 struct tty_ctx ttyctx;
975 screen_write_initctx(ctx, &ttyctx, 0);
977 /* Scroll into history if it is enabled. */
978 if (s->grid->flags & GRID_HISTORY)
979 grid_view_clear_history(s->grid);
980 else {
981 grid_view_clear(
982 s->grid, 0, 0, screen_size_x(s), screen_size_y(s));
985 tty_write(tty_cmd_clearscreen, &ttyctx);
988 /* Write cell data. */
989 void
990 screen_write_cell(struct screen_write_ctx *ctx,
991 const struct grid_cell *gc, const struct utf8_data *utf8data)
993 struct screen *s = ctx->s;
994 struct grid *gd = s->grid;
995 struct tty_ctx ttyctx;
996 struct grid_utf8 gu;
997 u_int width, xx;
998 struct grid_cell tmp_gc, *tmp_gcp;
999 int insert = 0;
1001 /* Ignore padding. */
1002 if (gc->flags & GRID_FLAG_PADDING)
1003 return;
1005 /* Find character width. */
1006 if (gc->flags & GRID_FLAG_UTF8)
1007 width = utf8data->width;
1008 else
1009 width = 1;
1012 * If this is a wide character and there is no room on the screen, for
1013 * the entire character, don't print it.
1015 if (width > 1 && (width > screen_size_x(s) ||
1016 (s->cx != screen_size_x(s) && s->cx > screen_size_x(s) - width)))
1017 return;
1020 * If the width is zero, combine onto the previous character, if
1021 * there is space.
1023 if (width == 0) {
1024 if (screen_write_combine(ctx, utf8data) == 0) {
1025 screen_write_initctx(ctx, &ttyctx, 0);
1026 tty_write(tty_cmd_utf8character, &ttyctx);
1028 return;
1031 /* Initialise the redraw context, saving the last cell. */
1032 screen_write_initctx(ctx, &ttyctx, 1);
1034 /* If in insert mode, make space for the cells. */
1035 if (s->mode & MODE_INSERT && s->cx <= screen_size_x(s) - width) {
1036 xx = screen_size_x(s) - s->cx - width;
1037 grid_move_cells(s->grid, s->cx + width, s->cx, s->cy, xx);
1038 insert = 1;
1041 /* Check this will fit on the current line and wrap if not. */
1042 if ((s->mode & MODE_WRAP) && s->cx > screen_size_x(s) - width) {
1043 screen_write_linefeed(ctx, 1);
1044 s->cx = 0; /* carriage return */
1047 /* Sanity checks. */
1048 if (((s->mode & MODE_WRAP) && s->cx > screen_size_x(s) - 1)
1049 || s->cy > screen_size_y(s) - 1)
1050 return;
1052 /* Handle overwriting of UTF-8 characters. */
1053 screen_write_overwrite(ctx, width);
1056 * If the new character is UTF-8 wide, fill in padding cells. Have
1057 * already ensured there is enough room.
1059 for (xx = s->cx + 1; xx < s->cx + width; xx++) {
1060 tmp_gcp = grid_view_get_cell(gd, xx, s->cy);
1061 if (tmp_gcp != NULL)
1062 tmp_gcp->flags |= GRID_FLAG_PADDING;
1065 /* Set the cell. */
1066 grid_view_set_cell(gd, s->cx, s->cy, gc);
1067 if (gc->flags & GRID_FLAG_UTF8) {
1068 /* Construct UTF-8 and write it. */
1069 grid_utf8_set(&gu, utf8data);
1070 grid_view_set_utf8(gd, s->cx, s->cy, &gu);
1073 /* Move the cursor. */
1074 s->cx += width;
1076 /* Draw to the screen if necessary. */
1077 if (insert) {
1078 ttyctx.num = width;
1079 tty_write(tty_cmd_insertcharacter, &ttyctx);
1081 ttyctx.utf8 = &gu;
1082 if (screen_check_selection(s, s->cx - width, s->cy)) {
1083 memcpy(&tmp_gc, &s->sel.cell, sizeof tmp_gc);
1084 tmp_gc.data = gc->data;
1085 tmp_gc.flags = gc->flags &
1086 ~(GRID_FLAG_FG256|GRID_FLAG_BG256);
1087 tmp_gc.flags |= s->sel.cell.flags &
1088 (GRID_FLAG_FG256|GRID_FLAG_BG256);
1089 ttyctx.cell = &tmp_gc;
1090 tty_write(tty_cmd_cell, &ttyctx);
1091 } else {
1092 ttyctx.cell = gc;
1093 tty_write(tty_cmd_cell, &ttyctx);
1097 /* Combine a UTF-8 zero-width character onto the previous. */
1099 screen_write_combine(
1100 struct screen_write_ctx *ctx, const struct utf8_data *utf8data)
1102 struct screen *s = ctx->s;
1103 struct grid *gd = s->grid;
1104 struct grid_cell *gc;
1105 struct grid_utf8 *gu, tmp_gu;
1106 u_int i;
1108 /* Can't combine if at 0. */
1109 if (s->cx == 0)
1110 return (-1);
1112 /* Empty utf8data is out. */
1113 if (utf8data->size == 0)
1114 fatalx("UTF-8 data empty");
1116 /* Retrieve the previous cell and convert to UTF-8 if not already. */
1117 gc = grid_view_get_cell(gd, s->cx - 1, s->cy);
1118 if (!(gc->flags & GRID_FLAG_UTF8)) {
1119 tmp_gu.data[0] = gc->data;
1120 tmp_gu.data[1] = 0xff;
1121 tmp_gu.width = 1;
1123 grid_view_set_utf8(gd, s->cx - 1, s->cy, &tmp_gu);
1124 gc->flags |= GRID_FLAG_UTF8;
1127 /* Append the current cell. */
1128 gu = grid_view_get_utf8(gd, s->cx - 1, s->cy);
1129 if (grid_utf8_append(gu, utf8data) != 0) {
1130 /* Failed: scrap this character and replace with underscores. */
1131 if (gu->width == 1) {
1132 gc->data = '_';
1133 gc->flags &= ~GRID_FLAG_UTF8;
1134 } else {
1135 for (i = 0; i < gu->width && i != sizeof gu->data; i++)
1136 gu->data[i] = '_';
1137 if (i != sizeof gu->data)
1138 gu->data[i] = 0xff;
1139 gu->width = i;
1143 return (0);
1147 * UTF-8 wide characters are a bit of an annoyance. They take up more than one
1148 * cell on the screen, so following cells must not be drawn by marking them as
1149 * padding.
1151 * So far, so good. The problem is, when overwriting a padding cell, or a UTF-8
1152 * character, it is necessary to also overwrite any other cells which covered
1153 * by the same character.
1155 void
1156 screen_write_overwrite(struct screen_write_ctx *ctx, u_int width)
1158 struct screen *s = ctx->s;
1159 struct grid *gd = s->grid;
1160 const struct grid_cell *gc;
1161 u_int xx;
1163 gc = grid_view_peek_cell(gd, s->cx, s->cy);
1164 if (gc->flags & GRID_FLAG_PADDING) {
1166 * A padding cell, so clear any following and leading padding
1167 * cells back to the character. Don't overwrite the current
1168 * cell as that happens later anyway.
1170 xx = s->cx + 1;
1171 while (--xx > 0) {
1172 gc = grid_view_peek_cell(gd, xx, s->cy);
1173 if (!(gc->flags & GRID_FLAG_PADDING))
1174 break;
1175 grid_view_set_cell(gd, xx, s->cy, &grid_default_cell);
1178 /* Overwrite the character at the start of this padding. */
1179 grid_view_set_cell(gd, xx, s->cy, &grid_default_cell);
1183 * Overwrite any padding cells that belong to a UTF-8 character
1184 * we'll be overwriting with the current character.
1186 xx = s->cx + width - 1;
1187 while (++xx < screen_size_x(s)) {
1188 gc = grid_view_peek_cell(gd, xx, s->cy);
1189 if (!(gc->flags & GRID_FLAG_PADDING))
1190 break;
1191 grid_view_set_cell(gd, xx, s->cy, &grid_default_cell);