Merge branch 'master' into debounce_refactor
[jackhill/qmk/firmware.git] / layouts / community / ortho_4x12 / drashna / 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 "drashna.h"
19
20 #ifdef RGB_MATRIX_ENABLE
21 extern bool g_suspend_state;
22 #endif
23
24 #ifdef BACKLIGHT_ENABLE
25 enum planck_keycodes {
26 BACKLIT = NEW_SAFE_RANGE,
27 };
28 #else
29 #define BACKLIT OSM(MOD_LSFT)
30 #endif
31
32 #define LAYOUT_ortho_4x12_base( \
33 K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, \
34 K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, \
35 K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A \
36 ) \
37 LAYOUT_ortho_4x12_wrapper( \
38 KC_ESC, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, KC_BSPC, \
39 KC_TAB, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, KC_QUOT, \
40 KC_MLSF, CTL_T(K21), K22, K23, K24, K25, K26, K27, K28, K29, CTL_T(K2A), KC_ENT, \
41 BACKLIT, OS_LCTL, OS_LALT, OS_LGUI, SP_LWER, BK_LWER, DL_RAIS, ET_RAIS, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
42 )
43 #define LAYOUT_ortho_4x12_base_wrapper(...) LAYOUT_ortho_4x12_base(__VA_ARGS__)
44
45
46 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
47
48 [_QWERTY] = LAYOUT_ortho_4x12_base_wrapper(
49 _________________QWERTY_L1_________________, _________________QWERTY_R1_________________,
50 _________________QWERTY_L2_________________, _________________QWERTY_R2_________________,
51 _________________QWERTY_L3_________________, _________________QWERTY_R3_________________
52 ),
53
54 [_COLEMAK] = LAYOUT_ortho_4x12_base_wrapper(
55 _________________COLEMAK_L1________________, _________________COLEMAK_R1________________,
56 _________________COLEMAK_L2________________, _________________COLEMAK_R2________________,
57 _________________COLEMAK_L3________________, _________________COLEMAK_R3________________
58 ),
59
60 [_DVORAK] = LAYOUT_ortho_4x12_base_wrapper(
61 _________________DVORAK_L1_________________, _________________DVORAK_R1_________________,
62 _________________DVORAK_L2_________________, _________________DVORAK_R2_________________,
63 _________________DVORAK_L3_________________, _________________DVORAK_R3_________________
64 ),
65
66 [_WORKMAN] = LAYOUT_ortho_4x12_base_wrapper(
67 _________________WORKMAN_L1________________, _________________WORKMAN_R1________________,
68 _________________WORKMAN_L2________________, _________________WORKMAN_R2________________,
69 _________________WORKMAN_L3________________, _________________WORKMAN_R3________________
70 ),
71
72 [_MODS] = LAYOUT_ortho_4x12_wrapper(
73 _______, ___________________BLANK___________________, ___________________BLANK___________________, _______,
74 _______, ___________________BLANK___________________, ___________________BLANK___________________, _______,
75 KC_LSFT, ___________________BLANK___________________, ___________________BLANK___________________, _______,
76 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
77 ),
78
79 [_LOWER] = LAYOUT_ortho_4x12_wrapper(
80 KC_TILD, _________________LOWER_L1__________________, _________________LOWER_R1__________________, KC_BSPC,
81 KC_DEL, _________________LOWER_L2__________________, _________________LOWER_R2__________________, KC_PIPE,
82 _______, _________________LOWER_L3__________________, _________________LOWER_R3__________________, _______,
83 _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY
84 ),
85
86 [_RAISE] = LAYOUT_ortho_4x12_wrapper(
87 KC_GRV, _________________RAISE_L1__________________, _________________RAISE_R1__________________, KC_BSPC,
88 KC_DEL, _________________RAISE_L2__________________, _________________RAISE_R2__________________, KC_BSLS,
89 _______, _________________RAISE_L3__________________, _________________RAISE_R3__________________, _______,
90 _______, _______, _______, _______, _______, _______, _______, _________________RAISE_R3__________________
91 ),
92
93 [_ADJUST] = LAYOUT_ortho_4x12_wrapper(
94 KC_MAKE, _________________ADJUST_L1_________________, _________________ADJUST_R1_________________, KC_RST,
95 VRSN, _________________ADJUST_L2_________________, _________________ADJUST_R2_________________, EEP_RST,
96 _______, _________________ADJUST_L3_________________, _________________ADJUST_R3_________________, TG_MODS,
97 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_NUKE
98 )
99
100
101 };
102
103
104 bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
105 switch (keycode) {
106
107 #ifdef BACKLIGHT_ENABLE
108 case BACKLIT:
109 if (record->event.pressed) {
110 register_code(KC_RSFT);
111 #ifdef BACKLIGHT_ENABLE
112 backlight_step();
113 #endif
114 PORTE &= ~(1<<6);
115 } else {
116 unregister_code(KC_RSFT);
117 PORTE |= (1<<6);
118 }
119 return false;
120 break;
121 #endif
122 }
123 return true;
124 }
125
126 bool music_mask_user(uint16_t keycode) {
127 switch (keycode) {
128 case RAISE:
129 case LOWER:
130 case BK_LWER:
131 case SP_LWER:
132 case DL_RAIS:
133 case ET_RAIS:
134 return false;
135 default:
136 return true;
137 }
138 }
139
140 #ifdef RGB_MATRIX_ENABLE
141
142 void suspend_power_down_keymap(void)
143 {
144 rgb_matrix_set_suspend_state(true);
145 }
146
147 void suspend_wakeup_init_keymap(void)
148 {
149 rgb_matrix_set_suspend_state(false);
150 }
151
152 void rgb_matrix_layer_helper (uint8_t red, uint8_t green, uint8_t blue, bool default_layer) {
153 rgb_led led;
154 for (int i = 0; i < DRIVER_LED_TOTAL; i++) {
155 led = g_rgb_leds[i];
156 if (led.matrix_co.raw < 0xFF) {
157 if (led.modifier) {
158 rgb_matrix_set_color( i, red, green, blue );
159 }
160 }
161 }
162 }
163
164 void rgb_matrix_indicators_user(void) {
165 uint8_t this_mod = get_mods();
166 uint8_t this_led = host_keyboard_leds();
167 uint8_t this_osm = get_oneshot_mods();
168 if (!g_suspend_state) {
169 switch (biton32(layer_state)) {
170 case _RAISE:
171 rgb_matrix_layer_helper(0xFF, 0xFF, 0x00, false); break;
172 case _LOWER:
173 rgb_matrix_layer_helper(0x00, 0xFF, 0x00, false); break;
174 case _ADJUST:
175 rgb_matrix_layer_helper(0xFF, 0x00, 0x00, false); break;
176 default:
177 switch (biton32(default_layer_state)) {
178 case _QWERTY:
179 rgb_matrix_layer_helper(0x00, 0xFF, 0xFF, true); break;
180 case _COLEMAK:
181 rgb_matrix_layer_helper(0xFF, 0x00, 0xFF, true); break;
182 case _DVORAK:
183 rgb_matrix_layer_helper(0x00, 0xFF, 0x00, true); break;
184 case _WORKMAN:
185 rgb_matrix_layer_helper(0xD9, 0xA5, 0x21, true); break;
186 }
187 }
188 }
189
190 switch (biton32(default_layer_state)) {
191 case _QWERTY:
192 rgb_matrix_set_color(42, 0x00, 0xFF, 0xFF); break;
193 case _COLEMAK:
194 rgb_matrix_set_color(42, 0xFF, 0x00, 0xFF); break;
195 case _DVORAK:
196 rgb_matrix_set_color(42, 0x00, 0xFF, 0x00); break;
197 case _WORKMAN:
198 rgb_matrix_set_color(42, 0xD9, 0xA5, 0x21); break;
199 }
200
201 if (this_mod & MODS_SHIFT_MASK || this_led & (1<<USB_LED_CAPS_LOCK) || this_osm & MODS_SHIFT_MASK) {
202 rgb_matrix_set_color(24, 0x00, 0xFF, 0x00);
203 rgb_matrix_set_color(36, 0x00, 0xFF, 0x00);
204 }
205 if (this_mod & MODS_CTRL_MASK || this_osm & MODS_CTRL_MASK) {
206 rgb_matrix_set_color(25, 0xFF, 0x00, 0x00);
207 rgb_matrix_set_color(34, 0xFF, 0x00, 0x00);
208 rgb_matrix_set_color(37, 0xFF, 0x00, 0x00);
209
210 }
211 if (this_mod & MODS_GUI_MASK || this_osm & MODS_GUI_MASK) {
212 rgb_matrix_set_color(39, 0xFF, 0xD9, 0x00);
213 }
214 if (this_mod & MODS_ALT_MASK || this_osm & MODS_ALT_MASK) {
215 rgb_matrix_set_color(38, 0x00, 0x00, 0xFF);
216 }
217 }
218
219 void matrix_init_keymap(void) {
220 rgblight_mode(RGB_MATRIX_MULTISPLASH);
221 }
222 #else //RGB_MATRIX_INIT
223
224 void matrix_init_keymap(void) {
225 #ifndef CONVERT_TO_PROTON_C
226 setPinOutput(D5);
227 writePinHigh(D5);
228
229 setPinOutput(B0);
230 writePinHigh(B0);
231 #endif
232 }
233 #endif //RGB_MATRIX_INIT