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.

260 lines
11 KiB

  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 "action_layer.h"
  18. #include "muse.h"
  19. #include "keymap_slovenian.h"
  20. #define ALTG(kc) ALGR(kc) // FIXME: Remove this
  21. extern keymap_config_t keymap_config;
  22. enum planck_layers {
  23. _QWERTY,
  24. _LOWER,
  25. _RAISE,
  26. _ADJUST,
  27. _ALTGR,
  28. _CAPS,
  29. _MEMA,
  30. _CARON
  31. };
  32. enum planck_keycodes {
  33. QWERTY = SAFE_RANGE,
  34. };
  35. #define LOWER MO(_LOWER)
  36. #define RAISE MO(_RAISE)
  37. #define CAPS MO(_CAPS)
  38. #define ALTGR MO(_ALTGR)
  39. #define MEMA MO(_MEMA)
  40. #define CARON LT(_CARON, SI_QUOT)
  41. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  42. /* Qwerty
  43. * ,-----------------------------------------------------------------------------------.
  44. * | Tab | Q | W | E | R | T | Z | U | I | O | P | Bksp |
  45. * |------+------+------+------+------+-------------+------+------+------+------+------|
  46. * | CAPS | A | S | D | F | G | H | J | K | L |CARON |Enter |
  47. * |------+------+------+------+------+------|------+------+------+------+------+------|
  48. * | Shift| Y | X | C | V | B | N | M | , | . | / |Shift |
  49. * |------+------+------+------+------+------+------+------+------+------+------+------|
  50. * | Ctrl | GUI | Alt | GUI |LOWER | Space |RAISE | ALTGR| MEMA | F12 | F5 |
  51. * `-----------------------------------------------------------------------------------'
  52. */
  53. [_QWERTY] = LAYOUT_planck_grid(
  54. KC_TAB, SI_Q, SI_W, SI_E, SI_R, SI_T, SI_Z, SI_U, SI_I, SI_O, SI_P, KC_BSPC,
  55. CAPS, SI_A, SI_S, SI_D, SI_F, SI_G, SI_H, SI_J, SI_K, SI_L, CARON, KC_ENT,
  56. KC_LSFT, SI_Y, SI_X, SI_C, SI_V, SI_B, SI_N, SI_M, SI_COMM, SI_DOT, SI_MINS, KC_RSFT,
  57. KC_LCTL, KC_LALT, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, ALTGR, MEMA, KC_F12, KC_F5
  58. ),
  59. /* Lower
  60. * ,-----------------------------------------------------------------------------------.
  61. * | ~ | ! | " | # | $ | % | & | / | ( | ) | = | Bksp |
  62. * |------+------+------+------+------+-------------+------+------+------+------+------|
  63. * | | F1 | F2 | F3 | F4 | F5 | F6 | ? | * | ` | + | |
  64. * |------+------+------+------+------+------|------+------+------+------+------+------|
  65. * | | F7 | F8 | F9 | F10 | F11 | F12 | | < | > | | |
  66. * |------+------+------+------+------+------+------+------+------+------+------+------|
  67. * | | | | | | | | | | | |
  68. * `-----------------------------------------------------------------------------------'
  69. */
  70. [_LOWER] = LAYOUT_planck_grid(
  71. SI_TILD, SI_EXLM, SI_DQUO, KC_HASH, SI_DLR, SI_PERC, SI_AMPR, SI_SLSH, SI_LPRN, SI_RPRN, SI_EQL, _______,
  72. _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, SI_QUES, SI_ASTR, SI_GRV, SI_PLUS, _______,
  73. _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, SI_LABK, SI_RABK, KC_END, _______,
  74. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  75. ),
  76. /* Raise
  77. * ,-----------------------------------------------------------------------------------.
  78. * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
  79. * |------+------+------+------+------+-------------+------+------+------+------+------|
  80. * | Del | | | | | | | - | = | [ | ] | \ |
  81. * |------+------+------+------+------+------|------+------+------+------+------+------|
  82. * | | | | | | | |ISO # |ISO / |Pg Up |Pg Dn | |
  83. * |------+------+------+------+------+------+------+------+------+------+------+------|
  84. * | | | | | | | | Next | Vol- | Vol+ | Play |
  85. * `-----------------------------------------------------------------------------------'
  86. */
  87. [_RAISE] = LAYOUT_planck_grid(
  88. _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
  89. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  90. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  91. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  92. ),
  93. /* Adjust (Lower + Raise)
  94. * ,-----------------------------------------------------------------------------------.
  95. * | | Reset| | | | | | | | | | Del |
  96. * |------+------+------+------+------+-------------+------+------+------+------+------|
  97. * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty| | | | |
  98. * |------+------+------+------+------+------|------+------+------+------+------+------|
  99. * | |Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof| | | | | |
  100. * |------+------+------+------+------+------+------+------+------+------+------+------|
  101. * | | | | | | | | | | | |
  102. * `-----------------------------------------------------------------------------------'
  103. */
  104. [_ADJUST] = LAYOUT_planck_grid(
  105. _______, RESET, DEBUG, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_DEL ,
  106. _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, _______, _______, _______, _______,
  107. _______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, TERM_ON, TERM_OFF, _______, _______, _______,
  108. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  109. ),
  110. /* Altgr <>
  111. * ,-----------------------------------------------------------------------------------.
  112. * | | \ | | | | | | | | | | | |
  113. * |------+------+------+------+------+-------------+------+------+------+------+------|
  114. * | | | | | [ | ] | | | | | | |
  115. * |------+------+------+------+------+------|------+------+------+------+------+------|
  116. * | | | | | @ | { | } | | < | > | | |
  117. * |------+------+------+------+------+------+------+------+------+------+------+------|
  118. * | | | | | | | | | | | |
  119. * `-----------------------------------------------------------------------------------'
  120. */
  121. [_ALTGR] = LAYOUT_planck_grid(
  122. _______, SI_BSLS, SI_PIPE, SI_EURO, _______, _______, _______, _______, _______, _______, _______, _______,
  123. _______, _______, _______, _______, SI_LBRC, SI_RBRC, _______, _______, _______, _______, _______, _______,
  124. _______, _______, _______, _______, SI_AT, SI_LCBR, SI_RCBR, _______, SI_LABK, SI_RABK, _______, _______,
  125. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  126. ),
  127. [_CAPS] = LAYOUT_planck_grid(
  128. KC_ESC , KC_BSPC, KC_UP , KC_DEL , _______, _______, _______, _______, _______, KC_HOME, KC_END, KC_DEL ,
  129. _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, LCTL(KC_LEFT), LCTL(KC_RIGHT), _______,
  130. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  131. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  132. ),
  133. [_MEMA] = LAYOUT_planck_grid(
  134. _______, _______, _______, _______, _______, _______, _______, KC_MPRV, KC_MNXT, KC_VOLD, KC_MPLY, KC_VOLU,
  135. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  136. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  137. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  138. ),
  139. [_CARON] = LAYOUT_planck_grid(
  140. _______, _______, _______, _______, _______, _______, SI_ZCAR , _______, _______, _______, _______, _______,
  141. _______, _______, SI_SCAR, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  142. _______, _______, _______, SI_CCAR, _______, _______, _______, _______, _______, _______, _______, _______,
  143. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  144. ),
  145. };
  146. #ifdef AUDIO_ENABLE
  147. float plover_song[][2] = SONG(PLOVER_SOUND);
  148. float plover_gb_song[][2] = SONG(PLOVER_GOODBYE_SOUND);
  149. #endif
  150. layer_state_t layer_state_set_user(layer_state_t state) {
  151. return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
  152. }
  153. bool muse_mode = false;
  154. uint8_t last_muse_note = 0;
  155. uint16_t muse_counter = 0;
  156. uint8_t muse_offset = 70;
  157. uint16_t muse_tempo = 50;
  158. bool encoder_update_user(uint8_t index, bool clockwise) {
  159. if (muse_mode) {
  160. if (IS_LAYER_ON(_RAISE)) {
  161. if (clockwise) {
  162. muse_offset++;
  163. } else {
  164. muse_offset--;
  165. }
  166. } else {
  167. if (clockwise) {
  168. muse_tempo+=1;
  169. } else {
  170. muse_tempo-=1;
  171. }
  172. }
  173. } else {
  174. if (clockwise) {
  175. register_code(KC_PGDN);
  176. unregister_code(KC_PGDN);
  177. } else {
  178. register_code(KC_PGUP);
  179. unregister_code(KC_PGUP);
  180. }
  181. }
  182. return true;
  183. }
  184. bool dip_switch_update_user(uint8_t index, bool active) {
  185. switch (index) {
  186. case 0:
  187. if (active) {
  188. #ifdef AUDIO_ENABLE
  189. PLAY_SONG(plover_song);
  190. #endif
  191. layer_on(_ADJUST);
  192. } else {
  193. #ifdef AUDIO_ENABLE
  194. PLAY_SONG(plover_gb_song);
  195. #endif
  196. layer_off(_ADJUST);
  197. }
  198. break;
  199. case 1:
  200. if (active) {
  201. muse_mode = true;
  202. } else {
  203. muse_mode = false;
  204. #ifdef AUDIO_ENABLE
  205. stop_all_notes();
  206. #endif
  207. }
  208. }
  209. return true;
  210. }
  211. void matrix_scan_user(void) {
  212. #ifdef AUDIO_ENABLE
  213. if (muse_mode) {
  214. if (muse_counter == 0) {
  215. uint8_t muse_note = muse_offset + SCALE[muse_clock_pulse()];
  216. if (muse_note != last_muse_note) {
  217. stop_note(compute_freq_for_midi_note(last_muse_note));
  218. play_note(compute_freq_for_midi_note(muse_note), 0xF);
  219. last_muse_note = muse_note;
  220. }
  221. }
  222. muse_counter = (muse_counter + 1) % muse_tempo;
  223. }
  224. #endif
  225. }
  226. bool music_mask_user(uint16_t keycode) {
  227. switch (keycode) {
  228. case RAISE:
  229. case LOWER:
  230. return false;
  231. default:
  232. return true;
  233. }
  234. }