Set ACS flag for REP. Reported by Romain Francoise, GitHub issue 4182.
[tmux.git] / input-keys.c
blobe690a3a8c7a0babe70447a6388f10d555a0c45ed
1 /* $OpenBSD$ */
3 /*
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>
21 #include <stdint.h>
22 #include <stdlib.h>
23 #include <string.h>
25 #include "tmux.h"
28 * This file is rather misleadingly named, it contains the code which takes a
29 * key code and translates it into something suitable to be sent to the
30 * application running in a pane (similar to input.c does in the other
31 * direction with output).
34 static void input_key_mouse(struct window_pane *, struct mouse_event *);
36 /* Entry in the key tree. */
37 struct input_key_entry {
38 key_code key;
39 const char *data;
41 RB_ENTRY(input_key_entry) entry;
43 RB_HEAD(input_key_tree, input_key_entry);
45 /* Tree of input keys. */
46 static int input_key_cmp(struct input_key_entry *,
47 struct input_key_entry *);
48 RB_GENERATE_STATIC(input_key_tree, input_key_entry, entry, input_key_cmp);
49 struct input_key_tree input_key_tree = RB_INITIALIZER(&input_key_tree);
51 /* List of default keys, the tree is built from this. */
52 static struct input_key_entry input_key_defaults[] = {
53 /* Paste keys. */
54 { .key = KEYC_PASTE_START,
55 .data = "\033[200~"
57 { .key = KEYC_PASTE_END,
58 .data = "\033[201~"
61 /* Function keys. */
62 { .key = KEYC_F1,
63 .data = "\033OP"
65 { .key = KEYC_F2,
66 .data = "\033OQ"
68 { .key = KEYC_F3,
69 .data = "\033OR"
71 { .key = KEYC_F4,
72 .data = "\033OS"
74 { .key = KEYC_F5,
75 .data = "\033[15~"
77 { .key = KEYC_F6,
78 .data = "\033[17~"
80 { .key = KEYC_F7,
81 .data = "\033[18~"
83 { .key = KEYC_F8,
84 .data = "\033[19~"
86 { .key = KEYC_F9,
87 .data = "\033[20~"
89 { .key = KEYC_F10,
90 .data = "\033[21~"
92 { .key = KEYC_F11,
93 .data = "\033[23~"
95 { .key = KEYC_F12,
96 .data = "\033[24~"
98 { .key = KEYC_IC,
99 .data = "\033[2~"
101 { .key = KEYC_DC,
102 .data = "\033[3~"
104 { .key = KEYC_HOME,
105 .data = "\033[1~"
107 { .key = KEYC_END,
108 .data = "\033[4~"
110 { .key = KEYC_NPAGE,
111 .data = "\033[6~"
113 { .key = KEYC_PPAGE,
114 .data = "\033[5~"
116 { .key = KEYC_BTAB,
117 .data = "\033[Z"
120 /* Arrow keys. */
121 { .key = KEYC_UP|KEYC_CURSOR,
122 .data = "\033OA"
124 { .key = KEYC_DOWN|KEYC_CURSOR,
125 .data = "\033OB"
127 { .key = KEYC_RIGHT|KEYC_CURSOR,
128 .data = "\033OC"
130 { .key = KEYC_LEFT|KEYC_CURSOR,
131 .data = "\033OD"
133 { .key = KEYC_UP,
134 .data = "\033[A"
136 { .key = KEYC_DOWN,
137 .data = "\033[B"
139 { .key = KEYC_RIGHT,
140 .data = "\033[C"
142 { .key = KEYC_LEFT,
143 .data = "\033[D"
146 /* Keypad keys. */
147 { .key = KEYC_KP_SLASH|KEYC_KEYPAD,
148 .data = "\033Oo"
150 { .key = KEYC_KP_STAR|KEYC_KEYPAD,
151 .data = "\033Oj"
153 { .key = KEYC_KP_MINUS|KEYC_KEYPAD,
154 .data = "\033Om"
156 { .key = KEYC_KP_SEVEN|KEYC_KEYPAD,
157 .data = "\033Ow"
159 { .key = KEYC_KP_EIGHT|KEYC_KEYPAD,
160 .data = "\033Ox"
162 { .key = KEYC_KP_NINE|KEYC_KEYPAD,
163 .data = "\033Oy"
165 { .key = KEYC_KP_PLUS|KEYC_KEYPAD,
166 .data = "\033Ok"
168 { .key = KEYC_KP_FOUR|KEYC_KEYPAD,
169 .data = "\033Ot"
171 { .key = KEYC_KP_FIVE|KEYC_KEYPAD,
172 .data = "\033Ou"
174 { .key = KEYC_KP_SIX|KEYC_KEYPAD,
175 .data = "\033Ov"
177 { .key = KEYC_KP_ONE|KEYC_KEYPAD,
178 .data = "\033Oq"
180 { .key = KEYC_KP_TWO|KEYC_KEYPAD,
181 .data = "\033Or"
183 { .key = KEYC_KP_THREE|KEYC_KEYPAD,
184 .data = "\033Os"
186 { .key = KEYC_KP_ENTER|KEYC_KEYPAD,
187 .data = "\033OM"
189 { .key = KEYC_KP_ZERO|KEYC_KEYPAD,
190 .data = "\033Op"
192 { .key = KEYC_KP_PERIOD|KEYC_KEYPAD,
193 .data = "\033On"
195 { .key = KEYC_KP_SLASH,
196 .data = "/"
198 { .key = KEYC_KP_STAR,
199 .data = "*"
201 { .key = KEYC_KP_MINUS,
202 .data = "-"
204 { .key = KEYC_KP_SEVEN,
205 .data = "7"
207 { .key = KEYC_KP_EIGHT,
208 .data = "8"
210 { .key = KEYC_KP_NINE,
211 .data = "9"
213 { .key = KEYC_KP_PLUS,
214 .data = "+"
216 { .key = KEYC_KP_FOUR,
217 .data = "4"
219 { .key = KEYC_KP_FIVE,
220 .data = "5"
222 { .key = KEYC_KP_SIX,
223 .data = "6"
225 { .key = KEYC_KP_ONE,
226 .data = "1"
228 { .key = KEYC_KP_TWO,
229 .data = "2"
231 { .key = KEYC_KP_THREE,
232 .data = "3"
234 { .key = KEYC_KP_ENTER,
235 .data = "\n"
237 { .key = KEYC_KP_ZERO,
238 .data = "0"
240 { .key = KEYC_KP_PERIOD,
241 .data = "."
244 /* Keys with an embedded modifier. */
245 { .key = KEYC_F1|KEYC_BUILD_MODIFIERS,
246 .data = "\033[1;_P"
248 { .key = KEYC_F2|KEYC_BUILD_MODIFIERS,
249 .data = "\033[1;_Q"
251 { .key = KEYC_F3|KEYC_BUILD_MODIFIERS,
252 .data = "\033[1;_R"
254 { .key = KEYC_F4|KEYC_BUILD_MODIFIERS,
255 .data = "\033[1;_S"
257 { .key = KEYC_F5|KEYC_BUILD_MODIFIERS,
258 .data = "\033[15;_~"
260 { .key = KEYC_F6|KEYC_BUILD_MODIFIERS,
261 .data = "\033[17;_~"
263 { .key = KEYC_F7|KEYC_BUILD_MODIFIERS,
264 .data = "\033[18;_~"
266 { .key = KEYC_F8|KEYC_BUILD_MODIFIERS,
267 .data = "\033[19;_~"
269 { .key = KEYC_F9|KEYC_BUILD_MODIFIERS,
270 .data = "\033[20;_~"
272 { .key = KEYC_F10|KEYC_BUILD_MODIFIERS,
273 .data = "\033[21;_~"
275 { .key = KEYC_F11|KEYC_BUILD_MODIFIERS,
276 .data = "\033[23;_~"
278 { .key = KEYC_F12|KEYC_BUILD_MODIFIERS,
279 .data = "\033[24;_~"
281 { .key = KEYC_UP|KEYC_BUILD_MODIFIERS,
282 .data = "\033[1;_A"
284 { .key = KEYC_DOWN|KEYC_BUILD_MODIFIERS,
285 .data = "\033[1;_B"
287 { .key = KEYC_RIGHT|KEYC_BUILD_MODIFIERS,
288 .data = "\033[1;_C"
290 { .key = KEYC_LEFT|KEYC_BUILD_MODIFIERS,
291 .data = "\033[1;_D"
293 { .key = KEYC_HOME|KEYC_BUILD_MODIFIERS,
294 .data = "\033[1;_H"
296 { .key = KEYC_END|KEYC_BUILD_MODIFIERS,
297 .data = "\033[1;_F"
299 { .key = KEYC_PPAGE|KEYC_BUILD_MODIFIERS,
300 .data = "\033[5;_~"
302 { .key = KEYC_NPAGE|KEYC_BUILD_MODIFIERS,
303 .data = "\033[6;_~"
305 { .key = KEYC_IC|KEYC_BUILD_MODIFIERS,
306 .data = "\033[2;_~"
308 { .key = KEYC_DC|KEYC_BUILD_MODIFIERS,
309 .data = "\033[3;_~"
312 static const key_code input_key_modifiers[] = {
315 KEYC_SHIFT,
316 KEYC_META|KEYC_IMPLIED_META,
317 KEYC_SHIFT|KEYC_META|KEYC_IMPLIED_META,
318 KEYC_CTRL,
319 KEYC_SHIFT|KEYC_CTRL,
320 KEYC_META|KEYC_IMPLIED_META|KEYC_CTRL,
321 KEYC_SHIFT|KEYC_META|KEYC_IMPLIED_META|KEYC_CTRL
324 /* Input key comparison function. */
325 static int
326 input_key_cmp(struct input_key_entry *ike1, struct input_key_entry *ike2)
328 if (ike1->key < ike2->key)
329 return (-1);
330 if (ike1->key > ike2->key)
331 return (1);
332 return (0);
335 /* Look for key in tree. */
336 static struct input_key_entry *
337 input_key_get(key_code key)
339 struct input_key_entry entry = { .key = key };
341 return (RB_FIND(input_key_tree, &input_key_tree, &entry));
344 /* Split a character into two UTF-8 bytes. */
345 static size_t
346 input_key_split2(u_int c, u_char *dst)
348 if (c > 0x7f) {
349 dst[0] = (c >> 6) | 0xc0;
350 dst[1] = (c & 0x3f) | 0x80;
351 return (2);
353 dst[0] = c;
354 return (1);
357 /* Build input key tree. */
358 void
359 input_key_build(void)
361 struct input_key_entry *ike, *new;
362 u_int i, j;
363 char *data;
364 key_code key;
366 for (i = 0; i < nitems(input_key_defaults); i++) {
367 ike = &input_key_defaults[i];
368 if (~ike->key & KEYC_BUILD_MODIFIERS) {
369 RB_INSERT(input_key_tree, &input_key_tree, ike);
370 continue;
373 for (j = 2; j < nitems(input_key_modifiers); j++) {
374 key = (ike->key & ~KEYC_BUILD_MODIFIERS);
375 data = xstrdup(ike->data);
376 data[strcspn(data, "_")] = '0' + j;
378 new = xcalloc(1, sizeof *new);
379 new->key = key|input_key_modifiers[j];
380 new->data = data;
381 RB_INSERT(input_key_tree, &input_key_tree, new);
385 RB_FOREACH(ike, input_key_tree, &input_key_tree) {
386 log_debug("%s: 0x%llx (%s) is %s", __func__, ike->key,
387 key_string_lookup_key(ike->key, 1), ike->data);
391 /* Translate a key code into an output key sequence for a pane. */
393 input_key_pane(struct window_pane *wp, key_code key, struct mouse_event *m)
395 if (log_get_level() != 0) {
396 log_debug("writing key 0x%llx (%s) to %%%u", key,
397 key_string_lookup_key(key, 1), wp->id);
400 if (KEYC_IS_MOUSE(key)) {
401 if (m != NULL && m->wp != -1 && (u_int)m->wp == wp->id)
402 input_key_mouse(wp, m);
403 return (0);
405 return (input_key(wp->screen, wp->event, key));
408 static void
409 input_key_write(const char *from, struct bufferevent *bev, const char *data,
410 size_t size)
412 log_debug("%s: %.*s", from, (int)size, data);
413 bufferevent_write(bev, data, size);
417 * Encode and write an extended key escape sequence in one of the two
418 * possible formats, depending on the configured output mode.
420 static int
421 input_key_extended(struct bufferevent *bev, key_code key)
423 char tmp[64], modifier;
424 struct utf8_data ud;
425 wchar_t wc;
427 switch (key & KEYC_MASK_MODIFIERS) {
428 case KEYC_SHIFT:
429 modifier = '2';
430 break;
431 case KEYC_META:
432 modifier = '3';
433 break;
434 case KEYC_SHIFT|KEYC_META:
435 modifier = '4';
436 break;
437 case KEYC_CTRL:
438 modifier = '5';
439 break;
440 case KEYC_SHIFT|KEYC_CTRL:
441 modifier = '6';
442 break;
443 case KEYC_META|KEYC_CTRL:
444 modifier = '7';
445 break;
446 case KEYC_SHIFT|KEYC_META|KEYC_CTRL:
447 modifier = '8';
448 break;
449 default:
450 return (-1);
453 if (KEYC_IS_UNICODE(key)) {
454 utf8_to_data(key & KEYC_MASK_KEY, &ud);
455 if (utf8_towc(&ud, &wc) == UTF8_DONE)
456 key = wc;
457 else
458 return (-1);
459 } else
460 key &= KEYC_MASK_KEY;
462 if (options_get_number(global_options, "extended-keys-format") == 1)
463 xsnprintf(tmp, sizeof tmp, "\033[27;%c;%llu~", modifier, key);
464 else
465 xsnprintf(tmp, sizeof tmp, "\033[%llu;%cu", key, modifier);
467 input_key_write(__func__, bev, tmp, strlen(tmp));
468 return (0);
472 * Outputs the key in the "standard" mode. This is by far the most
473 * complicated output mode, with a lot of remapping in order to
474 * emulate quirks of terminals that today can be only found in museums.
476 static int
477 input_key_vt10x(struct bufferevent *bev, key_code key)
479 struct utf8_data ud;
480 key_code onlykey;
481 char *p;
482 static const char *standard_map[2] = {
483 "1!9(0)=+;:'\",<.>/-8? 2",
484 "119900=+;;'',,..\x1f\x1f\x7f\x7f\0\0",
487 log_debug("%s: key in %llx", __func__, key);
489 if (key & KEYC_META)
490 input_key_write(__func__, bev, "\033", 1);
493 * There's no way to report modifiers for unicode keys in standard mode
494 * so lose the modifiers.
496 if (KEYC_IS_UNICODE(key)) {
497 utf8_to_data(key, &ud);
498 input_key_write(__func__, bev, ud.data, ud.size);
499 return (0);
503 * Prevent TAB, CR and LF from being swallowed by the C0 remapping
504 * logic.
506 onlykey = key & KEYC_MASK_KEY;
507 if (onlykey == '\r' || onlykey == '\n' || onlykey == '\t')
508 key &= ~KEYC_CTRL;
511 * Convert keys with Ctrl modifier into corresponding C0 control codes,
512 * with the exception of *some* keys, which are remapped into printable
513 * ASCII characters.
515 * There is no special handling for Shift modifier, which is pretty
516 * much redundant anyway, as no terminal will send <base key>|SHIFT,
517 * but only <shifted key>|SHIFT.
519 if (key & KEYC_CTRL) {
520 p = strchr(standard_map[0], onlykey);
521 if (p != NULL)
522 key = standard_map[1][p - standard_map[0]];
523 else if (onlykey >= '3' && onlykey <= '7')
524 key = onlykey - '\030';
525 else if (onlykey >= '@' && onlykey <= '~')
526 key = onlykey & 0x1f;
527 else
528 return (-1);
531 log_debug("%s: key out %llx", __func__, key);
533 ud.data[0] = key & 0x7f;
534 input_key_write(__func__, bev, &ud.data[0], 1);
535 return (0);
538 /* Pick keys that are reported as vt10x keys in modifyOtherKeys=1 mode. */
539 static int
540 input_key_mode1(struct bufferevent *bev, key_code key)
542 key_code onlykey;
544 log_debug("%s: key in %llx", __func__, key);
547 * As per
548 * https://invisible-island.net/xterm/modified-keys-us-pc105.html.
550 onlykey = key & KEYC_MASK_KEY;
551 if ((key & (KEYC_META | KEYC_CTRL)) == KEYC_CTRL &&
552 (onlykey == ' ' ||
553 onlykey == '/' ||
554 onlykey == '@' ||
555 onlykey == '^' ||
556 (onlykey >= '2' && onlykey <= '8') ||
557 (onlykey >= '@' && onlykey <= '~')))
558 return (input_key_vt10x(bev, key));
561 * A regular key + Meta. In the absence of a standard to back this, we
562 * mimic what iTerm 2 does.
564 if ((key & (KEYC_CTRL | KEYC_META)) == KEYC_META)
565 return (input_key_vt10x(bev, key));
567 return (-1);
570 /* Translate a key code into an output key sequence. */
572 input_key(struct screen *s, struct bufferevent *bev, key_code key)
574 struct input_key_entry *ike = NULL;
575 key_code newkey;
576 struct utf8_data ud;
578 /* Mouse keys need a pane. */
579 if (KEYC_IS_MOUSE(key))
580 return (0);
582 /* Literal keys go as themselves (can't be more than eight bits). */
583 if (key & KEYC_LITERAL) {
584 ud.data[0] = (u_char)key;
585 input_key_write(__func__, bev, &ud.data[0], 1);
586 return (0);
589 /* Is this backspace? */
590 if ((key & KEYC_MASK_KEY) == KEYC_BSPACE) {
591 newkey = options_get_number(global_options, "backspace");
592 if (newkey >= 0x7f)
593 newkey = '\177';
594 key = newkey|(key & (KEYC_MASK_MODIFIERS|KEYC_MASK_FLAGS));
597 /* Is this backtab? */
598 if ((key & KEYC_MASK_KEY) == KEYC_BTAB) {
599 if ((s->mode & EXTENDED_KEY_MODES) != 0) {
600 /* When in xterm extended mode, remap into S-Tab. */
601 key = '\011' | (key & ~KEYC_MASK_KEY) | KEYC_SHIFT;
602 } else {
603 /* Otherwise clear modifiers. */
604 key &= ~KEYC_MASK_MODIFIERS;
609 * A trivial case, that is a 7-bit key, excluding C0 control characters
610 * that can't be entered from the keyboard, and no modifiers; or a UTF-8
611 * key and no modifiers.
613 if (!(key & ~KEYC_MASK_KEY)) {
614 if (key == C0_HT ||
615 key == C0_CR ||
616 key == C0_ESC ||
617 (key >= 0x20 && key <= 0x7f)) {
618 ud.data[0] = key;
619 input_key_write(__func__, bev, &ud.data[0], 1);
620 return (0);
622 if (KEYC_IS_UNICODE(key)) {
623 utf8_to_data(key, &ud);
624 input_key_write(__func__, bev, ud.data, ud.size);
625 return (0);
630 * Look up the standard VT10x keys in the tree. If not in application
631 * keypad or cursor mode, remove the respective flags from the key.
633 if (~s->mode & MODE_KKEYPAD)
634 key &= ~KEYC_KEYPAD;
635 if (~s->mode & MODE_KCURSOR)
636 key &= ~KEYC_CURSOR;
637 if (ike == NULL)
638 ike = input_key_get(key);
639 if (ike == NULL && (key & KEYC_META) && (~key & KEYC_IMPLIED_META))
640 ike = input_key_get(key & ~KEYC_META);
641 if (ike == NULL && (key & KEYC_CURSOR))
642 ike = input_key_get(key & ~KEYC_CURSOR);
643 if (ike == NULL && (key & KEYC_KEYPAD))
644 ike = input_key_get(key & ~KEYC_KEYPAD);
645 if (ike != NULL) {
646 log_debug("%s: found key 0x%llx: \"%s\"", __func__, key,
647 ike->data);
648 if ((key == KEYC_PASTE_START || key == KEYC_PASTE_END) &&
649 (~s->mode & MODE_BRACKETPASTE))
650 return (0);
651 if ((key & KEYC_META) && (~key & KEYC_IMPLIED_META))
652 input_key_write(__func__, bev, "\033", 1);
653 input_key_write(__func__, bev, ike->data, strlen(ike->data));
654 return (0);
657 /* Ignore internal function key codes. */
658 if ((key >= KEYC_BASE && key < KEYC_BASE_END) ||
659 (key >= KEYC_USER && key < KEYC_USER_END)) {
660 log_debug("%s: ignoring key 0x%llx", __func__, key);
661 return (0);
665 * No builtin key sequence; construct an extended key sequence
666 * depending on the client mode.
668 * If something invalid reaches here, an invalid output may be
669 * produced. For example Ctrl-Shift-2 is invalid (as there's
670 * no way to enter it). The correct form is Ctrl-Shift-@, at
671 * least in US English keyboard layout.
673 switch (s->mode & EXTENDED_KEY_MODES) {
674 case MODE_KEYS_EXTENDED_2:
676 * The simplest mode to handle - *all* modified keys are
677 * reported in the extended form.
679 return (input_key_extended(bev, key));
680 case MODE_KEYS_EXTENDED:
682 * Some keys are still reported in standard mode, to maintain
683 * compatibility with applications unaware of extended keys.
685 if (input_key_mode1(bev, key) == -1)
686 return (input_key_extended(bev, key));
687 return (0);
688 default:
689 /* The standard mode. */
690 return (input_key_vt10x(bev, key));
694 /* Get mouse event string. */
696 input_key_get_mouse(struct screen *s, struct mouse_event *m, u_int x, u_int y,
697 const char **rbuf, size_t *rlen)
699 static char buf[40];
700 size_t len;
702 *rbuf = NULL;
703 *rlen = 0;
705 /* If this pane is not in button or all mode, discard motion events. */
706 if (MOUSE_DRAG(m->b) && (s->mode & MOTION_MOUSE_MODES) == 0)
707 return (0);
708 if ((s->mode & ALL_MOUSE_MODES) == 0)
709 return (0);
712 * If this event is a release event and not in all mode, discard it.
713 * In SGR mode we can tell absolutely because a release is normally
714 * shown by the last character. Without SGR, we check if the last
715 * buttons was also a release.
717 if (m->sgr_type != ' ') {
718 if (MOUSE_DRAG(m->sgr_b) &&
719 MOUSE_RELEASE(m->sgr_b) &&
720 (~s->mode & MODE_MOUSE_ALL))
721 return (0);
722 } else {
723 if (MOUSE_DRAG(m->b) &&
724 MOUSE_RELEASE(m->b) &&
725 MOUSE_RELEASE(m->lb) &&
726 (~s->mode & MODE_MOUSE_ALL))
727 return (0);
731 * Use the SGR (1006) extension only if the application requested it
732 * and the underlying terminal also sent the event in this format (this
733 * is because an old style mouse release event cannot be converted into
734 * the new SGR format, since the released button is unknown). Otherwise
735 * pretend that tmux doesn't speak this extension, and fall back to the
736 * UTF-8 (1005) extension if the application requested, or to the
737 * legacy format.
739 if (m->sgr_type != ' ' && (s->mode & MODE_MOUSE_SGR)) {
740 len = xsnprintf(buf, sizeof buf, "\033[<%u;%u;%u%c",
741 m->sgr_b, x + 1, y + 1, m->sgr_type);
742 } else if (s->mode & MODE_MOUSE_UTF8) {
743 if (m->b > MOUSE_PARAM_UTF8_MAX - MOUSE_PARAM_BTN_OFF ||
744 x > MOUSE_PARAM_UTF8_MAX - MOUSE_PARAM_POS_OFF ||
745 y > MOUSE_PARAM_UTF8_MAX - MOUSE_PARAM_POS_OFF)
746 return (0);
747 len = xsnprintf(buf, sizeof buf, "\033[M");
748 len += input_key_split2(m->b + MOUSE_PARAM_BTN_OFF, &buf[len]);
749 len += input_key_split2(x + MOUSE_PARAM_POS_OFF, &buf[len]);
750 len += input_key_split2(y + MOUSE_PARAM_POS_OFF, &buf[len]);
751 } else {
752 if (m->b + MOUSE_PARAM_BTN_OFF > MOUSE_PARAM_MAX)
753 return (0);
755 len = xsnprintf(buf, sizeof buf, "\033[M");
756 buf[len++] = m->b + MOUSE_PARAM_BTN_OFF;
759 * The incoming x and y may be out of the range which can be
760 * supported by the "normal" mouse protocol. Clamp the
761 * coordinates to the supported range.
763 if (x + MOUSE_PARAM_POS_OFF > MOUSE_PARAM_MAX)
764 buf[len++] = MOUSE_PARAM_MAX;
765 else
766 buf[len++] = x + MOUSE_PARAM_POS_OFF;
767 if (y + MOUSE_PARAM_POS_OFF > MOUSE_PARAM_MAX)
768 buf[len++] = MOUSE_PARAM_MAX;
769 else
770 buf[len++] = y + MOUSE_PARAM_POS_OFF;
773 *rbuf = buf;
774 *rlen = len;
775 return (1);
778 /* Translate mouse and output. */
779 static void
780 input_key_mouse(struct window_pane *wp, struct mouse_event *m)
782 struct screen *s = wp->screen;
783 u_int x, y;
784 const char *buf;
785 size_t len;
787 /* Ignore events if no mouse mode or the pane is not visible. */
788 if (m->ignore || (s->mode & ALL_MOUSE_MODES) == 0)
789 return;
790 if (cmd_mouse_at(wp, m, &x, &y, 0) != 0)
791 return;
792 if (!window_pane_visible(wp))
793 return;
794 if (!input_key_get_mouse(s, m, x, y, &buf, &len))
795 return;
796 log_debug("writing mouse %.*s to %%%u", (int)len, buf, wp->id);
797 input_key_write(__func__, wp->event, buf, len);