fresh commit for a new fork for PR to upstream/master (#5406)
This commit is contained in:
parent
c3b4f65c64
commit
2558372b3f
5 changed files with 206 additions and 136 deletions
|
@ -5,34 +5,7 @@
|
|||
https://github.com/arkag/qmk_firmware/blob/master/keyboards/mechmini/v2/keymaps/arkag/keymap.c
|
||||
*/
|
||||
|
||||
// Start: Written by konstantin: vomindoraan
|
||||
#include <ctype.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
void send_unicode_hex_string(const char *str) {
|
||||
if (!str) { return; } // Saftey net
|
||||
while (*str) {
|
||||
// Find the next code point (token) in the string
|
||||
for (; *str == ' '; str++);
|
||||
size_t n = strcspn(str, " "); // Length of the current token
|
||||
char code_point[n+1];
|
||||
strncpy(code_point, str, n);
|
||||
code_point[n] = '\0'; // Make sure it's null-terminated
|
||||
|
||||
// Normalize the code point: make all hex digits lowercase
|
||||
for (char *p = code_point; *p; p++) {
|
||||
*p = tolower(*p);
|
||||
}
|
||||
|
||||
// Send the code point as a Unicode input string
|
||||
unicode_input_start();
|
||||
send_string(code_point);
|
||||
unicode_input_finish();
|
||||
str += n; // Move to the first ' ' (or '\0') after the current token
|
||||
}
|
||||
}
|
||||
// End: Written by konstantin: vomindoraan
|
||||
#include <stdbool.h>
|
||||
|
||||
// Start: Written by Chris Lewis
|
||||
#ifndef MIN
|
||||
|
@ -78,6 +51,8 @@ Color underglow,
|
|||
flashState flash_state = no_flash;
|
||||
fadeState fade_state = add_fade;
|
||||
activityState state = boot;
|
||||
bool aesthetic = false,
|
||||
shifty = false;
|
||||
|
||||
void set_color (Color new, bool update) {
|
||||
rgblight_sethsv_eeprom_helper(new.h, new.s, new.v, update);
|
||||
|
@ -146,7 +121,7 @@ void check_state (void) {
|
|||
|
||||
case sleeping:
|
||||
if (!slept) {
|
||||
rgblight_mode_noeeprom(4);
|
||||
rgblight_mode_noeeprom(2);
|
||||
slept = true;
|
||||
activated = false;
|
||||
deactivated = false;
|
||||
|
@ -249,11 +224,6 @@ void set_os (uint8_t os, bool update) {
|
|||
num_extra_flashes_off = 1;
|
||||
}
|
||||
|
||||
void tap_key(uint8_t keycode) {
|
||||
register_code(keycode);
|
||||
unregister_code(keycode);
|
||||
}
|
||||
|
||||
// register GUI if Mac or Ctrl if other
|
||||
void pri_mod(bool press) {
|
||||
if (press) {
|
||||
|
@ -293,13 +263,13 @@ void surround_type(uint8_t num_of_chars, uint16_t keycode, bool use_shift) {
|
|||
register_code(KC_LSFT);
|
||||
}
|
||||
for (int i = 0; i < num_of_chars; i++) {
|
||||
tap_key(keycode);
|
||||
tap_code(keycode);
|
||||
}
|
||||
if (use_shift) {
|
||||
unregister_code(KC_LSFT);
|
||||
}
|
||||
for (int i = 0; i < (num_of_chars/2); i++) {
|
||||
tap_key(KC_LEFT);
|
||||
tap_code(KC_LEFT);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -307,7 +277,7 @@ void long_keystroke(size_t num_of_keys, uint16_t keys[]) {
|
|||
for (int i = 0; i < num_of_keys-1; i++) {
|
||||
register_code(keys[i]);
|
||||
}
|
||||
tap_key(keys[num_of_keys-1]);
|
||||
tap_code(keys[num_of_keys-1]);
|
||||
for (int i = 0; i < num_of_keys-1; i++) {
|
||||
unregister_code(keys[i]);
|
||||
}
|
||||
|
@ -315,7 +285,10 @@ void long_keystroke(size_t num_of_keys, uint16_t keys[]) {
|
|||
|
||||
void dance_grv (qk_tap_dance_state_t *state, void *user_data) {
|
||||
if (state->count == 1) {
|
||||
tap_key(KC_GRV);
|
||||
tap_code(KC_GRV);
|
||||
if (aesthetic) {
|
||||
tap_code(KC_SPACE);
|
||||
}
|
||||
} else if (state->count == 2) {
|
||||
surround_type(2, KC_GRAVE, false);
|
||||
} else {
|
||||
|
@ -325,7 +298,10 @@ void dance_grv (qk_tap_dance_state_t *state, void *user_data) {
|
|||
|
||||
void dance_quot (qk_tap_dance_state_t *state, void *user_data) {
|
||||
if (state->count == 1) {
|
||||
tap_key(KC_QUOT);
|
||||
tap_code(KC_QUOT);
|
||||
if (aesthetic) {
|
||||
tap_code(KC_SPACE);
|
||||
}
|
||||
} else if (state->count == 2) {
|
||||
surround_type(2, KC_QUOTE, false);
|
||||
} else if (state->count == 3) {
|
||||
|
@ -333,35 +309,53 @@ void dance_quot (qk_tap_dance_state_t *state, void *user_data) {
|
|||
}
|
||||
}
|
||||
|
||||
void dance_strk (qk_tap_dance_state_t *state, void *user_data) {
|
||||
void dance_hyph (qk_tap_dance_state_t *state, void *user_data) {
|
||||
if (state->count == 1) {
|
||||
surround_type(4, KC_TILDE, true);
|
||||
} else if (state->count == 2) {
|
||||
if (current_os == OS_MAC) {
|
||||
long_keystroke(3, (uint16_t[]){KC_LGUI, KC_LSFT, KC_4});
|
||||
} else if (current_os == OS_WIN) {
|
||||
long_keystroke(3, (uint16_t[]){KC_LGUI, KC_LSFT, KC_S});
|
||||
} else {
|
||||
return;
|
||||
tap_code(KC_MINS);
|
||||
if (aesthetic) {
|
||||
tap_code(KC_SPACE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void dance_3 (qk_tap_dance_state_t *state, void *user_data) {
|
||||
if (state->count == 1) {
|
||||
tap_key(KC_3);
|
||||
} else if (state->count == 2) {
|
||||
send_unicode_hex_string("00E8");
|
||||
register_code(KC_LSFT);
|
||||
tap_code(KC_MINS);
|
||||
if (aesthetic) {
|
||||
tap_code(KC_SPACE);
|
||||
}
|
||||
unregister_code(KC_LSFT);
|
||||
} else if (state->count == 3) {
|
||||
send_unicode_hex_string("00E9");
|
||||
send_unicode_hex_string("2014");
|
||||
}
|
||||
}
|
||||
|
||||
void dance_c (qk_tap_dance_state_t *state, void *user_data) {
|
||||
void dance_obrck (qk_tap_dance_state_t *state, void *user_data) {
|
||||
if (state->count == 1) {
|
||||
tap_key(KC_C);
|
||||
tap_code(KC_LBRC);
|
||||
if (aesthetic) {
|
||||
tap_code(KC_SPACE);
|
||||
}
|
||||
} else if (state->count == 2) {
|
||||
send_unicode_hex_string("00E7");
|
||||
register_code(KC_LSFT);
|
||||
tap_code(KC_9);
|
||||
if (aesthetic) {
|
||||
tap_code(KC_SPACE);
|
||||
}
|
||||
unregister_code(KC_LSFT);
|
||||
}
|
||||
}
|
||||
|
||||
void dance_cbrck (qk_tap_dance_state_t *state, void *user_data) {
|
||||
if (state->count == 1) {
|
||||
tap_code(KC_RBRC);
|
||||
if (aesthetic) {
|
||||
tap_code(KC_SPACE);
|
||||
}
|
||||
} else if (state->count == 2) {
|
||||
register_code(KC_LSFT);
|
||||
tap_code(KC_0);
|
||||
if (aesthetic) {
|
||||
tap_code(KC_SPACE);
|
||||
}
|
||||
unregister_code(KC_LSFT);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -383,13 +377,28 @@ void matrix_scan_user(void) {
|
|||
// begin OS functions
|
||||
SEQ_TWO_KEYS(KC_P, KC_B) {
|
||||
if (current_os == OS_WIN) {
|
||||
SEND_STRING(SS_DOWN(X_LGUI) SS_TAP(X_PAUSE) SS_UP(X_LGUI));
|
||||
long_keystroke(2, (uint16_t[]){KC_LGUI, KC_PAUSE});
|
||||
} else {
|
||||
}
|
||||
}
|
||||
SEQ_TWO_KEYS(KC_LSFT, M_PMOD) {
|
||||
if (current_os == OS_WIN) {
|
||||
long_keystroke(3, (uint16_t[]){KC_LCTL, KC_LSFT, KC_ESC});
|
||||
} else {
|
||||
}
|
||||
}
|
||||
SEQ_TWO_KEYS(KC_S, KC_S) {
|
||||
if (current_os == OS_MAC) {
|
||||
long_keystroke(3, (uint16_t[]){KC_LGUI, KC_LSFT, KC_4});
|
||||
} else if (current_os == OS_WIN) {
|
||||
long_keystroke(3, (uint16_t[]){KC_LGUI, KC_LSFT, KC_S});
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
SEQ_THREE_KEYS(KC_C, KC_A, KC_D) {
|
||||
if (current_os == OS_WIN) {
|
||||
SEND_STRING(SS_DOWN(X_LCTRL) SS_DOWN(X_LALT) SS_TAP(X_DELETE) SS_UP(X_LALT) SS_UP(X_LCTRL));
|
||||
long_keystroke(3, (uint16_t[]){KC_LCTL, KC_LALT, KC_DEL});
|
||||
} else {
|
||||
}
|
||||
}
|
||||
|
@ -415,33 +424,33 @@ void matrix_scan_user(void) {
|
|||
SEQ_ONE_KEY(KC_S) {
|
||||
surround_type(4, KC_GRAVE, true);
|
||||
}
|
||||
SEQ_TWO_KEYS(KC_S, KC_S) {
|
||||
if (current_os == OS_MAC) {
|
||||
long_keystroke(3, (uint16_t[]){KC_LGUI, KC_LSFT, KC_4});
|
||||
} else if (current_os == OS_WIN) {
|
||||
long_keystroke(3, (uint16_t[]){KC_LGUI, KC_LSFT, KC_S});
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
SEQ_ONE_KEY(KC_C) {
|
||||
surround_type(2, KC_GRAVE, false);
|
||||
send_unicode_hex_string("00E7");
|
||||
}
|
||||
SEQ_TWO_KEYS(KC_C, KC_C) {
|
||||
surround_type(2, KC_GRAVE, false);
|
||||
}
|
||||
SEQ_THREE_KEYS(KC_C, KC_C, KC_C) {
|
||||
surround_type(6, KC_GRAVE, false);
|
||||
}
|
||||
SEQ_ONE_KEY(KC_E) {
|
||||
send_unicode_hex_string("00E8");
|
||||
}
|
||||
SEQ_TWO_KEYS(KC_E, KC_E) {
|
||||
send_unicode_hex_string("00E9");
|
||||
}
|
||||
// end format functions
|
||||
|
||||
// start fancy functions
|
||||
SEQ_THREE_KEYS(KC_C, KC_C, KC_C) {
|
||||
surround_type(6, KC_GRAVE, false);
|
||||
pri_mod(true);
|
||||
tap_key(KC_V);
|
||||
tap_code(KC_V);
|
||||
pri_mod(false);
|
||||
tap_key(KC_RGHT);
|
||||
tap_key(KC_RGHT);
|
||||
tap_key(KC_RGHT);
|
||||
tap_key(KC_ENTER);
|
||||
tap_code(KC_RGHT);
|
||||
tap_code(KC_RGHT);
|
||||
tap_code(KC_RGHT);
|
||||
tap_code(KC_ENTER);
|
||||
}
|
||||
// end fancy functions
|
||||
|
||||
|
@ -450,8 +459,8 @@ void matrix_scan_user(void) {
|
|||
// ™
|
||||
send_unicode_hex_string("2122");
|
||||
}
|
||||
SEQ_THREE_KEYS(KC_G, KC_G, KC_T) {
|
||||
SEND_STRING("@GrahamGoldenTech.com");
|
||||
SEQ_TWO_KEYS(KC_D, KC_D) {
|
||||
SEND_STRING(".\\Administrator");
|
||||
}
|
||||
SEQ_THREE_KEYS(KC_L, KC_O, KC_D) {
|
||||
// ಠ__ಠ
|
||||
|
@ -482,29 +491,103 @@ void matrix_scan_user(void) {
|
|||
}
|
||||
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
if (aesthetic) {
|
||||
switch (keycode) {
|
||||
case KC_A ... KC_0:
|
||||
case KC_SPACE ... KC_SLASH:
|
||||
if (record->event.pressed) {
|
||||
state = active;
|
||||
velocikey_accelerate();
|
||||
tap_code(keycode);
|
||||
tap_code(KC_SPACE);
|
||||
}
|
||||
return false;
|
||||
|
||||
case KC_BSPACE:
|
||||
if (record->event.pressed) {
|
||||
state = active;
|
||||
velocikey_accelerate();
|
||||
tap_code(keycode);
|
||||
tap_code(keycode);
|
||||
}
|
||||
return false;
|
||||
default: // Do nothing
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (shifty) {
|
||||
switch (keycode) {
|
||||
case KC_A ... KC_Z:
|
||||
if (record->event.pressed) {
|
||||
int shift = rand() % 2;
|
||||
state = active;
|
||||
velocikey_accelerate();
|
||||
if (shift == 1){
|
||||
register_code(KC_LSFT);
|
||||
}
|
||||
tap_code(keycode);
|
||||
if (shift == 1){
|
||||
unregister_code(KC_LSFT);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
case KC_SPC:
|
||||
if (record->event.pressed) {
|
||||
state = active;
|
||||
velocikey_accelerate();
|
||||
tap_code(keycode);
|
||||
}
|
||||
return false;
|
||||
default: // Do nothing
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
switch (keycode) {
|
||||
case M_PMOD:
|
||||
if (record->event.pressed) {
|
||||
pri_mod(true);
|
||||
} else {
|
||||
pri_mod(false);
|
||||
}
|
||||
pri_mod(record->event.pressed);
|
||||
return false;
|
||||
|
||||
case M_SMOD:
|
||||
if (record->event.pressed) {
|
||||
sec_mod(true);
|
||||
} else {
|
||||
sec_mod(false);
|
||||
}
|
||||
sec_mod(record->event.pressed);
|
||||
return false;
|
||||
|
||||
case M_OS:
|
||||
if (record->event.pressed) {
|
||||
if (record->event.pressed){
|
||||
set_os((current_os+1) % _OS_COUNT, true);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
case M_SPC:
|
||||
if(record->event.pressed){
|
||||
if (aesthetic) {
|
||||
aesthetic = false;
|
||||
num_extra_flashes_off = 1;
|
||||
} else {
|
||||
aesthetic = true;
|
||||
}
|
||||
flash_color = underglow;
|
||||
flash_state = flash_off;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
case M_SFT:
|
||||
if(record->event.pressed){
|
||||
if (shifty) {
|
||||
shifty = false;
|
||||
num_extra_flashes_off = 1;
|
||||
} else {
|
||||
shifty = true;
|
||||
}
|
||||
flash_color = underglow;
|
||||
flash_state = flash_off;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
default:
|
||||
if (record->event.pressed) {
|
||||
state = active;
|
||||
|
@ -516,13 +599,10 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
|
||||
//Tap Dance Definitions
|
||||
qk_tap_dance_action_t tap_dance_actions[] = {
|
||||
[TD_3_GRV_ACT] = ACTION_TAP_DANCE_FN (dance_3),
|
||||
[TD_C_CED] = ACTION_TAP_DANCE_FN (dance_c),
|
||||
[TD_GRV_3GRV] = ACTION_TAP_DANCE_FN (dance_grv),
|
||||
[TD_SING_DOUB] = ACTION_TAP_DANCE_FN (dance_quot),
|
||||
[TD_STRK_SHOT] = ACTION_TAP_DANCE_FN (dance_strk),
|
||||
[TD_HYPH_UNDR] = ACTION_TAP_DANCE_DOUBLE (KC_MINS, LSFT(KC_MINS)),
|
||||
[TD_BRCK_PARN_O] = ACTION_TAP_DANCE_DOUBLE (KC_LBRC, LSFT(KC_9)),
|
||||
[TD_BRCK_PARN_C] = ACTION_TAP_DANCE_DOUBLE (KC_RBRC, LSFT(KC_0)),
|
||||
[TD_HYPH_UNDR] = ACTION_TAP_DANCE_FN (dance_hyph),
|
||||
[TD_BRCK_PARN_O] = ACTION_TAP_DANCE_FN (dance_obrck),
|
||||
[TD_BRCK_PARN_C] = ACTION_TAP_DANCE_FN (dance_cbrck),
|
||||
[TD_LALT_RALT] = ACTION_TAP_DANCE_DOUBLE (KC_LALT, KC_RALT),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue