Have clang ignore the code in bootloader_size.c
[jackhill/qmk/firmware.git] / tmk_core / common / action_code.h
CommitLineData
a074364c 1/*
2Copyright 2013 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17#ifndef ACTION_CODE_H
18#define ACTION_CODE_H
19
7c9d5ace 20/** \brief Action codes
a074364c 21 *
7c9d5ace 22 * 16bit code: action_kind(4bit) + action_parameter(12bit)
a074364c 23 *
24 * Key Actions(00xx)
25 * -----------------
26 * ACT_MODS(000r):
27 * 000r|0000|0000 0000 No action code
28 * 000r|0000|0000 0001 Transparent code
29 * 000r|0000| keycode Key
30 * 000r|mods|0000 0000 Modifiers
31 * 000r|mods| keycode Modifiers+Key(Modified key)
32 * r: Left/Right flag(Left:0, Right:1)
33 *
34 * ACT_MODS_TAP(001r):
35 * 001r|mods|0000 0000 Modifiers with OneShot
36 * 001r|mods|0000 0001 Modifiers with tap toggle
37 * 001r|mods|0000 00xx (reserved)
38 * 001r|mods| keycode Modifiers with Tap Key(Dual role)
39 *
a074364c 40 * Other Keys(01xx)
41 * ----------------
42 * ACT_USAGE(0100): TODO: Not needed?
43 * 0100|00| usage(10) System control(0x80) - General Desktop page(0x01)
44 * 0100|01| usage(10) Consumer control(0x01) - Consumer page(0x0C)
45 * 0100|10| usage(10) (reserved)
46 * 0100|11| usage(10) (reserved)
47 *
87bc3625 48 * ACT_MOUSEKEY(0101): TODO: Merge these two actions to conserve space?
a074364c 49 * 0101|xxxx| keycode Mouse key
50 *
87bc3625
LS
51 * ACT_SWAP_HANDS(0110):
52 * 0110|xxxx| keycode Swap hands (keycode on tap, or options)
53 *
87bc3625 54 * 0111|xxxx xxxx xxxx (reserved)
a074364c 55 *
a074364c 56 * Layer Actions(10xx)
57 * -------------------
58 * ACT_LAYER(1000):
59 * 1000|oo00|pppE BBBB Default Layer Bitwise operation
60 * oo: operation(00:AND, 01:OR, 10:XOR, 11:SET)
61 * ppp: 4-bit chunk part(0-7)
62 * EBBBB: bits and extra bit
63 * 1000|ooee|pppE BBBB Layer Bitwise Operation
64 * oo: operation(00:AND, 01:OR, 10:XOR, 11:SET)
65 * ppp: 4-bit chunk part(0-7)
66 * EBBBB: bits and extra bit
67 * ee: on event(01:press, 10:release, 11:both)
68 *
2f6c068e 69 * ACT_LAYER_MODS(1001):
70 * 1001|LLLL| mods Layer with modifiers held
a074364c 71 *
72 * ACT_LAYER_TAP(101x):
1f4a22ee
JW
73 * 101E|LLLL| keycode On/Off with tap key (0x00-DF)[TAP]
74 * 101E|LLLL|1110 mods On/Off with modifiers (0xE0-EF)[NOT TAP]
75 * 101E|LLLL|1111 0000 Invert with tap toggle (0xF0) [TAP]
76 * 101E|LLLL|1111 0001 On/Off (0xF1) [NOT TAP]
77 * 101E|LLLL|1111 0010 Off/On (0xF2) [NOT TAP]
78 * 101E|LLLL|1111 0011 Set/Clear (0xF3) [NOT TAP]
74e97eef
TA
79 * 101E|LLLL|1111 0100 One Shot Layer (0xF4) [TAP]
80 * 101E|LLLL|1111 xxxx Reserved (0xF5-FF)
a074364c 81 * ELLLL: layer 0-31(E: extra bit for layer 16-31)
82 *
a074364c 83 * Extensions(11xx)
84 * ----------------
85 * ACT_MACRO(1100):
86 * 1100|opt | id(8) Macro play?
87 * 1100|1111| id(8) Macro record?
88 *
89 * ACT_BACKLIGHT(1101):
90 * 1101|opt |level(8) Backlight commands
91 *
92 * ACT_COMMAND(1110):
93 * 1110|opt | id(8) Built-in Command exec
94 *
95 * ACT_FUNCTION(1111):
96 * 1111| address(12) Function?
97 * 1111|opt | id(8) Function?
98 */
99enum action_kind_id {
100 /* Key Actions */
101 ACT_MODS = 0b0000,
102 ACT_LMODS = 0b0000,
103 ACT_RMODS = 0b0001,
104 ACT_MODS_TAP = 0b0010,
105 ACT_LMODS_TAP = 0b0010,
106 ACT_RMODS_TAP = 0b0011,
107 /* Other Keys */
108 ACT_USAGE = 0b0100,
109 ACT_MOUSEKEY = 0b0101,
8090f6b4
JW
110 /* One-hand Support */
111 ACT_SWAP_HANDS = 0b0110,
a074364c 112 /* Layer Actions */
113 ACT_LAYER = 0b1000,
2f6c068e 114 ACT_LAYER_MODS = 0b1001,
a074364c 115 ACT_LAYER_TAP = 0b1010, /* Layer 0-15 */
116 ACT_LAYER_TAP_EXT = 0b1011, /* Layer 16-31 */
117 /* Extensions */
118 ACT_MACRO = 0b1100,
119 ACT_BACKLIGHT = 0b1101,
120 ACT_COMMAND = 0b1110,
121 ACT_FUNCTION = 0b1111
122};
123
124
7c9d5ace 125/** \brief Action Code Struct
a074364c 126 *
127 * NOTE:
128 * In avr-gcc bit field seems to be assigned from LSB(bit0) to MSB(bit15).
129 * AVR looks like a little endian in avr-gcc.
130 * Not portable across compiler/endianness?
131 *
132 * Byte order and bit order of 0x1234:
133 * Big endian: Little endian:
134 * -------------------- --------------------
135 * FEDC BA98 7654 3210 0123 4567 89AB CDEF
136 * 0001 0010 0011 0100 0010 1100 0100 1000
137 * 0x12 0x34 0x34 0x12
138 */
139typedef union {
140 uint16_t code;
141 struct action_kind {
142 uint16_t param :12;
143 uint8_t id :4;
144 } kind;
145 struct action_key {
146 uint8_t code :8;
147 uint8_t mods :4;
148 uint8_t kind :4;
149 } key;
150 struct action_layer_bitop {
151 uint8_t bits :4;
152 uint8_t xbit :1;
153 uint8_t part :3;
154 uint8_t on :2;
155 uint8_t op :2;
156 uint8_t kind :4;
157 } layer_bitop;
2f6c068e 158 struct action_layer_mods
159 {
160 uint8_t mods :8;
161 uint8_t layer :4;
162 uint8_t kind :4;
163 } layer_mods;
a074364c 164 struct action_layer_tap {
165 uint8_t code :8;
166 uint8_t val :5;
167 uint8_t kind :3;
168 } layer_tap;
169 struct action_usage {
170 uint16_t code :10;
171 uint8_t page :2;
172 uint8_t kind :4;
173 } usage;
174 struct action_backlight {
175 uint8_t level :8;
176 uint8_t opt :4;
177 uint8_t kind :4;
178 } backlight;
179 struct action_command {
180 uint8_t id :8;
181 uint8_t opt :4;
182 uint8_t kind :4;
183 } command;
184 struct action_function {
185 uint8_t id :8;
186 uint8_t opt :4;
187 uint8_t kind :4;
188 } func;
8090f6b4
JW
189 struct action_swap {
190 uint8_t code :8;
5d771039 191 uint8_t opt :4;
8090f6b4
JW
192 uint8_t kind :4;
193 } swap;
a074364c 194} action_t;
195
196
197/* action utility */
198#define ACTION_NO 0
199#define ACTION_TRANSPARENT 1
200#define ACTION(kind, param) ((kind)<<12 | (param))
201
202
7c9d5ace 203/** \brief Key Actions
204 *
205 * Mod bits: 43210
a074364c 206 * bit 0 ||||+- Control
207 * bit 1 |||+-- Shift
208 * bit 2 ||+--- Alt
209 * bit 3 |+---- Gui
210 * bit 4 +----- LR flag(Left:0, Right:1)
211 */
212enum mods_bit {
213 MOD_LCTL = 0x01,
214 MOD_LSFT = 0x02,
215 MOD_LALT = 0x04,
216 MOD_LGUI = 0x08,
217 MOD_RCTL = 0x11,
218 MOD_RSFT = 0x12,
219 MOD_RALT = 0x14,
220 MOD_RGUI = 0x18,
221};
222enum mods_codes {
223 MODS_ONESHOT = 0x00,
224 MODS_TAP_TOGGLE = 0x01,
225};
226#define ACTION_KEY(key) ACTION(ACT_MODS, (key))
227#define ACTION_MODS(mods) ACTION(ACT_MODS, ((mods)&0x1f)<<8 | 0)
228#define ACTION_MODS_KEY(mods, key) ACTION(ACT_MODS, ((mods)&0x1f)<<8 | (key))
229#define ACTION_MODS_TAP_KEY(mods, key) ACTION(ACT_MODS_TAP, ((mods)&0x1f)<<8 | (key))
230#define ACTION_MODS_ONESHOT(mods) ACTION(ACT_MODS_TAP, ((mods)&0x1f)<<8 | MODS_ONESHOT)
231#define ACTION_MODS_TAP_TOGGLE(mods) ACTION(ACT_MODS_TAP, ((mods)&0x1f)<<8 | MODS_TAP_TOGGLE)
232
233
7c9d5ace 234/** \brief Other Keys
a074364c 235 */
236enum usage_pages {
237 PAGE_SYSTEM,
238 PAGE_CONSUMER
239};
240#define ACTION_USAGE_SYSTEM(id) ACTION(ACT_USAGE, PAGE_SYSTEM<<10 | (id))
241#define ACTION_USAGE_CONSUMER(id) ACTION(ACT_USAGE, PAGE_CONSUMER<<10 | (id))
242#define ACTION_MOUSEKEY(key) ACTION(ACT_MOUSEKEY, key)
243
244
245
7c9d5ace 246/** \brief Layer Actions
a074364c 247 */
248enum layer_param_on {
249 ON_PRESS = 1,
250 ON_RELEASE = 2,
251 ON_BOTH = 3,
252};
7c9d5ace 253
254/** \brief Layer Actions
255 */
a074364c 256enum layer_param_bit_op {
257 OP_BIT_AND = 0,
258 OP_BIT_OR = 1,
259 OP_BIT_XOR = 2,
260 OP_BIT_SET = 3,
261};
7c9d5ace 262
263/** \brief Layer Actions
264 */
5d771039 265enum layer_param_tap_op {
a074364c 266 OP_TAP_TOGGLE = 0xF0,
267 OP_ON_OFF,
268 OP_OFF_ON,
269 OP_SET_CLEAR,
74e97eef 270 OP_ONESHOT,
a074364c 271};
2f6c068e 272#define ACTION_LAYER_BITOP(op, part, bits, on) ACTION(ACT_LAYER, (op)<<10 | (on)<<8 | (part)<<5 | ((bits)&0x1f))
273#define ACTION_LAYER_TAP(layer, key) ACTION(ACT_LAYER_TAP, (layer)<<8 | (key))
a074364c 274/* Default Layer */
275#define ACTION_DEFAULT_LAYER_SET(layer) ACTION_DEFAULT_LAYER_BIT_SET((layer)/4, 1<<((layer)%4))
276/* Layer Operation */
277#define ACTION_LAYER_CLEAR(on) ACTION_LAYER_BIT_AND(0, 0, (on))
278#define ACTION_LAYER_MOMENTARY(layer) ACTION_LAYER_ON_OFF(layer)
279#define ACTION_LAYER_TOGGLE(layer) ACTION_LAYER_INVERT(layer, ON_RELEASE)
280#define ACTION_LAYER_INVERT(layer, on) ACTION_LAYER_BIT_XOR((layer)/4, 1<<((layer)%4), (on))
281#define ACTION_LAYER_ON(layer, on) ACTION_LAYER_BIT_OR( (layer)/4, 1<<((layer)%4), (on))
282#define ACTION_LAYER_OFF(layer, on) ACTION_LAYER_BIT_AND((layer)/4, ~(1<<((layer)%4)), (on))
283#define ACTION_LAYER_SET(layer, on) ACTION_LAYER_BIT_SET((layer)/4, 1<<((layer)%4), (on))
284#define ACTION_LAYER_ON_OFF(layer) ACTION_LAYER_TAP((layer), OP_ON_OFF)
285#define ACTION_LAYER_OFF_ON(layer) ACTION_LAYER_TAP((layer), OP_OFF_ON)
286#define ACTION_LAYER_SET_CLEAR(layer) ACTION_LAYER_TAP((layer), OP_SET_CLEAR)
74e97eef 287#define ACTION_LAYER_ONESHOT(layer) ACTION_LAYER_TAP((layer), OP_ONESHOT)
2f6c068e 288#define ACTION_LAYER_MODS(layer, mods) ACTION(ACT_LAYER_MODS, (layer) << 8 | (mods))
a074364c 289/* With Tapping */
290#define ACTION_LAYER_TAP_KEY(layer, key) ACTION_LAYER_TAP((layer), (key))
291#define ACTION_LAYER_TAP_TOGGLE(layer) ACTION_LAYER_TAP((layer), OP_TAP_TOGGLE)
292/* Bitwise Operation */
293#define ACTION_LAYER_BIT_AND(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_AND, (part), (bits), (on))
294#define ACTION_LAYER_BIT_OR( part, bits, on) ACTION_LAYER_BITOP(OP_BIT_OR, (part), (bits), (on))
295#define ACTION_LAYER_BIT_XOR(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_XOR, (part), (bits), (on))
296#define ACTION_LAYER_BIT_SET(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_SET, (part), (bits), (on))
297/* Default Layer Bitwise Operation */
298#define ACTION_DEFAULT_LAYER_BIT_AND(part, bits) ACTION_LAYER_BITOP(OP_BIT_AND, (part), (bits), 0)
299#define ACTION_DEFAULT_LAYER_BIT_OR( part, bits) ACTION_LAYER_BITOP(OP_BIT_OR, (part), (bits), 0)
300#define ACTION_DEFAULT_LAYER_BIT_XOR(part, bits) ACTION_LAYER_BITOP(OP_BIT_XOR, (part), (bits), 0)
301#define ACTION_DEFAULT_LAYER_BIT_SET(part, bits) ACTION_LAYER_BITOP(OP_BIT_SET, (part), (bits), 0)
302
303
7c9d5ace 304/** \brief Extensions
a074364c 305 */
306enum backlight_opt {
307 BACKLIGHT_INCREASE = 0,
308 BACKLIGHT_DECREASE = 1,
309 BACKLIGHT_TOGGLE = 2,
310 BACKLIGHT_STEP = 3,
4931510a
BG
311 BACKLIGHT_ON = 4,
312 BACKLIGHT_OFF = 5,
a074364c 313};
dd378601 314
a074364c 315/* Macro */
316#define ACTION_MACRO(id) ACTION(ACT_MACRO, (id))
317#define ACTION_MACRO_TAP(id) ACTION(ACT_MACRO, FUNC_TAP<<8 | (id))
318#define ACTION_MACRO_OPT(id, opt) ACTION(ACT_MACRO, (opt)<<8 | (id))
319/* Backlight */
320#define ACTION_BACKLIGHT_INCREASE() ACTION(ACT_BACKLIGHT, BACKLIGHT_INCREASE << 8)
321#define ACTION_BACKLIGHT_DECREASE() ACTION(ACT_BACKLIGHT, BACKLIGHT_DECREASE << 8)
322#define ACTION_BACKLIGHT_TOGGLE() ACTION(ACT_BACKLIGHT, BACKLIGHT_TOGGLE << 8)
323#define ACTION_BACKLIGHT_STEP() ACTION(ACT_BACKLIGHT, BACKLIGHT_STEP << 8)
4931510a
BG
324#define ACTION_BACKLIGHT_ON() ACTION(ACT_BACKLIGHT, BACKLIGHT_ON << 8)
325#define ACTION_BACKLIGHT_OFF() ACTION(ACT_BACKLIGHT, BACKLIGHT_OFF << 8)
a074364c 326/* Command */
dd378601 327#define ACTION_COMMAND(id, opt) ACTION(ACT_COMMAND, (opt)<<8 | (id))
a074364c 328/* Function */
329enum function_opts {
330 FUNC_TAP = 0x8, /* indciates function is tappable */
331};
332#define ACTION_FUNCTION(id) ACTION(ACT_FUNCTION, (id))
333#define ACTION_FUNCTION_TAP(id) ACTION(ACT_FUNCTION, FUNC_TAP<<8 | (id))
334#define ACTION_FUNCTION_OPT(id, opt) ACTION(ACT_FUNCTION, (opt)<<8 | (id))
dd378601 335/* OneHand Support */
5d771039 336enum swap_hands_param_tap_op {
8090f6b4
JW
337 OP_SH_TOGGLE = 0xF0,
338 OP_SH_TAP_TOGGLE,
339 OP_SH_ON_OFF,
340 OP_SH_OFF_ON,
341 OP_SH_OFF,
342 OP_SH_ON,
343};
344
345#define ACTION_SWAP_HANDS() ACTION_SWAP_HANDS_ON_OFF()
346#define ACTION_SWAP_HANDS_TOGGLE() ACTION(ACT_SWAP_HANDS, OP_SH_TOGGLE)
347#define ACTION_SWAP_HANDS_TAP_TOGGLE() ACTION(ACT_SWAP_HANDS, OP_SH_TAP_TOGGLE)
348#define ACTION_SWAP_HANDS_TAP_KEY(key) ACTION(ACT_SWAP_HANDS, key)
349#define ACTION_SWAP_HANDS_ON_OFF() ACTION(ACT_SWAP_HANDS, OP_SH_ON_OFF)
350#define ACTION_SWAP_HANDS_OFF_ON() ACTION(ACT_SWAP_HANDS, OP_SH_OFF_ON)
351#define ACTION_SWAP_HANDS_ON() ACTION(ACT_SWAP_HANDS, OP_SH_ON)
352#define ACTION_SWAP_HANDS_OFF() ACTION(ACT_SWAP_HANDS, OP_SH_OFF)
a074364c 353
354#endif /* ACTION_CODE_H */