diff options
Diffstat (limited to 'quantum/action_code.h')
| -rw-r--r-- | quantum/action_code.h | 308 |
1 files changed, 308 insertions, 0 deletions
diff --git a/quantum/action_code.h b/quantum/action_code.h new file mode 100644 index 000000000..eb18c36ae --- /dev/null +++ b/quantum/action_code.h | |||
| @@ -0,0 +1,308 @@ | |||
| 1 | /* | ||
| 2 | Copyright 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 | #pragma once | ||
| 19 | |||
| 20 | /** \brief Action codes | ||
| 21 | * | ||
| 22 | * 16bit code: action_kind(4bit) + action_parameter(12bit) | ||
| 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 | * | ||
| 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 | * | ||
| 48 | * ACT_MOUSEKEY(0101): TODO: Merge these two actions to conserve space? | ||
| 49 | * 0101|xxxx| keycode Mouse key | ||
| 50 | * | ||
| 51 | * ACT_SWAP_HANDS(0110): | ||
| 52 | * 0110|xxxx| keycode Swap hands (keycode on tap, or options) | ||
| 53 | * | ||
| 54 | * 0111|xxxx xxxx xxxx (reserved) | ||
| 55 | * | ||
| 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 | * | ||
| 69 | * ACT_LAYER_MODS(1001): | ||
| 70 | * 1001|LLLL| mods Layer with modifiers held | ||
| 71 | * | ||
| 72 | * ACT_LAYER_TAP(101x): | ||
| 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] | ||
| 79 | * 101E|LLLL|1111 0100 One Shot Layer (0xF4) [TAP] | ||
| 80 | * 101E|LLLL|1111 xxxx Reserved (0xF5-FF) | ||
| 81 | * ELLLL: layer 0-31(E: extra bit for layer 16-31) | ||
| 82 | * | ||
| 83 | * Extensions(11xx) | ||
| 84 | * ---------------- | ||
| 85 | * ACT_MACRO(1100): | ||
| 86 | * 1100|opt | id(8) Macro play? | ||
| 87 | * 1100|1111| id(8) Macro record? | ||
| 88 | * | ||
| 89 | * 1101|xxxx xxxx xxxx (reserved) | ||
| 90 | * 1110|xxxx xxxx xxxx (reserved) | ||
| 91 | * | ||
| 92 | * ACT_FUNCTION(1111): | ||
| 93 | * 1111| address(12) Function? | ||
| 94 | * 1111|opt | id(8) Function? | ||
| 95 | */ | ||
| 96 | enum action_kind_id { | ||
| 97 | /* Key Actions */ | ||
| 98 | ACT_MODS = 0b0000, | ||
| 99 | ACT_LMODS = 0b0000, | ||
| 100 | ACT_RMODS = 0b0001, | ||
| 101 | ACT_MODS_TAP = 0b0010, | ||
| 102 | ACT_LMODS_TAP = 0b0010, | ||
| 103 | ACT_RMODS_TAP = 0b0011, | ||
| 104 | /* Other Keys */ | ||
| 105 | ACT_USAGE = 0b0100, | ||
| 106 | ACT_MOUSEKEY = 0b0101, | ||
| 107 | /* One-hand Support */ | ||
| 108 | ACT_SWAP_HANDS = 0b0110, | ||
| 109 | /* Layer Actions */ | ||
| 110 | ACT_LAYER = 0b1000, | ||
| 111 | ACT_LAYER_MODS = 0b1001, | ||
| 112 | ACT_LAYER_TAP = 0b1010, /* Layer 0-15 */ | ||
| 113 | ACT_LAYER_TAP_EXT = 0b1011, /* Layer 16-31 */ | ||
| 114 | /* Extensions */ | ||
| 115 | ACT_MACRO = 0b1100, | ||
| 116 | ACT_FUNCTION = 0b1111 | ||
| 117 | }; | ||
| 118 | |||
| 119 | /** \brief Action Code Struct | ||
| 120 | * | ||
| 121 | * NOTE: | ||
| 122 | * In avr-gcc bit field seems to be assigned from LSB(bit0) to MSB(bit15). | ||
| 123 | * AVR looks like a little endian in avr-gcc. | ||
| 124 | * Not portable across compiler/endianness? | ||
| 125 | * | ||
| 126 | * Byte order and bit order of 0x1234: | ||
| 127 | * Big endian: Little endian: | ||
| 128 | * -------------------- -------------------- | ||
| 129 | * FEDC BA98 7654 3210 0123 4567 89AB CDEF | ||
| 130 | * 0001 0010 0011 0100 0010 1100 0100 1000 | ||
| 131 | * 0x12 0x34 0x34 0x12 | ||
| 132 | */ | ||
| 133 | typedef union { | ||
| 134 | uint16_t code; | ||
| 135 | struct action_kind { | ||
| 136 | uint16_t param : 12; | ||
| 137 | uint8_t id : 4; | ||
| 138 | } kind; | ||
| 139 | struct action_key { | ||
| 140 | uint8_t code : 8; | ||
| 141 | uint8_t mods : 4; | ||
| 142 | uint8_t kind : 4; | ||
| 143 | } key; | ||
| 144 | struct action_layer_bitop { | ||
| 145 | uint8_t bits : 4; | ||
| 146 | uint8_t xbit : 1; | ||
| 147 | uint8_t part : 3; | ||
| 148 | uint8_t on : 2; | ||
| 149 | uint8_t op : 2; | ||
| 150 | uint8_t kind : 4; | ||
| 151 | } layer_bitop; | ||
| 152 | struct action_layer_mods { | ||
| 153 | uint8_t mods : 8; | ||
| 154 | uint8_t layer : 4; | ||
| 155 | uint8_t kind : 4; | ||
| 156 | } layer_mods; | ||
| 157 | struct action_layer_tap { | ||
| 158 | uint8_t code : 8; | ||
| 159 | uint8_t val : 5; | ||
| 160 | uint8_t kind : 3; | ||
| 161 | } layer_tap; | ||
| 162 | struct action_usage { | ||
| 163 | uint16_t code : 10; | ||
| 164 | uint8_t page : 2; | ||
| 165 | uint8_t kind : 4; | ||
| 166 | } usage; | ||
| 167 | struct action_function { | ||
| 168 | uint8_t id : 8; | ||
| 169 | uint8_t opt : 4; | ||
| 170 | uint8_t kind : 4; | ||
| 171 | } func; | ||
| 172 | struct action_swap { | ||
| 173 | uint8_t code : 8; | ||
| 174 | uint8_t opt : 4; | ||
| 175 | uint8_t kind : 4; | ||
| 176 | } swap; | ||
| 177 | } action_t; | ||
| 178 | |||
| 179 | /* action utility */ | ||
| 180 | #define ACTION_NO 0 | ||
| 181 | #define ACTION_TRANSPARENT 1 | ||
| 182 | #define ACTION(kind, param) ((kind) << 12 | (param)) | ||
| 183 | |||
| 184 | /** \brief Key Actions | ||
| 185 | * | ||
| 186 | * Mod bits: 43210 | ||
| 187 | * bit 0 ||||+- Control | ||
| 188 | * bit 1 |||+-- Shift | ||
| 189 | * bit 2 ||+--- Alt | ||
| 190 | * bit 3 |+---- Gui | ||
| 191 | * bit 4 +----- LR flag(Left:0, Right:1) | ||
| 192 | */ | ||
| 193 | enum mods_bit { | ||
| 194 | MOD_LCTL = 0x01, | ||
| 195 | MOD_LSFT = 0x02, | ||
| 196 | MOD_LALT = 0x04, | ||
| 197 | MOD_LGUI = 0x08, | ||
| 198 | MOD_RCTL = 0x11, | ||
| 199 | MOD_RSFT = 0x12, | ||
| 200 | MOD_RALT = 0x14, | ||
| 201 | MOD_RGUI = 0x18, | ||
| 202 | }; | ||
| 203 | enum mods_codes { | ||
| 204 | MODS_ONESHOT = 0x00, | ||
| 205 | MODS_TAP_TOGGLE = 0x01, | ||
| 206 | }; | ||
| 207 | #define ACTION_KEY(key) ACTION(ACT_MODS, (key)) | ||
| 208 | #define ACTION_MODS(mods) ACTION(ACT_MODS, ((mods)&0x1f) << 8 | 0) | ||
| 209 | #define ACTION_MODS_KEY(mods, key) ACTION(ACT_MODS, ((mods)&0x1f) << 8 | (key)) | ||
| 210 | #define ACTION_MODS_TAP_KEY(mods, key) ACTION(ACT_MODS_TAP, ((mods)&0x1f) << 8 | (key)) | ||
| 211 | #define ACTION_MODS_ONESHOT(mods) ACTION(ACT_MODS_TAP, ((mods)&0x1f) << 8 | MODS_ONESHOT) | ||
| 212 | #define ACTION_MODS_TAP_TOGGLE(mods) ACTION(ACT_MODS_TAP, ((mods)&0x1f) << 8 | MODS_TAP_TOGGLE) | ||
| 213 | |||
| 214 | /** \brief Other Keys | ||
| 215 | */ | ||
| 216 | enum usage_pages { PAGE_SYSTEM, PAGE_CONSUMER }; | ||
| 217 | #define ACTION_USAGE_SYSTEM(id) ACTION(ACT_USAGE, PAGE_SYSTEM << 10 | (id)) | ||
| 218 | #define ACTION_USAGE_CONSUMER(id) ACTION(ACT_USAGE, PAGE_CONSUMER << 10 | (id)) | ||
| 219 | #define ACTION_MOUSEKEY(key) ACTION(ACT_MOUSEKEY, key) | ||
| 220 | |||
| 221 | /** \brief Layer Actions | ||
| 222 | */ | ||
| 223 | enum layer_param_on { | ||
| 224 | ON_PRESS = 1, | ||
| 225 | ON_RELEASE = 2, | ||
| 226 | ON_BOTH = 3, | ||
| 227 | }; | ||
| 228 | |||
| 229 | /** \brief Layer Actions | ||
| 230 | */ | ||
| 231 | enum layer_param_bit_op { | ||
| 232 | OP_BIT_AND = 0, | ||
| 233 | OP_BIT_OR = 1, | ||
| 234 | OP_BIT_XOR = 2, | ||
| 235 | OP_BIT_SET = 3, | ||
| 236 | }; | ||
| 237 | |||
| 238 | /** \brief Layer Actions | ||
| 239 | */ | ||
| 240 | enum layer_param_tap_op { | ||
| 241 | OP_TAP_TOGGLE = 0xF0, | ||
| 242 | OP_ON_OFF, | ||
| 243 | OP_OFF_ON, | ||
| 244 | OP_SET_CLEAR, | ||
| 245 | OP_ONESHOT, | ||
| 246 | }; | ||
| 247 | #define ACTION_LAYER_BITOP(op, part, bits, on) ACTION(ACT_LAYER, (op) << 10 | (on) << 8 | (part) << 5 | ((bits)&0x1f)) | ||
| 248 | #define ACTION_LAYER_TAP(layer, key) ACTION(ACT_LAYER_TAP, (layer) << 8 | (key)) | ||
| 249 | /* Default Layer */ | ||
| 250 | #define ACTION_DEFAULT_LAYER_SET(layer) ACTION_DEFAULT_LAYER_BIT_SET((layer) / 4, 1 << ((layer) % 4)) | ||
| 251 | /* Layer Operation */ | ||
| 252 | #define ACTION_LAYER_CLEAR(on) ACTION_LAYER_BIT_AND(0, 0, (on)) | ||
| 253 | #define ACTION_LAYER_MOMENTARY(layer) ACTION_LAYER_ON_OFF(layer) | ||
| 254 | #define ACTION_LAYER_TOGGLE(layer) ACTION_LAYER_INVERT(layer, ON_RELEASE) | ||
| 255 | #define ACTION_LAYER_INVERT(layer, on) ACTION_LAYER_BIT_XOR((layer) / 4, 1 << ((layer) % 4), (on)) | ||
| 256 | #define ACTION_LAYER_ON(layer, on) ACTION_LAYER_BIT_OR((layer) / 4, 1 << ((layer) % 4), (on)) | ||
| 257 | #define ACTION_LAYER_OFF(layer, on) ACTION_LAYER_BIT_AND((layer) / 4, ~(1 << ((layer) % 4)), (on)) | ||
| 258 | #define ACTION_LAYER_SET(layer, on) ACTION_LAYER_BIT_SET((layer) / 4, 1 << ((layer) % 4), (on)) | ||
| 259 | #define ACTION_LAYER_ON_OFF(layer) ACTION_LAYER_TAP((layer), OP_ON_OFF) | ||
| 260 | #define ACTION_LAYER_OFF_ON(layer) ACTION_LAYER_TAP((layer), OP_OFF_ON) | ||
| 261 | #define ACTION_LAYER_SET_CLEAR(layer) ACTION_LAYER_TAP((layer), OP_SET_CLEAR) | ||
| 262 | #define ACTION_LAYER_ONESHOT(layer) ACTION_LAYER_TAP((layer), OP_ONESHOT) | ||
| 263 | #define ACTION_LAYER_MODS(layer, mods) ACTION(ACT_LAYER_MODS, (layer) << 8 | (mods)) | ||
| 264 | /* With Tapping */ | ||
| 265 | #define ACTION_LAYER_TAP_KEY(layer, key) ACTION_LAYER_TAP((layer), (key)) | ||
| 266 | #define ACTION_LAYER_TAP_TOGGLE(layer) ACTION_LAYER_TAP((layer), OP_TAP_TOGGLE) | ||
| 267 | /* Bitwise Operation */ | ||
| 268 | #define ACTION_LAYER_BIT_AND(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_AND, (part), (bits), (on)) | ||
| 269 | #define ACTION_LAYER_BIT_OR(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_OR, (part), (bits), (on)) | ||
| 270 | #define ACTION_LAYER_BIT_XOR(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_XOR, (part), (bits), (on)) | ||
| 271 | #define ACTION_LAYER_BIT_SET(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_SET, (part), (bits), (on)) | ||
| 272 | /* Default Layer Bitwise Operation */ | ||
| 273 | #define ACTION_DEFAULT_LAYER_BIT_AND(part, bits) ACTION_LAYER_BITOP(OP_BIT_AND, (part), (bits), 0) | ||
| 274 | #define ACTION_DEFAULT_LAYER_BIT_OR(part, bits) ACTION_LAYER_BITOP(OP_BIT_OR, (part), (bits), 0) | ||
| 275 | #define ACTION_DEFAULT_LAYER_BIT_XOR(part, bits) ACTION_LAYER_BITOP(OP_BIT_XOR, (part), (bits), 0) | ||
| 276 | #define ACTION_DEFAULT_LAYER_BIT_SET(part, bits) ACTION_LAYER_BITOP(OP_BIT_SET, (part), (bits), 0) | ||
| 277 | |||
| 278 | /* Macro */ | ||
| 279 | #define ACTION_MACRO(id) ACTION(ACT_MACRO, (id)) | ||
| 280 | #define ACTION_MACRO_TAP(id) ACTION(ACT_MACRO, FUNC_TAP << 8 | (id)) | ||
| 281 | #define ACTION_MACRO_OPT(id, opt) ACTION(ACT_MACRO, (opt) << 8 | (id)) | ||
| 282 | /* Function */ | ||
| 283 | enum function_opts { | ||
| 284 | FUNC_TAP = 0x8, /* indciates function is tappable */ | ||
| 285 | }; | ||
| 286 | #define ACTION_FUNCTION(id) ACTION(ACT_FUNCTION, (id)) | ||
| 287 | #define ACTION_FUNCTION_TAP(id) ACTION(ACT_FUNCTION, FUNC_TAP << 8 | (id)) | ||
| 288 | #define ACTION_FUNCTION_OPT(id, opt) ACTION(ACT_FUNCTION, (opt) << 8 | (id)) | ||
| 289 | /* OneHand Support */ | ||
| 290 | enum swap_hands_param_tap_op { | ||
| 291 | OP_SH_TOGGLE = 0xF0, | ||
| 292 | OP_SH_TAP_TOGGLE, | ||
| 293 | OP_SH_ON_OFF, | ||
| 294 | OP_SH_OFF_ON, | ||
| 295 | OP_SH_OFF, | ||
| 296 | OP_SH_ON, | ||
| 297 | OP_SH_ONESHOT, | ||
| 298 | }; | ||
| 299 | |||
| 300 | #define ACTION_SWAP_HANDS() ACTION_SWAP_HANDS_ON_OFF() | ||
| 301 | #define ACTION_SWAP_HANDS_TOGGLE() ACTION(ACT_SWAP_HANDS, OP_SH_TOGGLE) | ||
| 302 | #define ACTION_SWAP_HANDS_TAP_TOGGLE() ACTION(ACT_SWAP_HANDS, OP_SH_TAP_TOGGLE) | ||
| 303 | #define ACTION_SWAP_HANDS_ONESHOT() ACTION(ACT_SWAP_HANDS, OP_SH_ONESHOT) | ||
| 304 | #define ACTION_SWAP_HANDS_TAP_KEY(key) ACTION(ACT_SWAP_HANDS, key) | ||
| 305 | #define ACTION_SWAP_HANDS_ON_OFF() ACTION(ACT_SWAP_HANDS, OP_SH_ON_OFF) | ||
| 306 | #define ACTION_SWAP_HANDS_OFF_ON() ACTION(ACT_SWAP_HANDS, OP_SH_OFF_ON) | ||
| 307 | #define ACTION_SWAP_HANDS_ON() ACTION(ACT_SWAP_HANDS, OP_SH_ON) | ||
| 308 | #define ACTION_SWAP_HANDS_OFF() ACTION(ACT_SWAP_HANDS, OP_SH_OFF) | ||
