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.

225 lines
10 KiB

  1. /* Copyright 2017 Cole Markham
  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 "meira.h"
  17. #include "lighting.h"
  18. #ifdef RGBLIGHT_ENABLE
  19. //Following line allows macro to read current RGB settings
  20. extern rgblight_config_t rgblight_config;
  21. #endif
  22. #define _QWERTY 0
  23. #define _COLEMAK 1
  24. #define _DVORAK 2
  25. #define _LOWER 3
  26. #define _RAISE 4
  27. #define _ADJUST 16
  28. #ifndef BLUETOOTH_ENABLE
  29. #define OUT_BT KC_TRNS
  30. #endif
  31. enum custom_keycodes {
  32. QWERTY = SAFE_RANGE,
  33. LOWER,
  34. RAISE,
  35. ADJUST,
  36. };
  37. // define variables for reactive RGB
  38. bool TOG_STATUS = false;
  39. int RGB_current_mode;
  40. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  41. /* Qwerty
  42. * ,-----------------------------------------------------------------------------------.
  43. * | Esc | Q | W | E | R | T | Y | U | I | O | P | Bksp |
  44. * |------+------+------+------+------+-------------+------+------+------+------+------|
  45. * | Tab | A | S | D | F | G | H | J | K | L | ; | ' |
  46. * |------+------+------+------+------+------|------+------+------+------+------+------|
  47. * | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
  48. * |------+------+------+------+------+------+------+------+------+------+------+------|
  49. * |Adjust| Ctrl | Ctrl | Alt |Lower | Cmd |Space |Raise | Left | Down | Up |Right |
  50. * `-----------------------------------------------------------------------------------'
  51. */
  52. [_QWERTY] = KEYMAP( \
  53. KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, \
  54. KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \
  55. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, \
  56. ADJUST, KC_LCTL, KC_LALT, KC_LALT, LOWER, KC_LGUI, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
  57. ),
  58. /* Lower
  59. * ,-----------------------------------------------------------------------------------.
  60. * | | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp |
  61. * |------+------+------+------+------+-------------+------+------+------+------+------|
  62. * | ~ | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | | \ | | |
  63. * |------+------+------+------+------+------|------+------+------+------+------+------|
  64. * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | | |Enter |
  65. * |------+------+------+------+------+------+------+------+------+------+------+------|
  66. * | | | | | | | | Next | Vol- | Vol+ | Play |
  67. * `-----------------------------------------------------------------------------------'
  68. */
  69. [_LOWER] = KEYMAP( \
  70. _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL, \
  71. KC_TILD, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, \
  72. _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),_______, _______, KC_QUOT, \
  73. _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END \
  74. ),
  75. /* Raise
  76. * ,-----------------------------------------------------------------------------------.
  77. * | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
  78. * |------+------+------+------+------+-------------+------+------+------+------+------|
  79. * | ` | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ |
  80. * |------+------+------+------+------+------|------+------+------+------+------+------|
  81. * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / | | |Enter |
  82. * |------+------+------+------+------+------+------+------+------+------+------+------|
  83. * | | | | | | | | Home | PgUp | PgDn | End |
  84. * `-----------------------------------------------------------------------------------'
  85. */
  86. [_RAISE] = KEYMAP( \
  87. _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL, \
  88. KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, \
  89. _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, _______, _______, _______, \
  90. _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END \
  91. ),
  92. /* Adjust (Lower + Raise)
  93. * ,-----------------------------------------------------------------------------------.
  94. * | | Reset| | | | | | | | | | Del |
  95. * |------+------+------+------+------+-------------+------+------+------+------+------|
  96. * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | |
  97. * |------+------+------+------+------+------|------+------+------+------+------+------|
  98. * | | | | | | | | | | | | |
  99. * |------+------+------+------+------+------+------+------+------+------+------+------|
  100. * | | | | | | | | | | | |
  101. * `-----------------------------------------------------------------------------------'
  102. */
  103. [_ADJUST] = KEYMAP( \
  104. RESET, _______, _______, KC_MRWD, KC_MPLY, KC_MFFD, KC_PSCR, _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_DEL, \
  105. BL_STEP, RGB_MOD, _______, AU_ON, AU_OFF, _______, _______, _______, _______, _______, _______, _______, \
  106. BL_TOGG, RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
  107. _______, KC_PSCR, _______, _______, _______, _______, _______, _______, _______, OUT_AUTO, OUT_USB, OUT_BT \
  108. )
  109. };
  110. // Setting ADJUST layer RGB back to default
  111. void update_tri_layer_RGB(uint8_t layer1, uint8_t layer2, uint8_t layer3) {
  112. if (IS_LAYER_ON(layer1) && IS_LAYER_ON(layer2)) {
  113. #ifdef RGBLIGHT_ENABLE
  114. rgblight_mode(RGB_current_mode);
  115. #endif
  116. layer_on(layer3);
  117. } else {
  118. layer_off(layer3);
  119. }
  120. }
  121. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  122. switch (keycode) {
  123. case LOWER:
  124. if (record->event.pressed) {
  125. //not sure how to have keyboard check mode and set it to a variable, so my work around
  126. //uses another variable that would be set to true after the first time a reactive key is pressed.
  127. if (TOG_STATUS) { //TOG_STATUS checks is another reactive key currently pressed, only changes RGB mode if returns false
  128. } else {
  129. TOG_STATUS = !TOG_STATUS;
  130. #ifdef RGBLIGHT_ENABLE
  131. rgblight_mode(16);
  132. #endif
  133. }
  134. layer_on(_LOWER);
  135. update_tri_layer_RGB(_LOWER, _RAISE, _ADJUST);
  136. } else {
  137. #ifdef RGBLIGHT_ENABLE
  138. rgblight_mode(RGB_current_mode); // revert RGB to initial mode prior to RGB mode change
  139. #endif
  140. TOG_STATUS = false;
  141. layer_off(_LOWER);
  142. update_tri_layer_RGB(_LOWER, _RAISE, _ADJUST);
  143. }
  144. return false;
  145. break;
  146. case RAISE:
  147. if (record->event.pressed) {
  148. //not sure how to have keyboard check mode and set it to a variable, so my work around
  149. //uses another variable that would be set to true after the first time a reactive key is pressed.
  150. if (TOG_STATUS) { //TOG_STATUS checks is another reactive key currently pressed, only changes RGB mode if returns false
  151. } else {
  152. TOG_STATUS = !TOG_STATUS;
  153. #ifdef RGBLIGHT_ENABLE
  154. rgblight_mode(15);
  155. #endif
  156. }
  157. layer_on(_RAISE);
  158. update_tri_layer_RGB(_LOWER, _RAISE, _ADJUST);
  159. } else {
  160. #ifdef RGBLIGHT_ENABLE
  161. rgblight_mode(RGB_current_mode); // revert RGB to initial mode prior to RGB mode change
  162. #endif
  163. layer_off(_RAISE);
  164. TOG_STATUS = false;
  165. update_tri_layer_RGB(_LOWER, _RAISE, _ADJUST);
  166. }
  167. return false;
  168. break;
  169. case ADJUST:
  170. // FIXME add RGB feedback
  171. if (record->event.pressed) {
  172. layer_on(_ADJUST);
  173. } else {
  174. layer_off(_ADJUST);
  175. }
  176. return false;
  177. break;
  178. case BL_TOGG:
  179. #ifdef BACKLIGHT_ENABLE
  180. if (record->event.pressed) {
  181. print("Enabling backlight\n");
  182. backlight_init_ports();
  183. }
  184. #endif
  185. return false;
  186. break;
  187. case BL_STEP:
  188. if (record->event.pressed) {
  189. #ifdef BACKLIGHT_ENABLE
  190. backlight_step();
  191. #endif
  192. }
  193. return false;
  194. break;
  195. //led operations - RGB mode change now updates the RGB_current_mode to allow the right RGB mode to be set after reactive keys are released
  196. #ifdef RGBLIGHT_ENABLE
  197. case RGB_MOD:
  198. if (record->event.pressed) {
  199. rgblight_mode(RGB_current_mode);
  200. rgblight_step();
  201. RGB_current_mode = rgblight_config.mode;
  202. }
  203. return false;
  204. break;
  205. #endif
  206. }
  207. return true;
  208. }
  209. void led_set_user(uint8_t usb_led) {
  210. }