You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

346 lines
12 KiB

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