]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/drashna.c
Remove 'return false' in macros since it's not needed
[qmk_firmware.git] / users / drashna / drashna.c
1 /*
2 Copyright 2017 Christopher Courtney <drashna@live.com> @drashna
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #include "drashna.h"
19 #include "tap_dances.h"
20 #include "rgb_stuff.h"
21
22 userspace_config_t userspace_config;
23
24 uint16_t copy_paste_timer;
25 //  Helper Functions
26
27
28 // This block is for all of the gaming macros, as they were all doing
29 // the same thing, but with differring text sent.
30 bool send_game_macro(const char *str, keyrecord_t *record, bool override) {
31   if (!record->event.pressed || override) {
32     uint16_t keycode;
33     if (userspace_config.is_overwatch) {
34       keycode = KC_BSPC;
35     } else {
36       keycode = KC_ENTER;
37     }
38     clear_keyboard();
39     tap_code(keycode);
40     wait_ms(50);
41     send_string_with_delay(str, MACRO_TIMER);
42     wait_ms(50);
43     tap_code(KC_ENTER);
44   }
45   if (override) wait_ms(3000);
46   return false;
47 }
48
49 bool mod_key_press_timer (uint16_t code, uint16_t mod_code, bool pressed) {
50   static uint16_t this_timer;
51   if(pressed) {
52       this_timer= timer_read();
53   } else {
54       if (timer_elapsed(this_timer) < TAPPING_TERM){
55           register_code(code);
56           unregister_code(code);
57       } else {
58           register_code(mod_code);
59           register_code(code);
60           unregister_code(code);
61           unregister_code(mod_code);
62       }
63   }
64   return false;
65 }
66
67 bool mod_key_press (uint16_t code, uint16_t mod_code, bool pressed, uint16_t this_timer) {
68   if(pressed) {
69       this_timer= timer_read();
70   } else {
71       if (timer_elapsed(this_timer) < TAPPING_TERM){
72           register_code(code);
73           unregister_code(code);
74       } else {
75           register_code(mod_code);
76           register_code(code);
77           unregister_code(code);
78           unregister_code(mod_code);
79       }
80   }
81   return false;
82 }
83
84 // Add reconfigurable functions here, for keymap customization
85 // This allows for a global, userspace functions, and continued
86 // customization of the keymap.  Use _keymap instead of _user
87 // functions in the keymaps
88 __attribute__ ((weak))
89 void matrix_init_keymap(void) {}
90
91 __attribute__ ((weak))
92 void startup_keymap(void) {}
93
94 __attribute__ ((weak))
95 void shutdown_keymap(void) {}
96
97 __attribute__ ((weak))
98 void suspend_power_down_keymap(void) {}
99
100 __attribute__ ((weak))
101 void suspend_wakeup_init_keymap(void) {}
102
103 __attribute__ ((weak))
104 void matrix_scan_keymap(void) {}
105
106 __attribute__ ((weak))
107 bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
108   return true;
109 }
110
111 __attribute__ ((weak))
112 bool process_record_secrets(uint16_t keycode, keyrecord_t *record) {
113   return true;
114 }
115
116
117 __attribute__ ((weak))
118 uint32_t layer_state_set_keymap (uint32_t state) {
119   return state;
120 }
121
122 __attribute__ ((weak))
123 uint32_t default_layer_state_set_keymap (uint32_t state) {
124   return state;
125 }
126
127 __attribute__ ((weak))
128 void led_set_keymap(uint8_t usb_led) {}
129
130 __attribute__ ((weak))
131 void eeconfig_init_keymap(void) {}
132
133 // Call user matrix init, set default RGB colors and then
134 // call the keymap's init function
135 void matrix_init_user(void) {
136   userspace_config.raw = eeconfig_read_user();
137
138 #ifdef BOOTLOADER_CATERINA
139   DDRD &= ~(1<<5);
140   PORTD &= ~(1<<5);
141
142   DDRB &= ~(1<<0);
143   PORTB &= ~(1<<0);
144 #endif
145
146 #if (defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE))
147   if (eeprom_read_byte(EECONFIG_UNICODEMODE) != UC_WIN) {
148     set_unicode_input_mode(UC_WIN);
149   }
150 #endif //UNICODE_ENABLE
151   matrix_init_keymap();
152 }
153
154 void startup_user (void) {
155   #ifdef RGBLIGHT_ENABLE
156     matrix_init_rgb();
157   #endif //RGBLIGHT_ENABLE
158   startup_keymap();
159 }
160
161 void shutdown_user (void) {
162 #ifdef RGBLIGHT_ENABLE
163   rgblight_enable_noeeprom();
164   rgblight_mode_noeeprom(1);
165   rgblight_setrgb_red();
166 #endif // RGBLIGHT_ENABLE
167 #ifdef RGB_MATRIX_ENABLE
168   rgb_led led;
169   for (int i = 0; i < DRIVER_LED_TOTAL; i++) {
170     led = g_rgb_leds[i];
171     if (led.matrix_co.raw < 0xFF) {
172       rgb_matrix_set_color( i, 0xFF, 0x00, 0x00 );
173     }
174   }
175 #endif //RGB_MATRIX_ENABLE
176   shutdown_keymap();
177 }
178
179 void suspend_power_down_user(void) {
180     suspend_power_down_keymap();
181 }
182
183 void suspend_wakeup_init_user(void) {
184   suspend_wakeup_init_keymap();
185 }
186
187
188 // No global matrix scan code, so just run keymap's matrix
189 // scan function
190 void matrix_scan_user(void) {
191   static bool has_ran_yet;
192   if (!has_ran_yet) {
193     has_ran_yet = true;
194     startup_user();
195   }
196
197 #ifdef TAP_DANCE_ENABLE  // Run Diablo 3 macro checking code.
198   run_diablo_macro_check();
199 #endif // TAP_DANCE_ENABLE
200
201 #ifdef RGBLIGHT_ENABLE
202   matrix_scan_rgb();
203 #endif // RGBLIGHT_ENABLE
204
205   matrix_scan_keymap();
206 }
207
208
209
210
211 // Defines actions tor my global custom keycodes. Defined in drashna.h file
212 // Then runs the _keymap's record handier if not processed here
213 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
214
215   // If console is enabled, it will print the matrix position and status of each key pressed
216 #ifdef KEYLOGGER_ENABLE
217   #if defined(KEYBOARD_ergodox_ez) || defined(KEYBOARD_iris_rev2)
218     xprintf("KL: col: %u, row: %u, pressed: %u\n", record->event.key.row, record->event.key.col, record->event.pressed);
219   #else
220     xprintf("KL: col: %u, row: %u, pressed: %u\n", record->event.key.col, record->event.key.row, record->event.pressed);
221   #endif
222 #endif //KEYLOGGER_ENABLE
223
224   switch (keycode) {
225   case KC_QWERTY:
226     if (record->event.pressed) {
227       set_single_persistent_default_layer(_QWERTY);
228     }
229     break;
230   case KC_COLEMAK:
231     if (record->event.pressed) {
232       set_single_persistent_default_layer(_COLEMAK);
233     }
234     break;
235   case KC_DVORAK:
236     if (record->event.pressed) {
237       set_single_persistent_default_layer(_DVORAK);
238     }
239     break;
240   case KC_WORKMAN:
241     if (record->event.pressed) {
242       set_single_persistent_default_layer(_WORKMAN);
243     }
244     break;
245
246
247   case KC_MAKE:  // Compiles the firmware, and adds the flash command based on keyboard bootloader
248     if (!record->event.pressed) {
249       uint8_t temp_mod = get_mods();
250       clear_mods();
251       send_string_with_delay_P(PSTR("make " QMK_KEYBOARD ":" QMK_KEYMAP), 10);
252       if (temp_mod & MODS_SHIFT_MASK) {
253         #if defined(__ARM__)
254           send_string_with_delay_P(PSTR(":dfu-util"), 10);
255         #elif defined(BOOTLOADER_DFU)
256           send_string_with_delay_P(PSTR(":dfu"), 10);
257         #elif defined(BOOTLOADER_HALFKAY)
258           send_string_with_delay_P(PSTR(":teensy"), 10);
259         #elif defined(BOOTLOADER_CATERINA)
260           send_string_with_delay_P(PSTR(":avrdude"), 10);
261         #endif // bootloader options
262       }
263       #if defined(KEYBOARD_viterbi)
264         send_string_with_delay_P(PSTR(":dfu"), 10);
265       #endif
266       if (temp_mod & MODS_CTRL_MASK) { send_string_with_delay_P(PSTR(" -j8 --output-sync"), 10); }
267       send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), 10);
268       set_mods(temp_mod);
269     }
270     break;
271
272   case EPRM: // Resets EEPROM
273     if (record->event.pressed) {
274       eeconfig_init();
275     }
276     break;
277   case VRSN: // Prints firmware version
278     if (record->event.pressed) {
279       send_string_with_delay_P(PSTR(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION ", Built on: " QMK_BUILDDATE), MACRO_TIMER);
280     }
281     break;
282
283 // These are a serious of gaming macros.
284 // Only enables for the viterbi, basically,
285 // to save on firmware space, since it's limited.
286 #ifdef MACROS_ENABLED
287   case KC_OVERWATCH: // Toggle's if we hit "ENTER" or "BACKSPACE" to input macros
288     if (record->event.pressed) { userspace_config.is_overwatch ^= 1; eeconfig_update_user(userspace_config.raw); }
289 #ifdef RGBLIGHT_ENABLE
290     userspace_config.is_overwatch ? rgblight_mode_noeeprom(17) : rgblight_mode_noeeprom(18);
291 #endif //RGBLIGHT_ENABLE
292     break;
293   case KC_SALT:
294     return send_game_macro("Salt, salt, salt...", record, false);
295   case KC_MORESALT:
296     return  send_game_macro("Please sir, can I have some more salt?!", record, false);
297   case KC_SALTHARD:
298     return send_game_macro("Your salt only makes me harder, and even more aggressive!", record, false);
299   case KC_GOODGAME:
300     return send_game_macro("Good game, everyone!", record, false);
301   case KC_GLHF:
302     return send_game_macro("Good luck, have fun!!!", record, false);
303   case KC_SYMM:
304     return send_game_macro("Left click to win!", record, false);
305   case KC_JUSTGAME:
306     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);
307   case KC_TORB:
308     return send_game_macro("That was positively riveting!", record, false);
309   case KC_AIM:
310     send_game_macro("That aim is absolutely amazing. It's almost like you're a machine!", record, true);
311     return send_game_macro("Wait! That aim is TOO good!  You're clearly using an aim hack! CHEATER!", record, false);
312   case KC_C9:
313     return send_game_macro("OMG!!!  C9!!!", record, false);
314   case KC_GGEZ:
315     return send_game_macro("That was a fantastic game, though it was a bit easy. Try harder next time!", record, false);
316 #endif // MACROS_ENABLED
317
318
319   case KC_DIABLO_CLEAR:  // reset all Diablo timers, disabling them
320 #ifdef TAP_DANCE_ENABLE
321     if (record->event.pressed) {
322       uint8_t dtime;
323       for (dtime = 0; dtime < 4; dtime++) {
324         diablo_key_time[dtime] = diablo_times[0];
325       }
326     }
327 #endif // TAP_DANCE_ENABLE
328     break;
329
330
331   case KC_CCCV:                                    // One key copy/paste
332     if(record->event.pressed){
333       copy_paste_timer = timer_read();
334     } else {
335       if (timer_elapsed(copy_paste_timer) > TAPPING_TERM) {   // Hold, copy
336         register_code(KC_LCTL);
337         tap_code(KC_C);
338         unregister_code(KC_LCTL);
339       } else {                                // Tap, paste
340         register_code(KC_LCTL);
341         tap_code(KC_V);
342         unregister_code(KC_LCTL);
343       }
344     }
345     break;
346 #ifdef UNICODE_ENABLE
347   case UC_FLIP: // (ノಠ痊ಠ)ノ彡┻━┻
348     if (record->event.pressed) {
349       send_unicode_hex_string("0028 30CE 0CA0 75CA 0CA0 0029 30CE 5F61 253B 2501 253B");
350     }
351     break;
352   case UC_TABL: // ┬─┬ノ( º _ ºノ)
353     if (record->event.pressed) {
354       send_unicode_hex_string("252C 2500 252C 30CE 0028 0020 00BA 0020 005F 0020 00BA 30CE 0029");
355     }
356     break;
357   case UC_SHRG: // ¯\_(ツ)_/¯
358     if (record->event.pressed) {
359       send_unicode_hex_string("00AF 005C 005F 0028 30C4 0029 005F 002F 00AF");
360     }
361     break;
362   case UC_DISA: // ಠ_ಠ
363     if (record->event.pressed) {
364       send_unicode_hex_string("0CA0 005F 0CA0");
365     }
366     break;
367 #endif
368   }
369   return process_record_keymap(keycode, record) &&
370 #ifdef RGBLIGHT_ENABLE
371     process_record_user_rgb(keycode, record) &&
372 #endif // RGBLIGHT_ENABLE
373     process_record_secrets(keycode, record);
374 }
375
376
377
378 // Runs state check and changes underglow color and animation
379 // on layer change, no matter where the change was initiated
380 // Then runs keymap's layer change check
381 uint32_t layer_state_set_user(uint32_t state) {
382   state = update_tri_layer_state(state, _RAISE, _LOWER, _ADJUST);
383 #ifdef RGBLIGHT_ENABLE
384   state = layer_state_set_rgb(state);
385 #endif // RGBLIGHT_ENABLE
386   return layer_state_set_keymap (state);
387 }
388
389
390 uint32_t default_layer_state_set_user(uint32_t state) {
391   return default_layer_state_set_keymap(state);
392 }
393
394
395 // Any custom LED code goes here.
396 // So far, I only have keyboard specific code,
397 // So nothing goes here.
398 void led_set_user(uint8_t usb_led) {
399   led_set_keymap(usb_led);
400 }
401
402 void eeconfig_init_user(void) {
403   userspace_config.raw = 0;
404   userspace_config.rgb_layer_change = true;
405   eeconfig_update_user(userspace_config.raw);
406 }
407
408 void bootmagic_lite(void) {
409   matrix_scan();
410   #if defined(DEBOUNCING_DELAY) && DEBOUNCING_DELAY > 0
411     wait_ms(DEBOUNCING_DELAY * 2);
412   #elif defined(DEBOUNCE) && DEBOUNCE > 0
413     wait_ms(DEBOUNCE * 2);
414   #else
415     wait_ms(30);
416   #endif
417   matrix_scan();
418
419   if (matrix_get_row(BOOTMAGIC_LITE_ROW) & (1 << BOOTMAGIC_LITE_COLUMN)) {
420     bootloader_jump();
421   }
422 }