keymap.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. /* Copyright 2015-2017 Jack Humbert
  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 QMK_KEYBOARD_H
  17. #include "muse.h"
  18. extern keymap_config_t keymap_config;
  19. enum planck_layers {
  20. _QWERTY,
  21. _LOWER,
  22. _RAISE,
  23. _ADJUST
  24. };
  25. enum planck_keycodes {
  26. QWERTY = SAFE_RANGE,
  27. BACKLIT
  28. };
  29. #define LOWER MO(_LOWER)
  30. #define RAISE MO(_RAISE)
  31. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  32. /* Qwerty
  33. * ,-----------------------------------------------------------------------------------.
  34. * | Esc | Q | W | E | R | T | Y | U | I | O | P | Bksp |
  35. * |------+------+------+------+------+-------------+------+------+------+------+------|
  36. * | Tab | A | S | D | F | G | H | J | K | L | ; |Enter |
  37. * |------+------+------+------+------+------|------+------+------+------+------+------|
  38. * | Shift| Z | X | C | V | B | N | M | , | . | Up |Shift |
  39. * |------+------+------+------+------+------+------+------+------+------+------+------|
  40. * | Brite| Ctrl | Alt | GUI |Lower | Space |Raise | / | Left | Down |Right |
  41. * `-----------------------------------------------------------------------------------'
  42. */
  43. [_QWERTY] = LAYOUT_planck_grid(
  44. KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
  45. KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT,
  46. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_UP, KC_RSFT,
  47. BACKLIT, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_SLSH, KC_LEFT, KC_DOWN, KC_RGHT
  48. ),
  49. /* Lower
  50. * ,-----------------------------------------------------------------------------------.
  51. * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | | |
  52. * |------+------+------+------+------+-------------+------+------+------+------+------|
  53. * | Del | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | ' |
  54. * |------+------+------+------+------+------|------+------+------+------+------+------|
  55. * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | Home | End | |
  56. * |------+------+------+------+------+------+------+------+------+------+------+------|
  57. * | | | | | | | | Vol- | Vol+ |Brite-|Brite+|
  58. * `-----------------------------------------------------------------------------------'
  59. */
  60. [_LOWER] = LAYOUT_planck_grid(
  61. KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_PIPE,
  62. KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_QUOT,
  63. _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, S(KC_NUHS), S(KC_NUBS), KC_HOME, KC_END, _______,
  64. _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLD, KC_VOLU, KC_BRMD, KC_BRMU
  65. ),
  66. /* Raise
  67. * ,-----------------------------------------------------------------------------------.
  68. * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | \ |
  69. * |------+------+------+------+------+-------------+------+------+------+------+------|
  70. * | Del | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | ' |
  71. * |------+------+------+------+------+------|------+------+------+------+------+------|
  72. * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / |Pg Up |Pg Dn | |
  73. * |------+------+------+------+------+------+------+------+------+------+------+------|
  74. * | | | | | | | | Vol- | Vol+ |Brite-|Brite+|
  75. * `-----------------------------------------------------------------------------------'
  76. */
  77. [_RAISE] = LAYOUT_planck_grid(
  78. KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
  79. KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_QUOT,
  80. _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_PGUP, KC_PGDN, _______,
  81. _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLD, KC_VOLU, KC_BRMD, KC_BRMU
  82. ),
  83. /* Adjust (Lower + Raise)
  84. * ,-----------------------------------------------------------------------------------.
  85. * | | Reset| | | | | | | | | | Del |
  86. * |------+------+------+------+------+-------------+------+------+------+------+------|
  87. * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty| | | | |
  88. * |------+------+------+------+------+------|------+------+------+------+------+------|
  89. * | |Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof| | | | | |
  90. * |------+------+------+------+------+------+------+------+------+------+------+------|
  91. * | | | | | | | | | | | |
  92. * `-----------------------------------------------------------------------------------'
  93. */
  94. [_ADJUST] = LAYOUT_planck_grid(
  95. C(G(S(KC_4))), RESET, DEBUG, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_DEL,
  96. _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, _______, _______, _______, _______,
  97. _______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, TERM_ON, TERM_OFF, _______, _______, _______,
  98. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  99. )
  100. };
  101. #ifdef AUDIO_ENABLE
  102. float plover_song[][2] = SONG(PLOVER_SOUND);
  103. float plover_gb_song[][2] = SONG(PLOVER_GOODBYE_SOUND);
  104. #endif
  105. uint32_t layer_state_set_user(uint32_t state) {
  106. return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
  107. }
  108. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  109. switch (keycode) {
  110. case QWERTY:
  111. if (record->event.pressed) {
  112. print("mode just switched to qwerty and this is a huge string\n");
  113. set_single_persistent_default_layer(_QWERTY);
  114. }
  115. return false;
  116. break;
  117. }
  118. return true;
  119. }
  120. bool muse_mode = false;
  121. uint8_t last_muse_note = 0;
  122. uint16_t muse_counter = 0;
  123. uint8_t muse_offset = 70;
  124. uint16_t muse_tempo = 50;
  125. void encoder_update(bool clockwise) {
  126. if (muse_mode) {
  127. if (IS_LAYER_ON(_RAISE)) {
  128. if (clockwise) {
  129. muse_offset++;
  130. } else {
  131. muse_offset--;
  132. }
  133. } else {
  134. if (clockwise) {
  135. muse_tempo+=1;
  136. } else {
  137. muse_tempo-=1;
  138. }
  139. }
  140. } else {
  141. if (clockwise) {
  142. #ifdef MOUSEKEY_ENABLE
  143. tap_code(KC_MS_WH_DOWN);
  144. #else
  145. tap_code(KC_PGDN);
  146. #endif
  147. } else {
  148. #ifdef MOUSEKEY_ENABLE
  149. tap_code(KC_MS_WH_UP);
  150. #else
  151. tap_code(KC_PGUP);
  152. #endif
  153. }
  154. }
  155. }
  156. void dip_update(uint8_t index, bool active) {
  157. switch (index) {
  158. case 0:
  159. if (active) {
  160. #ifdef AUDIO_ENABLE
  161. PLAY_SONG(plover_song);
  162. #endif
  163. layer_on(_ADJUST);
  164. } else {
  165. #ifdef AUDIO_ENABLE
  166. PLAY_SONG(plover_gb_song);
  167. #endif
  168. layer_off(_ADJUST);
  169. }
  170. break;
  171. case 1:
  172. if (active) {
  173. muse_mode = true;
  174. } else {
  175. muse_mode = false;
  176. #ifdef AUDIO_ENABLE
  177. stop_all_notes();
  178. #endif
  179. }
  180. }
  181. }
  182. void matrix_scan_user(void) {
  183. #ifdef AUDIO_ENABLE
  184. if (muse_mode) {
  185. if (muse_counter == 0) {
  186. uint8_t muse_note = muse_offset + SCALE[muse_clock_pulse()];
  187. if (muse_note != last_muse_note) {
  188. stop_note(compute_freq_for_midi_note(last_muse_note));
  189. play_note(compute_freq_for_midi_note(muse_note), 0xF);
  190. last_muse_note = muse_note;
  191. }
  192. }
  193. muse_counter = (muse_counter + 1) % muse_tempo;
  194. }
  195. #endif
  196. }
  197. bool music_mask_user(uint16_t keycode) {
  198. switch (keycode) {
  199. case RAISE:
  200. case LOWER:
  201. return false;
  202. default:
  203. return true;
  204. }
  205. }
  206. #ifdef RGB_MATRIX_ENABLE
  207. extern led_config_t g_led_config;
  208. #endif
  209. void rgb_matrix_indicators_user(void) {
  210. #ifdef RGB_MATRIX_ENABLE
  211. switch (biton32(layer_state)) {
  212. case _RAISE:
  213. for (int i = 0; i < DRIVER_LED_TOTAL; i++) {
  214. if (HAS_FLAGS(g_led_config.flags[i], LED_FLAG_MODIFIER)) {
  215. rgb_matrix_set_color(i, 0x6B, 0x00, 0x80);
  216. } else {
  217. rgb_matrix_set_color(i, 0x00, 0xFF, 0x00);
  218. }
  219. }
  220. break;
  221. case _LOWER:
  222. for (int i = 0; i < DRIVER_LED_TOTAL; i++) {
  223. if (HAS_FLAGS(g_led_config.flags[i], LED_FLAG_MODIFIER)) {
  224. rgb_matrix_set_color(i, 0xFF, 0xA5, 0x00);
  225. } else {
  226. rgb_matrix_set_color(i, 0x00, 0x67, 0xC7);
  227. }
  228. }
  229. break;
  230. case _ADJUST:
  231. for (int i = 0; i < DRIVER_LED_TOTAL; i++) {
  232. rgb_matrix_set_color(i, 0xFF, 0x99, 0x00);
  233. }
  234. rgb_matrix_set_color(1, 0xFF, 0x00, 0x00);
  235. break;
  236. default:
  237. break;
  238. }
  239. #endif
  240. }