]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/keymap_common.h
0ede0296b98fbe013f71f37595d249815409bb0c
[qmk_firmware.git] / quantum / keymap_common.h
1 /*
2 Copyright 2012,2013 Jun Wako <wakojun@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef KEYMAP_H
19 #define KEYMAP_H
20
21 #include <stdint.h>
22 #include <stdbool.h>
23 #include "action.h"
24 #include <avr/pgmspace.h>
25 #include "keycode.h"
26 #include "keymap.h"
27 #include "action_macro.h"
28 #include "report.h"
29 #include "host.h"
30 // #include "print.h"
31 #include "debug.h"
32
33 /* NOTE: Not portable. Bit field order depends on implementation */
34 typedef union {
35     uint16_t raw;
36     struct {
37         bool swap_control_capslock:1;
38         bool capslock_to_control:1;
39         bool swap_lalt_lgui:1;
40         bool swap_ralt_rgui:1;
41         bool no_gui:1;
42         bool swap_grave_esc:1;
43         bool swap_backslash_backspace:1;
44         bool nkro:1;
45     };
46 } keymap_config_t;
47
48
49 /* translates key to keycode */
50 uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key);
51
52 /* translates Fn keycode to action */
53 action_t keymap_fn_to_action(uint16_t keycode);
54
55 /* translates Fn keycode to action */
56 action_t keymap_func_to_action(uint16_t keycode);
57
58 extern const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
59 extern const uint16_t fn_actions[];
60
61 // Ability to use mods in layouts
62 #define LCTL(kc) kc | 0x0100
63 #define LSFT(kc) kc | 0x0200
64 #define LALT(kc) kc | 0x0400
65 #define LGUI(kc) kc | 0x0800
66 #define HYPR(kc) kc | 0x0F00
67 #define MEH(kc) kc  | 0x0700
68 #define LCAG(kc) kc  | 0x0D00 // Modifier Ctrl Alt and GUI
69
70 #define RCTL(kc) kc | 0x1100
71 #define RSFT(kc) kc | 0x1200
72 #define RALT(kc) kc | 0x1400
73 #define RGUI(kc) kc | 0x1800
74
75 // Aliases for shifted symbols
76 // Each key has a 4-letter code, and some have longer aliases too.
77 // While the long aliases are descriptive, the 4-letter codes
78 // make for nicer grid layouts (everything lines up), and are
79 // the preferred style for Quantum.
80 #define KC_TILD LSFT(KC_GRV)    // ~
81 #define KC_TILDE    KC_TILD
82
83 #define KC_EXLM LSFT(KC_1)      // !
84 #define KC_EXCLAIM  KC_EXLM
85
86 #define KC_AT   LSFT(KC_2)      // @
87 #define KC_HASH LSFT(KC_3)      // #
88
89 #define KC_DLR  LSFT(KC_4)      // $
90 #define KC_DOLLAR   KC_DLR
91
92 #define KC_PERC LSFT(KC_5)      // %
93 #define KC_PERCENT  KC_PERC
94
95 #define KC_CIRC LSFT(KC_6)      // ^
96 #define KC_CIRCUMFLEX   KC_CIRC
97
98 #define KC_AMPR LSFT(KC_7)      // &
99 #define KC_AMPERSAND    KC_AMPR
100
101 #define KC_ASTR LSFT(KC_8)      // *
102 #define KC_ASTERISK KC_ASTR
103
104 #define KC_LPRN LSFT(KC_9)      // (
105 #define KC_LEFT_PAREN   KC_LPRN
106
107 #define KC_RPRN LSFT(KC_0)      // )
108 #define KC_RIGHT_PAREN  KC_RPRN
109
110 #define KC_UNDS LSFT(KC_MINS)   // _
111 #define KC_UNDERSCORE   KC_UNDS
112
113 #define KC_PLUS LSFT(KC_EQL)    // +
114
115 #define KC_LCBR LSFT(KC_LBRC)   // {
116 #define KC_LEFT_CURLY_BRACE KC_LCBR
117
118 #define KC_RCBR LSFT(KC_RBRC)   // }
119 #define KC_RIGHT_CURLY_BRACE    KC_RCBR
120
121 #define KC_COLN LSFT(KC_SCLN)   // :
122 #define KC_COLON    KC_COLN
123
124 #define KC_PIPE LSFT(KC_BSLS)   // |
125
126 #define KC_DELT KC_DELETE // Del key (four letter code)
127
128 // Alias for function layers than expand past FN31
129 #define FUNC(kc) kc | 0x2000
130
131 // Aliases
132 #define S(kc) LSFT(kc)
133 #define F(kc) FUNC(kc)
134
135 #define M(kc) kc | 0x3000
136
137 #define MACRODOWN(...) (record->event.pressed ? MACRO(__VA_ARGS__) : MACRO_NONE)
138
139 // These affect the backlight (if your keyboard has one).
140 // We don't need to comment them out if your keyboard doesn't have a backlight,
141 // since they don't take up any space.
142 #define BL_ON 0x4009
143 #define BL_OFF 0x4000
144 #define BL_0 0x4000
145 #define BL_1 0x4001
146 #define BL_2 0x4002
147 #define BL_3 0x4003
148 #define BL_4 0x4004
149 #define BL_5 0x4005
150 #define BL_6 0x4006
151 #define BL_7 0x4007
152 #define BL_8 0x4008
153 #define BL_9 0x4009
154 #define BL_10 0x400A
155 #define BL_11 0x400B
156 #define BL_12 0x400C
157 #define BL_13 0x400D
158 #define BL_14 0x400E
159 #define BL_15 0x400F
160 #define BL_DEC 0x4010
161 #define BL_INC 0x4011
162 #define BL_TOGG 0x4012
163 #define BL_STEP 0x4013
164
165 #define RESET 0x5000
166 #define DEBUG 0x5001
167
168 // MAGIC keycodes
169 #define MAGIC_SWAP_CONTROL_CAPSLOCK      0x5002
170 #define MAGIC_UNSWAP_CONTROL_CAPSLOCK    0x5003
171 #define MAGIC_CAPSLOCK_TO_CONTROL        0x5004
172 #define MAGIC_UNCAPSLOCK_TO_CONTROL      0x5005
173 #define MAGIC_SWAP_LALT_LGUI             0x5006
174 #define MAGIC_UNSWAP_LALT_LGUI           0x5007
175 #define MAGIC_SWAP_RALT_RGUI             0x5008
176 #define MAGIC_UNSWAP_RALT_RGUI           0x5009
177 #define MAGIC_NO_GUI                     0x500a
178 #define MAGIC_UNNO_GUI                   0x500b
179 #define MAGIC_SWAP_GRAVE_ESC             0x500c
180 #define MAGIC_UNSWAP_GRAVE_ESC           0x500d
181 #define MAGIC_SWAP_BACKSLASH_BACKSPACE   0x500e
182 #define MAGIC_UNSWAP_BACKSLASH_BACKSPACE 0x500f
183 #define MAGIC_HOST_NKRO                  0x5010
184 #define MAGIC_UNHOST_NKRO                0x5011
185 #define MAGIC_SWAP_ALT_GUI               0x5012
186 #define MAGIC_UNSWAP_ALT_GUI             0x5013
187
188 #define AG_SWAP MAGIC_SWAP_ALT_GUI
189 #define AG_NORM MAGIC_UNSWAP_ALT_GUI
190
191
192 // GOTO layer - 16 layers max
193 // when:
194 // ON_PRESS    = 1
195 // ON_RELEASE  = 2
196 // Unless you have a good reason not to do so, prefer  ON_PRESS (1) as your default.
197 #define TO(layer, when) (layer | 0x5100 | (when << 0x4))
198
199 // Momentary switch layer - 256 layer max
200 #define MO(layer) (layer | 0x5200)
201
202 // Set default layer - 256 layer max
203 #define DF(layer) (layer | 0x5300)
204
205 // Toggle to layer - 256 layer max
206 #define TG(layer) (layer | 0x5400)
207
208 // M-od, T-ap - 256 keycode max
209 #define MT(mod, kc) (kc | 0x7000 | ((mod & 0xF) << 8))
210 #define CTL_T(kc) MT(0x1, kc)
211 #define SFT_T(kc) MT(0x2, kc)
212 #define ALT_T(kc) MT(0x4, kc)
213 #define GUI_T(kc) MT(0x8, kc)
214 #define C_S_T(kc) MT(0x3, kc) // Control + Shift e.g. for gnome-terminal
215 #define MEH_T(kc) MT(0x7, kc) // Meh is a less hyper version of the Hyper key -- doesn't include Win or Cmd, so just alt+shift+ctrl
216 #define LCAG_T(kc) MT(0xD, kc) // Left control alt and gui
217 #define ALL_T(kc) MT(0xF, kc) // see http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/
218
219 // Dedicated keycode versions for Hyper and Meh, if you want to use them as standalone keys rather than mod-tap
220 #define KC_HYPR HYPR(KC_NO)
221 #define KC_MEH  MEH(KC_NO)
222
223 // L-ayer, T-ap - 256 keycode max, 16 layer max
224 #define LT(layer, kc) (kc | 0x8000 | ((layer & 0xF) << 8))
225
226 // For sending unicode codes.
227 // You may not send codes over 1FFF -- this supports most of UTF8.
228 // To have a key that sends out Œ, go UC(0x0152)
229 #define UNICODE(n) (n | 0x8000)
230 #define UC(n) UNICODE(n)
231
232 // For tri-layer
233 void update_tri_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3);
234 #define IS_LAYER_ON(layer)  (layer_state & (1UL << (layer)))
235 #define IS_LAYER_OFF(layer) (~layer_state & (1UL << (layer)))
236
237
238 #endif