process_records.c 6.2 KB

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