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