diff options
author | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2016-10-10 00:46:20 +0700 |
---|---|---|
committer | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2016-10-10 00:56:09 +0700 |
commit | 5b2e455d3b71bfb90754930d1f22d3e8ce98b927 (patch) | |
tree | f9c5e7f6920aa860407df4850dca7ee515a4be74 /quantum/process_keycode | |
parent | a9df99b81c787862dc3fa11bd854fe39e704da81 (diff) | |
download | qmk_firmware-5b2e455d3b71bfb90754930d1f22d3e8ce98b927.tar.gz qmk_firmware-5b2e455d3b71bfb90754930d1f22d3e8ce98b927.zip |
Unicode map framework. Allow unicode up to 0xFFFFF using separate
mapping table
Diffstat (limited to 'quantum/process_keycode')
-rw-r--r-- | quantum/process_keycode/process_unicode.c | 26 | ||||
-rw-r--r-- | quantum/process_keycode/process_unicode.h | 4 |
2 files changed, 30 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index 6a30afe29..37dd471ff 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c | |||
@@ -78,6 +78,32 @@ bool process_unicode(uint16_t keycode, keyrecord_t *record) { | |||
78 | return true; | 78 | return true; |
79 | } | 79 | } |
80 | 80 | ||
81 | #ifdef UNICODEMAP_ENABLE | ||
82 | __attribute__((weak)) | ||
83 | const uint32_t PROGMEM unicode_map[] = { | ||
84 | }; | ||
85 | |||
86 | // 5 digit max because of linux limitation | ||
87 | void register_hex32(uint32_t hex) { | ||
88 | for(int i = 4; i >= 0; i--) { | ||
89 | uint8_t digit = ((hex >> (i*4)) & 0xF); | ||
90 | register_code(hex_to_keycode(digit)); | ||
91 | unregister_code(hex_to_keycode(digit)); | ||
92 | } | ||
93 | } | ||
94 | |||
95 | bool process_unicode_map(uint16_t keycode, keyrecord_t *record) { | ||
96 | if ((keycode & QK_UNICODE_MAP) == QK_UNICODE_MAP && record->event.pressed) { | ||
97 | const uint32_t* map = unicode_map; | ||
98 | uint16_t index = keycode & 0x7FF; | ||
99 | unicode_input_start(); | ||
100 | register_hex32(pgm_read_dword_far(&map[index])); | ||
101 | unicode_input_finish(); | ||
102 | } | ||
103 | return true; | ||
104 | } | ||
105 | #endif | ||
106 | |||
81 | #ifdef UCIS_ENABLE | 107 | #ifdef UCIS_ENABLE |
82 | qk_ucis_state_t qk_ucis_state; | 108 | qk_ucis_state_t qk_ucis_state; |
83 | 109 | ||
diff --git a/quantum/process_keycode/process_unicode.h b/quantum/process_keycode/process_unicode.h index 27f8072ee..a6c7e4584 100644 --- a/quantum/process_keycode/process_unicode.h +++ b/quantum/process_keycode/process_unicode.h | |||
@@ -20,6 +20,10 @@ void register_hex(uint16_t hex); | |||
20 | 20 | ||
21 | bool process_unicode(uint16_t keycode, keyrecord_t *record); | 21 | bool process_unicode(uint16_t keycode, keyrecord_t *record); |
22 | 22 | ||
23 | #ifdef UNICODEMAP_ENABLE | ||
24 | bool process_unicode_map(uint16_t keycode, keyrecord_t *record); | ||
25 | #endif | ||
26 | |||
23 | #ifdef UCIS_ENABLE | 27 | #ifdef UCIS_ENABLE |
24 | #ifndef UCIS_MAX_SYMBOL_LENGTH | 28 | #ifndef UCIS_MAX_SYMBOL_LENGTH |
25 | #define UCIS_MAX_SYMBOL_LENGTH 32 | 29 | #define UCIS_MAX_SYMBOL_LENGTH 32 |