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.

293 lines
14 KiB

  1. #pragma once
  2. /*
  3. Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  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. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #include "core_keys.h"
  16. /********************************************************************/
  17. /** Parts are parts, pieces of keysets so we have some decent **/
  18. /** building blocks to make keymaps with. **/
  19. /********************************************************************/
  20. // Since our quirky block definitions are basically a list of comma separated
  21. // arguments, we need a wrapper in order for these definitions to be
  22. // expanded before being used as arguments to the LAYOUT_xxx macro.
  23. #if (!defined(LAYOUT) && defined(KEYMAP))
  24. #define LAYOUT KEYMAP
  25. #endif
  26. #define LAYOUT_ergodox_wrapper(...) LAYOUT_ergodox(__VA_ARGS__)
  27. #define LAYOUT_ergodox_pretty_wrapper(...) LAYOUT_ergodox_pretty(__VA_ARGS__)
  28. #define KEYMAP_wrapper(...) LAYOUT(__VA_ARGS__)
  29. #define LAYOUT_wrapper(...) LAYOUT(__VA_ARGS__)
  30. #define LAYOUT_ortho_5x15_wrapper(...) LAYOUT_ortho_5x15(__VA_ARGS__)
  31. #define LAYOUT_ortho_5x14_wrapper(...) LAYOUT_ortho_5x14(__VA_ARGS__)
  32. /********************************************************************/
  33. /** The Core rows of each given layout. **/
  34. /********************************************************************/
  35. //Dvorak on a qwerty software layer in the OS
  36. #define ___DVORAK_L1___ KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y
  37. #define ___DVORAK_L2___ KC_SFT_T_A, KC_LT_KP_O, KC_LT_MDIA_E, KC_LT_SYMB_U, KC_I
  38. #define ___DVORAK_L3___ KC_SCLN, KC_Q, KC_J, KC_K, KC_X
  39. #define ___DVORAK_R1___ KC_F, KC_G, KC_C, KC_R, KC_L
  40. #define ___DVORAK_R2___ KC_D, KC_LT_SYMB_H, KC_LT_MDIA_T, KC_LT_KP_N, KC_SFT_T_S
  41. #define ___DVORAK_R3___ KC_B, KC_M, KC_W, KC_V, KC_Z
  42. // Qwerty based layers that I don't really use.
  43. #define ___QWERTY_L1___ KC_Q, KC_W, KC_E, KC_R, KC_T
  44. #define ___QWERTY_L2___ KC_SFT_T_A, KC_S, KC_LT_MDIA_D, KC_LT_SYMB_F, KC_G
  45. #define ___QWERTY_L3___ KC_Z, KC_X, KC_C, KC_V, KC_B
  46. #define ___QWERTY_R1___ KC_Y, KC_U, KC_I, KC_O, KC_P
  47. #define ___QWERTY_R2___ KC_H, KC_LT_SYMB_J, KC_LT_MDIA_K, KC_L, KC_SFT_T_SCLN
  48. #define ___QWERTY_R3___ KC_N, KC_M, KC_COMM, KC_DOT, KC_SLASH
  49. // COLEMAK
  50. #define ___COLEMAK_L1___ KC_Q, KC_W, KC_F, KC_P, KC_G
  51. #define ___COLEMAK_L2___ KC_SFT_T_A, KC_R, KC_LT_MDIA_S, KC_LT_SYMB_T, KC_D
  52. #define ___COLEMAK_L3___ KC_Z, KC_X, KC_C, KC_V, KC_B
  53. #define ___COLEMAK_R1___ KC_J, KC_L, KC_U, KC_Y, KC_SCLN
  54. #define ___COLEMAK_R2___ KC_H, KC_LT_SYMB_N, KC_LT_MDIA_E, KC_I, KC_SFT_T_O
  55. #define ___COLEMAK_R3___ KC_K, KC_M, KC_COMM, KC_DOT, KC_SLASH
  56. // COLEMAK-DH
  57. #define ___COLEMAK_DH_L1___ KC_Q, KC_W, KC_F, KC_P, KC_B
  58. #define ___COLEMAK_DH_L2___ KC_SFT_T_A, KC_R, KC_LT_MDIA_S, KC_LT_SYMB_T, KC_G
  59. #define ___COLEMAK_DH_L3___ KC_Z, KC_X, KC_C, KC_D, KC_V
  60. #define ___COLEMAK_DH_R1___ KC_J, KC_L, KC_U, KC_Y, KC_SCLN
  61. #define ___COLEMAK_DH_R2___ KC_M, KC_LT_SYMB_N, KC_LT_MDIA_E, KC_I, KC_SFT_T_O
  62. #define ___COLEMAK_DH_R3___ KC_K, KC_H, KC_COMM, KC_DOT, KC_SLASH
  63. // WORKMAN
  64. #define ___WORKMAN_L1___ KC_Q, KC_D, KC_R, KC_W, KC_B
  65. #define ___WORKMAN_L2___ KC_SFT_T_A, KC_S, KC_LT_MDIA_H, KC_LT_SYMB_T, KC_G
  66. #define ___WORKMAN_L3___ KC_Z, KC_X, KC_M, KC_C, KC_V
  67. #define ___WORKMAN_R1___ KC_J, KC_F, KC_U, KC_P, KC_SCLN
  68. #define ___WORKMAN_R2___ KC_Y, KC_LT_SYMB_N, KC_LT_MDIA_E, KC_O, KC_SFT_T_I
  69. #define ___WORKMAN_R3___ KC_K, KC_L, KC_COMM, KC_DOT, KC_SLASH
  70. // NORMAN
  71. #define ___NORMAN_L1___ KC_Q, KC_W, KC_D, KC_F, KC_K
  72. #define ___NORMAN_L2___ KC_SFT_T_A, KC_S, KC_LT_MDIA_E, KC_LT_SYMB_T, KC_G
  73. #define ___NORMAN_L3___ KC_Z, KC_X, KC_C, KC_V, KC_B
  74. #define ___NORMAN_R1___ KC_J, KC_U, KC_R, KC_L, KC_SCLN
  75. #define ___NORMAN_R2___ KC_Y, KC_LT_SYMB_N, KC_LT_MDIA_I, KC_O, KC_SFT_T_U
  76. #define ___NORMAN_R3___ KC_P, KC_M, KC_COMM, KC_DOT, KC_SLASH
  77. // BEPO MAPS
  78. // Dvorak on fr-bepo software layer in the OS.
  79. // for dvorak and all the other qwerty like keyboards on bepo
  80. #define ___DVORAK_FR_L1___ DB_QUOT, DB_COMM, DB_DOT, BP_P, BP_Y
  81. #define ___DVORAK_FR_L2___ BP_SFT_T_A, BP_LT_KP_O, BP_LT_MDIA_E, BP_LT_SYMB_U, BP_I
  82. #define ___DVORAK_FR_L3___ DB_SCOLON, BP_Q, BP_J, BP_K, BP_X
  83. #define ___DVORAK_FR_R1___ BP_F, BP_G, BP_C, BP_R, BP_L
  84. #define ___DVORAK_FR_R2___ BP_D, BP_LT_SYMB_H, BP_LT_MDIA_T, BP_LT_KP_N, BP_SFT_T_S
  85. #define ___DVORAK_FR_R3___ BP_B, BP_M, BP_W, BP_V, BP_Z
  86. // Bepo on fr-bepo software layer
  87. // for bepo on bepo
  88. /* BP_DLR, BP_DQUO, BP_LDAQ, BP_RDAQ, BP_LPRN, BP_RPRN, KC_DEL, */
  89. #define ___SYMBOL_BEPO_L___ /* BP_DLR */ BP_DQUO, BP_LDAQ, BP_RDAQ, BP_LPRN, BP_RPRN
  90. /* KC_DEL, BP_AT, BP_PLUS, BP_MINS, BP_SLSH, BP_ASTR, BP_EQL, */
  91. #define ___SYMBOL_BEPO_R___ BP_AT, BP_PLUS, BP_MINS, BP_SLSH, BP_ASTR /* BP_EQL, BP_PERC */
  92. #define ___BEPO_FR_L1___ BP_B, BP_EACU, BP_P, BP_O, BP_EGRV
  93. #define ___BEPO_FR_L2___ BP_SFT_T_A, BP_LT_KP_U, BP_LT_SYMB_I, BP_LT_MDIA_E, BP_COMM
  94. #define ___BEPO_FR_L3___ /*BP_ECIR*/ BP_AGRV, BP_Y, BP_X, BP_DOT, BP_K
  95. #define ___BEPO_FR_R1___ /* BP_DCIR,*/ BP_V, BP_D, BP_L, BP_J, BP_Z
  96. #define ___BEPO_FR_R2___ /* BP_C, */ BP_T, BP_LT_SYMB_S, BP_LT_MDIA_R, BP_LT_KP_N, BP_SFT_T_M //BP_CCED
  97. #define ___BEPO_FR_R3___ BP_QUOT, BP_Q, BP_G, BP_H, BP_F //BP_SFT_T_W
  98. /* BP_DLR, BP_DQUO, BP_LDAQ, BP_RDAQ, BP_LPRN, BP_RPRN, KC_DEL, */
  99. /* KC_TAB, BP_B, BP_EACU, BP_P, BP_O, BP_EGRV, KC_BSPC, */
  100. /* KC_LSFT, BP_A, BP_U, BP_I, BP_E, BP_COMM, */
  101. /* KC_LCTRL, BP_AGRV, BP_Y, BP_X, BP_DOT, BP_K, KC_ENT, */
  102. /* ESC_FN, BP_ECIR, KC_LGUI, KC_LALT, SPC_RALT, */
  103. /* TT(SWAP), KC_MNXT, */
  104. /* KC_MPLY, */
  105. /* TT(FN), TT(NUMS), KC_MPRV, */
  106. /* /\* right hand *\/ */
  107. /* KC_DEL, BP_AT, BP_PLUS, BP_MINS, BP_SLSH, BP_ASTR, BP_EQL, */
  108. /* KC_BSPC, BP_DCIR, BP_V, BP_D, BP_L, BP_J, BP_Z, */
  109. /* BP_C, BP_T, BP_S, BP_R, BP_N, M_RSFT, */
  110. /* KC_ENT, BP_QUOT, BP_Q, BP_G, BP_H, BP_F, W_RCTL, */
  111. /*******************************************************************/
  112. /** For the top rows. Numbers for most things, symbols for Bepo. **/
  113. /*******************************************************************/
  114. // for everything on qwerty.
  115. #define ___NUMBER_L___ KC_1, KC_2, KC_3, KC_4, KC_5
  116. #define ___NUMBER_R___ KC_6, KC_7, KC_8, KC_9, KC_0
  117. // function key rows, works for everyone.
  118. #define ___FUNC_L___ KC_F1, KC_F2, KC_F3, KC_F4, KC_F5
  119. #define ___FUNC_R___ KC_F6, KC_F7, KC_F8, KC_F9, KC_F10
  120. #define ___FUNC_1_6___ KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6
  121. #define ___FUNC_7_12___ KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12
  122. // a top symbol row if someone wants it.
  123. #define ___SYMB_L___ KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC
  124. #define ___SYMB_R___ KC_CIRC, KC_AMPR, KC_AST, KC_LPRN, KC_RPRN
  125. // For numbers on bepo. Bepo has numbers on shifted keys, the
  126. // reverse of most keyboard layouts.
  127. #define ___NUMBER_BEPO_L___ DB_1, DB_2, DB_3, DB_4, DB_5
  128. #define ___NUMBER_BEPO_R___ DB_6, DB_7, DB_8, DB_9, DB_0
  129. /*******************************************************************/
  130. /* keysets for the auxillary layers. */
  131. /* the KC_P? codes don't work for me. I don't use those shifted */
  132. /* values anyway. */
  133. /*******************************************************************/
  134. // Keypads
  135. #define ___KEYPAD_1___ KC_7, KC_8, KC_9, KC_PSLS
  136. #define ___KEYPAD_2___ KC_4, KC_5, KC_6, KC_PAST
  137. #define ___KEYPAD_3___ KC_1, KC_2, KC_3, KC_PMNS
  138. #define ___KEYPAD_4___ KC_0, KC_DOT, KC_PEQL, KC_PPLS
  139. // Keypad from the default keymap.c of the xd75
  140. #define ___KEYPAD_1_ALT___ KC_P7, KC_P8, KC_P9, KC_MINS
  141. #define ___KEYPAD_2_ALT___ KC_P4, KC_P5, KC_P6, KC_PLUS
  142. #define ___KEYPAD_3_ALT___ KC_P1, KC_P2, KC_P3, KC_PENT
  143. #define ___KEYPAD_4_ALT___ KC_P0, KC_DOT, KC_PENT, KC_PENT
  144. // For Bepo
  145. #define ___KEYPAD_1_BP___ DB_7, DB_8, DB_9, BP_SLSH
  146. #define ___KEYPAD_2_BP___ DB_4, DB_5, DB_6, BP_ASTR
  147. #define ___KEYPAD_3_BP___ DB_1, DB_2, DB_3, DB_MINUS
  148. #define ___KEYPAD_4_BP___ DB_0, DB_DOT, DB_EQL, BP_PLUS
  149. // SYMBOLS
  150. // An arrangement for the left hand with a focus on the ()[]{}s.
  151. #define ___SYMBOLS_1___ KC_EXLM, KC_AT, KC_LCBR, KC_RCBR, KC_PIPE
  152. #define ___SYMBOLS_2___ KC_HASH, KC_DLR, KC_LPRN, KC_RPRN, KC_GRV
  153. #define ___SYMBOLS_3___ KC_PERC, KC_CIRC, KC_LBRC, KC_RBRC, KC_TILD
  154. // A larger 6 column arrangement for the left hand, A merge of dvorak and the above.
  155. #define ___SYMBOLS6_1___ KC_GRV, KC_LT, KC_GT, KC_LCBR, KC_RCBR, KC_HASH
  156. #define ___SYMBOLS6_2___ KC_AMPR, KC_AT, KC_ASTR, KC_LPRN, KC_RPRN, KC_PERC
  157. #define ___SYMBOLS6_3___ KC_DLR, KC_DQT, KC_QUOT, KC_LBRC, KC_RBRC, KC_COLON
  158. #define ___SYMBOLS6_4___ ___2___, KC_TILD, KC_DOT, KC_EXLM, KC_SCLN
  159. #define ___SYMBOLS5_4___ ___, KC_TILD, KC_DOT, KC_EXLM, KC_SCLN
  160. // A symbol pad. Basically the same layout as a number pad with the symbols
  161. // instead of the numbers with some extras around it, in familiar places for the
  162. // right hand.
  163. #define ___SYMPAD_1___ KC_GRV, KC_AMPR, KC_ASTR, KC_LCBR, KC_PLUS, KC_PIPE
  164. #define ___SYMPAD_2___ KC_TILD, KC_DLR, KC_PERC, KC_CIRC, KC_ASTR, KC_GRV
  165. #define ___SYMPAD_3___ ___, KC_EXLM, KC_AT, KC_HASH, KC_MINUS, KC_SLASH
  166. #define ___SYMPAD_4___ ___, KC_RCBR, KC_DOT, KC_EQUAL, KC_UNDS, KC_BSLASH
  167. #define ___5_SYMPAD_4___ KC_RCBR, KC_DOT, KC_EQUAL, KC_UNDS, KC_BSLASH
  168. // Function pad. Same idea as above, but for function keys.
  169. #define ___FUNCPAD_T___ KC_F10, KC_F11, KC_F12
  170. #define ___FUNCPAD_1___ KC_F7, KC_F8, KC_F9
  171. #define ___FUNCPAD_2___ KC_F4, KC_F5, KC_F6
  172. #define ___FUNCPAD_3___ KC_F1, KC_F2, KC_F3
  173. //--- all over again for BEPO
  174. // SYMBOLS FOR BEPO
  175. // The top row. Bepo has symbols not numbers. Numbers are the shifted values.
  176. #define ___SYMBOL_BEPO_L___ /* BP_DLR */ BP_DQUO, BP_LDAQ, BP_RDAQ, BP_LPRN, BP_RPRN
  177. /* KC_DEL, BP_AT, BP_PLUS, BP_MINS, BP_SLSH, BP_ASTR, BP_EQL, */
  178. #define ___SYMBOL_BEPO_R___ BP_AT, BP_PLUS, BP_MINS, BP_SLSH, BP_ASTR /* BP_EQL, BP_PERC */
  179. // An arrangement for the left hand with a focus on the ()[]{}s.
  180. #define ___SYMBOLS_1_BP___ KC_EXLM, BP_AT, DB_LCBR, DB_RCBR, DB_PIPE
  181. #define ___SYMBOLS_2_BP___ DB_HASH, BP_DLR, DB_LPRN, DB_RPRN, DB_GRV
  182. #define ___SYMBOLS_3_BP___ BP_PERC, DB_CIRC, DB_LBRC, DB_RBRC, DB_TILD
  183. // A larger 6 column arrangement for the left hand, A merge of dvorak and the above.
  184. #define ___SYMBOLS6_1_BP___ DB_GRV, DB_LESS, DB_GRTR, DB_LCBR, DB_RCBR, DB_HASH
  185. #define ___SYMBOLS6_2_BP___ KC_AMPR, BP_AT, BP_ASTR, DB_LPRN, DB_RPRN, BP_PERC
  186. #define ___SYMBOLS6_3_BP___ BP_DLR, BP_DQUO, DB_QUOT, DB_LBRC, DB_RBRC, KC_COLON
  187. #define ___SYMBOLS6_4_BP___ ___2___, DB_TILD, DB_DOT, KC_EXLM, DB_SCOLON
  188. #define ___SYMBOLS5_4_BP___ ___, DB_TILD, DB_DOT, KC_EXLM, DB_SCOLON
  189. // A symbol pad. Basically the same layout as a number pad with the symbols
  190. // instead of the numbers with some extras around it, in familiar places for the
  191. // right hand.
  192. #define ___SYMPAD_1_BP___ DB_GRV, BP_AMPR, BP_ASTR, DB_LCBR, BP_PLUS, DB_PIPE
  193. #define ___SYMPAD_2_BP___ DB_TILD, BP_DLR, BP_PERC, DB_CIRC, BP_ASTR, DB_GRV
  194. #define ___SYMPAD_3_BP___ ___, BP_EXLM, BP_AT, DB_HASH, BP_MINS, BP_SLSH
  195. #define ___SYMPAD_4_BP___ ___, DB_RCBR, DB_DOT, BP_EQL, BP_MINS, DB_BACKSLASH
  196. #define ___5_SYMPAD_4_BP___ DB_RCBR, DB_DOT, BP_EQL, BP_MINS, DB_BACKSLASH
  197. // Parts are parts.
  198. // MOUSE, ARROW and MEDIA KEY SETS
  199. #define ___MOUSE_LDUR___ KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R
  200. #define ___MWHEEL_LDUR___ KC_WH_L, KC_WH_D, KC_WH_U, KC_WH_R
  201. #define ___MOUSE_BTNS_R___ KC_BTN1, KC_BTN2, KC_BTN3, KC_BTN4, KC_BTN5
  202. #define ___MOUSE_BTNS_L___ KC_BTN5, KC_BTN4, KC_BTN3, KC_BTN2, KC_BTN1
  203. #define ___MOUSE_ACCL_012___ KC_ACL0, KC_ACL1, KC_ACL2
  204. #define ___MACCL___ ___MOUSE_ACCL_012___
  205. #define ___PRV_PLAY_NXT_STOP KC_MPRV, KC_MPLY, KC_MNXT, KC_MSTP
  206. #define ___VDN_MUTE_VUP___ KC_VOLD, KC_MUTE, KC_VOLU
  207. #define ___MUTE_PRV_PLAY_NXT_STOP___ KC_MUTE, KC_MPRV, KC_MPLY, KC_MNXT, KC_MSTP
  208. #define ___MUTE_PLAY_STOP___ KC_MUTE, KC_MPLY, KC_MSTP
  209. #define ___VI_ARROWS___ KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT
  210. // RGB FUNCTION Keysets
  211. // RGB row for the _FN layer from the redo of the default keymap.c
  212. #define ___RGB_HUE_SAT_INT_UP___ RGB_HUI, RGB_SAI, RGB_VAI, RGB_RMOD
  213. #define ___RGB_HUE_SAT_INT_DN___ RGB_HUD, RGB_SAD, RGB_VAD, RGB_MOD
  214. #define ___RGB_MODE_PRV_NXT___ RGB_RMOD, RGB_MOD
  215. #define ___RGB_TOGGLE___ RGB_TOG
  216. #define ___RGB_P_B_R_SW_SN___ RGB_M_P, RGB_M_B, RGB_M_R, RGB_M_SW, RGB_M_SN
  217. #define ___RGB_KXGT___ RGB_M_K, RGB_M_X, RGB_M_G, RGB_M_T
  218. // Print screen, screen lock, pause
  219. #define ___PSCR_SLCK_PAUS___ KC_PSCR, KC_SLCK, KC_PAUS
  220. // LAYER Keyset rows. Changing the Default base layer or the transient layers.
  221. // Some are full length. The baselayers leave the ends open. hence a 13.
  222. // for an ORtho 15.
  223. #define ___2_LAYERS_B1___ DF(BEPO), DF(DVORAK_ON_BEPO)
  224. #define ___2_LAYERS_B2___ DF(COLEMAK), DF(DVORAK)
  225. #define ___3_LAYERS_B3___ DF(QWERTY), DF(NORMAN), DF(WORKMAN)
  226. #define ___3_LAYERS_B4___ ___X3___
  227. // transient layers.
  228. #define ___3_LAYERS_T_BP___ TO(MDIA), TO(SYMB_ON_BEPO), TO(KEYPAD_ON_BEPO)
  229. #define ___3_LAYERS_T___ TO(MDIA), TO(SYMB), TO(KEYPAD)
  230. #define ___3_LAYERS_T_CTL___ TO(_RGB), ___X2___