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