You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
6.3 KiB

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