process_records.c 6.7 KB

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