Added short-circuit leader key
parent
ae7c2b9534
commit
e3e82a1109
|
@ -0,0 +1,39 @@
|
||||||
|
#pragma once
|
||||||
|
#ifdef ENABLE_BETA_LEADER
|
||||||
|
|
||||||
|
#include "quantum.h"
|
||||||
|
|
||||||
|
bool beta_process_leader(uint16_t keycode, keyrecord_t *record);
|
||||||
|
|
||||||
|
void beta_leader_start(void);
|
||||||
|
void beta_leader_end(void);
|
||||||
|
bool beta_leader_check(void);
|
||||||
|
void beta_qk_leader_check(void);
|
||||||
|
void beta_qk_leader_start(void);
|
||||||
|
|
||||||
|
|
||||||
|
#define BETA_LEADER_EXTERNS() \
|
||||||
|
extern bool beta_leading; \
|
||||||
|
extern uint16_t beta_leader_time; \
|
||||||
|
extern uint16_t beta_leader_sequence[5]; \
|
||||||
|
extern uint8_t beta_leader_sequence_size
|
||||||
|
|
||||||
|
// Normal sequence
|
||||||
|
// These do the same thing as SEQ_X_KEYS from qmk.
|
||||||
|
#define BETA_SEQ_1_LONG(key) if (beta_leader_sequence[0] == (key) && beta_leader_sequence[1] == 0 && beta_leader_sequence[2] == 0 && beta_leader_sequence[3] == 0 && beta_leader_sequence[4] == 0 && timer_elapsed(beta_leader_time) > LEADER_TIMEOUT)
|
||||||
|
#define BETA_SEQ_2_LONG(key1, key2) if (beta_leader_sequence[0] == (key1) && beta_leader_sequence[1] == (key2) && beta_leader_sequence[2] == 0 && beta_leader_sequence[3] == 0 && beta_leader_sequence[4] == 0 && timer_elapsed(beta_leader_time) > LEADER_TIMEOUT)
|
||||||
|
#define BETA_SEQ_3_LONG(key1, key2, key3) if (beta_leader_sequence[0] == (key1) && beta_leader_sequence[1] == (key2) && beta_leader_sequence[2] == (key3) && beta_leader_sequence[3] == 0 && beta_leader_sequence[4] == 0 && timer_elapsed(beta_leader_time) > LEADER_TIMEOUT)
|
||||||
|
#define BETA_SEQ_4_LONG(key1, key2, key3, key4) if (beta_leader_sequence[0] == (key1) && beta_leader_sequence[1] == (key2) && beta_leader_sequence[2] == (key3) && beta_leader_sequence[3] == (key4) && beta_leader_sequence[4] == 0 && timer_elapsed(beta_leader_time) > LEADER_TIMEOUT)
|
||||||
|
#define BETA_SEQ_5_LONG(key1, key2, key3, key4, key5) if (leader_sequence[0] == (key1) && beta_leader_sequence[1] == (key2) && beta_leader_sequence[2] == (key3) && beta_leader_sequence[3] == (key4) && beta_leader_sequence[4] == (key5) && timer_elapsed(beta_leader_time) > LEADER_TIMEOUT)
|
||||||
|
|
||||||
|
// Short-circuit sequence
|
||||||
|
// These match as soon as a matching sequence is seen,
|
||||||
|
// not waiting for the leader timeout. They thus register
|
||||||
|
// immediately, but cannot be used in longer sequences.
|
||||||
|
#define BETA_SEQ_1_SHORT(key) if (beta_leader_sequence[0] == (key))
|
||||||
|
#define BETA_SEQ_2_SHORT(key1, key2) if (beta_leader_sequence[0] == (key1) && beta_leader_sequence[1] == (key2))
|
||||||
|
#define BETA_SEQ_3_SHORT(key1, key2, key3) if (beta_leader_sequence[0] == (key1) && beta_leader_sequence[1] == (key2))
|
||||||
|
#define BETA_SEQ_4_SHORT(key1, key2, key3, key4) if (beta_leader_sequence[0] == (key1) && beta_leader_sequence[1] == (key2))
|
||||||
|
#define BETA_SEQ_5_SHORT(key1, key2, key3, key4, key5) if (beta_leader_sequence[0] == (key1) && beta_leader_sequence[1] == (key2))
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,103 @@
|
||||||
|
#ifdef ENABLE_BETA_LEADER
|
||||||
|
|
||||||
|
#include "beta_leader.h"
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#ifndef LEADER_TIMEOUT
|
||||||
|
#define LEADER_TIMEOUT 300
|
||||||
|
#endif
|
||||||
|
|
||||||
|
__attribute__((weak)) void beta_leader_start(void) {}
|
||||||
|
__attribute__((weak)) void beta_leader_end(void) {}
|
||||||
|
__attribute__((weak)) bool beta_leader_check(void) { return true; }
|
||||||
|
|
||||||
|
// Leader key stuff
|
||||||
|
bool beta_leading = false;
|
||||||
|
uint16_t beta_leader_time = 0;
|
||||||
|
bool beta_leader_change = false;
|
||||||
|
|
||||||
|
uint16_t beta_leader_sequence[5] = {0, 0, 0, 0, 0};
|
||||||
|
uint8_t beta_leader_sequence_size = 0;
|
||||||
|
|
||||||
|
void beta_qk_leader_start(void) {
|
||||||
|
if (beta_leading) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
beta_leader_start();
|
||||||
|
beta_leading = true;
|
||||||
|
beta_leader_time = timer_read();
|
||||||
|
beta_leader_sequence_size = 0;
|
||||||
|
beta_leader_change = false; // If true, run
|
||||||
|
memset(beta_leader_sequence, 0, sizeof(beta_leader_sequence));
|
||||||
|
}
|
||||||
|
|
||||||
|
void beta_qk_leader_check() {
|
||||||
|
|
||||||
|
#ifdef LEADER_NO_TIMEOUT
|
||||||
|
bool timeout = (beta_leading && beta_leader_sequence_size > 0 && timer_elapsed(beta_leader_time) > LEADER_TIMEOUT);
|
||||||
|
#else
|
||||||
|
bool timeout = (beta_leading && timer_elapsed(beta_leader_time) > LEADER_TIMEOUT);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (beta_leader_change || timeout) {
|
||||||
|
beta_leader_change = false;
|
||||||
|
|
||||||
|
if (
|
||||||
|
beta_leader_sequence[beta_leader_sequence_size - 1] == (KC_LEAD)
|
||||||
|
) {
|
||||||
|
beta_leading = false;
|
||||||
|
beta_leader_end();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (timeout) {
|
||||||
|
beta_leading = false;
|
||||||
|
beta_leader_end();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!beta_leader_check()) {
|
||||||
|
beta_leading = false;
|
||||||
|
beta_leader_end();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool beta_process_leader(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
// Leader key set-up
|
||||||
|
if (record->event.pressed) {
|
||||||
|
if (beta_leading) {
|
||||||
|
# ifndef LEADER_NO_TIMEOUT
|
||||||
|
if (timer_elapsed(beta_leader_time) < LEADER_TIMEOUT)
|
||||||
|
# endif // LEADER_NO_TIMEOUT
|
||||||
|
{
|
||||||
|
# ifndef LEADER_KEY_STRICT_KEY_PROCESSING
|
||||||
|
if (IS_QK_MOD_TAP(keycode)) {
|
||||||
|
keycode = QK_MOD_TAP_GET_TAP_KEYCODE(keycode);
|
||||||
|
} else if (IS_QK_LAYER_TAP(keycode)) {
|
||||||
|
keycode = QK_LAYER_TAP_GET_TAP_KEYCODE(keycode);
|
||||||
|
}
|
||||||
|
# endif // LEADER_KEY_STRICT_KEY_PROCESSING
|
||||||
|
if (beta_leader_sequence_size < ARRAY_SIZE(beta_leader_sequence)) {
|
||||||
|
beta_leader_sequence[beta_leader_sequence_size] = keycode;
|
||||||
|
beta_leader_sequence_size++;
|
||||||
|
beta_leader_change = true;
|
||||||
|
} else {
|
||||||
|
beta_leading = false;
|
||||||
|
beta_leader_end();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
# ifdef LEADER_PER_KEY_TIMING
|
||||||
|
beta_leader_time = timer_read();
|
||||||
|
# endif
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (keycode == QK_LEADER) {
|
||||||
|
beta_qk_leader_start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
|
@ -1,3 +1,4 @@
|
||||||
|
#define ENABLE_BETA_LEADER
|
||||||
|
|
||||||
// No timeout after initial leader key press
|
// No timeout after initial leader key press
|
||||||
#define LEADER_NO_TIMEOUT
|
#define LEADER_NO_TIMEOUT
|
||||||
|
|
|
@ -73,6 +73,10 @@ enum tap_dance_codes {
|
||||||
#include "features/autocorrect/autocorrect.h"
|
#include "features/autocorrect/autocorrect.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_BETA_LEADER
|
||||||
|
#include "features/leader/beta_leader.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "features/beta_rawhid.h"
|
#include "features/beta_rawhid.h"
|
||||||
|
|
||||||
// Send a special character.
|
// Send a special character.
|
||||||
|
@ -86,6 +90,14 @@ bool send_special_character(uint16_t keycode) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
#ifdef ENABLE_BETA_LEADER
|
||||||
|
beta_qk_leader_check();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Include all other parts of configuration
|
// Include all other parts of configuration
|
||||||
#include "layers/layers.c"
|
#include "layers/layers.c"
|
||||||
#include "parts/leader.c"
|
#include "parts/leader.c"
|
||||||
|
@ -96,6 +108,10 @@ bool send_special_character(uint16_t keycode) {
|
||||||
// Return TRUE to allow QMK to handle keypress.
|
// Return TRUE to allow QMK to handle keypress.
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
|
||||||
|
#ifdef ENABLE_BETA_LEADER
|
||||||
|
if (!beta_process_leader(keycode, record)) { return false; }
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_HID_SPELLCHECK
|
#ifdef ENABLE_HID_SPELLCHECK
|
||||||
if (!process_spellcheck(keycode, record)) { return false; }
|
if (!process_spellcheck(keycode, record)) { return false; }
|
||||||
#endif
|
#endif
|
||||||
|
@ -116,7 +132,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
SEND_STRING(SS_LCTL(SS_LGUI(SS_LSFT(SS_TAP(X_R)))));
|
SEND_STRING(SS_LCTL(SS_LGUI(SS_LSFT(SS_TAP(X_R)))));
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Workaround for one-shot LGUI key.
|
// Workaround for one-shot LGUI key.
|
||||||
// Using just LGUI with LAYER_DESKTOP as OSL
|
// Using just LGUI with LAYER_DESKTOP as OSL
|
||||||
// does not allow you to hold lgui. This does.
|
// does not allow you to hold lgui. This does.
|
||||||
|
|
|
@ -1,49 +1,64 @@
|
||||||
LEADER_EXTERNS();
|
#include "features/leader/beta_leader.h"
|
||||||
|
|
||||||
void leader_start(void) {
|
BETA_LEADER_EXTERNS();
|
||||||
|
|
||||||
|
void beta_leader_start(void) {
|
||||||
ergodox_right_led_3_on();
|
ergodox_right_led_3_on();
|
||||||
}
|
}
|
||||||
|
|
||||||
void leader_end(void) {
|
void beta_leader_end(void) {
|
||||||
ergodox_right_led_3_off();
|
ergodox_right_led_3_off();
|
||||||
}
|
}
|
||||||
|
|
||||||
void matrix_scan_user(void) {
|
bool beta_leader_check(void) {
|
||||||
LEADER_DICTIONARY() {
|
BETA_SEQ_1_SHORT(KC_E) {
|
||||||
leading = false;
|
SEND_STRING(SECRET_GMAIL);
|
||||||
leader_end();
|
return false;
|
||||||
|
|
||||||
SEQ_TWO_KEYS(KC_E, KC_M) {
|
|
||||||
SEND_STRING(SECRET_EMAIL);
|
|
||||||
}
|
|
||||||
|
|
||||||
SEQ_TWO_KEYS(KC_G, KC_M) {
|
|
||||||
SEND_STRING(SECRET_GMAIL);
|
|
||||||
}
|
|
||||||
|
|
||||||
SEQ_TWO_KEYS(KC_L, KC_I) {
|
|
||||||
SEND_STRING(SECRET_SCHOOL_EMAIL);
|
|
||||||
}
|
|
||||||
|
|
||||||
SEQ_TWO_KEYS(KC_K, KC_B) {
|
|
||||||
layer_move(LAYER_KEYBOARD);
|
|
||||||
}
|
|
||||||
|
|
||||||
//SEQ_ONE_KEY(KC_F) {
|
|
||||||
// doesn't work, no deactivate
|
|
||||||
// also, this is slow since laeder key uses dumb logic
|
|
||||||
// set_oneshot_layer(LAYER_FKEYS, ONESHOT_START);
|
|
||||||
//}
|
|
||||||
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_1) { tap_code(KC_F1); }
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_2) { tap_code(KC_F2); }
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_3) { tap_code(KC_F3); }
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_4) { tap_code(KC_F4); }
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_5) { tap_code(KC_F5); }
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_Q) { tap_code(KC_F6); }
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_W) { tap_code(KC_F7); }
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_E) { tap_code(KC_F8); }
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_R) { tap_code(KC_F9); }
|
|
||||||
SEQ_TWO_KEYS(KC_F, KC_T) { tap_code(KC_F10); }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BETA_SEQ_2_LONG(KC_E, KC_M) {
|
||||||
|
SEND_STRING(SECRET_EMAIL);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
BETA_SEQ_2_LONG(KC_G, KC_M) {
|
||||||
|
SEND_STRING(SECRET_GMAIL);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
BETA_SEQ_2_LONG(KC_L, KC_I) {
|
||||||
|
SEND_STRING(SECRET_SCHOOL_EMAIL);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
BETA_SEQ_2_LONG(KC_K, KC_B) {
|
||||||
|
layer_move(LAYER_KEYBOARD);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
BETA_SEQ_2_LONG(KC_K, KC_B) {
|
||||||
|
layer_move(LAYER_KEYBOARD);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BETA_SEQ_1_SHORT(KC_F) {
|
||||||
|
// doesn't work, no deactivate
|
||||||
|
// also, this is slow since laeder key uses dumb logic
|
||||||
|
set_oneshot_layer(LAYER_NUMBERS, ONESHOT_START);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_1) { tap_code(KC_F1); return false; }
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_2) { tap_code(KC_F2); return false; }
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_3) { tap_code(KC_F3); return false; }
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_4) { tap_code(KC_F4); return false; }
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_5) { tap_code(KC_F5); return false; }
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_Q) { tap_code(KC_F6); return false; }
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_W) { tap_code(KC_F7); return false; }
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_E) { tap_code(KC_F8); return false; }
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_R) { tap_code(KC_F9); return false; }
|
||||||
|
BETA_SEQ_2_LONG(KC_F, KC_T) { tap_code(KC_F10); return false; }
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
|
@ -1,4 +1,3 @@
|
||||||
# rules.mk overrides
|
# rules.mk overrides
|
||||||
|
|
||||||
LEADER_ENABLE = yes
|
|
||||||
TAP_DANCE_ENABLE = yes
|
TAP_DANCE_ENABLE = yes
|
||||||
|
|
|
@ -30,7 +30,7 @@ SLEEP_LED_ENABLE = no
|
||||||
API_SYSEX_ENABLE = no
|
API_SYSEX_ENABLE = no
|
||||||
MOUSE_SHARED_EP = no
|
MOUSE_SHARED_EP = no
|
||||||
MAGIC_ENABLE = no
|
MAGIC_ENABLE = no
|
||||||
LEADER_ENABLE = yes
|
LEADER_ENABLE = no
|
||||||
TAP_DANCE_ENABLE = yes
|
TAP_DANCE_ENABLE = yes
|
||||||
AUDIO_SUPPORTED = no
|
AUDIO_SUPPORTED = no
|
||||||
BACKLIGHT_SUPPORTED = no
|
BACKLIGHT_SUPPORTED = no
|
||||||
|
@ -43,6 +43,7 @@ SRC += \
|
||||||
features/beta_rawhid.c \
|
features/beta_rawhid.c \
|
||||||
features/hid_spellcheck.c \
|
features/hid_spellcheck.c \
|
||||||
features/autocorrect/autocorrect.c \
|
features/autocorrect/autocorrect.c \
|
||||||
|
features/leader/leader.c \
|
||||||
extra_mappings.c
|
extra_mappings.c
|
||||||
|
|
||||||
QUANTUM_LIB_SRC += i2c_master.c
|
QUANTUM_LIB_SRC += i2c_master.c
|
||||||
|
|
Loading…
Reference in New Issue