Peter Maydell | e16f4c8 | 2016-01-29 17:49:51 +0000 | [diff] [blame] | 1 | #include "qemu/osdep.h" |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 2 | #include "sysemu/sysemu.h" |
Michael S. Tsirkin | 0041e9a | 2018-05-03 22:51:00 +0300 | [diff] [blame] | 3 | #include "keymaps.h" |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 4 | #include "ui/input.h" |
| 5 | |
Gerd Hoffmann | 606eb0c | 2017-07-26 17:29:15 +0200 | [diff] [blame] | 6 | #include "standard-headers/linux/input.h" |
| 7 | |
Daniel P. Berrange | 2ec7870 | 2018-01-17 16:47:15 +0000 | [diff] [blame] | 8 | #include "ui/input-keymap-atset1-to-qcode.c" |
Daniel P. Berrange | bcd5ac9 | 2017-09-29 11:11:59 +0100 | [diff] [blame] | 9 | #include "ui/input-keymap-linux-to-qcode.c" |
Daniel P. Berrange | ab8f9d4 | 2018-01-17 16:41:15 +0000 | [diff] [blame] | 10 | #include "ui/input-keymap-qcode-to-atset1.c" |
| 11 | #include "ui/input-keymap-qcode-to-atset2.c" |
| 12 | #include "ui/input-keymap-qcode-to-atset3.c" |
Daniel P. Berrange | 5a15e6b | 2018-01-17 16:41:17 +0000 | [diff] [blame] | 13 | #include "ui/input-keymap-qcode-to-linux.c" |
Daniel P. Berrange | bcd5ac9 | 2017-09-29 11:11:59 +0100 | [diff] [blame] | 14 | #include "ui/input-keymap-qcode-to-qnum.c" |
Daniel P. Berrange | e709a61 | 2018-01-17 16:41:16 +0000 | [diff] [blame] | 15 | #include "ui/input-keymap-qcode-to-sun.c" |
Daniel P. Berrange | bcd5ac9 | 2017-09-29 11:11:59 +0100 | [diff] [blame] | 16 | #include "ui/input-keymap-qnum-to-qcode.c" |
Daniel P. Berrange | ed7b262 | 2018-01-17 16:47:14 +0000 | [diff] [blame] | 17 | #include "ui/input-keymap-usb-to-qcode.c" |
Daniel P. Berrange | 2ec7870 | 2018-01-17 16:47:15 +0000 | [diff] [blame] | 18 | #include "ui/input-keymap-win32-to-qcode.c" |
| 19 | #include "ui/input-keymap-x11-to-qcode.c" |
| 20 | #include "ui/input-keymap-xorgevdev-to-qcode.c" |
| 21 | #include "ui/input-keymap-xorgkbd-to-qcode.c" |
| 22 | #include "ui/input-keymap-xorgxquartz-to-qcode.c" |
| 23 | #include "ui/input-keymap-xorgxwin-to-qcode.c" |
Keno Fischer | 656282d | 2018-06-13 19:51:56 -0400 | [diff] [blame] | 24 | #include "ui/input-keymap-osx-to-qcode.c" |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 25 | |
Gerd Hoffmann | 606eb0c | 2017-07-26 17:29:15 +0200 | [diff] [blame] | 26 | int qemu_input_linux_to_qcode(unsigned int lnx) |
| 27 | { |
Daniel P. Berrange | bcd5ac9 | 2017-09-29 11:11:59 +0100 | [diff] [blame] | 28 | if (lnx >= qemu_input_map_linux_to_qcode_len) { |
| 29 | return 0; |
| 30 | } |
| 31 | return qemu_input_map_linux_to_qcode[lnx]; |
Gerd Hoffmann | 606eb0c | 2017-07-26 17:29:15 +0200 | [diff] [blame] | 32 | } |
| 33 | |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 34 | int qemu_input_key_value_to_number(const KeyValue *value) |
| 35 | { |
Eric Blake | 568c73a | 2015-10-26 16:34:58 -0600 | [diff] [blame] | 36 | if (value->type == KEY_VALUE_KIND_QCODE) { |
Daniel P. Berrange | bcd5ac9 | 2017-09-29 11:11:59 +0100 | [diff] [blame] | 37 | if (value->u.qcode.data >= qemu_input_map_qcode_to_qnum_len) { |
| 38 | return 0; |
| 39 | } |
| 40 | return qemu_input_map_qcode_to_qnum[value->u.qcode.data]; |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 41 | } else { |
Eric Blake | 568c73a | 2015-10-26 16:34:58 -0600 | [diff] [blame] | 42 | assert(value->type == KEY_VALUE_KIND_NUMBER); |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 43 | return value->u.number.data; |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 44 | } |
| 45 | } |
| 46 | |
Daniel P. Berrange | bcd5ac9 | 2017-09-29 11:11:59 +0100 | [diff] [blame] | 47 | int qemu_input_key_number_to_qcode(unsigned int nr) |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 48 | { |
Daniel P. Berrange | bcd5ac9 | 2017-09-29 11:11:59 +0100 | [diff] [blame] | 49 | if (nr >= qemu_input_map_qnum_to_qcode_len) { |
| 50 | return 0; |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 51 | } |
Daniel P. Berrange | bcd5ac9 | 2017-09-29 11:11:59 +0100 | [diff] [blame] | 52 | return qemu_input_map_qnum_to_qcode[nr]; |
Gerd Hoffmann | 11c7fa7 | 2014-05-21 13:28:32 +0200 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | int qemu_input_key_value_to_qcode(const KeyValue *value) |
| 56 | { |
Eric Blake | 568c73a | 2015-10-26 16:34:58 -0600 | [diff] [blame] | 57 | if (value->type == KEY_VALUE_KIND_QCODE) { |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 58 | return value->u.qcode.data; |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 59 | } else { |
Eric Blake | 568c73a | 2015-10-26 16:34:58 -0600 | [diff] [blame] | 60 | assert(value->type == KEY_VALUE_KIND_NUMBER); |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 61 | return qemu_input_key_number_to_qcode(value->u.number.data); |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | |
| 65 | int qemu_input_key_value_to_scancode(const KeyValue *value, bool down, |
| 66 | int *codes) |
| 67 | { |
| 68 | int keycode = qemu_input_key_value_to_number(value); |
| 69 | int count = 0; |
| 70 | |
Eric Blake | 568c73a | 2015-10-26 16:34:58 -0600 | [diff] [blame] | 71 | if (value->type == KEY_VALUE_KIND_QCODE && |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 72 | value->u.qcode.data == Q_KEY_CODE_PAUSE) { |
Gerd Hoffmann | 02aa76c | 2014-03-11 12:15:39 +0100 | [diff] [blame] | 73 | /* specific case */ |
| 74 | int v = down ? 0 : 0x80; |
| 75 | codes[count++] = 0xe1; |
| 76 | codes[count++] = 0x1d | v; |
| 77 | codes[count++] = 0x45 | v; |
| 78 | return count; |
| 79 | } |
| 80 | if (keycode & SCANCODE_GREY) { |
| 81 | codes[count++] = SCANCODE_EMUL0; |
| 82 | keycode &= ~SCANCODE_GREY; |
| 83 | } |
| 84 | if (!down) { |
| 85 | keycode |= SCANCODE_UP; |
| 86 | } |
| 87 | codes[count++] = keycode; |
| 88 | |
| 89 | return count; |
| 90 | } |