]> git.gir.st - tmk_keyboard.git/blob - common/action.h
Replace layer_stack with layer_switch
[tmk_keyboard.git] / common / action.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 #ifndef ACTION_H
18 #define ACTION_H
19
20 #include "keyboard.h"
21 #include "keycode.h"
22
23
24 /* Struct to record event and tap count */
25 typedef struct {
26 keyevent_t event;
27 uint8_t tap_count;
28 } keyrecord_t;
29
30 /* Action struct.
31 *
32 * In avr-gcc bit field seems to be assigned from LSB(bit0) to MSB(bit15).
33 * AVR looks like a little endian in avr-gcc.
34 *
35 * NOTE: not portable across compiler/endianness?
36 * Byte order and bit order of 0x1234:
37 * Big endian: 15 ... 8 7 ... 210
38 * | 0x12 | 0x34 |
39 * 0001 0010 0011 0100
40 * Little endian: 012 ... 7 8 ... 15
41 * | 0x34 | 0x12 |
42 * 0010 1100 0100 1000
43 */
44 typedef union {
45 uint16_t code;
46 struct action_kind {
47 uint16_t param :12;
48 uint8_t id :4;
49 } kind;
50 struct action_key {
51 uint8_t code :8;
52 uint8_t mods :4;
53 uint8_t kind :4;
54 } key;
55 struct action_layer {
56 uint8_t code :8;
57 uint8_t val :4;
58 uint8_t kind :4;
59 } layer;
60 struct action_usage {
61 uint16_t code :10;
62 uint8_t page :2;
63 uint8_t kind :4;
64 } usage;
65 struct action_command {
66 uint8_t id :8;
67 uint8_t opt :4;
68 uint8_t kind :4;
69 } command;
70 struct action_function {
71 uint8_t id :8;
72 uint8_t opt :4;
73 uint8_t kind :4;
74 } func;
75 } action_t;
76
77
78
79 /* layer used currently */
80 extern uint8_t current_layer;
81 /* layer to return or start with */
82 extern uint8_t default_layer;
83
84 /* Execute action per keyevent */
85 void action_exec(keyevent_t event);
86
87 /* action for key */
88 action_t action_for_key(uint8_t layer, key_t key);
89
90 /* user defined special function */
91 void action_function(keyrecord_t *record, uint8_t id, uint8_t opt);
92
93 /*
94 * Utilities for actions.
95 */
96 void register_code(uint8_t code);
97 void unregister_code(uint8_t code);
98 void add_mods(uint8_t mods);
99 void del_mods(uint8_t mods);
100 void set_mods(uint8_t mods);
101 void clear_keyboard(void);
102 void clear_keyboard_but_mods(void);
103 bool sending_anykey(void);
104 void layer_switch(uint8_t new_layer);
105 bool is_tap_key(key_t key);
106 bool waiting_buffer_has_anykey_pressed(void);
107
108
109
110 /*
111 * Action codes
112 * ============
113 * 16bit code: action_kind(4bit) + action_parameter(12bit)
114 *
115 * Keyboard Keys
116 * -------------
117 * ACT_LMODS(0000):
118 * 0000|0000|000000|00 No action
119 * 0000|0000|000000|01 Transparent
120 * 0000|0000| keycode Key
121 * 0000|mods|000000|00 Left mods
122 * 0000|mods| keycode Key & Left mods
123 *
124 * ACT_RMODS(0001):
125 * 0001|0000|000000|00 No action(not used)
126 * 0001|0000|000000|01 Transparent(not used)
127 * 0001|0000| keycode Key(no used)
128 * 0001|mods|000000|00 Right mods
129 * 0001|mods| keycode Key & Right mods
130 *
131 * ACT_LMODS_TAP(0010):
132 * 0010|mods|000000|00 Left mods OneShot
133 * 0010|mods|000000|01 (reserved)
134 * 0010|mods|000000|10 (reserved)
135 * 0010|mods|000000|11 (reserved)
136 * 0010|mods| keycode Left mods + tap Key
137 *
138 * ACT_RMODS_TAP(0011):
139 * 0011|mods|000000|00 Right mods OneShot
140 * 0011|mods|000000|01 (reserved)
141 * 0011|mods|000000|10 (reserved)
142 * 0011|mods|000000|11 (reserved)
143 * 0011|mods| keycode Right mods + tap Key
144 *
145 *
146 * Other HID Usage
147 * ---------------
148 * This action handles other usages than keyboard.
149 * ACT_USAGE(0100):
150 * 0100|00| usage(10) System control(0x80) - General Desktop page(0x01)
151 * 0100|01| usage(10) Consumer control(0x01) - Consumer page(0x0C)
152 * 0100|10| usage(10) (reserved)
153 * 0100|11| usage(10) (reserved)
154 *
155 *
156 * Mouse Keys
157 * ----------
158 * TODO: can be combined with 'Other HID Usage'? to save action kind id.
159 * ACT_MOUSEKEY(0110):
160 * 0101|XXXX| keycode Mouse key
161 *
162 *
163 * Layer Actions
164 * -------------
165 * ACT_LAYER(1000): Set layer
166 * 1000|LLLL|0000 0000 set current layer on press and return to default on release(momentary)
167 * 1000|LLLL|0000 0001 set current layer on press
168 * 1000|LLLL|0000 0010 set current layer on release
169 * 1000|LLLL|0000 0011 set current layer on both
170 * 1000|LLLL| keycode set current layer on hold and send key on tap
171 * 1000|LLLL|1111 0000 set current layer on hold and toggle on several taps
172 * 1000|DDDD|1111 1111 set default layer on press
173 * L: 0 means default layer
174 *
175 * ACT_LAYER_BIT(1001): Bit-op layer
176 * 1001|BBBB|0000 0000 bit-on current layer on press and bit-off on release(momentary)
177 * 1001|BBBB|0000 0001 bit-xor current layer on press
178 * 1001|BBBB|0000 0010 bit-xor current layer on release
179 * 1001|BBBB|0000 0011 bit-xor current layer on both
180 * 1001|BBBB| keycode bit-xor current layer on hold and send key on tap
181 * 1001|BBBB|1111 0000 bit-xor current layer on hold and toggle on several taps
182 * 1001|BBBB|1111 1111 bit-xor default layer on both
183 *
184 * ACT_LAYER_SWITCH: Switch
185 * 1011|LLLL|0000 0000 On on press and Off on release(momentary)
186 * 1011|LLLL|0000 0001 Invert on press
187 * 1011|LLLL|0000 0010 Invert on release
188 * 1011|LLLL|0000 0011 Invert on both
189 * 1011|LLLL| keycode Invert on hold and send key on tap
190 * 1011|LLLL|1111 0000 Invert on hold and toggle on several taps
191 * 1011|LLLL|1111 1111 (not used)
192 *
193 *
194 * Extensions(11XX)
195 * ----------------
196 * NOTE: NOT FIXED
197 *
198 * ACT_MACRO(1100):
199 * 1100|opt | id(8) Macro play?
200 * 1100|1111| id(8) Macro record?
201 *
202 * ACT_COMMAND(1110):
203 * 1110|opt | id(8) Built-in Command exec
204 *
205 * ACT_FUNCTION(1111):
206 * 1111| address(12) Function?
207 * 1111|opt | id(8) Function?
208 *
209 */
210 enum action_kind_id {
211 ACT_LMODS = 0b0000,
212 ACT_RMODS = 0b0001,
213 ACT_LMODS_TAP = 0b0010,
214 ACT_RMODS_TAP = 0b0011,
215
216 ACT_USAGE = 0b0100,
217 ACT_MOUSEKEY = 0b0101,
218
219 ACT_LAYER = 0b1000,
220 ACT_LAYER_BIT = 0b1001,
221 ACT_LAYER_SWITCH = 0b1011,
222
223 ACT_MACRO = 0b1100,
224 ACT_COMMAND = 0b1110,
225 ACT_FUNCTION = 0b1111
226 };
227
228
229 /* action utility */
230 #define ACTION_NO 0
231 #define ACTION_TRANSPARENT 1
232 #define ACTION(kind, param) ((kind)<<12 | (param))
233 #define MODS4(mods) (((mods)>>4 | (mods)) & 0x0F)
234
235 /*
236 * Key
237 */
238 #define ACTION_KEY(key) ACTION(ACT_LMODS, key)
239 /* Mods & key */
240 #define ACTION_LMODS(mods) ACTION(ACT_LMODS, MODS4(mods)<<8 | 0x00)
241 #define ACTION_LMODS_KEY(mods, key) ACTION(ACT_LMODS, MODS4(mods)<<8 | (key))
242 #define ACTION_RMODS(mods) ACTION(ACT_RMODS, MODS4(mods)<<8 | 0x00)
243 #define ACTION_RMODS_KEY(mods, key) ACTION(ACT_RMODS, MODS4(mods)<<8 | (key))
244 #define ACTION_LMOD(mod) ACTION(ACT_LMODS, MODS4(MOD_BIT(mod))<<8 | 0x00)
245 #define ACTION_LMOD_KEY(mod, key) ACTION(ACT_LMODS, MODS4(MOD_BIT(mod))<<8 | (key))
246 #define ACTION_RMOD(mod) ACTION(ACT_RMODS, MODS4(MOD_BIT(mod))<<8 | 0x00)
247 #define ACTION_RMOD_KEY(mod, key) ACTION(ACT_RMODS, MODS4(MOD_BIT(mod))<<8 | (key))
248 /* Tap key */
249 enum mods_codes {
250 MODS_ONESHOT = 0x00,
251 };
252 #define ACTION_LMODS_TAP_KEY(mods, key) ACTION(ACT_LMODS_TAP, MODS4(mods)<<8 | (key))
253 #define ACTION_LMODS_ONESHOT(mods) ACTION(ACT_LMODS_TAP, MODS4(mods)<<8 | MODS_ONESHOT)
254 #define ACTION_RMODS_TAP_KEY(mods, key) ACTION(ACT_RMODS_TAP, MODS4(mods)<<8 | (key))
255 #define ACTION_RMODS_ONESHOT(mods) ACTION(ACT_RMODS_TAP, MODS4(mods)<<8 | MODS_ONESHOT)
256 #define ACTION_LMOD_TAP_KEY(mod, key) ACTION(ACT_LMODS_TAP, MODS4(MOD_BIT(mod))<<8 | (key))
257 #define ACTION_LMOD_ONESHOT(mod) ACTION(ACT_LMODS_TAP, MODS4(MOD_BIT(mod))<<8 | MODS_ONESHOT)
258 #define ACTION_RMOD_TAP_KEY(mod, key) ACTION(ACT_RMODS_TAP, MODS4(MOD_BIT(mod))<<8 | (key))
259 #define ACTION_RMOD_ONESHOT(mod) ACTION(ACT_RMODS_TAP, MODS4(MOD_BIT(mod))<<8 | MODS_ONESHOT)
260
261
262 /*
263 * Layer switching
264 */
265 enum layer_codes {
266 LAYER_MOMENTARY = 0,
267 LAYER_ON_PRESS = 1,
268 LAYER_ON_RELEASE = 2,
269 LAYER_ON_BOTH =3,
270 LAYER_TAP_TOGGLE = 0xF0,
271 LAYER_SET_DEFAULT_ON_PRESS = 0xFD,
272 LAYER_SET_DEFAULT_ON_RELEASE = 0xFE,
273 LAYER_SET_DEFAULT_ON_BOTH = 0xFF
274 };
275 /*
276 * Default layer
277 */
278 /* set default layer */
279 #define ACTION_LAYER_SET_DEFAULT(layer) ACTION_LAYER_SET_DEFAULT_R(layer)
280 #define ACTION_LAYER_SET_DEFAULT_P(layer) ACTION(ACT_LAYER, (layer)<<8 | LAYER_SET_DEFAULT_ON_PRESS)
281 #define ACTION_LAYER_SET_DEFAULT_R(layer) ACTION(ACT_LAYER, (layer)<<8 | LAYER_SET_DEFAULT_ON_RELEASE)
282 #define ACTION_LAYER_SET_DEFAULT_B(layer) ACTION(ACT_LAYER, (layer)<<8 | LAYER_SET_DEFAULT_ON_BOTH)
283 /* bit-xor default layer */
284 #define ACTION_LAYER_BIT_DEFAULT(bits) ACTION_LAYER_BIT_DEFAULT_R(bits)
285 #define ACTION_LAYER_BIT_DEFAULT_P(bits) ACTION(ACT_LAYER, (bits)<<8 | LAYER_SET_DEFAULT_ON_PRESS)
286 #define ACTION_LAYER_BIT_DEFAULT_R(bits) ACTION(ACT_LAYER, (bits)<<8 | LAYER_SET_DEFAULT_ON_RELEASE)
287 #define ACTION_LAYER_BIT_DEFAULT_B(bits) ACTION(ACT_LAYER, (bits)<<8 | LAYER_SET_DEFAULT_ON_BOTH)
288 /*
289 * Current layer: Return to default layer
290 */
291 #define ACTION_LAYER_DEFAULT ACTION_LAYER_DEFAULT_R
292 #define ACTION_LAYER_DEFAULT_P ACTION_LAYER_SET_P(0)
293 #define ACTION_LAYER_DEFAULT_R ACTION_LAYER_SET_R(0)
294 #define ACTION_LAYER_DEFAULT_B ACTION_LAYER_SET_B(0)
295 /*
296 * Current layer: Set
297 */
298 #define ACTION_LAYER_SET(layer) ACTION_LAYER_SET_P(layer)
299 #define ACTION_LAYER_SET_MOMENTARY(layer) ACTION(ACT_LAYER, (layer)<<8 | LAYER_MOMENTARY)
300 #define ACTION_LAYER_SET_TOGGLE(layer) ACTION_LAYER_SET_R(layer)
301 #define ACTION_LAYER_SET_P(layer) ACTION(ACT_LAYER, (layer)<<8 | LAYER_ON_PRESS)
302 #define ACTION_LAYER_SET_R(layer) ACTION(ACT_LAYER, (layer)<<8 | LAYER_ON_RELEASE)
303 #define ACTION_LAYER_SET_B(layer) ACTION(ACT_LAYER, (layer)<<8 | LAYER_ON_BOTH)
304 #define ACTION_LAYER_SET_TAP_TOGGLE(layer) ACTION(ACT_LAYER, (layer)<<8 | LAYER_TAP_TOGGLE)
305 #define ACTION_LAYER_SET_TAP_KEY(layer, key) ACTION(ACT_LAYER, (layer)<<8 | (key))
306 /*
307 * Current layer: Bit-op
308 */
309 #define ACTION_LAYER_BIT(bits) ACTION_LAYER_BIT_MOMENTARY(bits)
310 #define ACTION_LAYER_BIT_MOMENTARY(bits) ACTION(ACT_LAYER_BIT, (bits)<<8 | LAYER_MOMENTARY)
311 #define ACTION_LAYER_BIT_TOGGLE(bits) ACTION_LAYER_BIT_R(bits)
312 #define ACTION_LAYER_BIT_P(bits) ACTION(ACT_LAYER_BIT, (bits)<<8 | LAYER_ON_PRESS)
313 #define ACTION_LAYER_BIT_R(bits) ACTION(ACT_LAYER_BIT, (bits)<<8 | LAYER_ON_RELEASE)
314 #define ACTION_LAYER_BIT_B(bits) ACTION(ACT_LAYER_BIT, (bits)<<8 | LAYER_ON_BOTH)
315 #define ACTION_LAYER_BIT_TAP_TOGGLE(bits) ACTION(ACT_LAYER_BIT, (bits)<<8 | LAYER_TAP_TOGGLE)
316 #define ACTION_LAYER_BIT_TAP_KEY(bits, key) ACTION(ACT_LAYER_BIT, (bits)<<8 | (key))
317 /*
318 * Layer SWITCH
319 */
320 /* momentary */
321 #define ACTION_LAYER_SWITCH(layer) ACTION_LAYER_SWITCH_MOMENTARY(layer)
322 #define ACTION_LAYER_SWITCH_MOMENTARY(layer) ACTION(ACT_LAYER_SWITCH, (layer)<<8 | LAYER_MOMENTARY)
323 #define ACTION_LAYER_SWITCH_TOGGLE(layer) ACTION_LAYER_SWITCH_R(layer)
324 #define ACTION_LAYER_SWITCH_P(layer) ACTION(ACT_LAYER_SWITCH, (layer)<<8 | LAYER_ON_PRESS)
325 #define ACTION_LAYER_SWITCH_R(layer) ACTION(ACT_LAYER_SWITCH, (layer)<<8 | LAYER_ON_RELEASE)
326 #define ACTION_LAYER_SWITCH_B(layer) ACTION(ACT_LAYER_SWITCH, (layer)<<8 | LAYER_ON_BOTH)
327 #define ACTION_LAYER_SWITCH_TAP_TOGGLE(layer) ACTION(ACT_LAYER_SWITCH, (layer)<<8 | LAYER_TAP_TOGGLE)
328 #define ACTION_LAYER_SWITCH_TAP_KEY(layer, key) ACTION(ACT_LAYER_SWITCH, (layer)<<8 | (key))
329
330
331 /*
332 * HID Usage
333 */
334 enum usage_pages {
335 PAGE_SYSTEM,
336 PAGE_CONSUMER
337 };
338 #define ACTION_USAGE_SYSTEM(id) ACTION(ACT_USAGE, PAGE_SYSTEM<<10 | (id))
339 #define ACTION_USAGE_CONSUMER(id) ACTION(ACT_USAGE, PAGE_CONSUMER<<10 | (id))
340
341 /* Mousekey */
342 #define ACTION_MOUSEKEY(key) ACTION(ACT_MOUSEKEY, key)
343
344 /* Macro */
345 #define ACTION_MACRO(opt, id) ACTION(ACT_FUNCTION, (opt)<<8 | (addr))
346
347 /* Command */
348 #define ACTION_COMMAND(opt, id) ACTION(ACT_COMMAND, (opt)<<8 | (addr))
349
350 /* Function */
351 enum function_opts {
352 FUNC_TAP = 0x8, /* indciates function is tappable */
353 };
354 #define ACTION_FUNCTION(id, opt) ACTION(ACT_FUNCTION, (opt)<<8 | id)
355 #define ACTION_FUNCTION_TAP(id) ACTION(ACT_FUNCTION, FUNC_TAP<<8 | id)
356
357 #endif /* ACTION_H */
Imprint / Impressum