]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/process_records.c
[Keymap] Jarred's Plaid keymap (#6049)
[qmk_firmware.git] / users / drashna / process_records.c
1 #include "drashna.h"
2
3 uint16_t copy_paste_timer;
4
5 __attribute__((weak))
6 bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { return true; }
7
8 __attribute__((weak))
9 bool process_record_secrets(uint16_t keycode, keyrecord_t *record) { return true; }
10
11 // Defines actions tor my global custom keycodes. Defined in drashna.h file
12 // Then runs the _keymap's record handier if not processed here
13 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
14     // If console is enabled, it will print the matrix position and status of each key pressed
15 #ifdef KEYLOGGER_ENABLE
16 #    if defined(KEYBOARD_ergodox_ez) || defined(KEYBOARD_keebio_iris_rev2)
17     xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.row, record->event.key.col, record->event.pressed);
18 #    else
19     xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed);
20 #    endif
21 #endif  // KEYLOGGER_ENABLE
22
23     switch (keycode) {
24         case KC_QWERTY ... KC_CARPLAX:
25             if (record->event.pressed) {
26                 set_single_persistent_default_layer(keycode - KC_QWERTY);
27             }
28             break;
29
30         case KC_MAKE:  // Compiles the firmware, and adds the flash command based on keyboard bootloader
31             if (!record->event.pressed) {
32                 uint8_t temp_mod = get_mods();
33                 uint8_t temp_osm = get_oneshot_mods();
34                 clear_mods();
35                 clear_oneshot_mods();
36                 send_string_with_delay_P(PSTR("make " QMK_KEYBOARD ":" QMK_KEYMAP), TAP_CODE_DELAY);
37 #ifndef MAKE_BOOTLOADER
38                 if ((temp_mod | temp_osm) & MOD_MASK_SHIFT)
39 #endif
40                 {
41 #if defined(__arm__)
42                     send_string_with_delay_P(PSTR(":dfu-util"), TAP_CODE_DELAY);
43 #elif defined(BOOTLOADER_DFU)
44                     send_string_with_delay_P(PSTR(":dfu"), TAP_CODE_DELAY);
45 #elif defined(BOOTLOADER_HALFKAY)
46                     send_string_with_delay_P(PSTR(":teensy"), TAP_CODE_DELAY);
47 #elif defined(BOOTLOADER_CATERINA)
48                     send_string_with_delay_P(PSTR(":avrdude"), TAP_CODE_DELAY);
49 #endif  // bootloader options
50                 }
51                 if ((temp_mod | temp_osm) & MOD_MASK_CTRL) {
52                     send_string_with_delay_P(PSTR(" -j8 --output-sync"), TAP_CODE_DELAY);
53                 }
54 #ifdef RGB_MATRIX_SPLIT_RIGHT
55                 send_string_with_delay_P(PSTR(" RGB_MATRIX_SPLIT_RIGHT=yes"), TAP_CODE_DELAY);
56 #    ifndef OLED_DRIVER_ENABLE
57                 send_string_with_delay_P(PSTR(" OLED_DRIVER_ENABLE=no"), TAP_CODE_DELAY);
58 #    endif
59 #endif
60                 send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), TAP_CODE_DELAY);
61             }
62
63             break;
64
65         case VRSN:  // Prints firmware version
66             if (record->event.pressed) {
67                 send_string_with_delay_P(PSTR(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION ", Built on: " QMK_BUILDDATE), TAP_CODE_DELAY);
68             }
69             break;
70
71             // These are a serious of gaming macros.
72             // Only enables for the viterbi, basically,
73             // to save on firmware space, since it's limited.
74 #ifdef MACROS_ENABLED
75         case KC_OVERWATCH:  // Toggle's if we hit "ENTER" or "BACKSPACE" to input macros
76             if (record->event.pressed) {
77                 userspace_config.is_overwatch ^= 1;
78                 eeconfig_update_user(userspace_config.raw);
79             }
80 #    ifdef RGBLIGHT_ENABLE
81             userspace_config.is_overwatch ? rgblight_mode_noeeprom(17) : rgblight_mode_noeeprom(18);
82 #    endif  // RGBLIGHT_ENABLE
83             break;
84         case KC_SALT:
85             return send_game_macro("Salt, salt, salt...", record, false);
86         case KC_MORESALT:
87             return send_game_macro("Please sir, can I have some more salt?!", record, false);
88         case KC_SALTHARD:
89             return send_game_macro("Your salt only makes me harder, and even more aggressive!", record, false);
90         case KC_GOODGAME:
91             return send_game_macro("Good game, everyone!", record, false);
92         case KC_GLHF:
93             return send_game_macro("Good luck, have fun!!!", record, false);
94         case KC_SYMM:
95             return send_game_macro("Left click to win!", record, false);
96         case KC_JUSTGAME:
97             return send_game_macro("It may be a game, but if you don't want to actually try, please go play AI, so that people that actually want to take the game seriously and \"get good\" have a place to do so without trolls like you throwing games.", record, false);
98         case KC_TORB:
99             return send_game_macro("That was positively riveting!", record, false);
100         case KC_AIM:
101             send_game_macro("That aim is absolutely amazing. It's almost like you're a machine!", record, true);
102             return send_game_macro("Wait! That aim is TOO good!  You're clearly using an aim hack! CHEATER!", record, false);
103         case KC_C9:
104             return send_game_macro("OMG!!!  C9!!!", record, false);
105         case KC_GGEZ:
106             return send_game_macro("That was a fantastic game, though it was a bit easy. Try harder next time!", record, false);
107 #endif  // MACROS_ENABLED
108
109         case KC_DIABLO_CLEAR:  // reset all Diablo timers, disabling them
110 #ifdef TAP_DANCE_ENABLE
111             if (record->event.pressed) {
112                 for (uint8_t index = 0; index < 4; index++) {
113                     diablo_timer[index].key_interval = 0;
114                 }
115             }
116 #endif  // TAP_DANCE_ENABLE
117             break;
118
119         case KC_CCCV:  // One key copy/paste
120             if (record->event.pressed) {
121                 copy_paste_timer = timer_read();
122             } else {
123                 if (timer_elapsed(copy_paste_timer) > TAPPING_TERM) {  // Hold, copy
124                     register_code(KC_LCTL);
125                     tap_code(KC_C);
126                     unregister_code(KC_LCTL);
127                 } else {  // Tap, paste
128                     register_code(KC_LCTL);
129                     tap_code(KC_V);
130                     unregister_code(KC_LCTL);
131                 }
132             }
133             break;
134 #ifdef UNICODE_ENABLE
135         case UC_FLIP:  // (ノಠ痊ಠ)ノ彡┻━┻
136             if (record->event.pressed) {
137                 send_unicode_hex_string("0028 30CE 0CA0 75CA 0CA0 0029 30CE 5F61 253B 2501 253B");
138             }
139             break;
140         case UC_TABL:  // ┬─┬ノ( º _ ºノ)
141             if (record->event.pressed) {
142                 send_unicode_hex_string("252C 2500 252C 30CE 0028 0020 00BA 0020 005F 0020 00BA 30CE 0029");
143             }
144             break;
145         case UC_SHRG:  // ¯\_(ツ)_/¯
146             if (record->event.pressed) {
147                 send_unicode_hex_string("00AF 005C 005F 0028 30C4 0029 005F 002F 00AF");
148             }
149             break;
150         case UC_DISA:  // ಠ_ಠ
151             if (record->event.pressed) {
152                 send_unicode_hex_string("0CA0 005F 0CA0");
153             }
154             break;
155 #endif
156     }
157     return process_record_keymap(keycode, record) &&
158 #if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
159            process_record_user_rgb(keycode, record) &&
160 #endif  // RGBLIGHT_ENABLE
161            process_record_secrets(keycode, record);
162 }