4 * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
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>
20 #include <sys/ioctl.h>
22 #include <netinet/in.h>
35 static int tty_log_fd
= -1;
37 static int tty_client_ready(struct client
*);
39 static void tty_set_italics(struct tty
*);
40 static int tty_try_colour(struct tty
*, int, const char *);
41 static void tty_force_cursor_colour(struct tty
*, int);
42 static void tty_cursor_pane(struct tty
*, const struct tty_ctx
*, u_int
,
44 static void tty_cursor_pane_unless_wrap(struct tty
*,
45 const struct tty_ctx
*, u_int
, u_int
);
46 static void tty_invalidate(struct tty
*);
47 static void tty_colours(struct tty
*, const struct grid_cell
*);
48 static void tty_check_fg(struct tty
*, struct colour_palette
*,
50 static void tty_check_bg(struct tty
*, struct colour_palette
*,
52 static void tty_check_us(struct tty
*, struct colour_palette
*,
54 static void tty_colours_fg(struct tty
*, const struct grid_cell
*);
55 static void tty_colours_bg(struct tty
*, const struct grid_cell
*);
56 static void tty_colours_us(struct tty
*, const struct grid_cell
*);
58 static void tty_region_pane(struct tty
*, const struct tty_ctx
*, u_int
,
60 static void tty_region(struct tty
*, u_int
, u_int
);
61 static void tty_margin_pane(struct tty
*, const struct tty_ctx
*);
62 static void tty_margin(struct tty
*, u_int
, u_int
);
63 static int tty_large_region(struct tty
*, const struct tty_ctx
*);
64 static int tty_fake_bce(const struct tty
*, const struct grid_cell
*,
66 static void tty_redraw_region(struct tty
*, const struct tty_ctx
*);
67 static void tty_emulate_repeat(struct tty
*, enum tty_code_code
,
68 enum tty_code_code
, u_int
);
69 static void tty_repeat_space(struct tty
*, u_int
);
70 static void tty_draw_pane(struct tty
*, const struct tty_ctx
*, u_int
);
71 static void tty_default_attributes(struct tty
*, const struct grid_cell
*,
72 struct colour_palette
*, u_int
, struct hyperlinks
*);
73 static int tty_check_overlay(struct tty
*, u_int
, u_int
);
74 static void tty_check_overlay_range(struct tty
*, u_int
, u_int
, u_int
,
75 struct overlay_ranges
*);
77 #define tty_use_margin(tty) \
78 (tty->term->flags & TERM_DECSLRM)
79 #define tty_full_width(tty, ctx) \
80 ((ctx)->xoff == 0 && (ctx)->sx >= (tty)->sx)
82 #define TTY_BLOCK_INTERVAL (100000 /* 100 milliseconds */)
83 #define TTY_BLOCK_START(tty) (1 + ((tty)->sx * (tty)->sy) * 8)
84 #define TTY_BLOCK_STOP(tty) (1 + ((tty)->sx * (tty)->sy) / 8)
86 #define TTY_QUERY_TIMEOUT 5
93 xsnprintf(name
, sizeof name
, "tmux-out-%ld.log", (long)getpid());
95 tty_log_fd
= open(name
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
96 if (tty_log_fd
!= -1 && fcntl(tty_log_fd
, F_SETFD
, FD_CLOEXEC
) == -1)
97 fatal("fcntl failed");
101 tty_init(struct tty
*tty
, struct client
*c
)
106 memset(tty
, 0, sizeof *tty
);
109 tty
->cstyle
= SCREEN_CURSOR_DEFAULT
;
111 tty
->fg
= tty
->bg
= -1;
113 if (tcgetattr(c
->fd
, &tty
->tio
) != 0)
119 tty_resize(struct tty
*tty
)
121 struct client
*c
= tty
->client
;
123 u_int sx
, sy
, xpixel
, ypixel
;
125 if (ioctl(c
->fd
, TIOCGWINSZ
, &ws
) != -1) {
131 xpixel
= ws
.ws_xpixel
/ sx
;
137 ypixel
= ws
.ws_ypixel
/ sy
;
144 log_debug("%s: %s now %ux%u (%ux%u)", __func__
, c
->name
, sx
, sy
,
146 tty_set_size(tty
, sx
, sy
, xpixel
, ypixel
);
151 tty_set_size(struct tty
*tty
, u_int sx
, u_int sy
, u_int xpixel
, u_int ypixel
)
155 tty
->xpixel
= xpixel
;
156 tty
->ypixel
= ypixel
;
160 tty_read_callback(__unused
int fd
, __unused
short events
, void *data
)
162 struct tty
*tty
= data
;
163 struct client
*c
= tty
->client
;
164 const char *name
= c
->name
;
165 size_t size
= EVBUFFER_LENGTH(tty
->in
);
168 nread
= evbuffer_read(tty
->in
, c
->fd
, -1);
169 if (nread
== 0 || nread
== -1) {
171 log_debug("%s: read closed", name
);
173 log_debug("%s: read error: %s", name
, strerror(errno
));
174 event_del(&tty
->event_in
);
175 server_client_lost(tty
->client
);
178 log_debug("%s: read %d bytes (already %zu)", name
, nread
, size
);
180 while (tty_keys_next(tty
))
185 tty_timer_callback(__unused
int fd
, __unused
short events
, void *data
)
187 struct tty
*tty
= data
;
188 struct client
*c
= tty
->client
;
189 struct timeval tv
= { .tv_usec
= TTY_BLOCK_INTERVAL
};
191 log_debug("%s: %zu discarded", c
->name
, tty
->discarded
);
193 c
->flags
|= CLIENT_ALLREDRAWFLAGS
;
194 c
->discarded
+= tty
->discarded
;
196 if (tty
->discarded
< TTY_BLOCK_STOP(tty
)) {
197 tty
->flags
&= ~TTY_BLOCK
;
202 evtimer_add(&tty
->timer
, &tv
);
206 tty_block_maybe(struct tty
*tty
)
208 struct client
*c
= tty
->client
;
209 size_t size
= EVBUFFER_LENGTH(tty
->out
);
210 struct timeval tv
= { .tv_usec
= TTY_BLOCK_INTERVAL
};
213 tty
->flags
&= ~TTY_NOBLOCK
;
214 else if (tty
->flags
& TTY_NOBLOCK
)
217 if (size
< TTY_BLOCK_START(tty
))
220 if (tty
->flags
& TTY_BLOCK
)
222 tty
->flags
|= TTY_BLOCK
;
224 log_debug("%s: can't keep up, %zu discarded", c
->name
, size
);
226 evbuffer_drain(tty
->out
, size
);
227 c
->discarded
+= size
;
230 evtimer_add(&tty
->timer
, &tv
);
235 tty_write_callback(__unused
int fd
, __unused
short events
, void *data
)
237 struct tty
*tty
= data
;
238 struct client
*c
= tty
->client
;
239 size_t size
= EVBUFFER_LENGTH(tty
->out
);
242 nwrite
= evbuffer_write(tty
->out
, c
->fd
);
245 log_debug("%s: wrote %d bytes (of %zu)", c
->name
, nwrite
, size
);
248 if ((size_t)nwrite
>= c
->redraw
)
252 log_debug("%s: waiting for redraw, %zu bytes left", c
->name
,
254 } else if (tty_block_maybe(tty
))
257 if (EVBUFFER_LENGTH(tty
->out
) != 0)
258 event_add(&tty
->event_out
, NULL
);
262 tty_open(struct tty
*tty
, char **cause
)
264 struct client
*c
= tty
->client
;
266 tty
->term
= tty_term_create(tty
, c
->term_name
, c
->term_caps
,
267 c
->term_ncaps
, &c
->term_features
, cause
);
268 if (tty
->term
== NULL
) {
272 tty
->flags
|= TTY_OPENED
;
274 tty
->flags
&= ~(TTY_NOCURSOR
|TTY_FREEZE
|TTY_BLOCK
|TTY_TIMER
);
276 event_set(&tty
->event_in
, c
->fd
, EV_PERSIST
|EV_READ
,
277 tty_read_callback
, tty
);
278 tty
->in
= evbuffer_new();
280 fatal("out of memory");
282 event_set(&tty
->event_out
, c
->fd
, EV_WRITE
, tty_write_callback
, tty
);
283 tty
->out
= evbuffer_new();
284 if (tty
->out
== NULL
)
285 fatal("out of memory");
287 evtimer_set(&tty
->timer
, tty_timer_callback
, tty
);
296 tty_start_timer_callback(__unused
int fd
, __unused
short events
, void *data
)
298 struct tty
*tty
= data
;
299 struct client
*c
= tty
->client
;
301 log_debug("%s: start timer fired", c
->name
);
302 if ((tty
->flags
& (TTY_HAVEDA
|TTY_HAVEDA2
|TTY_HAVEXDA
)) == 0)
303 tty_update_features(tty
);
304 tty
->flags
|= TTY_ALL_REQUEST_FLAGS
;
308 tty_start_tty(struct tty
*tty
)
310 struct client
*c
= tty
->client
;
312 struct timeval tv
= { .tv_sec
= TTY_QUERY_TIMEOUT
};
314 setblocking(c
->fd
, 0);
315 event_add(&tty
->event_in
, NULL
);
317 memcpy(&tio
, &tty
->tio
, sizeof tio
);
318 tio
.c_iflag
&= ~(IXON
|IXOFF
|ICRNL
|INLCR
|IGNCR
|IMAXBEL
|ISTRIP
);
319 tio
.c_iflag
|= IGNBRK
;
320 tio
.c_oflag
&= ~(OPOST
|ONLCR
|OCRNL
|ONLRET
);
321 tio
.c_lflag
&= ~(IEXTEN
|ICANON
|ECHO
|ECHOE
|ECHONL
|ECHOCTL
|ECHOPRT
|
325 if (tcsetattr(c
->fd
, TCSANOW
, &tio
) == 0)
326 tcflush(c
->fd
, TCOFLUSH
);
328 tty_putcode(tty
, TTYC_SMCUP
);
330 tty_putcode(tty
, TTYC_SMKX
);
331 tty_putcode(tty
, TTYC_CLEAR
);
333 if (tty_acs_needed(tty
)) {
334 log_debug("%s: using capabilities for ACS", c
->name
);
335 tty_putcode(tty
, TTYC_ENACS
);
337 log_debug("%s: using UTF-8 for ACS", c
->name
);
339 tty_putcode(tty
, TTYC_CNORM
);
340 if (tty_term_has(tty
->term
, TTYC_KMOUS
)) {
341 tty_puts(tty
, "\033[?1000l\033[?1002l\033[?1003l");
342 tty_puts(tty
, "\033[?1006l\033[?1005l");
344 if (tty_term_has(tty
->term
, TTYC_ENBP
))
345 tty_putcode(tty
, TTYC_ENBP
);
347 evtimer_set(&tty
->start_timer
, tty_start_timer_callback
, tty
);
348 evtimer_add(&tty
->start_timer
, &tv
);
350 tty
->flags
|= TTY_STARTED
;
353 if (tty
->ccolour
!= -1)
354 tty_force_cursor_colour(tty
, -1);
356 tty
->mouse_drag_flag
= 0;
357 tty
->mouse_drag_update
= NULL
;
358 tty
->mouse_drag_release
= NULL
;
362 tty_send_requests(struct tty
*tty
)
364 if (~tty
->flags
& TTY_STARTED
)
367 if (tty
->term
->flags
& TERM_VT100LIKE
) {
368 if (~tty
->term
->flags
& TTY_HAVEDA
)
369 tty_puts(tty
, "\033[c");
370 if (~tty
->flags
& TTY_HAVEDA2
)
371 tty_puts(tty
, "\033[>c");
372 if (~tty
->flags
& TTY_HAVEXDA
)
373 tty_puts(tty
, "\033[>q");
374 if (~tty
->flags
& TTY_HAVEFG
)
375 tty_puts(tty
, "\033]10;?\033\\");
376 if (~tty
->flags
& TTY_HAVEBG
)
377 tty_puts(tty
, "\033]11;?\033\\");
379 tty
->flags
|= TTY_ALL_REQUEST_FLAGS
;
383 tty_stop_tty(struct tty
*tty
)
385 struct client
*c
= tty
->client
;
388 if (!(tty
->flags
& TTY_STARTED
))
390 tty
->flags
&= ~TTY_STARTED
;
392 evtimer_del(&tty
->start_timer
);
394 event_del(&tty
->timer
);
395 tty
->flags
&= ~TTY_BLOCK
;
397 event_del(&tty
->event_in
);
398 event_del(&tty
->event_out
);
401 * Be flexible about error handling and try not kill the server just
402 * because the fd is invalid. Things like ssh -t can easily leave us
405 if (ioctl(c
->fd
, TIOCGWINSZ
, &ws
) == -1)
407 if (tcsetattr(c
->fd
, TCSANOW
, &tty
->tio
) == -1)
410 tty_raw(tty
, tty_term_string2(tty
->term
, TTYC_CSR
, 0, ws
.ws_row
- 1));
411 if (tty_acs_needed(tty
))
412 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_RMACS
));
413 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_SGR0
));
414 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_RMKX
));
415 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_CLEAR
));
416 if (tty
->cstyle
!= SCREEN_CURSOR_DEFAULT
) {
417 if (tty_term_has(tty
->term
, TTYC_SE
))
418 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_SE
));
419 else if (tty_term_has(tty
->term
, TTYC_SS
))
420 tty_raw(tty
, tty_term_string1(tty
->term
, TTYC_SS
, 0));
422 if (tty
->ccolour
!= -1)
423 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_CR
));
425 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_CNORM
));
426 if (tty_term_has(tty
->term
, TTYC_KMOUS
)) {
427 tty_raw(tty
, "\033[?1000l\033[?1002l\033[?1003l");
428 tty_raw(tty
, "\033[?1006l\033[?1005l");
430 if (tty_term_has(tty
->term
, TTYC_DSBP
))
431 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_DSBP
));
433 if (tty
->term
->flags
& TERM_VT100LIKE
)
434 tty_raw(tty
, "\033[?7727l");
435 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_DSFCS
));
436 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_DSEKS
));
438 if (tty_use_margin(tty
))
439 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_DSMG
));
440 tty_raw(tty
, tty_term_string(tty
->term
, TTYC_RMCUP
));
442 setblocking(c
->fd
, 1);
446 tty_close(struct tty
*tty
)
448 if (event_initialized(&tty
->key_timer
))
449 evtimer_del(&tty
->key_timer
);
452 if (tty
->flags
& TTY_OPENED
) {
453 evbuffer_free(tty
->in
);
454 event_del(&tty
->event_in
);
455 evbuffer_free(tty
->out
);
456 event_del(&tty
->event_out
);
458 tty_term_free(tty
->term
);
461 tty
->flags
&= ~TTY_OPENED
;
466 tty_free(struct tty
*tty
)
472 tty_update_features(struct tty
*tty
)
474 struct client
*c
= tty
->client
;
476 if (tty_apply_features(tty
->term
, c
->term_features
))
477 tty_term_apply_overrides(tty
->term
);
479 if (tty_use_margin(tty
))
480 tty_putcode(tty
, TTYC_ENMG
);
481 if (options_get_number(global_options
, "extended-keys"))
482 tty_puts(tty
, tty_term_string(tty
->term
, TTYC_ENEKS
));
483 if (options_get_number(global_options
, "focus-events"))
484 tty_puts(tty
, tty_term_string(tty
->term
, TTYC_ENFCS
));
485 if (tty
->term
->flags
& TERM_VT100LIKE
)
486 tty_puts(tty
, "\033[?7727h");
490 tty_raw(struct tty
*tty
, const char *s
)
492 struct client
*c
= tty
->client
;
497 for (i
= 0; i
< 5; i
++) {
498 n
= write(c
->fd
, s
, slen
);
504 } else if (n
== -1 && errno
!= EAGAIN
)
511 tty_putcode(struct tty
*tty
, enum tty_code_code code
)
513 tty_puts(tty
, tty_term_string(tty
->term
, code
));
517 tty_putcode1(struct tty
*tty
, enum tty_code_code code
, int a
)
521 tty_puts(tty
, tty_term_string1(tty
->term
, code
, a
));
525 tty_putcode2(struct tty
*tty
, enum tty_code_code code
, int a
, int b
)
529 tty_puts(tty
, tty_term_string2(tty
->term
, code
, a
, b
));
533 tty_putcode3(struct tty
*tty
, enum tty_code_code code
, int a
, int b
, int c
)
535 if (a
< 0 || b
< 0 || c
< 0)
537 tty_puts(tty
, tty_term_string3(tty
->term
, code
, a
, b
, c
));
541 tty_putcode_ptr1(struct tty
*tty
, enum tty_code_code code
, const void *a
)
544 tty_puts(tty
, tty_term_ptr1(tty
->term
, code
, a
));
548 tty_putcode_ptr2(struct tty
*tty
, enum tty_code_code code
, const void *a
,
551 if (a
!= NULL
&& b
!= NULL
)
552 tty_puts(tty
, tty_term_ptr2(tty
->term
, code
, a
, b
));
556 tty_add(struct tty
*tty
, const char *buf
, size_t len
)
558 struct client
*c
= tty
->client
;
560 if (tty
->flags
& TTY_BLOCK
) {
561 tty
->discarded
+= len
;
565 evbuffer_add(tty
->out
, buf
, len
);
566 log_debug("%s: %.*s", c
->name
, (int)len
, buf
);
569 if (tty_log_fd
!= -1)
570 write(tty_log_fd
, buf
, len
);
571 if (tty
->flags
& TTY_STARTED
)
572 event_add(&tty
->event_out
, NULL
);
576 tty_puts(struct tty
*tty
, const char *s
)
579 tty_add(tty
, s
, strlen(s
));
583 tty_putc(struct tty
*tty
, u_char ch
)
587 if ((tty
->term
->flags
& TERM_NOAM
) &&
588 ch
>= 0x20 && ch
!= 0x7f &&
589 tty
->cy
== tty
->sy
- 1 &&
590 tty
->cx
+ 1 >= tty
->sx
)
593 if (tty
->cell
.attr
& GRID_ATTR_CHARSET
) {
594 acs
= tty_acs_get(tty
, ch
);
596 tty_add(tty
, acs
, strlen(acs
));
598 tty_add(tty
, &ch
, 1);
600 tty_add(tty
, &ch
, 1);
602 if (ch
>= 0x20 && ch
!= 0x7f) {
603 if (tty
->cx
>= tty
->sx
) {
605 if (tty
->cy
!= tty
->rlower
)
609 * On !am terminals, force the cursor position to where
610 * we think it should be after a line wrap - this means
611 * it works on sensible terminals as well.
613 if (tty
->term
->flags
& TERM_NOAM
)
614 tty_putcode2(tty
, TTYC_CUP
, tty
->cy
, tty
->cx
);
621 tty_putn(struct tty
*tty
, const void *buf
, size_t len
, u_int width
)
623 if ((tty
->term
->flags
& TERM_NOAM
) &&
624 tty
->cy
== tty
->sy
- 1 &&
625 tty
->cx
+ len
>= tty
->sx
)
626 len
= tty
->sx
- tty
->cx
- 1;
628 tty_add(tty
, buf
, len
);
629 if (tty
->cx
+ width
> tty
->sx
) {
630 tty
->cx
= (tty
->cx
+ width
) - tty
->sx
;
631 if (tty
->cx
<= tty
->sx
)
634 tty
->cx
= tty
->cy
= UINT_MAX
;
640 tty_set_italics(struct tty
*tty
)
644 if (tty_term_has(tty
->term
, TTYC_SITM
)) {
645 s
= options_get_string(global_options
, "default-terminal");
646 if (strcmp(s
, "screen") != 0 && strncmp(s
, "screen-", 7) != 0) {
647 tty_putcode(tty
, TTYC_SITM
);
651 tty_putcode(tty
, TTYC_SMSO
);
655 tty_set_title(struct tty
*tty
, const char *title
)
657 if (!tty_term_has(tty
->term
, TTYC_TSL
) ||
658 !tty_term_has(tty
->term
, TTYC_FSL
))
661 tty_putcode(tty
, TTYC_TSL
);
662 tty_puts(tty
, title
);
663 tty_putcode(tty
, TTYC_FSL
);
667 tty_set_path(struct tty
*tty
, const char *title
)
669 if (!tty_term_has(tty
->term
, TTYC_SWD
) ||
670 !tty_term_has(tty
->term
, TTYC_FSL
))
673 tty_putcode(tty
, TTYC_SWD
);
674 tty_puts(tty
, title
);
675 tty_putcode(tty
, TTYC_FSL
);
679 tty_force_cursor_colour(struct tty
*tty
, int c
)
685 c
= colour_force_rgb(c
);
686 if (c
== tty
->ccolour
)
689 tty_putcode(tty
, TTYC_CR
);
691 colour_split_rgb(c
, &r
, &g
, &b
);
692 xsnprintf(s
, sizeof s
, "rgb:%02hhx/%02hhx/%02hhx", r
, g
, b
);
693 tty_putcode_ptr1(tty
, TTYC_CS
, s
);
699 tty_update_cursor(struct tty
*tty
, int mode
, struct screen
*s
)
701 enum screen_cursor_style cstyle
;
702 int ccolour
, changed
, cmode
= mode
;
704 /* Set cursor colour if changed. */
706 ccolour
= s
->ccolour
;
707 if (s
->ccolour
== -1)
708 ccolour
= s
->default_ccolour
;
709 tty_force_cursor_colour(tty
, ccolour
);
712 /* If cursor is off, set as invisible. */
713 if (~cmode
& MODE_CURSOR
) {
714 if (tty
->mode
& MODE_CURSOR
)
715 tty_putcode(tty
, TTYC_CIVIS
);
719 /* Check if blinking or very visible flag changed or style changed. */
721 cstyle
= tty
->cstyle
;
724 if (cstyle
== SCREEN_CURSOR_DEFAULT
) {
725 if (~cmode
& MODE_CURSOR_BLINKING_SET
) {
726 if (s
->default_mode
& MODE_CURSOR_BLINKING
)
727 cmode
|= MODE_CURSOR_BLINKING
;
729 cmode
&= ~MODE_CURSOR_BLINKING
;
731 cstyle
= s
->default_cstyle
;
735 /* If nothing changed, do nothing. */
736 changed
= cmode
^ tty
->mode
;
737 if ((changed
& CURSOR_MODES
) == 0 && cstyle
== tty
->cstyle
)
741 * Set cursor style. If an explicit style has been set with DECSCUSR,
742 * set it if supported, otherwise send cvvis for blinking styles.
744 * If no style, has been set (SCREEN_CURSOR_DEFAULT), then send cvvis
745 * if either the blinking or very visible flags are set.
747 tty_putcode(tty
, TTYC_CNORM
);
749 case SCREEN_CURSOR_DEFAULT
:
750 if (tty
->cstyle
!= SCREEN_CURSOR_DEFAULT
) {
751 if (tty_term_has(tty
->term
, TTYC_SE
))
752 tty_putcode(tty
, TTYC_SE
);
754 tty_putcode1(tty
, TTYC_SS
, 0);
756 if (cmode
& (MODE_CURSOR_BLINKING
|MODE_CURSOR_VERY_VISIBLE
))
757 tty_putcode(tty
, TTYC_CVVIS
);
759 case SCREEN_CURSOR_BLOCK
:
760 if (tty_term_has(tty
->term
, TTYC_SS
)) {
761 if (cmode
& MODE_CURSOR_BLINKING
)
762 tty_putcode1(tty
, TTYC_SS
, 1);
764 tty_putcode1(tty
, TTYC_SS
, 2);
765 } else if (cmode
& MODE_CURSOR_BLINKING
)
766 tty_putcode(tty
, TTYC_CVVIS
);
768 case SCREEN_CURSOR_UNDERLINE
:
769 if (tty_term_has(tty
->term
, TTYC_SS
)) {
770 if (cmode
& MODE_CURSOR_BLINKING
)
771 tty_putcode1(tty
, TTYC_SS
, 3);
773 tty_putcode1(tty
, TTYC_SS
, 4);
774 } else if (cmode
& MODE_CURSOR_BLINKING
)
775 tty_putcode(tty
, TTYC_CVVIS
);
777 case SCREEN_CURSOR_BAR
:
778 if (tty_term_has(tty
->term
, TTYC_SS
)) {
779 if (cmode
& MODE_CURSOR_BLINKING
)
780 tty_putcode1(tty
, TTYC_SS
, 5);
782 tty_putcode1(tty
, TTYC_SS
, 6);
783 } else if (cmode
& MODE_CURSOR_BLINKING
)
784 tty_putcode(tty
, TTYC_CVVIS
);
787 tty
->cstyle
= cstyle
;
792 tty_update_mode(struct tty
*tty
, int mode
, struct screen
*s
)
794 struct tty_term
*term
= tty
->term
;
795 struct client
*c
= tty
->client
;
798 if (tty
->flags
& TTY_NOCURSOR
)
799 mode
&= ~MODE_CURSOR
;
801 if (tty_update_cursor(tty
, mode
, s
) & MODE_CURSOR_BLINKING
)
802 mode
|= MODE_CURSOR_BLINKING
;
804 mode
&= ~MODE_CURSOR_BLINKING
;
806 changed
= mode
^ tty
->mode
;
807 if (log_get_level() != 0 && changed
!= 0) {
808 log_debug("%s: current mode %s", c
->name
,
809 screen_mode_to_string(tty
->mode
));
810 log_debug("%s: setting mode %s", c
->name
,
811 screen_mode_to_string(mode
));
814 if ((changed
& ALL_MOUSE_MODES
) && tty_term_has(term
, TTYC_KMOUS
)) {
816 * If the mouse modes have changed, clear then all and apply
817 * again. There are differences in how terminals track the
820 tty_puts(tty
, "\033[?1006l\033[?1000l\033[?1002l\033[?1003l");
821 if (mode
& ALL_MOUSE_MODES
)
822 tty_puts(tty
, "\033[?1006h");
823 if (mode
& MODE_MOUSE_ALL
)
824 tty_puts(tty
, "\033[?1000h\033[?1002h\033[?1003h");
825 else if (mode
& MODE_MOUSE_BUTTON
)
826 tty_puts(tty
, "\033[?1000h\033[?1002h");
827 else if (mode
& MODE_MOUSE_STANDARD
)
828 tty_puts(tty
, "\033[?1000h");
834 tty_emulate_repeat(struct tty
*tty
, enum tty_code_code code
,
835 enum tty_code_code code1
, u_int n
)
837 if (tty_term_has(tty
->term
, code
))
838 tty_putcode1(tty
, code
, n
);
841 tty_putcode(tty
, code1
);
846 tty_repeat_space(struct tty
*tty
, u_int n
)
851 memset(s
, ' ', sizeof s
);
853 while (n
> sizeof s
) {
854 tty_putn(tty
, s
, sizeof s
, sizeof s
);
858 tty_putn(tty
, s
, n
, n
);
861 /* Is this window bigger than the terminal? */
863 tty_window_bigger(struct tty
*tty
)
865 struct client
*c
= tty
->client
;
866 struct window
*w
= c
->session
->curw
->window
;
868 return (tty
->sx
< w
->sx
|| tty
->sy
- status_line_size(c
) < w
->sy
);
871 /* What offset should this window be drawn at? */
873 tty_window_offset(struct tty
*tty
, u_int
*ox
, u_int
*oy
, u_int
*sx
, u_int
*sy
)
883 /* What offset should this window be drawn at? */
885 tty_window_offset1(struct tty
*tty
, u_int
*ox
, u_int
*oy
, u_int
*sx
, u_int
*sy
)
887 struct client
*c
= tty
->client
;
888 struct window
*w
= c
->session
->curw
->window
;
889 struct window_pane
*wp
= server_client_get_pane(c
);
892 lines
= status_line_size(c
);
894 if (tty
->sx
>= w
->sx
&& tty
->sy
- lines
>= w
->sy
) {
900 c
->pan_window
= NULL
;
905 *sy
= tty
->sy
- lines
;
907 if (c
->pan_window
== w
) {
910 else if (c
->pan_ox
+ *sx
> w
->sx
)
911 c
->pan_ox
= w
->sx
- *sx
;
915 else if (c
->pan_oy
+ *sy
> w
->sy
)
916 c
->pan_oy
= w
->sy
- *sy
;
921 if (~wp
->screen
->mode
& MODE_CURSOR
) {
925 cx
= wp
->xoff
+ wp
->screen
->cx
;
926 cy
= wp
->yoff
+ wp
->screen
->cy
;
930 else if (cx
> w
->sx
- *sx
)
937 else if (cy
> w
->sy
- *sy
)
943 c
->pan_window
= NULL
;
947 /* Update stored offsets for a window and redraw if necessary. */
949 tty_update_window_offset(struct window
*w
)
953 TAILQ_FOREACH(c
, &clients
, entry
) {
954 if (c
->session
!= NULL
&&
955 c
->session
->curw
!= NULL
&&
956 c
->session
->curw
->window
== w
)
957 tty_update_client_offset(c
);
961 /* Update stored offsets for a client and redraw if necessary. */
963 tty_update_client_offset(struct client
*c
)
965 u_int ox
, oy
, sx
, sy
;
967 if (~c
->flags
& CLIENT_TERMINAL
)
970 c
->tty
.oflag
= tty_window_offset1(&c
->tty
, &ox
, &oy
, &sx
, &sy
);
971 if (ox
== c
->tty
.oox
&&
977 log_debug ("%s: %s offset has changed (%u,%u %ux%u -> %u,%u %ux%u)",
978 __func__
, c
->name
, c
->tty
.oox
, c
->tty
.ooy
, c
->tty
.osx
, c
->tty
.osy
,
986 c
->flags
|= (CLIENT_REDRAWWINDOW
|CLIENT_REDRAWSTATUS
);
990 * Is the region large enough to be worth redrawing once later rather than
991 * probably several times now? Currently yes if it is more than 50% of the
995 tty_large_region(__unused
struct tty
*tty
, const struct tty_ctx
*ctx
)
997 return (ctx
->orlower
- ctx
->orupper
>= ctx
->sy
/ 2);
1001 * Return if BCE is needed but the terminal doesn't have it - it'll need to be
1005 tty_fake_bce(const struct tty
*tty
, const struct grid_cell
*gc
, u_int bg
)
1007 if (tty_term_flag(tty
->term
, TTYC_BCE
))
1009 if (!COLOUR_DEFAULT(bg
) || !COLOUR_DEFAULT(gc
->bg
))
1015 * Redraw scroll region using data from screen (already updated). Used when
1016 * CSR not supported, or window is a pane that doesn't take up the full
1017 * width of the terminal.
1020 tty_redraw_region(struct tty
*tty
, const struct tty_ctx
*ctx
)
1022 struct client
*c
= tty
->client
;
1026 * If region is large, schedule a redraw. In most cases this is likely
1027 * to be followed by some more scrolling.
1029 if (tty_large_region(tty
, ctx
)) {
1030 log_debug("%s: %s large redraw", __func__
, c
->name
);
1031 ctx
->redraw_cb(ctx
);
1035 for (i
= ctx
->orupper
; i
<= ctx
->orlower
; i
++)
1036 tty_draw_pane(tty
, ctx
, i
);
1039 /* Is this position visible in the pane? */
1041 tty_is_visible(__unused
struct tty
*tty
, const struct tty_ctx
*ctx
, u_int px
,
1042 u_int py
, u_int nx
, u_int ny
)
1044 u_int xoff
= ctx
->rxoff
+ px
, yoff
= ctx
->ryoff
+ py
;
1049 if (xoff
+ nx
<= ctx
->wox
|| xoff
>= ctx
->wox
+ ctx
->wsx
||
1050 yoff
+ ny
<= ctx
->woy
|| yoff
>= ctx
->woy
+ ctx
->wsy
)
1055 /* Clamp line position to visible part of pane. */
1057 tty_clamp_line(struct tty
*tty
, const struct tty_ctx
*ctx
, u_int px
, u_int py
,
1058 u_int nx
, u_int
*i
, u_int
*x
, u_int
*rx
, u_int
*ry
)
1060 u_int xoff
= ctx
->rxoff
+ px
;
1062 if (!tty_is_visible(tty
, ctx
, px
, py
, nx
, 1))
1064 *ry
= ctx
->yoff
+ py
- ctx
->woy
;
1066 if (xoff
>= ctx
->wox
&& xoff
+ nx
<= ctx
->wox
+ ctx
->wsx
) {
1069 *x
= ctx
->xoff
+ px
- ctx
->wox
;
1071 } else if (xoff
< ctx
->wox
&& xoff
+ nx
> ctx
->wox
+ ctx
->wsx
) {
1072 /* Both left and right not visible. */
1076 } else if (xoff
< ctx
->wox
) {
1077 /* Left not visible. */
1078 *i
= ctx
->wox
- (ctx
->xoff
+ px
);
1082 /* Right not visible. */
1084 *x
= (ctx
->xoff
+ px
) - ctx
->wox
;
1085 *rx
= ctx
->wsx
- *x
;
1088 fatalx("%s: x too big, %u > %u", __func__
, *rx
, nx
);
1095 tty_clear_line(struct tty
*tty
, const struct grid_cell
*defaults
, u_int py
,
1096 u_int px
, u_int nx
, u_int bg
)
1098 struct client
*c
= tty
->client
;
1099 struct overlay_ranges r
;
1102 log_debug("%s: %s, %u at %u,%u", __func__
, c
->name
, nx
, px
, py
);
1104 /* Nothing to clear. */
1108 /* If genuine BCE is available, can try escape sequences. */
1109 if (c
->overlay_check
== NULL
&& !tty_fake_bce(tty
, defaults
, bg
)) {
1110 /* Off the end of the line, use EL if available. */
1111 if (px
+ nx
>= tty
->sx
&& tty_term_has(tty
->term
, TTYC_EL
)) {
1112 tty_cursor(tty
, px
, py
);
1113 tty_putcode(tty
, TTYC_EL
);
1117 /* At the start of the line. Use EL1. */
1118 if (px
== 0 && tty_term_has(tty
->term
, TTYC_EL1
)) {
1119 tty_cursor(tty
, px
+ nx
- 1, py
);
1120 tty_putcode(tty
, TTYC_EL1
);
1124 /* Section of line. Use ECH if possible. */
1125 if (tty_term_has(tty
->term
, TTYC_ECH
)) {
1126 tty_cursor(tty
, px
, py
);
1127 tty_putcode1(tty
, TTYC_ECH
, nx
);
1133 * Couldn't use an escape sequence, use spaces. Clear only the visible
1134 * bit if there is an overlay.
1136 tty_check_overlay_range(tty
, px
, py
, nx
, &r
);
1137 for (i
= 0; i
< OVERLAY_MAX_RANGES
; i
++) {
1140 tty_cursor(tty
, r
.px
[i
], py
);
1141 tty_repeat_space(tty
, r
.nx
[i
]);
1145 /* Clear a line, adjusting to visible part of pane. */
1147 tty_clear_pane_line(struct tty
*tty
, const struct tty_ctx
*ctx
, u_int py
,
1148 u_int px
, u_int nx
, u_int bg
)
1150 struct client
*c
= tty
->client
;
1153 log_debug("%s: %s, %u at %u,%u", __func__
, c
->name
, nx
, px
, py
);
1155 if (tty_clamp_line(tty
, ctx
, px
, py
, nx
, &i
, &x
, &rx
, &ry
))
1156 tty_clear_line(tty
, &ctx
->defaults
, ry
, x
, rx
, bg
);
1159 /* Clamp area position to visible part of pane. */
1161 tty_clamp_area(struct tty
*tty
, const struct tty_ctx
*ctx
, u_int px
, u_int py
,
1162 u_int nx
, u_int ny
, u_int
*i
, u_int
*j
, u_int
*x
, u_int
*y
, u_int
*rx
,
1165 u_int xoff
= ctx
->rxoff
+ px
, yoff
= ctx
->ryoff
+ py
;
1167 if (!tty_is_visible(tty
, ctx
, px
, py
, nx
, ny
))
1170 if (xoff
>= ctx
->wox
&& xoff
+ nx
<= ctx
->wox
+ ctx
->wsx
) {
1173 *x
= ctx
->xoff
+ px
- ctx
->wox
;
1175 } else if (xoff
< ctx
->wox
&& xoff
+ nx
> ctx
->wox
+ ctx
->wsx
) {
1176 /* Both left and right not visible. */
1180 } else if (xoff
< ctx
->wox
) {
1181 /* Left not visible. */
1182 *i
= ctx
->wox
- (ctx
->xoff
+ px
);
1186 /* Right not visible. */
1188 *x
= (ctx
->xoff
+ px
) - ctx
->wox
;
1189 *rx
= ctx
->wsx
- *x
;
1192 fatalx("%s: x too big, %u > %u", __func__
, *rx
, nx
);
1194 if (yoff
>= ctx
->woy
&& yoff
+ ny
<= ctx
->woy
+ ctx
->wsy
) {
1197 *y
= ctx
->yoff
+ py
- ctx
->woy
;
1199 } else if (yoff
< ctx
->woy
&& yoff
+ ny
> ctx
->woy
+ ctx
->wsy
) {
1200 /* Both top and bottom not visible. */
1204 } else if (yoff
< ctx
->woy
) {
1205 /* Top not visible. */
1206 *j
= ctx
->woy
- (ctx
->yoff
+ py
);
1210 /* Bottom not visible. */
1212 *y
= (ctx
->yoff
+ py
) - ctx
->woy
;
1213 *ry
= ctx
->wsy
- *y
;
1216 fatalx("%s: y too big, %u > %u", __func__
, *ry
, ny
);
1221 /* Clear an area, adjusting to visible part of pane. */
1223 tty_clear_area(struct tty
*tty
, const struct grid_cell
*defaults
, u_int py
,
1224 u_int ny
, u_int px
, u_int nx
, u_int bg
)
1226 struct client
*c
= tty
->client
;
1230 log_debug("%s: %s, %u,%u at %u,%u", __func__
, c
->name
, nx
, ny
, px
, py
);
1232 /* Nothing to clear. */
1233 if (nx
== 0 || ny
== 0)
1236 /* If genuine BCE is available, can try escape sequences. */
1237 if (c
->overlay_check
== NULL
&& !tty_fake_bce(tty
, defaults
, bg
)) {
1238 /* Use ED if clearing off the bottom of the terminal. */
1240 px
+ nx
>= tty
->sx
&&
1241 py
+ ny
>= tty
->sy
&&
1242 tty_term_has(tty
->term
, TTYC_ED
)) {
1243 tty_cursor(tty
, 0, py
);
1244 tty_putcode(tty
, TTYC_ED
);
1249 * On VT420 compatible terminals we can use DECFRA if the
1250 * background colour isn't default (because it doesn't work
1253 if ((tty
->term
->flags
& TERM_DECFRA
) && !COLOUR_DEFAULT(bg
)) {
1254 xsnprintf(tmp
, sizeof tmp
, "\033[32;%u;%u;%u;%u$x",
1255 py
+ 1, px
+ 1, py
+ ny
, px
+ nx
);
1260 /* Full lines can be scrolled away to clear them. */
1262 px
+ nx
>= tty
->sx
&&
1264 tty_term_has(tty
->term
, TTYC_CSR
) &&
1265 tty_term_has(tty
->term
, TTYC_INDN
)) {
1266 tty_region(tty
, py
, py
+ ny
- 1);
1267 tty_margin_off(tty
);
1268 tty_putcode1(tty
, TTYC_INDN
, ny
);
1273 * If margins are supported, can just scroll the area off to
1278 tty_term_has(tty
->term
, TTYC_CSR
) &&
1279 tty_use_margin(tty
) &&
1280 tty_term_has(tty
->term
, TTYC_INDN
)) {
1281 tty_region(tty
, py
, py
+ ny
- 1);
1282 tty_margin(tty
, px
, px
+ nx
- 1);
1283 tty_putcode1(tty
, TTYC_INDN
, ny
);
1288 /* Couldn't use an escape sequence, loop over the lines. */
1289 for (yy
= py
; yy
< py
+ ny
; yy
++)
1290 tty_clear_line(tty
, defaults
, yy
, px
, nx
, bg
);
1293 /* Clear an area in a pane. */
1295 tty_clear_pane_area(struct tty
*tty
, const struct tty_ctx
*ctx
, u_int py
,
1296 u_int ny
, u_int px
, u_int nx
, u_int bg
)
1298 u_int i
, j
, x
, y
, rx
, ry
;
1300 if (tty_clamp_area(tty
, ctx
, px
, py
, nx
, ny
, &i
, &j
, &x
, &y
, &rx
, &ry
))
1301 tty_clear_area(tty
, &ctx
->defaults
, y
, ry
, x
, rx
, bg
);
1305 tty_draw_pane(struct tty
*tty
, const struct tty_ctx
*ctx
, u_int py
)
1307 struct screen
*s
= ctx
->s
;
1308 u_int nx
= ctx
->sx
, i
, x
, rx
, ry
;
1310 log_debug("%s: %s %u %d", __func__
, tty
->client
->name
, py
, ctx
->bigger
);
1313 tty_draw_line(tty
, s
, 0, py
, nx
, ctx
->xoff
, ctx
->yoff
+ py
,
1314 &ctx
->defaults
, ctx
->palette
);
1317 if (tty_clamp_line(tty
, ctx
, 0, py
, nx
, &i
, &x
, &rx
, &ry
)) {
1318 tty_draw_line(tty
, s
, i
, py
, rx
, x
, ry
, &ctx
->defaults
,
1323 static const struct grid_cell
*
1324 tty_check_codeset(struct tty
*tty
, const struct grid_cell
*gc
)
1326 static struct grid_cell
new;
1329 /* Characters less than 0x7f are always fine, no matter what. */
1330 if (gc
->data
.size
== 1 && *gc
->data
.data
< 0x7f)
1333 /* UTF-8 terminal and a UTF-8 character - fine. */
1334 if (tty
->client
->flags
& CLIENT_UTF8
)
1336 memcpy(&new, gc
, sizeof new);
1338 /* See if this can be mapped to an ACS character. */
1339 c
= tty_acs_reverse_get(tty
, gc
->data
.data
, gc
->data
.size
);
1341 utf8_set(&new.data
, c
);
1342 new.attr
|= GRID_ATTR_CHARSET
;
1346 /* Replace by the right number of underscores. */
1347 new.data
.size
= gc
->data
.width
;
1348 if (new.data
.size
> UTF8_SIZE
)
1349 new.data
.size
= UTF8_SIZE
;
1350 memset(new.data
.data
, '_', new.data
.size
);
1355 * Check if a single character is obstructed by the overlay and return a
1359 tty_check_overlay(struct tty
*tty
, u_int px
, u_int py
)
1361 struct overlay_ranges r
;
1364 * A unit width range will always return nx[2] == 0 from a check, even
1365 * with multiple overlays, so it's sufficient to check just the first
1368 tty_check_overlay_range(tty
, px
, py
, 1, &r
);
1369 if (r
.nx
[0] + r
.nx
[1] == 0)
1374 /* Return parts of the input range which are visible. */
1376 tty_check_overlay_range(struct tty
*tty
, u_int px
, u_int py
, u_int nx
,
1377 struct overlay_ranges
*r
)
1379 struct client
*c
= tty
->client
;
1381 if (c
->overlay_check
== NULL
) {
1391 c
->overlay_check(c
, c
->overlay_data
, px
, py
, nx
, r
);
1395 tty_draw_line(struct tty
*tty
, struct screen
*s
, u_int px
, u_int py
, u_int nx
,
1396 u_int atx
, u_int aty
, const struct grid_cell
*defaults
,
1397 struct colour_palette
*palette
)
1399 struct grid
*gd
= s
->grid
;
1400 struct grid_cell gc
, last
;
1401 const struct grid_cell
*gcp
;
1402 struct grid_line
*gl
;
1403 struct client
*c
= tty
->client
;
1404 struct overlay_ranges r
;
1405 u_int i
, j
, ux
, sx
, width
, hidden
, eux
, nxx
;
1407 int flags
, cleared
= 0, wrapped
= 0;
1411 log_debug("%s: px=%u py=%u nx=%u atx=%u aty=%u", __func__
,
1412 px
, py
, nx
, atx
, aty
);
1413 log_debug("%s: defaults: fg=%d, bg=%d", __func__
, defaults
->fg
,
1417 * py is the line in the screen to draw.
1418 * px is the start x and nx is the width to draw.
1419 * atx,aty is the line on the terminal to draw it.
1422 flags
= (tty
->flags
& TTY_NOCURSOR
);
1423 tty
->flags
|= TTY_NOCURSOR
;
1424 tty_update_mode(tty
, tty
->mode
, s
);
1426 tty_region_off(tty
);
1427 tty_margin_off(tty
);
1430 * Clamp the width to cellsize - note this is not cellused, because
1431 * there may be empty background cells after it (from BCE).
1433 sx
= screen_size_x(s
);
1436 cellsize
= grid_get_line(gd
, gd
->hsize
+ py
)->cellsize
;
1448 gl
= grid_get_line(gd
, gd
->hsize
+ py
- 1);
1450 (~gl
->flags
& GRID_LINE_WRAPPED
) ||
1452 tty
->cx
< tty
->sx
||
1457 tty_term_has(tty
->term
, TTYC_EL1
) &&
1458 !tty_fake_bce(tty
, defaults
, 8) &&
1459 c
->overlay_check
== NULL
) {
1460 tty_default_attributes(tty
, defaults
, palette
, 8,
1462 tty_cursor(tty
, nx
- 1, aty
);
1463 tty_putcode(tty
, TTYC_EL1
);
1467 log_debug("%s: wrapped line %u", __func__
, aty
);
1471 memcpy(&last
, &grid_default_cell
, sizeof last
);
1475 for (i
= 0; i
< sx
; i
++) {
1476 grid_view_get_cell(gd
, px
+ i
, py
, &gc
);
1477 gcp
= tty_check_codeset(tty
, &gc
);
1479 (!tty_check_overlay(tty
, atx
+ ux
+ width
, aty
) ||
1480 (gcp
->attr
& GRID_ATTR_CHARSET
) ||
1481 gcp
->flags
!= last
.flags
||
1482 gcp
->attr
!= last
.attr
||
1483 gcp
->fg
!= last
.fg
||
1484 gcp
->bg
!= last
.bg
||
1485 gcp
->us
!= last
.us
||
1486 gcp
->link
!= last
.link
||
1487 ux
+ width
+ gcp
->data
.width
> nx
||
1488 (sizeof buf
) - len
< gcp
->data
.size
)) {
1489 tty_attributes(tty
, &last
, defaults
, palette
,
1491 if (last
.flags
& GRID_FLAG_CLEARED
) {
1492 log_debug("%s: %zu cleared", __func__
, len
);
1493 tty_clear_line(tty
, defaults
, aty
, atx
+ ux
,
1496 if (!wrapped
|| atx
!= 0 || ux
!= 0)
1497 tty_cursor(tty
, atx
+ ux
, aty
);
1498 tty_putn(tty
, buf
, len
, width
);
1507 if (gcp
->flags
& GRID_FLAG_SELECTED
)
1508 screen_select_cell(s
, &last
, gcp
);
1510 memcpy(&last
, gcp
, sizeof last
);
1512 tty_check_overlay_range(tty
, atx
+ ux
, aty
, gcp
->data
.width
,
1515 for (j
= 0; j
< OVERLAY_MAX_RANGES
; j
++)
1517 hidden
= gcp
->data
.width
- hidden
;
1518 if (hidden
!= 0 && hidden
== gcp
->data
.width
) {
1519 if (~gcp
->flags
& GRID_FLAG_PADDING
)
1520 ux
+= gcp
->data
.width
;
1521 } else if (hidden
!= 0 || ux
+ gcp
->data
.width
> nx
) {
1522 if (~gcp
->flags
& GRID_FLAG_PADDING
) {
1523 tty_attributes(tty
, &last
, defaults
, palette
,
1525 for (j
= 0; j
< OVERLAY_MAX_RANGES
; j
++) {
1528 /* Effective width drawn so far. */
1529 eux
= r
.px
[j
] - atx
;
1531 tty_cursor(tty
, r
.px
[j
], aty
);
1535 tty_repeat_space(tty
, r
.nx
[j
]);
1540 } else if (gcp
->attr
& GRID_ATTR_CHARSET
) {
1541 tty_attributes(tty
, &last
, defaults
, palette
,
1543 tty_cursor(tty
, atx
+ ux
, aty
);
1544 for (j
= 0; j
< gcp
->data
.size
; j
++)
1545 tty_putc(tty
, gcp
->data
.data
[j
]);
1546 ux
+= gcp
->data
.width
;
1547 } else if (~gcp
->flags
& GRID_FLAG_PADDING
) {
1548 memcpy(buf
+ len
, gcp
->data
.data
, gcp
->data
.size
);
1549 len
+= gcp
->data
.size
;
1550 width
+= gcp
->data
.width
;
1553 if (len
!= 0 && ((~last
.flags
& GRID_FLAG_CLEARED
) || last
.bg
!= 8)) {
1554 tty_attributes(tty
, &last
, defaults
, palette
, s
->hyperlinks
);
1555 if (last
.flags
& GRID_FLAG_CLEARED
) {
1556 log_debug("%s: %zu cleared (end)", __func__
, len
);
1557 tty_clear_line(tty
, defaults
, aty
, atx
+ ux
, width
,
1560 if (!wrapped
|| atx
!= 0 || ux
!= 0)
1561 tty_cursor(tty
, atx
+ ux
, aty
);
1562 tty_putn(tty
, buf
, len
, width
);
1567 if (!cleared
&& ux
< nx
) {
1568 log_debug("%s: %u to end of line (%zu cleared)", __func__
,
1570 tty_default_attributes(tty
, defaults
, palette
, 8,
1572 tty_clear_line(tty
, defaults
, aty
, atx
+ ux
, nx
- ux
, 8);
1575 tty
->flags
= (tty
->flags
& ~TTY_NOCURSOR
) | flags
;
1576 tty_update_mode(tty
, tty
->mode
, s
);
1580 tty_sync_start(struct tty
*tty
)
1582 if (tty
->flags
& TTY_BLOCK
)
1584 if (tty
->flags
& TTY_SYNCING
)
1586 tty
->flags
|= TTY_SYNCING
;
1588 if (tty_term_has(tty
->term
, TTYC_SYNC
)) {
1589 log_debug("%s sync start", tty
->client
->name
);
1590 tty_putcode1(tty
, TTYC_SYNC
, 1);
1595 tty_sync_end(struct tty
*tty
)
1597 if (tty
->flags
& TTY_BLOCK
)
1599 if (~tty
->flags
& TTY_SYNCING
)
1601 tty
->flags
&= ~TTY_SYNCING
;
1603 if (tty_term_has(tty
->term
, TTYC_SYNC
)) {
1604 log_debug("%s sync end", tty
->client
->name
);
1605 tty_putcode1(tty
, TTYC_SYNC
, 2);
1610 tty_client_ready(struct client
*c
)
1612 if (c
->session
== NULL
|| c
->tty
.term
== NULL
)
1614 if (c
->flags
& (CLIENT_REDRAWWINDOW
|CLIENT_SUSPENDED
))
1616 if (c
->tty
.flags
& TTY_FREEZE
)
1622 tty_write(void (*cmdfn
)(struct tty
*, const struct tty_ctx
*),
1623 struct tty_ctx
*ctx
)
1628 if (ctx
->set_client_cb
== NULL
)
1630 TAILQ_FOREACH(c
, &clients
, entry
) {
1631 if (ctx
->allow_invisible_panes
) {
1632 if (c
->session
== NULL
||
1633 c
->tty
.term
== NULL
||
1634 c
->flags
& CLIENT_SUSPENDED
)
1637 if (!tty_client_ready(c
))
1639 state
= ctx
->set_client_cb(ctx
, c
);
1645 cmdfn(&c
->tty
, ctx
);
1650 tty_cmd_insertcharacter(struct tty
*tty
, const struct tty_ctx
*ctx
)
1652 struct client
*c
= tty
->client
;
1655 !tty_full_width(tty
, ctx
) ||
1656 tty_fake_bce(tty
, &ctx
->defaults
, ctx
->bg
) ||
1657 (!tty_term_has(tty
->term
, TTYC_ICH
) &&
1658 !tty_term_has(tty
->term
, TTYC_ICH1
)) ||
1659 c
->overlay_check
!= NULL
) {
1660 tty_draw_pane(tty
, ctx
, ctx
->ocy
);
1664 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1665 ctx
->s
->hyperlinks
);
1667 tty_cursor_pane(tty
, ctx
, ctx
->ocx
, ctx
->ocy
);
1669 tty_emulate_repeat(tty
, TTYC_ICH
, TTYC_ICH1
, ctx
->num
);
1673 tty_cmd_deletecharacter(struct tty
*tty
, const struct tty_ctx
*ctx
)
1675 struct client
*c
= tty
->client
;
1678 !tty_full_width(tty
, ctx
) ||
1679 tty_fake_bce(tty
, &ctx
->defaults
, ctx
->bg
) ||
1680 (!tty_term_has(tty
->term
, TTYC_DCH
) &&
1681 !tty_term_has(tty
->term
, TTYC_DCH1
)) ||
1682 c
->overlay_check
!= NULL
) {
1683 tty_draw_pane(tty
, ctx
, ctx
->ocy
);
1687 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1688 ctx
->s
->hyperlinks
);
1690 tty_cursor_pane(tty
, ctx
, ctx
->ocx
, ctx
->ocy
);
1692 tty_emulate_repeat(tty
, TTYC_DCH
, TTYC_DCH1
, ctx
->num
);
1696 tty_cmd_clearcharacter(struct tty
*tty
, const struct tty_ctx
*ctx
)
1698 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1699 ctx
->s
->hyperlinks
);
1701 tty_clear_pane_line(tty
, ctx
, ctx
->ocy
, ctx
->ocx
, ctx
->num
, ctx
->bg
);
1705 tty_cmd_insertline(struct tty
*tty
, const struct tty_ctx
*ctx
)
1707 struct client
*c
= tty
->client
;
1710 !tty_full_width(tty
, ctx
) ||
1711 tty_fake_bce(tty
, &ctx
->defaults
, ctx
->bg
) ||
1712 !tty_term_has(tty
->term
, TTYC_CSR
) ||
1713 !tty_term_has(tty
->term
, TTYC_IL1
) ||
1716 c
->overlay_check
!= NULL
) {
1717 tty_redraw_region(tty
, ctx
);
1721 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1722 ctx
->s
->hyperlinks
);
1724 tty_region_pane(tty
, ctx
, ctx
->orupper
, ctx
->orlower
);
1725 tty_margin_off(tty
);
1726 tty_cursor_pane(tty
, ctx
, ctx
->ocx
, ctx
->ocy
);
1728 tty_emulate_repeat(tty
, TTYC_IL
, TTYC_IL1
, ctx
->num
);
1729 tty
->cx
= tty
->cy
= UINT_MAX
;
1733 tty_cmd_deleteline(struct tty
*tty
, const struct tty_ctx
*ctx
)
1735 struct client
*c
= tty
->client
;
1738 !tty_full_width(tty
, ctx
) ||
1739 tty_fake_bce(tty
, &ctx
->defaults
, ctx
->bg
) ||
1740 !tty_term_has(tty
->term
, TTYC_CSR
) ||
1741 !tty_term_has(tty
->term
, TTYC_DL1
) ||
1744 c
->overlay_check
!= NULL
) {
1745 tty_redraw_region(tty
, ctx
);
1749 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1750 ctx
->s
->hyperlinks
);
1752 tty_region_pane(tty
, ctx
, ctx
->orupper
, ctx
->orlower
);
1753 tty_margin_off(tty
);
1754 tty_cursor_pane(tty
, ctx
, ctx
->ocx
, ctx
->ocy
);
1756 tty_emulate_repeat(tty
, TTYC_DL
, TTYC_DL1
, ctx
->num
);
1757 tty
->cx
= tty
->cy
= UINT_MAX
;
1761 tty_cmd_clearline(struct tty
*tty
, const struct tty_ctx
*ctx
)
1763 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1764 ctx
->s
->hyperlinks
);
1766 tty_clear_pane_line(tty
, ctx
, ctx
->ocy
, 0, ctx
->sx
, ctx
->bg
);
1770 tty_cmd_clearendofline(struct tty
*tty
, const struct tty_ctx
*ctx
)
1772 u_int nx
= ctx
->sx
- ctx
->ocx
;
1774 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1775 ctx
->s
->hyperlinks
);
1777 tty_clear_pane_line(tty
, ctx
, ctx
->ocy
, ctx
->ocx
, nx
, ctx
->bg
);
1781 tty_cmd_clearstartofline(struct tty
*tty
, const struct tty_ctx
*ctx
)
1783 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1784 ctx
->s
->hyperlinks
);
1786 tty_clear_pane_line(tty
, ctx
, ctx
->ocy
, 0, ctx
->ocx
+ 1, ctx
->bg
);
1790 tty_cmd_reverseindex(struct tty
*tty
, const struct tty_ctx
*ctx
)
1792 struct client
*c
= tty
->client
;
1794 if (ctx
->ocy
!= ctx
->orupper
)
1798 (!tty_full_width(tty
, ctx
) && !tty_use_margin(tty
)) ||
1799 tty_fake_bce(tty
, &ctx
->defaults
, 8) ||
1800 !tty_term_has(tty
->term
, TTYC_CSR
) ||
1801 (!tty_term_has(tty
->term
, TTYC_RI
) &&
1802 !tty_term_has(tty
->term
, TTYC_RIN
)) ||
1805 c
->overlay_check
!= NULL
) {
1806 tty_redraw_region(tty
, ctx
);
1810 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1811 ctx
->s
->hyperlinks
);
1813 tty_region_pane(tty
, ctx
, ctx
->orupper
, ctx
->orlower
);
1814 tty_margin_pane(tty
, ctx
);
1815 tty_cursor_pane(tty
, ctx
, ctx
->ocx
, ctx
->orupper
);
1817 if (tty_term_has(tty
->term
, TTYC_RI
))
1818 tty_putcode(tty
, TTYC_RI
);
1820 tty_putcode1(tty
, TTYC_RIN
, 1);
1824 tty_cmd_linefeed(struct tty
*tty
, const struct tty_ctx
*ctx
)
1826 struct client
*c
= tty
->client
;
1828 if (ctx
->ocy
!= ctx
->orlower
)
1832 (!tty_full_width(tty
, ctx
) && !tty_use_margin(tty
)) ||
1833 tty_fake_bce(tty
, &ctx
->defaults
, 8) ||
1834 !tty_term_has(tty
->term
, TTYC_CSR
) ||
1837 c
->overlay_check
!= NULL
) {
1838 tty_redraw_region(tty
, ctx
);
1842 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1843 ctx
->s
->hyperlinks
);
1845 tty_region_pane(tty
, ctx
, ctx
->orupper
, ctx
->orlower
);
1846 tty_margin_pane(tty
, ctx
);
1849 * If we want to wrap a pane while using margins, the cursor needs to
1850 * be exactly on the right of the region. If the cursor is entirely off
1851 * the edge - move it back to the right. Some terminals are funny about
1852 * this and insert extra spaces, so only use the right if margins are
1855 if (ctx
->xoff
+ ctx
->ocx
> tty
->rright
) {
1856 if (!tty_use_margin(tty
))
1857 tty_cursor(tty
, 0, ctx
->yoff
+ ctx
->ocy
);
1859 tty_cursor(tty
, tty
->rright
, ctx
->yoff
+ ctx
->ocy
);
1861 tty_cursor_pane(tty
, ctx
, ctx
->ocx
, ctx
->ocy
);
1863 tty_putc(tty
, '\n');
1867 tty_cmd_scrollup(struct tty
*tty
, const struct tty_ctx
*ctx
)
1869 struct client
*c
= tty
->client
;
1873 (!tty_full_width(tty
, ctx
) && !tty_use_margin(tty
)) ||
1874 tty_fake_bce(tty
, &ctx
->defaults
, 8) ||
1875 !tty_term_has(tty
->term
, TTYC_CSR
) ||
1878 c
->overlay_check
!= NULL
) {
1879 tty_redraw_region(tty
, ctx
);
1883 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1884 ctx
->s
->hyperlinks
);
1886 tty_region_pane(tty
, ctx
, ctx
->orupper
, ctx
->orlower
);
1887 tty_margin_pane(tty
, ctx
);
1889 if (ctx
->num
== 1 || !tty_term_has(tty
->term
, TTYC_INDN
)) {
1890 if (!tty_use_margin(tty
))
1891 tty_cursor(tty
, 0, tty
->rlower
);
1893 tty_cursor(tty
, tty
->rright
, tty
->rlower
);
1894 for (i
= 0; i
< ctx
->num
; i
++)
1895 tty_putc(tty
, '\n');
1897 if (tty
->cy
== UINT_MAX
)
1898 tty_cursor(tty
, 0, 0);
1900 tty_cursor(tty
, 0, tty
->cy
);
1901 tty_putcode1(tty
, TTYC_INDN
, ctx
->num
);
1906 tty_cmd_scrolldown(struct tty
*tty
, const struct tty_ctx
*ctx
)
1909 struct client
*c
= tty
->client
;
1912 (!tty_full_width(tty
, ctx
) && !tty_use_margin(tty
)) ||
1913 tty_fake_bce(tty
, &ctx
->defaults
, 8) ||
1914 !tty_term_has(tty
->term
, TTYC_CSR
) ||
1915 (!tty_term_has(tty
->term
, TTYC_RI
) &&
1916 !tty_term_has(tty
->term
, TTYC_RIN
)) ||
1919 c
->overlay_check
!= NULL
) {
1920 tty_redraw_region(tty
, ctx
);
1924 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1925 ctx
->s
->hyperlinks
);
1927 tty_region_pane(tty
, ctx
, ctx
->orupper
, ctx
->orlower
);
1928 tty_margin_pane(tty
, ctx
);
1929 tty_cursor_pane(tty
, ctx
, ctx
->ocx
, ctx
->orupper
);
1931 if (tty_term_has(tty
->term
, TTYC_RIN
))
1932 tty_putcode1(tty
, TTYC_RIN
, ctx
->num
);
1934 for (i
= 0; i
< ctx
->num
; i
++)
1935 tty_putcode(tty
, TTYC_RI
);
1940 tty_cmd_clearendofscreen(struct tty
*tty
, const struct tty_ctx
*ctx
)
1942 u_int px
, py
, nx
, ny
;
1944 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1945 ctx
->s
->hyperlinks
);
1947 tty_region_pane(tty
, ctx
, 0, ctx
->sy
- 1);
1948 tty_margin_off(tty
);
1953 ny
= ctx
->sy
- ctx
->ocy
- 1;
1955 tty_clear_pane_area(tty
, ctx
, py
, ny
, px
, nx
, ctx
->bg
);
1958 nx
= ctx
->sx
- ctx
->ocx
;
1961 tty_clear_pane_line(tty
, ctx
, py
, px
, nx
, ctx
->bg
);
1965 tty_cmd_clearstartofscreen(struct tty
*tty
, const struct tty_ctx
*ctx
)
1967 u_int px
, py
, nx
, ny
;
1969 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1970 ctx
->s
->hyperlinks
);
1972 tty_region_pane(tty
, ctx
, 0, ctx
->sy
- 1);
1973 tty_margin_off(tty
);
1980 tty_clear_pane_area(tty
, ctx
, py
, ny
, px
, nx
, ctx
->bg
);
1986 tty_clear_pane_line(tty
, ctx
, py
, px
, nx
, ctx
->bg
);
1990 tty_cmd_clearscreen(struct tty
*tty
, const struct tty_ctx
*ctx
)
1992 u_int px
, py
, nx
, ny
;
1994 tty_default_attributes(tty
, &ctx
->defaults
, ctx
->palette
, ctx
->bg
,
1995 ctx
->s
->hyperlinks
);
1997 tty_region_pane(tty
, ctx
, 0, ctx
->sy
- 1);
1998 tty_margin_off(tty
);
2005 tty_clear_pane_area(tty
, ctx
, py
, ny
, px
, nx
, ctx
->bg
);
2009 tty_cmd_alignmenttest(struct tty
*tty
, const struct tty_ctx
*ctx
)
2014 ctx
->redraw_cb(ctx
);
2018 tty_attributes(tty
, &grid_default_cell
, &ctx
->defaults
, ctx
->palette
,
2019 ctx
->s
->hyperlinks
);
2021 tty_region_pane(tty
, ctx
, 0, ctx
->sy
- 1);
2022 tty_margin_off(tty
);
2024 for (j
= 0; j
< ctx
->sy
; j
++) {
2025 tty_cursor_pane(tty
, ctx
, 0, j
);
2026 for (i
= 0; i
< ctx
->sx
; i
++)
2032 tty_cmd_cell(struct tty
*tty
, const struct tty_ctx
*ctx
)
2034 const struct grid_cell
*gcp
= ctx
->cell
;
2035 struct screen
*s
= ctx
->s
;
2036 struct overlay_ranges r
;
2037 u_int px
, py
, i
, vis
= 0;
2039 px
= ctx
->xoff
+ ctx
->ocx
- ctx
->wox
;
2040 py
= ctx
->yoff
+ ctx
->ocy
- ctx
->woy
;
2041 if (!tty_is_visible(tty
, ctx
, ctx
->ocx
, ctx
->ocy
, 1, 1) ||
2042 (gcp
->data
.width
== 1 && !tty_check_overlay(tty
, px
, py
)))
2045 /* Handle partially obstructed wide characters. */
2046 if (gcp
->data
.width
> 1) {
2047 tty_check_overlay_range(tty
, px
, py
, gcp
->data
.width
, &r
);
2048 for (i
= 0; i
< OVERLAY_MAX_RANGES
; i
++)
2050 if (vis
< gcp
->data
.width
) {
2051 tty_draw_line(tty
, s
, s
->cx
, s
->cy
, gcp
->data
.width
,
2052 px
, py
, &ctx
->defaults
, ctx
->palette
);
2057 if (ctx
->xoff
+ ctx
->ocx
- ctx
->wox
> tty
->sx
- 1 &&
2058 ctx
->ocy
== ctx
->orlower
&&
2059 tty_full_width(tty
, ctx
))
2060 tty_region_pane(tty
, ctx
, ctx
->orupper
, ctx
->orlower
);
2062 tty_margin_off(tty
);
2063 tty_cursor_pane_unless_wrap(tty
, ctx
, ctx
->ocx
, ctx
->ocy
);
2065 tty_cell(tty
, ctx
->cell
, &ctx
->defaults
, ctx
->palette
,
2066 ctx
->s
->hyperlinks
);
2070 tty_cmd_cells(struct tty
*tty
, const struct tty_ctx
*ctx
)
2072 struct overlay_ranges r
;
2073 u_int i
, px
, py
, cx
;
2074 char *cp
= ctx
->ptr
;
2076 if (!tty_is_visible(tty
, ctx
, ctx
->ocx
, ctx
->ocy
, ctx
->num
, 1))
2080 (ctx
->xoff
+ ctx
->ocx
< ctx
->wox
||
2081 ctx
->xoff
+ ctx
->ocx
+ ctx
->num
> ctx
->wox
+ ctx
->wsx
)) {
2082 if (!ctx
->wrapped
||
2083 !tty_full_width(tty
, ctx
) ||
2084 (tty
->term
->flags
& TERM_NOAM
) ||
2085 ctx
->xoff
+ ctx
->ocx
!= 0 ||
2086 ctx
->yoff
+ ctx
->ocy
!= tty
->cy
+ 1 ||
2087 tty
->cx
< tty
->sx
||
2088 tty
->cy
== tty
->rlower
)
2089 tty_draw_pane(tty
, ctx
, ctx
->ocy
);
2091 ctx
->redraw_cb(ctx
);
2095 tty_margin_off(tty
);
2096 tty_cursor_pane_unless_wrap(tty
, ctx
, ctx
->ocx
, ctx
->ocy
);
2097 tty_attributes(tty
, ctx
->cell
, &ctx
->defaults
, ctx
->palette
, ctx
->s
->hyperlinks
);
2099 /* Get tty position from pane position for overlay check. */
2100 px
= ctx
->xoff
+ ctx
->ocx
- ctx
->wox
;
2101 py
= ctx
->yoff
+ ctx
->ocy
- ctx
->woy
;
2103 tty_check_overlay_range(tty
, px
, py
, ctx
->num
, &r
);
2104 for (i
= 0; i
< OVERLAY_MAX_RANGES
; i
++) {
2107 /* Convert back to pane position for printing. */
2108 cx
= r
.px
[i
] - ctx
->xoff
+ ctx
->wox
;
2109 tty_cursor_pane_unless_wrap(tty
, ctx
, cx
, ctx
->ocy
);
2110 tty_putn(tty
, cp
+ r
.px
[i
] - px
, r
.nx
[i
], r
.nx
[i
]);
2115 tty_cmd_setselection(struct tty
*tty
, const struct tty_ctx
*ctx
)
2117 tty_set_selection(tty
, ctx
->ptr2
, ctx
->ptr
, ctx
->num
);
2121 tty_set_selection(struct tty
*tty
, const char *flags
, const char *buf
,
2127 if (~tty
->flags
& TTY_STARTED
)
2129 if (!tty_term_has(tty
->term
, TTYC_MS
))
2132 size
= 4 * ((len
+ 2) / 3) + 1; /* storage for base64 */
2133 encoded
= xmalloc(size
);
2135 b64_ntop(buf
, len
, encoded
, size
);
2136 tty
->flags
|= TTY_NOBLOCK
;
2137 tty_putcode_ptr2(tty
, TTYC_MS
, flags
, encoded
);
2143 tty_cmd_rawstring(struct tty
*tty
, const struct tty_ctx
*ctx
)
2145 tty
->flags
|= TTY_NOBLOCK
;
2146 tty_add(tty
, ctx
->ptr
, ctx
->num
);
2147 tty_invalidate(tty
);
2151 tty_cmd_syncstart(struct tty
*tty
, const struct tty_ctx
*ctx
)
2153 if (ctx
->num
== 0x11) {
2155 * This is an overlay and a command that moves the cursor so
2156 * start synchronized updates.
2158 tty_sync_start(tty
);
2159 } else if (~ctx
->num
& 0x10) {
2161 * This is a pane. If there is an overlay, always start;
2162 * otherwise, only if requested.
2164 if (ctx
->num
|| tty
->client
->overlay_draw
!= NULL
)
2165 tty_sync_start(tty
);
2170 tty_cell(struct tty
*tty
, const struct grid_cell
*gc
,
2171 const struct grid_cell
*defaults
, struct colour_palette
*palette
,
2172 struct hyperlinks
*hl
)
2174 const struct grid_cell
*gcp
;
2176 /* Skip last character if terminal is stupid. */
2177 if ((tty
->term
->flags
& TERM_NOAM
) &&
2178 tty
->cy
== tty
->sy
- 1 &&
2179 tty
->cx
== tty
->sx
- 1)
2182 /* If this is a padding character, do nothing. */
2183 if (gc
->flags
& GRID_FLAG_PADDING
)
2186 /* Check the output codeset and apply attributes. */
2187 gcp
= tty_check_codeset(tty
, gc
);
2188 tty_attributes(tty
, gcp
, defaults
, palette
, hl
);
2190 /* If it is a single character, write with putc to handle ACS. */
2191 if (gcp
->data
.size
== 1) {
2192 tty_attributes(tty
, gcp
, defaults
, palette
, hl
);
2193 if (*gcp
->data
.data
< 0x20 || *gcp
->data
.data
== 0x7f)
2195 tty_putc(tty
, *gcp
->data
.data
);
2199 /* Write the data. */
2200 tty_putn(tty
, gcp
->data
.data
, gcp
->data
.size
, gcp
->data
.width
);
2204 tty_reset(struct tty
*tty
)
2206 struct grid_cell
*gc
= &tty
->cell
;
2208 if (!grid_cells_equal(gc
, &grid_default_cell
)) {
2210 tty_putcode_ptr2(tty
, TTYC_HLS
, "", "");
2211 if ((gc
->attr
& GRID_ATTR_CHARSET
) && tty_acs_needed(tty
))
2212 tty_putcode(tty
, TTYC_RMACS
);
2213 tty_putcode(tty
, TTYC_SGR0
);
2214 memcpy(gc
, &grid_default_cell
, sizeof *gc
);
2216 memcpy(&tty
->last_cell
, &grid_default_cell
, sizeof tty
->last_cell
);
2220 tty_invalidate(struct tty
*tty
)
2222 memcpy(&tty
->cell
, &grid_default_cell
, sizeof tty
->cell
);
2223 memcpy(&tty
->last_cell
, &grid_default_cell
, sizeof tty
->last_cell
);
2225 tty
->cx
= tty
->cy
= UINT_MAX
;
2226 tty
->rupper
= tty
->rleft
= UINT_MAX
;
2227 tty
->rlower
= tty
->rright
= UINT_MAX
;
2229 if (tty
->flags
& TTY_STARTED
) {
2230 if (tty_use_margin(tty
))
2231 tty_putcode(tty
, TTYC_ENMG
);
2232 tty_putcode(tty
, TTYC_SGR0
);
2234 tty
->mode
= ALL_MODES
;
2235 tty_update_mode(tty
, MODE_CURSOR
, NULL
);
2237 tty_cursor(tty
, 0, 0);
2238 tty_region_off(tty
);
2239 tty_margin_off(tty
);
2241 tty
->mode
= MODE_CURSOR
;
2244 /* Turn off margin. */
2246 tty_region_off(struct tty
*tty
)
2248 tty_region(tty
, 0, tty
->sy
- 1);
2251 /* Set region inside pane. */
2253 tty_region_pane(struct tty
*tty
, const struct tty_ctx
*ctx
, u_int rupper
,
2256 tty_region(tty
, ctx
->yoff
+ rupper
- ctx
->woy
,
2257 ctx
->yoff
+ rlower
- ctx
->woy
);
2260 /* Set region at absolute position. */
2262 tty_region(struct tty
*tty
, u_int rupper
, u_int rlower
)
2264 if (tty
->rlower
== rlower
&& tty
->rupper
== rupper
)
2266 if (!tty_term_has(tty
->term
, TTYC_CSR
))
2269 tty
->rupper
= rupper
;
2270 tty
->rlower
= rlower
;
2273 * Some terminals (such as PuTTY) do not correctly reset the cursor to
2274 * 0,0 if it is beyond the last column (they do not reset their wrap
2275 * flag so further output causes a line feed). As a workaround, do an
2276 * explicit move to 0 first.
2278 if (tty
->cx
>= tty
->sx
) {
2279 if (tty
->cy
== UINT_MAX
)
2280 tty_cursor(tty
, 0, 0);
2282 tty_cursor(tty
, 0, tty
->cy
);
2285 tty_putcode2(tty
, TTYC_CSR
, tty
->rupper
, tty
->rlower
);
2286 tty
->cx
= tty
->cy
= UINT_MAX
;
2289 /* Turn off margin. */
2291 tty_margin_off(struct tty
*tty
)
2293 tty_margin(tty
, 0, tty
->sx
- 1);
2296 /* Set margin inside pane. */
2298 tty_margin_pane(struct tty
*tty
, const struct tty_ctx
*ctx
)
2300 tty_margin(tty
, ctx
->xoff
- ctx
->wox
,
2301 ctx
->xoff
+ ctx
->sx
- 1 - ctx
->wox
);
2304 /* Set margin at absolute position. */
2306 tty_margin(struct tty
*tty
, u_int rleft
, u_int rright
)
2308 if (!tty_use_margin(tty
))
2310 if (tty
->rleft
== rleft
&& tty
->rright
== rright
)
2313 tty_putcode2(tty
, TTYC_CSR
, tty
->rupper
, tty
->rlower
);
2316 tty
->rright
= rright
;
2318 if (rleft
== 0 && rright
== tty
->sx
- 1)
2319 tty_putcode(tty
, TTYC_CLMG
);
2321 tty_putcode2(tty
, TTYC_CMG
, rleft
, rright
);
2322 tty
->cx
= tty
->cy
= UINT_MAX
;
2326 * Move the cursor, unless it would wrap itself when the next character is
2330 tty_cursor_pane_unless_wrap(struct tty
*tty
, const struct tty_ctx
*ctx
,
2333 if (!ctx
->wrapped
||
2334 !tty_full_width(tty
, ctx
) ||
2335 (tty
->term
->flags
& TERM_NOAM
) ||
2336 ctx
->xoff
+ cx
!= 0 ||
2337 ctx
->yoff
+ cy
!= tty
->cy
+ 1 ||
2338 tty
->cx
< tty
->sx
||
2339 tty
->cy
== tty
->rlower
)
2340 tty_cursor_pane(tty
, ctx
, cx
, cy
);
2342 log_debug("%s: will wrap at %u,%u", __func__
, tty
->cx
, tty
->cy
);
2345 /* Move cursor inside pane. */
2347 tty_cursor_pane(struct tty
*tty
, const struct tty_ctx
*ctx
, u_int cx
, u_int cy
)
2349 tty_cursor(tty
, ctx
->xoff
+ cx
- ctx
->wox
, ctx
->yoff
+ cy
- ctx
->woy
);
2352 /* Move cursor to absolute position. */
2354 tty_cursor(struct tty
*tty
, u_int cx
, u_int cy
)
2356 struct tty_term
*term
= tty
->term
;
2360 if (tty
->flags
& TTY_BLOCK
)
2367 * If in the automargin space, and want to be there, do not move.
2368 * Otherwise, force the cursor to be in range (and complain).
2370 if (cx
== thisx
&& cy
== thisy
&& cx
== tty
->sx
)
2372 if (cx
> tty
->sx
- 1) {
2373 log_debug("%s: x too big %u > %u", __func__
, cx
, tty
->sx
- 1);
2378 if (cx
== thisx
&& cy
== thisy
)
2381 /* Currently at the very end of the line - use absolute movement. */
2382 if (thisx
> tty
->sx
- 1)
2385 /* Move to home position (0, 0). */
2386 if (cx
== 0 && cy
== 0 && tty_term_has(term
, TTYC_HOME
)) {
2387 tty_putcode(tty
, TTYC_HOME
);
2391 /* Zero on the next line. */
2392 if (cx
== 0 && cy
== thisy
+ 1 && thisy
!= tty
->rlower
&&
2393 (!tty_use_margin(tty
) || tty
->rleft
== 0)) {
2394 tty_putc(tty
, '\r');
2395 tty_putc(tty
, '\n');
2399 /* Moving column or row. */
2402 * Moving column only, row staying the same.
2406 if (cx
== 0 && (!tty_use_margin(tty
) || tty
->rleft
== 0)) {
2407 tty_putc(tty
, '\r');
2411 /* One to the left. */
2412 if (cx
== thisx
- 1 && tty_term_has(term
, TTYC_CUB1
)) {
2413 tty_putcode(tty
, TTYC_CUB1
);
2417 /* One to the right. */
2418 if (cx
== thisx
+ 1 && tty_term_has(term
, TTYC_CUF1
)) {
2419 tty_putcode(tty
, TTYC_CUF1
);
2423 /* Calculate difference. */
2424 change
= thisx
- cx
; /* +ve left, -ve right */
2427 * Use HPA if change is larger than absolute, otherwise move
2428 * the cursor with CUB/CUF.
2430 if ((u_int
) abs(change
) > cx
&& tty_term_has(term
, TTYC_HPA
)) {
2431 tty_putcode1(tty
, TTYC_HPA
, cx
);
2433 } else if (change
> 0 &&
2434 tty_term_has(term
, TTYC_CUB
) &&
2435 !tty_use_margin(tty
)) {
2436 if (change
== 2 && tty_term_has(term
, TTYC_CUB1
)) {
2437 tty_putcode(tty
, TTYC_CUB1
);
2438 tty_putcode(tty
, TTYC_CUB1
);
2441 tty_putcode1(tty
, TTYC_CUB
, change
);
2443 } else if (change
< 0 &&
2444 tty_term_has(term
, TTYC_CUF
) &&
2445 !tty_use_margin(tty
)) {
2446 tty_putcode1(tty
, TTYC_CUF
, -change
);
2449 } else if (cx
== thisx
) {
2451 * Moving row only, column staying the same.
2455 if (thisy
!= tty
->rupper
&&
2456 cy
== thisy
- 1 && tty_term_has(term
, TTYC_CUU1
)) {
2457 tty_putcode(tty
, TTYC_CUU1
);
2462 if (thisy
!= tty
->rlower
&&
2463 cy
== thisy
+ 1 && tty_term_has(term
, TTYC_CUD1
)) {
2464 tty_putcode(tty
, TTYC_CUD1
);
2468 /* Calculate difference. */
2469 change
= thisy
- cy
; /* +ve up, -ve down */
2472 * Try to use VPA if change is larger than absolute or if this
2473 * change would cross the scroll region, otherwise use CUU/CUD.
2475 if ((u_int
) abs(change
) > cy
||
2476 (change
< 0 && cy
- change
> tty
->rlower
) ||
2477 (change
> 0 && cy
- change
< tty
->rupper
)) {
2478 if (tty_term_has(term
, TTYC_VPA
)) {
2479 tty_putcode1(tty
, TTYC_VPA
, cy
);
2482 } else if (change
> 0 && tty_term_has(term
, TTYC_CUU
)) {
2483 tty_putcode1(tty
, TTYC_CUU
, change
);
2485 } else if (change
< 0 && tty_term_has(term
, TTYC_CUD
)) {
2486 tty_putcode1(tty
, TTYC_CUD
, -change
);
2492 /* Absolute movement. */
2493 tty_putcode2(tty
, TTYC_CUP
, cy
, cx
);
2501 tty_hyperlink(struct tty
*tty
, const struct grid_cell
*gc
,
2502 struct hyperlinks
*hl
)
2504 const char *uri
, *id
;
2506 if (gc
->link
== tty
->cell
.link
)
2508 tty
->cell
.link
= gc
->link
;
2513 if (gc
->link
== 0 || !hyperlinks_get(hl
, gc
->link
, &uri
, NULL
, &id
))
2514 tty_putcode_ptr2(tty
, TTYC_HLS
, "", "");
2516 tty_putcode_ptr2(tty
, TTYC_HLS
, id
, uri
);
2520 tty_attributes(struct tty
*tty
, const struct grid_cell
*gc
,
2521 const struct grid_cell
*defaults
, struct colour_palette
*palette
,
2522 struct hyperlinks
*hl
)
2524 struct grid_cell
*tc
= &tty
->cell
, gc2
;
2527 /* Copy cell and update default colours. */
2528 memcpy(&gc2
, gc
, sizeof gc2
);
2529 if (~gc
->flags
& GRID_FLAG_NOPALETTE
) {
2531 gc2
.fg
= defaults
->fg
;
2533 gc2
.bg
= defaults
->bg
;
2536 /* Ignore cell if it is the same as the last one. */
2537 if (gc2
.attr
== tty
->last_cell
.attr
&&
2538 gc2
.fg
== tty
->last_cell
.fg
&&
2539 gc2
.bg
== tty
->last_cell
.bg
&&
2540 gc2
.us
== tty
->last_cell
.us
&&
2541 gc2
.link
== tty
->last_cell
.link
)
2545 * If no setab, try to use the reverse attribute as a best-effort for a
2546 * non-default background. This is a bit of a hack but it doesn't do
2547 * any serious harm and makes a couple of applications happier.
2549 if (!tty_term_has(tty
->term
, TTYC_SETAB
)) {
2550 if (gc2
.attr
& GRID_ATTR_REVERSE
) {
2551 if (gc2
.fg
!= 7 && !COLOUR_DEFAULT(gc2
.fg
))
2552 gc2
.attr
&= ~GRID_ATTR_REVERSE
;
2554 if (gc2
.bg
!= 0 && !COLOUR_DEFAULT(gc2
.bg
))
2555 gc2
.attr
|= GRID_ATTR_REVERSE
;
2559 /* Fix up the colours if necessary. */
2560 tty_check_fg(tty
, palette
, &gc2
);
2561 tty_check_bg(tty
, palette
, &gc2
);
2562 tty_check_us(tty
, palette
, &gc2
);
2565 * If any bits are being cleared or the underline colour is now default,
2568 if ((tc
->attr
& ~gc2
.attr
) || (tc
->us
!= gc2
.us
&& gc2
.us
== 0))
2572 * Set the colours. This may call tty_reset() (so it comes next) and
2573 * may add to (NOT remove) the desired attributes.
2575 tty_colours(tty
, &gc2
);
2577 /* Filter out attribute bits already set. */
2578 changed
= gc2
.attr
& ~tc
->attr
;
2579 tc
->attr
= gc2
.attr
;
2581 /* Set the attributes. */
2582 if (changed
& GRID_ATTR_BRIGHT
)
2583 tty_putcode(tty
, TTYC_BOLD
);
2584 if (changed
& GRID_ATTR_DIM
)
2585 tty_putcode(tty
, TTYC_DIM
);
2586 if (changed
& GRID_ATTR_ITALICS
)
2587 tty_set_italics(tty
);
2588 if (changed
& GRID_ATTR_ALL_UNDERSCORE
) {
2589 if ((changed
& GRID_ATTR_UNDERSCORE
) ||
2590 !tty_term_has(tty
->term
, TTYC_SMULX
))
2591 tty_putcode(tty
, TTYC_SMUL
);
2592 else if (changed
& GRID_ATTR_UNDERSCORE_2
)
2593 tty_putcode1(tty
, TTYC_SMULX
, 2);
2594 else if (changed
& GRID_ATTR_UNDERSCORE_3
)
2595 tty_putcode1(tty
, TTYC_SMULX
, 3);
2596 else if (changed
& GRID_ATTR_UNDERSCORE_4
)
2597 tty_putcode1(tty
, TTYC_SMULX
, 4);
2598 else if (changed
& GRID_ATTR_UNDERSCORE_5
)
2599 tty_putcode1(tty
, TTYC_SMULX
, 5);
2601 if (changed
& GRID_ATTR_BLINK
)
2602 tty_putcode(tty
, TTYC_BLINK
);
2603 if (changed
& GRID_ATTR_REVERSE
) {
2604 if (tty_term_has(tty
->term
, TTYC_REV
))
2605 tty_putcode(tty
, TTYC_REV
);
2606 else if (tty_term_has(tty
->term
, TTYC_SMSO
))
2607 tty_putcode(tty
, TTYC_SMSO
);
2609 if (changed
& GRID_ATTR_HIDDEN
)
2610 tty_putcode(tty
, TTYC_INVIS
);
2611 if (changed
& GRID_ATTR_STRIKETHROUGH
)
2612 tty_putcode(tty
, TTYC_SMXX
);
2613 if (changed
& GRID_ATTR_OVERLINE
)
2614 tty_putcode(tty
, TTYC_SMOL
);
2615 if ((changed
& GRID_ATTR_CHARSET
) && tty_acs_needed(tty
))
2616 tty_putcode(tty
, TTYC_SMACS
);
2618 /* Set hyperlink if any. */
2619 tty_hyperlink(tty
, gc
, hl
);
2621 memcpy(&tty
->last_cell
, &gc2
, sizeof tty
->last_cell
);
2625 tty_colours(struct tty
*tty
, const struct grid_cell
*gc
)
2627 struct grid_cell
*tc
= &tty
->cell
;
2630 /* No changes? Nothing is necessary. */
2631 if (gc
->fg
== tc
->fg
&& gc
->bg
== tc
->bg
&& gc
->us
== tc
->us
)
2635 * Is either the default colour? This is handled specially because the
2636 * best solution might be to reset both colours to default, in which
2637 * case if only one is default need to fall onward to set the other
2640 if (COLOUR_DEFAULT(gc
->fg
) || COLOUR_DEFAULT(gc
->bg
)) {
2642 * If don't have AX but do have op, send sgr0 (op can't
2643 * actually be used because it is sometimes the same as sgr0
2644 * and sometimes isn't). This resets both colours to default.
2646 * Otherwise, try to set the default colour only as needed.
2648 have_ax
= tty_term_flag(tty
->term
, TTYC_AX
);
2649 if (!have_ax
&& tty_term_has(tty
->term
, TTYC_OP
))
2652 if (COLOUR_DEFAULT(gc
->fg
) && !COLOUR_DEFAULT(tc
->fg
)) {
2654 tty_puts(tty
, "\033[39m");
2655 else if (tc
->fg
!= 7)
2656 tty_putcode1(tty
, TTYC_SETAF
, 7);
2659 if (COLOUR_DEFAULT(gc
->bg
) && !COLOUR_DEFAULT(tc
->bg
)) {
2661 tty_puts(tty
, "\033[49m");
2662 else if (tc
->bg
!= 0)
2663 tty_putcode1(tty
, TTYC_SETAB
, 0);
2669 /* Set the foreground colour. */
2670 if (!COLOUR_DEFAULT(gc
->fg
) && gc
->fg
!= tc
->fg
)
2671 tty_colours_fg(tty
, gc
);
2674 * Set the background colour. This must come after the foreground as
2675 * tty_colour_fg() can call tty_reset().
2677 if (!COLOUR_DEFAULT(gc
->bg
) && gc
->bg
!= tc
->bg
)
2678 tty_colours_bg(tty
, gc
);
2680 /* Set the underscore colour. */
2681 if (gc
->us
!= tc
->us
)
2682 tty_colours_us(tty
, gc
);
2686 tty_check_fg(struct tty
*tty
, struct colour_palette
*palette
,
2687 struct grid_cell
*gc
)
2694 * Perform substitution if this pane has a palette. If the bright
2695 * attribute is set and Nobr is not present, use the bright entry in
2696 * the palette by changing to the aixterm colour
2698 if (~gc
->flags
& GRID_FLAG_NOPALETTE
) {
2701 gc
->attr
& GRID_ATTR_BRIGHT
&&
2702 !tty_term_has(tty
->term
, TTYC_NOBR
))
2704 if ((c
= colour_palette_get(palette
, c
)) != -1)
2708 /* Is this a 24-bit colour? */
2709 if (gc
->fg
& COLOUR_FLAG_RGB
) {
2710 /* Not a 24-bit terminal? Translate to 256-colour palette. */
2711 if (tty
->term
->flags
& TERM_RGBCOLOURS
)
2713 colour_split_rgb(gc
->fg
, &r
, &g
, &b
);
2714 gc
->fg
= colour_find_rgb(r
, g
, b
);
2717 /* How many colours does this terminal have? */
2718 if (tty
->term
->flags
& TERM_256COLOURS
)
2721 colours
= tty_term_number(tty
->term
, TTYC_COLORS
);
2723 /* Is this a 256-colour colour? */
2724 if (gc
->fg
& COLOUR_FLAG_256
) {
2725 /* And not a 256 colour mode? */
2726 if (colours
< 256) {
2727 gc
->fg
= colour_256to16(gc
->fg
);
2737 /* Is this an aixterm colour? */
2738 if (gc
->fg
>= 90 && gc
->fg
<= 97 && colours
< 16) {
2740 gc
->attr
|= GRID_ATTR_BRIGHT
;
2745 tty_check_bg(struct tty
*tty
, struct colour_palette
*palette
,
2746 struct grid_cell
*gc
)
2752 /* Perform substitution if this pane has a palette. */
2753 if (~gc
->flags
& GRID_FLAG_NOPALETTE
) {
2754 if ((c
= colour_palette_get(palette
, gc
->bg
)) != -1)
2758 /* Is this a 24-bit colour? */
2759 if (gc
->bg
& COLOUR_FLAG_RGB
) {
2760 /* Not a 24-bit terminal? Translate to 256-colour palette. */
2761 if (tty
->term
->flags
& TERM_RGBCOLOURS
)
2763 colour_split_rgb(gc
->bg
, &r
, &g
, &b
);
2764 gc
->bg
= colour_find_rgb(r
, g
, b
);
2767 /* How many colours does this terminal have? */
2768 if (tty
->term
->flags
& TERM_256COLOURS
)
2771 colours
= tty_term_number(tty
->term
, TTYC_COLORS
);
2773 /* Is this a 256-colour colour? */
2774 if (gc
->bg
& COLOUR_FLAG_256
) {
2776 * And not a 256 colour mode? Translate to 16-colour
2777 * palette. Bold background doesn't exist portably, so just
2778 * discard the bold bit if set.
2780 if (colours
< 256) {
2781 gc
->bg
= colour_256to16(gc
->bg
);
2791 /* Is this an aixterm colour? */
2792 if (gc
->bg
>= 90 && gc
->bg
<= 97 && colours
< 16)
2797 tty_check_us(__unused
struct tty
*tty
, struct colour_palette
*palette
,
2798 struct grid_cell
*gc
)
2802 /* Perform substitution if this pane has a palette. */
2803 if (~gc
->flags
& GRID_FLAG_NOPALETTE
) {
2804 if ((c
= colour_palette_get(palette
, gc
->us
)) != -1)
2808 /* Underscore colour is set as RGB so convert a 256 colour to RGB. */
2809 if (gc
->us
& COLOUR_FLAG_256
)
2810 gc
->us
= colour_256toRGB (gc
->us
);
2814 tty_colours_fg(struct tty
*tty
, const struct grid_cell
*gc
)
2816 struct grid_cell
*tc
= &tty
->cell
;
2819 /* Is this a 24-bit or 256-colour colour? */
2820 if (gc
->fg
& COLOUR_FLAG_RGB
|| gc
->fg
& COLOUR_FLAG_256
) {
2821 if (tty_try_colour(tty
, gc
->fg
, "38") == 0)
2823 /* Should not get here, already converted in tty_check_fg. */
2827 /* Is this an aixterm bright colour? */
2828 if (gc
->fg
>= 90 && gc
->fg
<= 97) {
2829 if (tty
->term
->flags
& TERM_256COLOURS
) {
2830 xsnprintf(s
, sizeof s
, "\033[%dm", gc
->fg
);
2833 tty_putcode1(tty
, TTYC_SETAF
, gc
->fg
- 90 + 8);
2837 /* Otherwise set the foreground colour. */
2838 tty_putcode1(tty
, TTYC_SETAF
, gc
->fg
);
2841 /* Save the new values in the terminal current cell. */
2846 tty_colours_bg(struct tty
*tty
, const struct grid_cell
*gc
)
2848 struct grid_cell
*tc
= &tty
->cell
;
2851 /* Is this a 24-bit or 256-colour colour? */
2852 if (gc
->bg
& COLOUR_FLAG_RGB
|| gc
->bg
& COLOUR_FLAG_256
) {
2853 if (tty_try_colour(tty
, gc
->bg
, "48") == 0)
2855 /* Should not get here, already converted in tty_check_bg. */
2859 /* Is this an aixterm bright colour? */
2860 if (gc
->bg
>= 90 && gc
->bg
<= 97) {
2861 if (tty
->term
->flags
& TERM_256COLOURS
) {
2862 xsnprintf(s
, sizeof s
, "\033[%dm", gc
->bg
+ 10);
2865 tty_putcode1(tty
, TTYC_SETAB
, gc
->bg
- 90 + 8);
2869 /* Otherwise set the background colour. */
2870 tty_putcode1(tty
, TTYC_SETAB
, gc
->bg
);
2873 /* Save the new values in the terminal current cell. */
2878 tty_colours_us(struct tty
*tty
, const struct grid_cell
*gc
)
2880 struct grid_cell
*tc
= &tty
->cell
;
2884 /* Clear underline colour. */
2886 tty_putcode(tty
, TTYC_OL
);
2890 /* Must be an RGB colour - this should never happen. */
2891 if (~gc
->us
& COLOUR_FLAG_RGB
)
2895 * Setulc and setal follows the ncurses(3) one argument "direct colour"
2896 * capability format. Calculate the colour value.
2898 colour_split_rgb(gc
->us
, &r
, &g
, &b
);
2899 c
= (65536 * r
) + (256 * g
) + b
;
2902 * Write the colour. Only use setal if the RGB flag is set because the
2903 * non-RGB version may be wrong.
2905 if (tty_term_has(tty
->term
, TTYC_SETULC
))
2906 tty_putcode1(tty
, TTYC_SETULC
, c
);
2907 else if (tty_term_has(tty
->term
, TTYC_SETAL
) &&
2908 tty_term_has(tty
->term
, TTYC_RGB
))
2909 tty_putcode1(tty
, TTYC_SETAL
, c
);
2912 /* Save the new values in the terminal current cell. */
2917 tty_try_colour(struct tty
*tty
, int colour
, const char *type
)
2921 if (colour
& COLOUR_FLAG_256
) {
2922 if (*type
== '3' && tty_term_has(tty
->term
, TTYC_SETAF
))
2923 tty_putcode1(tty
, TTYC_SETAF
, colour
& 0xff);
2924 else if (tty_term_has(tty
->term
, TTYC_SETAB
))
2925 tty_putcode1(tty
, TTYC_SETAB
, colour
& 0xff);
2929 if (colour
& COLOUR_FLAG_RGB
) {
2930 colour_split_rgb(colour
& 0xffffff, &r
, &g
, &b
);
2931 if (*type
== '3' && tty_term_has(tty
->term
, TTYC_SETRGBF
))
2932 tty_putcode3(tty
, TTYC_SETRGBF
, r
, g
, b
);
2933 else if (tty_term_has(tty
->term
, TTYC_SETRGBB
))
2934 tty_putcode3(tty
, TTYC_SETRGBB
, r
, g
, b
);
2942 tty_window_default_style(struct grid_cell
*gc
, struct window_pane
*wp
)
2944 memcpy(gc
, &grid_default_cell
, sizeof *gc
);
2945 gc
->fg
= wp
->palette
.fg
;
2946 gc
->bg
= wp
->palette
.bg
;
2950 tty_default_colours(struct grid_cell
*gc
, struct window_pane
*wp
)
2952 struct options
*oo
= wp
->options
;
2953 struct format_tree
*ft
;
2955 memcpy(gc
, &grid_default_cell
, sizeof *gc
);
2957 if (wp
->flags
& PANE_STYLECHANGED
) {
2958 log_debug("%%%u: style changed", wp
->id
);
2959 wp
->flags
&= ~PANE_STYLECHANGED
;
2961 ft
= format_create(NULL
, NULL
, FORMAT_PANE
|wp
->id
,
2963 format_defaults(ft
, NULL
, NULL
, NULL
, wp
);
2964 tty_window_default_style(&wp
->cached_active_gc
, wp
);
2965 style_add(&wp
->cached_active_gc
, oo
, "window-active-style", ft
);
2966 tty_window_default_style(&wp
->cached_gc
, wp
);
2967 style_add(&wp
->cached_gc
, oo
, "window-style", ft
);
2972 if (wp
== wp
->window
->active
&& wp
->cached_active_gc
.fg
!= 8)
2973 gc
->fg
= wp
->cached_active_gc
.fg
;
2975 gc
->fg
= wp
->cached_gc
.fg
;
2979 if (wp
== wp
->window
->active
&& wp
->cached_active_gc
.bg
!= 8)
2980 gc
->bg
= wp
->cached_active_gc
.bg
;
2982 gc
->bg
= wp
->cached_gc
.bg
;
2987 tty_default_attributes(struct tty
*tty
, const struct grid_cell
*defaults
,
2988 struct colour_palette
*palette
, u_int bg
, struct hyperlinks
*hl
)
2990 struct grid_cell gc
;
2992 memcpy(&gc
, &grid_default_cell
, sizeof gc
);
2994 tty_attributes(tty
, &gc
, defaults
, palette
, hl
);
2998 tty_clipboard_query_callback(__unused
int fd
, __unused
short events
, void *data
)
3000 struct tty
*tty
= data
;
3001 struct client
*c
= tty
->client
;
3003 c
->flags
&= ~CLIENT_CLIPBOARDBUFFER
;
3004 free(c
->clipboard_panes
);
3005 c
->clipboard_panes
= NULL
;
3006 c
->clipboard_npanes
= 0;
3008 tty
->flags
&= ~TTY_OSC52QUERY
;
3012 tty_clipboard_query(struct tty
*tty
)
3014 struct timeval tv
= { .tv_sec
= TTY_QUERY_TIMEOUT
};
3016 if ((~tty
->flags
& TTY_STARTED
) || (tty
->flags
& TTY_OSC52QUERY
))
3018 tty_putcode_ptr2(tty
, TTYC_MS
, "", "?");
3020 tty
->flags
|= TTY_OSC52QUERY
;
3021 evtimer_set(&tty
->clipboard_timer
, tty_clipboard_query_callback
, tty
);
3022 evtimer_add(&tty
->clipboard_timer
, &tv
);