keymap.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. /*
  18. * The `LAYOUT_kyria_base` macro is a template to allow the use of identical
  19. * modifiers for the default layouts (eg QWERTY, Colemak, Dvorak, etc), so
  20. * that there is no need to set them up for each layout, and modify all of
  21. * them if I want to change them. This helps to keep consistency and ease
  22. * of use. K## is a placeholder to pass through the individual keycodes
  23. */
  24. // clang-format off
  25. #define LAYOUT_wrapper(...) LAYOUT(__VA_ARGS__)
  26. #define LAYOUT_kyria_base( \
  27. K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, \
  28. K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, \
  29. K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A \
  30. ) \
  31. LAYOUT_wrapper( \
  32. KC_ESC, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, KC_MINS, \
  33. LALT_T(KC_TAB), K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, RALT_T(K1B), \
  34. OS_LSFT, CTL_T(K21), K22, K23, K24, K25, TG_GAME, MEH(KC_MINS), TG_DBLO, KC_CAPS, K26, K27, K28, K29, RCTL_T(K2A), OS_RSFT, \
  35. KC_MUTE, OS_LALT, KC_GRV, KC_SPC, BK_LWER, DL_RAIS, KC_ENT, OS_RGUI, UC(0x03A8), UC(0x2E2E) \
  36. )
  37. /* Re-pass though to allow templates to be used */
  38. #define LAYOUT_kyria_base_wrapper(...) LAYOUT_kyria_base(__VA_ARGS__)
  39. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  40. [_QWERTY] = LAYOUT_kyria_base_wrapper(
  41. _________________QWERTY_L1_________________, _________________QWERTY_R1_________________,
  42. _________________QWERTY_L2_________________, _________________QWERTY_R2_________________,
  43. _________________QWERTY_L3_________________, _________________QWERTY_R3_________________
  44. ),
  45. [_COLEMAK] = LAYOUT_kyria_base_wrapper(
  46. _________________COLEMAK_L1________________, _________________COLEMAK_R1________________,
  47. _________________COLEMAK_L2________________, _________________COLEMAK_R2________________,
  48. _________________COLEMAK_L3________________, _________________COLEMAK_R3________________
  49. ),
  50. [_DVORAK] = LAYOUT_kyria_base_wrapper(
  51. _________________DVORAK_L1_________________, _________________DVORAK_R1_________________,
  52. _________________DVORAK_L2_________________, _________________DVORAK_R2_________________,
  53. _________________DVORAK_L3_________________, _________________DVORAK_R3_________________
  54. ),
  55. [_WORKMAN] = LAYOUT_kyria_base_wrapper(
  56. _________________WORKMAN_L1________________, _________________WORKMAN_R1________________,
  57. _________________WORKMAN_L2________________, _________________WORKMAN_R2________________,
  58. _________________WORKMAN_L3________________, _________________WORKMAN_R3________________
  59. ),
  60. [_NORMAN] = LAYOUT_kyria_base_wrapper(
  61. _________________NORMAN_L1_________________, _________________NORMAN_L1_________________,
  62. _________________NORMAN_L2_________________, _________________NORMAN_R2_________________,
  63. _________________NORMAN_L3_________________, _________________NORMAN_R3_________________
  64. ),
  65. [_MALTRON] = LAYOUT_kyria_base_wrapper(
  66. _________________MALTRON_L1________________, _________________MALTRON_R1________________,
  67. _________________MALTRON_L2________________, _________________MALTRON_R2________________,
  68. _________________MALTRON_L3________________, _________________MALTRON_R3________________
  69. ),
  70. [_EUCALYN] = LAYOUT_kyria_base_wrapper(
  71. _________________EUCALYN_L1________________, _________________EUCALYN_R1________________,
  72. _________________EUCALYN_L2________________, _________________EUCALYN_R2________________,
  73. _________________EUCALYN_L3________________, _________________EUCALYN_R3________________
  74. ),
  75. [_CARPLAX] = LAYOUT_kyria_base_wrapper(
  76. _____________CARPLAX_QFMLWY_L1_____________, _____________CARPLAX_QFMLWY_R1_____________,
  77. _____________CARPLAX_QFMLWY_L2_____________, _____________CARPLAX_QFMLWY_R2_____________,
  78. _____________CARPLAX_QFMLWY_L3_____________, _____________CARPLAX_QFMLWY_R3_____________
  79. ),
  80. [_GAMEPAD] = LAYOUT_wrapper(
  81. KC_ESC, KC_K, KC_Q, KC_W, KC_E, KC_R, _______, _______, _______, _______, _______, _______,
  82. KC_TAB, KC_G, KC_A, KC_S, KC_D, KC_F, _______, _______, _______, _______, _______, _______,
  83. KC_LCTL, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, _______, _______, _______, LALT(KC_PSCR), _______, _______, _______, _______, _______, _______,
  84. _______, MAGIC_TOGGLE_NKRO, KC_V, KC_SPC, KC_H, _______, _______, _______, _______, _______
  85. ),
  86. [_DIABLO] = LAYOUT_wrapper(
  87. KC_ESC, KC_S, KC_I, KC_F, KC_M, KC_T, KC_F9, KC_F10, KC_F11, KC_F12, KC_NO, KC_NO,
  88. KC_TAB, KC_1, KC_2, KC_3, KC_4, KC_G, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
  89. KC_LCTL, KC_D3_1, KC_D3_2, KC_D3_3, KC_D3_4, KC_Z, KC_J, KC_L, TG_DBLO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
  90. 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
  91. ),
  92. [_LOWER] = LAYOUT_wrapper(
  93. KC_F12, _________________LOWER_L1__________________, _________________LOWER_R1__________________, KC_F11,
  94. _______, _________________LOWER_L2__________________, _________________LOWER_R2__________________, KC_PIPE,
  95. _______, _________________LOWER_L3__________________, _______, _______, _______, _______, _________________LOWER_R3__________________, _______,
  96. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  97. ),
  98. [_RAISE] = LAYOUT_wrapper(
  99. KC_F12, _________________RAISE_L1__________________, _________________RAISE_R1__________________, KC_F11,
  100. _______, _________________RAISE_L2__________________, _________________RAISE_R2__________________, KC_BSLS,
  101. _______, _________________RAISE_L3__________________, _______, _______, _______, _______, _________________RAISE_R3__________________, _______,
  102. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  103. ),
  104. [_ADJUST] = LAYOUT_wrapper(
  105. KC_MAKE, _________________ADJUST_L1_________________, _________________ADJUST_R1_________________, KC_RESET,
  106. VRSN, _________________ADJUST_L2_________________, _________________ADJUST_R2_________________, EEP_RST,
  107. _______, _________________ADJUST_L3_________________, HPT_TOG, HPT_FBK, MG_NKRO, UC_MOD, _________________ADJUST_R3_________________, TG_MODS,
  108. _______, _______, _______, KC_NUKE, _______, _______, _______, _______, _______, _______
  109. ),
  110. // [_LAYERINDEX] = LAYOUT_wrapper(
  111. // _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  112. // _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  113. // _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  114. // _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  115. // ),
  116. };
  117. // clang-format on
  118. #ifdef OLED_DRIVER_ENABLE
  119. oled_rotation_t oled_init_user(oled_rotation_t rotation) { return OLED_ROTATION_180; }
  120. #endif
  121. #ifdef ENCODER_ENABLE
  122. bool encoder_update_user(uint8_t index, bool clockwise) {
  123. if (index == 0) {
  124. // Volume control
  125. if (clockwise) {
  126. tap_code(KC_VOLU);
  127. } else {
  128. tap_code(KC_VOLD);
  129. }
  130. } else if (index == 1) {
  131. // Page up/Page down
  132. if (clockwise) {
  133. tap_code(KC_PGDN);
  134. } else {
  135. tap_code(KC_PGUP);
  136. }
  137. }
  138. return true;
  139. }
  140. #endif
  141. #ifdef RGBLIGHT_LAYERS
  142. const rgblight_segment_t PROGMEM shift_layers[] = RGBLIGHT_LAYER_SEGMENTS(
  143. { 8, 1, 120, 255, 255},
  144. { 18, 1, 120, 255, 255}
  145. );
  146. const rgblight_segment_t PROGMEM control_layers[] = RGBLIGHT_LAYER_SEGMENTS(
  147. { 6, 1, 0, 255, 255},
  148. { 16, 1, 0, 255, 255}
  149. );
  150. const rgblight_segment_t PROGMEM alt_layers[] = RGBLIGHT_LAYER_SEGMENTS(
  151. { 2, 1, 240, 255, 255},
  152. { 17, 1, 250, 255, 255}
  153. );
  154. const rgblight_segment_t PROGMEM gui_layers[] = RGBLIGHT_LAYER_SEGMENTS(
  155. { 7, 1, 51, 255, 255},
  156. { 12, 1, 51, 255, 255}
  157. );
  158. const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST(
  159. shift_layers,
  160. control_layers,
  161. alt_layers,
  162. gui_layers
  163. );
  164. void keyboard_post_init_keymap(void) {
  165. rgblight_layers = my_rgb_layers;
  166. }
  167. void matrix_scan_keymap(void) {
  168. uint8_t mods = mod_config(get_mods()|get_oneshot_mods());
  169. rgblight_set_layer_state(0, mods & MOD_MASK_SHIFT);
  170. rgblight_set_layer_state(1, mods & MOD_MASK_CTRL);
  171. rgblight_set_layer_state(2, mods & MOD_MASK_ALT);
  172. rgblight_set_layer_state(3, mods & MOD_MASK_GUI);
  173. }
  174. #endif