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