forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented basic key combination feature
- Loading branch information
Showing
5 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
#include "process_combo.h" | ||
#include "print.h" | ||
|
||
// __attribute__ ((weak)) | ||
// combo_t key_combos[] = { | ||
|
||
// }; | ||
|
||
#define SEND_KEY(key) \ | ||
do { \ | ||
register_code16(key); \ | ||
send_keyboard_report(); \ | ||
unregister_code16(key); \ | ||
} while(0) | ||
|
||
|
||
#define ALL_COMBO_KEYS_ARE_DOWN (((1<<count)-1) == combo->state) | ||
static bool process_single_combo(combo_t *combo, uint16_t keycode, keyrecord_t *record) | ||
{ | ||
uint8_t count = 0; | ||
bool is_combo_key = false; | ||
// bool combo_key_released = false; | ||
|
||
// Count the number of combo keys | ||
for (const uint16_t *key = combo->keys; COMBO_END != pgm_read_word(key); ++key, ++count); | ||
|
||
for (uint8_t i = 0; i < count; ++i) { | ||
uint16_t key = pgm_read_word(&combo->keys[i]); | ||
|
||
if (key == keycode) { | ||
is_combo_key = true; | ||
|
||
if (record->event.pressed) { | ||
combo->state |= (1<<i); | ||
} else { // Combo key released | ||
if (!combo->state) { | ||
// The combo was sent, no need to send released key | ||
return true; | ||
} | ||
|
||
combo->state &= ~(1<<i); | ||
SEND_KEY(key); | ||
} | ||
} | ||
} | ||
|
||
if (ALL_COMBO_KEYS_ARE_DOWN) { | ||
SEND_KEY(combo->action); | ||
combo->state = 0; | ||
} | ||
|
||
return is_combo_key; | ||
} | ||
|
||
|
||
bool process_combo(uint16_t keycode, keyrecord_t *record) | ||
{ | ||
bool is_combo_key = false; | ||
|
||
for (int i = 0; i < NUM_ELEMS(key_combos); ++i) { | ||
combo_t *combo = &key_combos[i]; | ||
is_combo_key |= process_single_combo(combo, keycode, record); | ||
} | ||
|
||
return !is_combo_key; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#ifndef PROCESS_COMBO_H | ||
#define PROCESS_COMBO_H | ||
|
||
#include <stdint.h> | ||
#include "progmem.h" | ||
#include "quantum.h" | ||
|
||
|
||
typedef struct | ||
{ | ||
const uint16_t *keys; | ||
uint16_t action; | ||
uint32_t state; | ||
} combo_t; | ||
|
||
|
||
#define COMBO_END 0 | ||
#define NUM_ELEMS(a) (sizeof(a)/sizeof 0[a]) | ||
|
||
|
||
extern combo_t key_combos[1]; | ||
|
||
bool process_combo(uint16_t keycode, keyrecord_t *record); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters