diff options
Diffstat (limited to 'quantum')
| -rw-r--r-- | quantum/keymap_extras/keymap_br_abnt2.h | 16 | ||||
| -rw-r--r-- | quantum/process_keycode/process_combo.c | 134 | ||||
| -rw-r--r-- | quantum/process_keycode/process_combo.h | 43 | ||||
| -rw-r--r-- | quantum/process_keycode/process_music.c | 1 | ||||
| -rw-r--r-- | quantum/process_keycode/process_tap_dance.c | 7 | ||||
| -rw-r--r-- | quantum/process_keycode/process_tap_dance.h | 1 | ||||
| -rw-r--r-- | quantum/process_keycode/process_unicode.c | 11 | ||||
| -rw-r--r-- | quantum/quantum.c | 40 | ||||
| -rw-r--r-- | quantum/quantum.h | 4 | ||||
| -rw-r--r-- | quantum/quantum_keycodes.h | 1 | ||||
| -rw-r--r-- | quantum/visualizer/visualizer.c | 58 | ||||
| -rw-r--r-- | quantum/visualizer/visualizer.h | 9 |
12 files changed, 319 insertions, 6 deletions
diff --git a/quantum/keymap_extras/keymap_br_abnt2.h b/quantum/keymap_extras/keymap_br_abnt2.h index 0df177721..b001139dd 100644 --- a/quantum/keymap_extras/keymap_br_abnt2.h +++ b/quantum/keymap_extras/keymap_br_abnt2.h | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | /* Copyright 2017 Potiguar Faga | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 1 | #ifndef KEYMAP_BR_ABNT2_H | 17 | #ifndef KEYMAP_BR_ABNT2_H |
| 2 | #define KEYMAP_BR_ABNT2_H | 18 | #define KEYMAP_BR_ABNT2_H |
| 3 | 19 | ||
diff --git a/quantum/process_keycode/process_combo.c b/quantum/process_keycode/process_combo.c new file mode 100644 index 000000000..e2189ad98 --- /dev/null +++ b/quantum/process_keycode/process_combo.c | |||
| @@ -0,0 +1,134 @@ | |||
| 1 | #include "process_combo.h" | ||
| 2 | #include "print.h" | ||
| 3 | |||
| 4 | |||
| 5 | #define COMBO_TIMER_ELAPSED -1 | ||
| 6 | |||
| 7 | |||
| 8 | __attribute__ ((weak)) | ||
| 9 | combo_t key_combos[] = { | ||
| 10 | |||
| 11 | }; | ||
| 12 | |||
| 13 | __attribute__ ((weak)) | ||
| 14 | void process_combo_event(uint8_t combo_index, bool pressed) { | ||
| 15 | |||
| 16 | } | ||
| 17 | |||
| 18 | static uint8_t current_combo_index = 0; | ||
| 19 | |||
| 20 | static inline void send_combo(uint16_t action, bool pressed) | ||
| 21 | { | ||
| 22 | if (action) { | ||
| 23 | if (pressed) { | ||
| 24 | register_code16(action); | ||
| 25 | } else { | ||
| 26 | unregister_code16(action); | ||
| 27 | } | ||
| 28 | } else { | ||
| 29 | process_combo_event(current_combo_index, pressed); | ||
| 30 | } | ||
| 31 | } | ||
| 32 | |||
| 33 | #define ALL_COMBO_KEYS_ARE_DOWN (((1<<count)-1) == combo->state) | ||
| 34 | #define NO_COMBO_KEYS_ARE_DOWN (0 == combo->state) | ||
| 35 | #define KEY_STATE_DOWN(key) do{ combo->state |= (1<<key); } while(0) | ||
| 36 | #define KEY_STATE_UP(key) do{ combo->state &= ~(1<<key); } while(0) | ||
| 37 | static bool process_single_combo(combo_t *combo, uint16_t keycode, keyrecord_t *record) | ||
| 38 | { | ||
| 39 | uint8_t count = 0; | ||
| 40 | uint8_t index = -1; | ||
| 41 | /* Find index of keycode and number of combo keys */ | ||
| 42 | for (const uint16_t *keys = combo->keys; ;++count) { | ||
| 43 | uint16_t key = pgm_read_word(&keys[count]); | ||
| 44 | if (keycode == key) index = count; | ||
| 45 | if (COMBO_END == key) break; | ||
| 46 | } | ||
| 47 | |||
| 48 | /* Return if not a combo key */ | ||
| 49 | if (-1 == (int8_t)index) return false; | ||
| 50 | |||
| 51 | /* The combos timer is used to signal whether the combo is active */ | ||
| 52 | bool is_combo_active = COMBO_TIMER_ELAPSED == combo->timer ? false : true; | ||
| 53 | |||
| 54 | if (record->event.pressed) { | ||
| 55 | KEY_STATE_DOWN(index); | ||
| 56 | |||
| 57 | if (is_combo_active) { | ||
| 58 | if (ALL_COMBO_KEYS_ARE_DOWN) { /* Combo was pressed */ | ||
| 59 | send_combo(combo->keycode, true); | ||
| 60 | combo->timer = COMBO_TIMER_ELAPSED; | ||
| 61 | } else { /* Combo key was pressed */ | ||
| 62 | combo->timer = timer_read(); | ||
| 63 | #ifdef COMBO_ALLOW_ACTION_KEYS | ||
| 64 | combo->prev_record = *record; | ||
| 65 | #else | ||
| 66 | combo->prev_key = keycode; | ||
| 67 | #endif | ||
| 68 | } | ||
| 69 | } | ||
| 70 | } else { | ||
| 71 | if (ALL_COMBO_KEYS_ARE_DOWN) { /* Combo was released */ | ||
| 72 | send_combo(combo->keycode, false); | ||
| 73 | } | ||
| 74 | |||
| 75 | if (is_combo_active) { /* Combo key was tapped */ | ||
| 76 | #ifdef COMBO_ALLOW_ACTION_KEYS | ||
| 77 | record->event.pressed = true; | ||
| 78 | process_action(record, store_or_get_action(record->event.pressed, record->event.key)); | ||
| 79 | record->event.pressed = false; | ||
| 80 | process_action(record, store_or_get_action(record->event.pressed, record->event.key)); | ||
| 81 | #else | ||
| 82 | register_code16(keycode); | ||
| 83 | send_keyboard_report(); | ||
| 84 | unregister_code16(keycode); | ||
| 85 | #endif | ||
| 86 | combo->timer = 0; | ||
| 87 | } | ||
| 88 | |||
| 89 | KEY_STATE_UP(index); | ||
| 90 | } | ||
| 91 | |||
| 92 | if (NO_COMBO_KEYS_ARE_DOWN) { | ||
| 93 | combo->timer = 0; | ||
| 94 | } | ||
| 95 | |||
| 96 | return is_combo_active; | ||
| 97 | } | ||
| 98 | |||
| 99 | bool process_combo(uint16_t keycode, keyrecord_t *record) | ||
| 100 | { | ||
| 101 | bool is_combo_key = false; | ||
| 102 | |||
| 103 | for (current_combo_index = 0; current_combo_index < COMBO_COUNT; ++current_combo_index) { | ||
| 104 | combo_t *combo = &key_combos[current_combo_index]; | ||
| 105 | is_combo_key |= process_single_combo(combo, keycode, record); | ||
| 106 | } | ||
| 107 | |||
| 108 | return !is_combo_key; | ||
| 109 | } | ||
| 110 | |||
| 111 | void matrix_scan_combo(void) | ||
| 112 | { | ||
| 113 | for (int i = 0; i < COMBO_COUNT; ++i) { | ||
| 114 | combo_t *combo = &key_combos[i]; | ||
| 115 | if (combo->timer && | ||
| 116 | combo->timer != COMBO_TIMER_ELAPSED && | ||
| 117 | timer_elapsed(combo->timer) > COMBO_TERM) { | ||
| 118 | |||
| 119 | /* This disables the combo, meaning key events for this | ||
| 120 | * combo will be handled by the next processors in the chain | ||
| 121 | */ | ||
| 122 | combo->timer = COMBO_TIMER_ELAPSED; | ||
| 123 | |||
| 124 | #ifdef COMBO_ALLOW_ACTION_KEYS | ||
| 125 | process_action(&combo->prev_record, | ||
| 126 | store_or_get_action(combo->prev_record.event.pressed, | ||
| 127 | combo->prev_record.event.key)); | ||
| 128 | #else | ||
| 129 | unregister_code16(combo->prev_key); | ||
| 130 | register_code16(combo->prev_key); | ||
| 131 | #endif | ||
| 132 | } | ||
| 133 | } | ||
| 134 | } | ||
diff --git a/quantum/process_keycode/process_combo.h b/quantum/process_keycode/process_combo.h new file mode 100644 index 000000000..847f2b737 --- /dev/null +++ b/quantum/process_keycode/process_combo.h | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | #ifndef PROCESS_COMBO_H | ||
| 2 | #define PROCESS_COMBO_H | ||
| 3 | |||
| 4 | #include <stdint.h> | ||
| 5 | #include "progmem.h" | ||
| 6 | #include "quantum.h" | ||
| 7 | |||
| 8 | typedef struct | ||
| 9 | { | ||
| 10 | const uint16_t *keys; | ||
| 11 | uint16_t keycode; | ||
| 12 | #ifdef EXTRA_EXTRA_LONG_COMBOS | ||
| 13 | uint32_t state; | ||
| 14 | #elif EXTRA_LONG_COMBOS | ||
| 15 | uint16_t state; | ||
| 16 | #else | ||
| 17 | uint8_t state; | ||
| 18 | #endif | ||
| 19 | uint16_t timer; | ||
| 20 | #ifdef COMBO_ALLOW_ACTION_KEYS | ||
| 21 | keyrecord_t prev_record; | ||
| 22 | #else | ||
| 23 | uint16_t prev_key; | ||
| 24 | #endif | ||
| 25 | } combo_t; | ||
| 26 | |||
| 27 | |||
| 28 | #define COMBO(ck, ca) {.keys = &(ck)[0], .keycode = (ca)} | ||
| 29 | #define COMBO_ACTION(ck) {.keys = &(ck)[0]} | ||
| 30 | |||
| 31 | #define COMBO_END 0 | ||
| 32 | #ifndef COMBO_COUNT | ||
| 33 | #define COMBO_COUNT 0 | ||
| 34 | #endif | ||
| 35 | #ifndef COMBO_TERM | ||
| 36 | #define COMBO_TERM TAPPING_TERM | ||
| 37 | #endif | ||
| 38 | |||
| 39 | bool process_combo(uint16_t keycode, keyrecord_t *record); | ||
| 40 | void matrix_scan_combo(void); | ||
| 41 | void process_combo_event(uint8_t combo_index, bool pressed); | ||
| 42 | |||
| 43 | #endif | ||
diff --git a/quantum/process_keycode/process_music.c b/quantum/process_keycode/process_music.c index ca68bef6c..1e2648bff 100644 --- a/quantum/process_keycode/process_music.c +++ b/quantum/process_keycode/process_music.c | |||
| @@ -114,6 +114,7 @@ bool process_music(uint16_t keycode, keyrecord_t *record) { | |||
| 114 | music_sequence_interval+=10; | 114 | music_sequence_interval+=10; |
| 115 | return false; | 115 | return false; |
| 116 | } | 116 | } |
| 117 | #define MUSIC_MODE_GUITAR | ||
| 117 | 118 | ||
| 118 | #ifdef MUSIC_MODE_CHROMATIC | 119 | #ifdef MUSIC_MODE_CHROMATIC |
| 119 | float freq = ((float)220.0)*pow(2.0, -5.0)*pow(2.0,(music_starting_note + record->event.key.col + music_offset)/12.0+(MATRIX_ROWS - record->event.key.row)); | 120 | float freq = ((float)220.0)*pow(2.0, -5.0)*pow(2.0,(music_starting_note + record->event.key.col + music_offset)/12.0+(MATRIX_ROWS - record->event.key.row)); |
diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c index 6ae362c4c..403dca538 100644 --- a/quantum/process_keycode/process_tap_dance.c +++ b/quantum/process_keycode/process_tap_dance.c | |||
| @@ -43,12 +43,16 @@ static inline void process_tap_dance_action_on_dance_finished (qk_tap_dance_acti | |||
| 43 | if (action->state.finished) | 43 | if (action->state.finished) |
| 44 | return; | 44 | return; |
| 45 | action->state.finished = true; | 45 | action->state.finished = true; |
| 46 | add_mods(action->state.oneshot_mods); | ||
| 47 | send_keyboard_report(); | ||
| 46 | _process_tap_dance_action_fn (&action->state, action->user_data, action->fn.on_dance_finished); | 48 | _process_tap_dance_action_fn (&action->state, action->user_data, action->fn.on_dance_finished); |
| 47 | } | 49 | } |
| 48 | 50 | ||
| 49 | static inline void process_tap_dance_action_on_reset (qk_tap_dance_action_t *action) | 51 | static inline void process_tap_dance_action_on_reset (qk_tap_dance_action_t *action) |
| 50 | { | 52 | { |
| 51 | _process_tap_dance_action_fn (&action->state, action->user_data, action->fn.on_reset); | 53 | _process_tap_dance_action_fn (&action->state, action->user_data, action->fn.on_reset); |
| 54 | del_mods(action->state.oneshot_mods); | ||
| 55 | send_keyboard_report(); | ||
| 52 | } | 56 | } |
| 53 | 57 | ||
| 54 | bool process_tap_dance(uint16_t keycode, keyrecord_t *record) { | 58 | bool process_tap_dance(uint16_t keycode, keyrecord_t *record) { |
| @@ -70,6 +74,7 @@ bool process_tap_dance(uint16_t keycode, keyrecord_t *record) { | |||
| 70 | action->state.keycode = keycode; | 74 | action->state.keycode = keycode; |
| 71 | action->state.count++; | 75 | action->state.count++; |
| 72 | action->state.timer = timer_read(); | 76 | action->state.timer = timer_read(); |
| 77 | action->state.oneshot_mods = get_oneshot_mods(); | ||
| 73 | process_tap_dance_action_on_each_tap (action); | 78 | process_tap_dance_action_on_each_tap (action); |
| 74 | 79 | ||
| 75 | if (last_td && last_td != keycode) { | 80 | if (last_td && last_td != keycode) { |
| @@ -109,7 +114,7 @@ void matrix_scan_tap_dance () { | |||
| 109 | if (highest_td == -1) | 114 | if (highest_td == -1) |
| 110 | return; | 115 | return; |
| 111 | 116 | ||
| 112 | for (int i = 0; i <= highest_td; i++) { | 117 | for (int i = 0; i <= highest_td; i++) { |
| 113 | qk_tap_dance_action_t *action = &tap_dance_actions[i]; | 118 | qk_tap_dance_action_t *action = &tap_dance_actions[i]; |
| 114 | 119 | ||
| 115 | if (action->state.count && timer_elapsed (action->state.timer) > TAPPING_TERM) { | 120 | if (action->state.count && timer_elapsed (action->state.timer) > TAPPING_TERM) { |
diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index f753cbba6..726752ecc 100644 --- a/quantum/process_keycode/process_tap_dance.h +++ b/quantum/process_keycode/process_tap_dance.h | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | typedef struct | 9 | typedef struct |
| 10 | { | 10 | { |
| 11 | uint8_t count; | 11 | uint8_t count; |
| 12 | uint8_t oneshot_mods; | ||
| 12 | uint16_t keycode; | 13 | uint16_t keycode; |
| 13 | uint16_t timer; | 14 | uint16_t timer; |
| 14 | bool interrupted; | 15 | bool interrupted; |
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index a30e93ae3..9995ba9bd 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c | |||
| @@ -141,7 +141,16 @@ bool process_unicode_map(uint16_t keycode, keyrecord_t *record) { | |||
| 141 | const uint32_t* map = unicode_map; | 141 | const uint32_t* map = unicode_map; |
| 142 | uint16_t index = keycode & 0x7FF; | 142 | uint16_t index = keycode & 0x7FF; |
| 143 | uint32_t code = pgm_read_dword_far(&map[index]); | 143 | uint32_t code = pgm_read_dword_far(&map[index]); |
| 144 | if ((code > 0xFFFF && input_mode == UC_OSX) || (code > 0xFFFFF && input_mode == UC_LNX)) { | 144 | if (code > 0xFFFF && code <= 0x10ffff && input_mode == UC_OSX) { |
| 145 | // Convert to UTF-16 surrogate pair | ||
| 146 | code -= 0x10000; | ||
| 147 | uint32_t lo = code & 0x3ff; | ||
| 148 | uint32_t hi = (code & 0xffc00) >> 10; | ||
| 149 | unicode_input_start(); | ||
| 150 | register_hex32(hi + 0xd800); | ||
| 151 | register_hex32(lo + 0xdc00); | ||
| 152 | unicode_input_finish(); | ||
| 153 | } else if ((code > 0x10ffff && input_mode == UC_OSX) || (code > 0xFFFFF && input_mode == UC_LNX)) { | ||
| 145 | // when character is out of range supported by the OS | 154 | // when character is out of range supported by the OS |
| 146 | unicode_map_input_error(); | 155 | unicode_map_input_error(); |
| 147 | } else { | 156 | } else { |
diff --git a/quantum/quantum.c b/quantum/quantum.c index 63ffe2074..b83ae433e 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
| @@ -33,14 +33,42 @@ static void do_code16 (uint16_t code, void (*f) (uint8_t)) { | |||
| 33 | f(KC_RGUI); | 33 | f(KC_RGUI); |
| 34 | } | 34 | } |
| 35 | 35 | ||
| 36 | static inline void qk_register_weak_mods(uint8_t kc) { | ||
| 37 | add_weak_mods(MOD_BIT(kc)); | ||
| 38 | send_keyboard_report(); | ||
| 39 | } | ||
| 40 | |||
| 41 | static inline void qk_unregister_weak_mods(uint8_t kc) { | ||
| 42 | del_weak_mods(MOD_BIT(kc)); | ||
| 43 | send_keyboard_report(); | ||
| 44 | } | ||
| 45 | |||
| 46 | static inline void qk_register_mods(uint8_t kc) { | ||
| 47 | add_weak_mods(MOD_BIT(kc)); | ||
| 48 | send_keyboard_report(); | ||
| 49 | } | ||
| 50 | |||
| 51 | static inline void qk_unregister_mods(uint8_t kc) { | ||
| 52 | del_weak_mods(MOD_BIT(kc)); | ||
| 53 | send_keyboard_report(); | ||
| 54 | } | ||
| 55 | |||
| 36 | void register_code16 (uint16_t code) { | 56 | void register_code16 (uint16_t code) { |
| 37 | do_code16 (code, register_code); | 57 | if (IS_MOD(code) || code == KC_NO) { |
| 58 | do_code16 (code, qk_register_mods); | ||
| 59 | } else { | ||
| 60 | do_code16 (code, qk_register_weak_mods); | ||
| 61 | } | ||
| 38 | register_code (code); | 62 | register_code (code); |
| 39 | } | 63 | } |
| 40 | 64 | ||
| 41 | void unregister_code16 (uint16_t code) { | 65 | void unregister_code16 (uint16_t code) { |
| 42 | unregister_code (code); | 66 | unregister_code (code); |
| 43 | do_code16 (code, unregister_code); | 67 | if (IS_MOD(code) || code == KC_NO) { |
| 68 | do_code16 (code, qk_unregister_mods); | ||
| 69 | } else { | ||
| 70 | do_code16 (code, qk_unregister_weak_mods); | ||
| 71 | } | ||
| 44 | } | 72 | } |
| 45 | 73 | ||
| 46 | __attribute__ ((weak)) | 74 | __attribute__ ((weak)) |
| @@ -130,6 +158,9 @@ bool process_record_quantum(keyrecord_t *record) { | |||
| 130 | #ifndef DISABLE_CHORDING | 158 | #ifndef DISABLE_CHORDING |
| 131 | process_chording(keycode, record) && | 159 | process_chording(keycode, record) && |
| 132 | #endif | 160 | #endif |
| 161 | #ifdef COMBO_ENABLE | ||
| 162 | process_combo(keycode, record) && | ||
| 163 | #endif | ||
| 133 | #ifdef UNICODE_ENABLE | 164 | #ifdef UNICODE_ENABLE |
| 134 | process_unicode(keycode, record) && | 165 | process_unicode(keycode, record) && |
| 135 | #endif | 166 | #endif |
| @@ -508,6 +539,11 @@ void matrix_scan_quantum() { | |||
| 508 | #ifdef TAP_DANCE_ENABLE | 539 | #ifdef TAP_DANCE_ENABLE |
| 509 | matrix_scan_tap_dance(); | 540 | matrix_scan_tap_dance(); |
| 510 | #endif | 541 | #endif |
| 542 | |||
| 543 | #ifdef COMBO_ENABLE | ||
| 544 | matrix_scan_combo(); | ||
| 545 | #endif | ||
| 546 | |||
| 511 | matrix_scan_kb(); | 547 | matrix_scan_kb(); |
| 512 | } | 548 | } |
| 513 | 549 | ||
diff --git a/quantum/quantum.h b/quantum/quantum.h index e6adf974a..8614c053a 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h | |||
| @@ -63,6 +63,10 @@ extern uint32_t default_layer_state; | |||
| 63 | #include "process_printer.h" | 63 | #include "process_printer.h" |
| 64 | #endif | 64 | #endif |
| 65 | 65 | ||
| 66 | #ifdef COMBO_ENABLE | ||
| 67 | #include "process_combo.h" | ||
| 68 | #endif | ||
| 69 | |||
| 66 | #define SEND_STRING(str) send_string(PSTR(str)) | 70 | #define SEND_STRING(str) send_string(PSTR(str)) |
| 67 | void send_string(const char *str); | 71 | void send_string(const char *str); |
| 68 | 72 | ||
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 4853655f9..91324be35 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h | |||
| @@ -290,6 +290,7 @@ enum quantum_keycodes { | |||
| 290 | #define CTL_T(kc) MT(MOD_LCTL, kc) | 290 | #define CTL_T(kc) MT(MOD_LCTL, kc) |
| 291 | #define SFT_T(kc) MT(MOD_LSFT, kc) | 291 | #define SFT_T(kc) MT(MOD_LSFT, kc) |
| 292 | #define ALT_T(kc) MT(MOD_LALT, kc) | 292 | #define ALT_T(kc) MT(MOD_LALT, kc) |
| 293 | #define ALGR_T(kc) MT(MOD_RALT, kc) // dual-function AltGR | ||
| 293 | #define GUI_T(kc) MT(MOD_LGUI, kc) | 294 | #define GUI_T(kc) MT(MOD_LGUI, kc) |
| 294 | #define C_S_T(kc) MT((MOD_LCTL | MOD_LSFT), kc) // Control + Shift e.g. for gnome-terminal | 295 | #define C_S_T(kc) MT((MOD_LCTL | MOD_LSFT), kc) // Control + Shift e.g. for gnome-terminal |
| 295 | #define MEH_T(kc) MT((MOD_LCTL | MOD_LSFT | MOD_LALT), kc) // Meh is a less hyper version of the Hyper key -- doesn't include Win or Cmd, so just alt+shift+ctrl | 296 | #define MEH_T(kc) MT((MOD_LCTL | MOD_LSFT | MOD_LALT), kc) // Meh is a less hyper version of the Hyper key -- doesn't include Win or Cmd, so just alt+shift+ctrl |
diff --git a/quantum/visualizer/visualizer.c b/quantum/visualizer/visualizer.c index 54f6faaa4..5826d909e 100644 --- a/quantum/visualizer/visualizer.c +++ b/quantum/visualizer/visualizer.c | |||
| @@ -53,10 +53,13 @@ SOFTWARE. | |||
| 53 | #define "Visualizer thread priority not defined" | 53 | #define "Visualizer thread priority not defined" |
| 54 | #endif | 54 | #endif |
| 55 | 55 | ||
| 56 | // mods status | ||
| 57 | #include "action_util.h" | ||
| 56 | 58 | ||
| 57 | static visualizer_keyboard_status_t current_status = { | 59 | static visualizer_keyboard_status_t current_status = { |
| 58 | .layer = 0xFFFFFFFF, | 60 | .layer = 0xFFFFFFFF, |
| 59 | .default_layer = 0xFFFFFFFF, | 61 | .default_layer = 0xFFFFFFFF, |
| 62 | .mods = 0xFF, | ||
| 60 | .leds = 0xFFFFFFFF, | 63 | .leds = 0xFFFFFFFF, |
| 61 | .suspended = false, | 64 | .suspended = false, |
| 62 | }; | 65 | }; |
| @@ -64,6 +67,7 @@ static visualizer_keyboard_status_t current_status = { | |||
| 64 | static bool same_status(visualizer_keyboard_status_t* status1, visualizer_keyboard_status_t* status2) { | 67 | static bool same_status(visualizer_keyboard_status_t* status1, visualizer_keyboard_status_t* status2) { |
| 65 | return status1->layer == status2->layer && | 68 | return status1->layer == status2->layer && |
| 66 | status1->default_layer == status2->default_layer && | 69 | status1->default_layer == status2->default_layer && |
| 70 | status1->mods == status2->mods && | ||
| 67 | status1->leds == status2->leds && | 71 | status1->leds == status2->leds && |
| 68 | status1->suspended == status2->suspended; | 72 | status1->suspended == status2->suspended; |
| 69 | } | 73 | } |
| @@ -307,6 +311,45 @@ bool keyframe_display_layer_bitmap(keyframe_animation_t* animation, visualizer_s | |||
| 307 | gdispFlush(); | 311 | gdispFlush(); |
| 308 | return false; | 312 | return false; |
| 309 | } | 313 | } |
| 314 | |||
| 315 | static void format_mods_bitmap_string(uint8_t mods, char* buffer) { | ||
| 316 | *buffer = ' '; | ||
| 317 | ++buffer; | ||
| 318 | |||
| 319 | for (int i = 0; i<8; i++) | ||
| 320 | { | ||
| 321 | uint32_t mask = (1u << i); | ||
| 322 | if (mods & mask) { | ||
| 323 | *buffer = '1'; | ||
| 324 | } else { | ||
| 325 | *buffer = '0'; | ||
| 326 | } | ||
| 327 | ++buffer; | ||
| 328 | |||
| 329 | if (i==3) { | ||
| 330 | *buffer = ' '; | ||
| 331 | ++buffer; | ||
| 332 | } | ||
| 333 | } | ||
| 334 | *buffer = 0; | ||
| 335 | } | ||
| 336 | |||
| 337 | bool keyframe_display_mods_bitmap(keyframe_animation_t* animation, visualizer_state_t* state) { | ||
| 338 | (void)animation; | ||
| 339 | |||
| 340 | const char* title = "Modifier states"; | ||
| 341 | const char* mods_header = " CSAG CSAG "; | ||
| 342 | char status_buffer[12]; | ||
| 343 | |||
| 344 | gdispClear(White); | ||
| 345 | gdispDrawString(0, 0, title, state->font_fixed5x8, Black); | ||
| 346 | gdispDrawString(0, 10, mods_header, state->font_fixed5x8, Black); | ||
| 347 | format_mods_bitmap_string(state->status.mods, status_buffer); | ||
| 348 | gdispDrawString(0, 20, status_buffer, state->font_fixed5x8, Black); | ||
| 349 | |||
| 350 | gdispFlush(); | ||
| 351 | return false; | ||
| 352 | } | ||
| 310 | #endif // LCD_ENABLE | 353 | #endif // LCD_ENABLE |
| 311 | 354 | ||
| 312 | bool keyframe_disable_lcd_and_backlight(keyframe_animation_t* animation, visualizer_state_t* state) { | 355 | bool keyframe_disable_lcd_and_backlight(keyframe_animation_t* animation, visualizer_state_t* state) { |
| @@ -350,6 +393,7 @@ static DECLARE_THREAD_FUNCTION(visualizerThread, arg) { | |||
| 350 | visualizer_keyboard_status_t initial_status = { | 393 | visualizer_keyboard_status_t initial_status = { |
| 351 | .default_layer = 0xFFFFFFFF, | 394 | .default_layer = 0xFFFFFFFF, |
| 352 | .layer = 0xFFFFFFFF, | 395 | .layer = 0xFFFFFFFF, |
| 396 | .mods = 0xFF, | ||
| 353 | .leds = 0xFFFFFFFF, | 397 | .leds = 0xFFFFFFFF, |
| 354 | .suspended = false, | 398 | .suspended = false, |
| 355 | }; | 399 | }; |
| @@ -499,7 +543,18 @@ void update_status(bool changed) { | |||
| 499 | #endif | 543 | #endif |
| 500 | } | 544 | } |
| 501 | 545 | ||
| 502 | void visualizer_update(uint32_t default_state, uint32_t state, uint32_t leds) { | 546 | uint8_t visualizer_get_mods() { |
| 547 | uint8_t mods = get_mods(); | ||
| 548 | |||
| 549 | #ifndef NO_ACTION_ONESHOT | ||
| 550 | if (!has_oneshot_mods_timed_out()) { | ||
| 551 | mods |= get_oneshot_mods(); | ||
| 552 | } | ||
| 553 | #endif | ||
| 554 | return mods; | ||
| 555 | } | ||
| 556 | |||
| 557 | void visualizer_update(uint32_t default_state, uint32_t state, uint8_t mods, uint32_t leds) { | ||
| 503 | // Note that there's a small race condition here, the thread could read | 558 | // Note that there's a small race condition here, the thread could read |
| 504 | // a state where one of these are set but not the other. But this should | 559 | // a state where one of these are set but not the other. But this should |
| 505 | // not really matter as it will be fixed during the next loop step. | 560 | // not really matter as it will be fixed during the next loop step. |
| @@ -523,6 +578,7 @@ void visualizer_update(uint32_t default_state, uint32_t state, uint32_t leds) { | |||
| 523 | visualizer_keyboard_status_t new_status = { | 578 | visualizer_keyboard_status_t new_status = { |
| 524 | .layer = state, | 579 | .layer = state, |
| 525 | .default_layer = default_state, | 580 | .default_layer = default_state, |
| 581 | .mods = mods, | ||
| 526 | .leds = leds, | 582 | .leds = leds, |
| 527 | .suspended = current_status.suspended, | 583 | .suspended = current_status.suspended, |
| 528 | }; | 584 | }; |
diff --git a/quantum/visualizer/visualizer.h b/quantum/visualizer/visualizer.h index 53e250725..315af5022 100644 --- a/quantum/visualizer/visualizer.h +++ b/quantum/visualizer/visualizer.h | |||
| @@ -34,10 +34,14 @@ SOFTWARE. | |||
| 34 | #include "lcd_backlight.h" | 34 | #include "lcd_backlight.h" |
| 35 | #endif | 35 | #endif |
| 36 | 36 | ||
| 37 | // use this function to merget both real_mods and oneshot_mods in a uint16_t | ||
| 38 | uint8_t visualizer_get_mods(void); | ||
| 39 | |||
| 37 | // This need to be called once at the start | 40 | // This need to be called once at the start |
| 38 | void visualizer_init(void); | 41 | void visualizer_init(void); |
| 39 | // This should be called at every matrix scan | 42 | // This should be called at every matrix scan |
| 40 | void visualizer_update(uint32_t default_state, uint32_t state, uint32_t leds); | 43 | void visualizer_update(uint32_t default_state, uint32_t state, uint8_t mods, uint32_t leds); |
| 44 | |||
| 41 | // This should be called when the keyboard goes to suspend state | 45 | // This should be called when the keyboard goes to suspend state |
| 42 | void visualizer_suspend(void); | 46 | void visualizer_suspend(void); |
| 43 | // This should be called when the keyboard wakes up from suspend state | 47 | // This should be called when the keyboard wakes up from suspend state |
| @@ -61,6 +65,7 @@ struct keyframe_animation_t; | |||
| 61 | typedef struct { | 65 | typedef struct { |
| 62 | uint32_t layer; | 66 | uint32_t layer; |
| 63 | uint32_t default_layer; | 67 | uint32_t default_layer; |
| 68 | uint8_t mods; | ||
| 64 | uint32_t leds; // See led.h for available statuses | 69 | uint32_t leds; // See led.h for available statuses |
| 65 | bool suspended; | 70 | bool suspended; |
| 66 | } visualizer_keyboard_status_t; | 71 | } visualizer_keyboard_status_t; |
| @@ -129,6 +134,8 @@ bool keyframe_set_backlight_color(keyframe_animation_t* animation, visualizer_st | |||
| 129 | bool keyframe_display_layer_text(keyframe_animation_t* animation, visualizer_state_t* state); | 134 | bool keyframe_display_layer_text(keyframe_animation_t* animation, visualizer_state_t* state); |
| 130 | // Displays a bitmap (0/1) of all the currently active layers | 135 | // Displays a bitmap (0/1) of all the currently active layers |
| 131 | bool keyframe_display_layer_bitmap(keyframe_animation_t* animation, visualizer_state_t* state); | 136 | bool keyframe_display_layer_bitmap(keyframe_animation_t* animation, visualizer_state_t* state); |
| 137 | // Displays a bitmap (0/1) of all the currently active mods | ||
| 138 | bool keyframe_display_mods_bitmap(keyframe_animation_t* animation, visualizer_state_t* state); | ||
| 132 | 139 | ||
| 133 | bool keyframe_disable_lcd_and_backlight(keyframe_animation_t* animation, visualizer_state_t* state); | 140 | bool keyframe_disable_lcd_and_backlight(keyframe_animation_t* animation, visualizer_state_t* state); |
| 134 | bool keyframe_enable_lcd_and_backlight(keyframe_animation_t* animation, visualizer_state_t* state); | 141 | bool keyframe_enable_lcd_and_backlight(keyframe_animation_t* animation, visualizer_state_t* state); |
