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