aboutsummaryrefslogtreecommitdiff
path: root/keyboards/planck/keymaps/jirgn/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/planck/keymaps/jirgn/keymap.c')
-rw-r--r--keyboards/planck/keymaps/jirgn/keymap.c221
1 files changed, 221 insertions, 0 deletions
diff --git a/keyboards/planck/keymaps/jirgn/keymap.c b/keyboards/planck/keymaps/jirgn/keymap.c
new file mode 100644
index 000000000..87a78d90b
--- /dev/null
+++ b/keyboards/planck/keymaps/jirgn/keymap.c
@@ -0,0 +1,221 @@
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 "planck.h"
18#include "action_layer.h"
19
20extern keymap_config_t keymap_config;
21
22enum planck_layers {
23 _QWERTY,
24 _LOWER,
25 _RAISE,
26 _PLOVER,
27 _ADJUST,
28 _NAVIGATION
29};
30
31enum planck_keycodes {
32 QWERTY = SAFE_RANGE,
33 PLOVER,
34 LOWER,
35 RAISE,
36 EXT_PLV
37};
38
39// keycode aliases
40#define _______ KC_TRNS
41#define ___x___ KC_NO
42#define KC_EUR LALT(S(KC_2))
43#define KC_SEC LALT(KC_6)
44#define CTL_DEL CTL_T(KC_DEL)
45#define NAV_SCLN LT(_NAVIGATION, KC_SCLN)
46#define NAV_A LT(_NAVIGATION, KC_A)
47
48const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
49
50/* Qwerty
51 * ,-----------------------------------------------------------------------------------.
52 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
53 * |------+------+------+------+------+-------------+------+------+------+------+------|
54 * Tab for Esc--| Ctrl | A Nav| S | D | F | G | H | J | K | L | ; Nav| Ctrl |--Tab for "
55 * |------+------+------+------+------+------|------+------+------+------+------+------|
56 * | Shift| Z | X | C | V | B | N | M | , | . | / | Shift|--Tab for Enter
57 * |------+------+------+------+------+------+------+------+------+------+------+------|
58 * | | Hyper| Alt | Super| Lower| Space | Raise| Super| ALt | Hyper| |
59 * `-----------------------------------------------------------------------------------'
60 */
61[_QWERTY] = {
62 {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC},
63 {CTL_T(KC_ESC), NAV_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, NAV_SCLN, KC_QUOT},
64 {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, SFT_T(KC_ENT)},
65 {___x___, KC_HYPR, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LGUI, KC_LALT, KC_HYPR, ___x___}
66},
67
68/* Lower
69 * ,-----------------------------------------------------------------------------------.
70 * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp |
71 * |------+------+------+------+------+-------------+------+------+------+------+------|
72 * Tab to Del---| Ctrl | ¡ | ™ | € | ¢ | ∞ | § | _ | + | { | } | | |
73 * |------+------+------+------+------+------|------+------+------+------+------+------|
74 * | | | | | | | |ISO ~ |ISO | | | | |
75 * |------+------+------+------+------+------+------+------+------+------+------+------|
76 * | | | | | | | | | | | |
77 * `-----------------------------------------------------------------------------------'
78 */
79[_LOWER] = {
80 {KC_TILD, S(KC_1), S(KC_2), S(KC_3), S(KC_4), S(KC_5), S(KC_6), S(KC_7), S(KC_8), S(KC_9), S(KC_0), KC_BSPC},
81 {CTL_DEL, LALT(KC_1), LALT(KC_2), KC_EUR, LALT(KC_4), LALT(KC_5), LALT(KC_6), KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE},
82 {_______, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, S(KC_NUHS), S(KC_NUBS), _______, _______, _______},
83 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
84},
85
86/* Raise
87 * ,-----------------------------------------------------------------------------------.
88 * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
89 * |------+------+------+------+------+-------------+------+------+------+------+------|
90 * Tab to Del---| Ctrl | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ |
91 * |------+------+------+------+------+------|------+------+------+------+------+------|
92 * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / | | | |
93 * |------+------+------+------+------+------+------+------+------+------+------+------|
94 * | | | | | | | | | | | |
95 * `-----------------------------------------------------------------------------------'
96 */
97[_RAISE] = {
98 {KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC},
99 {CTL_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS},
100 {_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, _______, _______, _______},
101 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
102},
103
104/* Navigation
105 * ,-----------------------------------------------------------------------------------.
106 * | | | | | | | | | | | | |
107 * |------+------+------+------+------+-------------+------+------+------+------+------|
108 * | | | HOME | PGUP | PGDN | END | LEFT | DOWN | UP | RIGHT| | |
109 * |------+------+------+------+------+------|------+------+------+------+------+------|
110 * | | | | | | | | | | | | |
111 * |------+------+------+------+------+------+------+------+------+------+------+------|
112 * | | | | | | | | | | | |
113 * `-----------------------------------------------------------------------------------'
114 */
115[_NAVIGATION] = {
116 {___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___},
117 {_______, _______, KC_HOME, KC_PGUP, KC_PGDN, KC_END , KC_LEFT, KC_DOWN, KC_UP , KC_RIGHT, _______, ___x___},
118 {_______, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, ___x___, _______},
119 {___x___, _______, _______, _______, ___x___, ___x___, ___x___, ___x___, _______, _______, _______, ___x___}
120},
121
122/* Plover layer (http://opensteno.org)
123 * ,-----------------------------------------------------------------------------------.
124 * | # | # | # | # | # | # | # | # | # | # | # | # |
125 * |------+------+------+------+------+-------------+------+------+------+------+------|
126 * | | S | T | P | H | * | * | F | P | L | T | D |
127 * |------+------+------+------+------+------|------+------+------+------+------+------|
128 * | | S | K | W | R | * | * | R | B | G | S | Z |
129 * |------+------+------+------+------+------+------+------+------+------+------+------|
130 * | Exit | | | A | O | | E | U | | | |
131 * `-----------------------------------------------------------------------------------'
132 */
133
134[_PLOVER] = {
135 {KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1 },
136 {___x___, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC},
137 {___x___, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT},
138 {EXT_PLV, ___x___, ___x___, KC_C, KC_V, ___x___, ___x___, KC_N, KC_M, ___x___, ___x___, ___x___}
139},
140
141/* Adjust (Lower + Raise)
142 * ,-----------------------------------------------------------------------------------.
143 * | | Reset| | | | | | | | | | Del |
144 * |------+------+------+------+------+-------------+------+------+------+------+------|
145 * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Plover| | | |
146 * |------+------+------+------+------+------|------+------+------+------+------+------|
147 * | |Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof| | | | | |
148 * |------+------+------+------+------+------+------+------+------+------+------+------|
149 * | | | | | | | | | | | |
150 * `-----------------------------------------------------------------------------------'
151 */
152[_ADJUST] = {
153 {_______, RESET, DEBUG, _______, _______, _______, _______, TERM_ON, TERM_OFF,_______, _______, KC_DEL },
154 {_______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, PLOVER, _______, _______, _______},
155 {_______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, _______, _______, _______, _______, _______},
156 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
157}
158
159
160};
161
162#ifdef AUDIO_ENABLE
163 float plover_song[][2] = SONG(PLOVER_SOUND);
164 float plover_gb_song[][2] = SONG(PLOVER_GOODBYE_SOUND);
165#endif
166
167bool process_record_user(uint16_t keycode, keyrecord_t *record) {
168 switch (keycode) {
169 case QWERTY:
170 if (record->event.pressed) {
171 print("mode just switched to qwerty and this is a huge string\n");
172 set_single_persistent_default_layer(_QWERTY);
173 }
174 return false; break;
175 case LOWER:
176 if (record->event.pressed) {
177 layer_on(_LOWER);
178 update_tri_layer(_LOWER, _RAISE, _ADJUST);
179 } else {
180 layer_off(_LOWER);
181 update_tri_layer(_LOWER, _RAISE, _ADJUST);
182 }
183 return false; break;
184 case RAISE:
185 if (record->event.pressed) {
186 layer_on(_RAISE);
187 update_tri_layer(_LOWER, _RAISE, _ADJUST);
188 } else {
189 layer_off(_RAISE);
190 update_tri_layer(_LOWER, _RAISE, _ADJUST);
191 }
192 return false; break;
193 case PLOVER:
194 if (record->event.pressed) {
195 #ifdef AUDIO_ENABLE
196 stop_all_notes();
197 PLAY_SONG(plover_song);
198 #endif
199 layer_off(_RAISE);
200 layer_off(_LOWER);
201 layer_off(_ADJUST);
202 layer_on(_PLOVER);
203 if (!eeconfig_is_enabled()) {
204 eeconfig_init();
205 }
206 keymap_config.raw = eeconfig_read_keymap();
207 keymap_config.nkro = 1;
208 eeconfig_update_keymap(keymap_config.raw);
209 }
210 return false; break;
211 case EXT_PLV:
212 if (record->event.pressed) {
213 #ifdef AUDIO_ENABLE
214 PLAY_SONG(plover_gb_song);
215 #endif
216 layer_off(_PLOVER);
217 }
218 return false; break;
219 }
220 return true;
221}