keymap.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /* Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "drashna.h"
  17. uint8_t is_master;
  18. #ifndef UNICODE_ENABLE
  19. # define UC(x) KC_NO
  20. #endif
  21. /*
  22. * The `LAYOUT_kyria_base` macro is a template to allow the use of identical
  23. * modifiers for the default layouts (eg QWERTY, Colemak, Dvorak, etc), so
  24. * that there is no need to set them up for each layout, and modify all of
  25. * them if I want to change them. This helps to keep consistency and ease
  26. * of use. K## is a placeholder to pass through the individual keycodes
  27. */
  28. // clang-format off
  29. #define LAYOUT_kyria_base( \
  30. K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, \
  31. K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, \
  32. K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A \
  33. ) \
  34. LAYOUT_wrapper( \
  35. KC_ESC, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, KC_MINS, \
  36. LALT_T(KC_TAB), K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, RALT_T(KC_QUOT), \
  37. OS_LSFT, CTL_T(K21), K22, K23, K24, K25, TG(_GAMEPAD), MEH(KC_MINS), TG(_DIABLO), KC_CAPS, K26, K27, K28, K29, RCTL_T(K2A), OS_RSFT, \
  38. KC_MUTE, OS_LALT, KC_GRV, KC_SPC, BK_LWER, DL_RAIS, KC_ENT, OS_RGUI, UC(0x03A8), UC(0x2E2E) \
  39. )
  40. /* Re-pass though to allow templates to be used */
  41. #define LAYOUT_kyria_base_wrapper(...) LAYOUT_kyria_base(__VA_ARGS__)
  42. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  43. [_QWERTY] = LAYOUT_kyria_base_wrapper(
  44. _________________QWERTY_L1_________________, _________________QWERTY_R1_________________,
  45. _________________QWERTY_L2_________________, _________________QWERTY_R2_________________,
  46. _________________QWERTY_L3_________________, _________________QWERTY_R3_________________
  47. ),
  48. [_COLEMAK] = LAYOUT_kyria_base_wrapper(
  49. _________________COLEMAK_L1________________, _________________COLEMAK_R1________________,
  50. _________________COLEMAK_L2________________, _________________COLEMAK_R2________________,
  51. _________________COLEMAK_L3________________, _________________COLEMAK_R3________________
  52. ),
  53. [_DVORAK] = LAYOUT_kyria_base_wrapper(
  54. _________________DVORAK_L1_________________, _________________DVORAK_R1_________________,
  55. _________________DVORAK_L2_________________, _________________DVORAK_R2_________________,
  56. _________________DVORAK_L3_________________, _________________DVORAK_R3_________________
  57. ),
  58. [_WORKMAN] = LAYOUT_kyria_base_wrapper(
  59. _________________WORKMAN_L1________________, _________________WORKMAN_R1________________,
  60. _________________WORKMAN_L2________________, _________________WORKMAN_R2________________,
  61. _________________WORKMAN_L3________________, _________________WORKMAN_R3________________
  62. ),
  63. [_NORMAN] = LAYOUT_kyria_base_wrapper(
  64. _________________NORMAN_L1_________________, _________________NORMAN_L1_________________,
  65. _________________NORMAN_L2_________________, _________________NORMAN_R2_________________,
  66. _________________NORMAN_L3_________________, _________________NORMAN_R3_________________
  67. ),
  68. [_MALTRON] = LAYOUT_kyria_base_wrapper(
  69. _________________MALTRON_L1________________, _________________MALTRON_R1________________,
  70. _________________MALTRON_L2________________, _________________MALTRON_R2________________,
  71. _________________MALTRON_L3________________, _________________MALTRON_R3________________
  72. ),
  73. [_EUCALYN] = LAYOUT_kyria_base_wrapper(
  74. _________________EUCALYN_L1________________, _________________EUCALYN_R1________________,
  75. _________________EUCALYN_L2________________, _________________EUCALYN_R2________________,
  76. _________________EUCALYN_L3________________, _________________EUCALYN_R3________________
  77. ),
  78. [_CARPLAX] = LAYOUT_kyria_base_wrapper(
  79. _____________CARPLAX_QFMLWY_L1_____________, _____________CARPLAX_QFMLWY_R1_____________,
  80. _____________CARPLAX_QFMLWY_L2_____________, _____________CARPLAX_QFMLWY_R2_____________,
  81. _____________CARPLAX_QFMLWY_L3_____________, _____________CARPLAX_QFMLWY_R3_____________
  82. ),
  83. [_MODS] = LAYOUT_wrapper(
  84. _______, ___________________BLANK___________________, ___________________BLANK___________________, _______,
  85. _______, ___________________BLANK___________________, ___________________BLANK___________________, _______,
  86. KC_LSFT, ___________________BLANK___________________, _______, _______, _______, _______, ___________________BLANK___________________, KC_RSFT,
  87. _______, _______, KC_LALT, _______, _______, _______, _______, KC_RGUI, _______, _______
  88. ),
  89. [_GAMEPAD] = LAYOUT_wrapper(
  90. KC_ESC, KC_K, KC_Q, KC_W, KC_E, KC_R, _______, _______, _______, _______, _______, _______,
  91. KC_TAB, KC_G, KC_A, KC_S, KC_D, KC_F, _______, _______, _______, _______, _______, _______,
  92. KC_LCTL, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, _______, _______, _______, LALT(KC_PSCR), _______, _______, _______, _______, _______, _______,
  93. _______, MAGIC_TOGGLE_NKRO, KC_V, KC_SPC, KC_H, _______, _______, _______, _______, _______
  94. ),
  95. [_DIABLO] = LAYOUT_wrapper(
  96. KC_ESC, KC_S, KC_I, KC_F, KC_M, KC_T, KC_F9, KC_F10, KC_F11, KC_F12, KC_NO, KC_NO,
  97. KC_TAB, KC_1, KC_2, KC_3, KC_4, KC_G, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
  98. KC_LCTL, KC_D3_1, KC_D3_2, KC_D3_3, KC_D3_4, KC_Z, KC_J, KC_L, TG(_DIABLO), KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
  99. KC_DIABLO_CLEAR, KC_J, KC_NO, SFT_T(KC_SPACE), ALT_T(KC_Q), KC_NO, KC_NO, KC_NO, KC_NO, KC_NO
  100. ),
  101. [_LOWER] = LAYOUT_wrapper(
  102. KC_F12, _________________LOWER_L1__________________, _________________LOWER_R1__________________, KC_F11,
  103. _______, _________________LOWER_L2__________________, _________________LOWER_R2__________________, KC_PIPE,
  104. _______, _________________LOWER_L3__________________, _______, _______, _______, _______, _________________LOWER_R3__________________, _______,
  105. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  106. ),
  107. [_RAISE] = LAYOUT_wrapper(
  108. KC_F12, _________________RAISE_L1__________________, _________________RAISE_R1__________________, KC_F11,
  109. _______, _________________RAISE_L2__________________, _________________RAISE_R2__________________, KC_BSLS,
  110. _______, _________________RAISE_L3__________________, _______, _______, _______, _______, _________________RAISE_R3__________________, _______,
  111. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  112. ),
  113. [_ADJUST] = LAYOUT_wrapper(
  114. KC_MAKE, _________________ADJUST_L1_________________, _________________ADJUST_R1_________________, KC_RESET,
  115. VRSN, _________________ADJUST_L2_________________, _________________ADJUST_R2_________________, EEP_RST,
  116. _______, _________________ADJUST_L3_________________, HPT_TOG, HPT_FBK, MG_NKRO, UC_MOD, _________________ADJUST_R3_________________, TG_MODS,
  117. _______, _______, _______, KC_NUKE, _______, _______, _______, _______, _______, _______
  118. ),
  119. // [_LAYERINDEX] = LAYOUT_wrapper(
  120. // _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  121. // _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  122. // _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  123. // _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  124. // ),
  125. };
  126. // clang-format on
  127. bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
  128. if (record->event.pressed) {
  129. #ifndef SPLIT_KEYBOARD
  130. if (keycode == RESET && !is_master) {
  131. return false;
  132. }
  133. #endif
  134. }
  135. return true;
  136. }
  137. void matrix_init_keymap(void) { is_master = (uint8_t)is_keyboard_master(); }
  138. #ifdef OLED_DRIVER_ENABLE
  139. oled_rotation_t oled_init_user(oled_rotation_t rotation) { return OLED_ROTATION_180; }
  140. // clang-format off
  141. # ifndef SPLIT_TRANSPORT_MIRROR
  142. void oled_driver_render_logo(void) {
  143. static const char PROGMEM kyria_logo[] = {
  144. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,128,192,224,240,112,120, 56, 60, 28, 30, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 14, 30, 28, 60, 56,120,112,240,224,192,128,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  145. 0, 0, 0, 0, 0, 0, 0,192,224,240,124, 62, 31, 15, 7, 3, 1,128,192,224,240,120, 56, 60, 28, 30, 14, 14, 7, 7,135,231,127, 31,255,255, 31,127,231,135, 7, 7, 14, 14, 30, 28, 60, 56,120,240,224,192,128, 1, 3, 7, 15, 31, 62,124,240,224,192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  146. 0, 0, 0, 0,240,252,255, 31, 7, 1, 0, 0,192,240,252,254,255,247,243,177,176, 48, 48, 48, 48, 48, 48, 48,120,254,135, 1, 0, 0,255,255, 0, 0, 1,135,254,120, 48, 48, 48, 48, 48, 48, 48,176,177,243,247,255,254,252,240,192, 0, 0, 1, 7, 31,255,252,240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  147. 0, 0, 0,255,255,255, 0, 0, 0, 0, 0,254,255,255, 1, 1, 7, 30,120,225,129,131,131,134,134,140,140,152,152,177,183,254,248,224,255,255,224,248,254,183,177,152,152,140,140,134,134,131,131,129,225,120, 30, 7, 1, 1,255,255,254, 0, 0, 0, 0, 0,255,255,255, 0, 0, 0, 0,255,255, 0, 0,192,192, 48, 48, 0, 0,240,240, 0, 0, 0, 0, 0, 0,240,240, 0, 0,240,240,192,192, 48, 48, 48, 48,192,192, 0, 0, 48, 48,243,243, 0, 0, 0, 0, 0, 0, 48, 48, 48, 48, 48, 48,192,192, 0, 0, 0, 0, 0,
  148. 0, 0, 0,255,255,255, 0, 0, 0, 0, 0,127,255,255,128,128,224,120, 30,135,129,193,193, 97, 97, 49, 49, 25, 25,141,237,127, 31, 7,255,255, 7, 31,127,237,141, 25, 25, 49, 49, 97, 97,193,193,129,135, 30,120,224,128,128,255,255,127, 0, 0, 0, 0, 0,255,255,255, 0, 0, 0, 0, 63, 63, 3, 3, 12, 12, 48, 48, 0, 0, 0, 0, 51, 51, 51, 51, 51, 51, 15, 15, 0, 0, 63, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 48, 63, 63, 48, 48, 0, 0, 12, 12, 51, 51, 51, 51, 51, 51, 63, 63, 0, 0, 0, 0, 0,
  149. 0, 0, 0, 0, 15, 63,255,248,224,128, 0, 0, 3, 15, 63,127,255,239,207,141, 13, 12, 12, 12, 12, 12, 12, 12, 30,127,225,128, 0, 0,255,255, 0, 0,128,225,127, 30, 12, 12, 12, 12, 12, 12, 12, 13,141,207,239,255,127, 63, 15, 3, 0, 0,128,224,248,255, 63, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  150. 0, 0, 0, 0, 0, 0, 0, 3, 7, 15, 62,124,248,240,224,192,128, 1, 3, 7, 15, 30, 28, 60, 56,120,112,112,224,224,225,231,254,248,255,255,248,254,231,225,224,224,112,112,120, 56, 60, 28, 30, 15, 7, 3, 1,128,192,224,240,248,124, 62, 15, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  151. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 7, 15, 14, 30, 28, 60, 56,120,112,112,112,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,112,112,112,120, 56, 60, 28, 30, 14, 15, 7, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  152. };
  153. oled_write_raw_P(kyria_logo, sizeof(kyria_logo));
  154. }
  155. # endif
  156. #endif
  157. #ifdef ENCODER_ENABLE
  158. void encoder_update_user(uint8_t index, bool clockwise) {
  159. if (index == 0) {
  160. // Volume control
  161. if (clockwise) {
  162. tap_code(KC_VOLU);
  163. } else {
  164. tap_code(KC_VOLD);
  165. }
  166. } else if (index == 1) {
  167. // Page up/Page down
  168. if (clockwise) {
  169. tap_code(KC_PGDN);
  170. } else {
  171. tap_code(KC_PGUP);
  172. }
  173. }
  174. }
  175. #endif
  176. #ifdef RGBLIGHT_LAYERS
  177. const rgblight_segment_t PROGMEM shift_layers[] = RGBLIGHT_LAYER_SEGMENTS(
  178. { 8, 1, 120, 255, 255},
  179. { 18, 1, 120, 255, 255}
  180. );
  181. const rgblight_segment_t PROGMEM control_layers[] = RGBLIGHT_LAYER_SEGMENTS(
  182. { 6, 1, 0, 255, 255},
  183. { 16, 1, 0, 255, 255}
  184. );
  185. const rgblight_segment_t PROGMEM alt_layers[] = RGBLIGHT_LAYER_SEGMENTS(
  186. { 2, 1, 240, 255, 255},
  187. { 17, 1, 250, 255, 255}
  188. );
  189. const rgblight_segment_t PROGMEM gui_layers[] = RGBLIGHT_LAYER_SEGMENTS(
  190. { 7, 1, 51, 255, 255},
  191. { 12, 1, 51, 255, 255}
  192. );
  193. const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST(
  194. shift_layers,
  195. control_layers,
  196. alt_layers,
  197. gui_layers
  198. );
  199. void keyboard_post_init_keymap(void) {
  200. rgblight_layers = my_rgb_layers;
  201. }
  202. void matrix_scan_keymap(void) {
  203. uint8_t mods = mod_config(get_mods()|get_oneshot_mods());
  204. rgblight_set_layer_state(0, mods & MOD_MASK_SHIFT);
  205. rgblight_set_layer_state(1, mods & MOD_MASK_CTRL);
  206. rgblight_set_layer_state(2, mods & MOD_MASK_ALT);
  207. rgblight_set_layer_state(3, mods & MOD_MASK_GUI);
  208. }
  209. #endif