process_tap_dance.h 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* Copyright 2016 Jack Humbert
  2. *
  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. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. #include <stdint.h>
  18. #include <stdbool.h>
  19. #include "action.h"
  20. #include "quantum_keycodes.h"
  21. typedef struct {
  22. uint16_t interrupting_keycode;
  23. uint8_t count;
  24. uint8_t weak_mods;
  25. #ifndef NO_ACTION_ONESHOT
  26. uint8_t oneshot_mods;
  27. #endif
  28. bool pressed : 1;
  29. bool finished : 1;
  30. bool interrupted : 1;
  31. bool in_use : 1;
  32. uint8_t index;
  33. } tap_dance_state_t;
  34. typedef void (*tap_dance_user_fn_t)(tap_dance_state_t *state, void *user_data);
  35. typedef struct tap_dance_action_t {
  36. struct {
  37. tap_dance_user_fn_t on_each_tap;
  38. tap_dance_user_fn_t on_dance_finished;
  39. tap_dance_user_fn_t on_reset;
  40. tap_dance_user_fn_t on_each_release;
  41. } fn;
  42. void *user_data;
  43. } tap_dance_action_t;
  44. typedef struct {
  45. uint16_t kc1;
  46. uint16_t kc2;
  47. } tap_dance_pair_t;
  48. typedef struct {
  49. uint16_t kc;
  50. uint8_t layer;
  51. void (*layer_function)(uint8_t);
  52. } tap_dance_dual_role_t;
  53. #define ACTION_TAP_DANCE_DOUBLE(kc1, kc2) \
  54. { .fn = {tap_dance_pair_on_each_tap, tap_dance_pair_finished, tap_dance_pair_reset, NULL}, .user_data = (void *)&((tap_dance_pair_t){kc1, kc2}), }
  55. #define ACTION_TAP_DANCE_LAYER_MOVE(kc, layer) \
  56. { .fn = {tap_dance_dual_role_on_each_tap, tap_dance_dual_role_finished, tap_dance_dual_role_reset, NULL}, .user_data = (void *)&((tap_dance_dual_role_t){kc, layer, layer_move}), }
  57. #define ACTION_TAP_DANCE_LAYER_TOGGLE(kc, layer) \
  58. { .fn = {NULL, tap_dance_dual_role_finished, tap_dance_dual_role_reset, NULL}, .user_data = (void *)&((tap_dance_dual_role_t){kc, layer, layer_invert}), }
  59. #define ACTION_TAP_DANCE_FN(user_fn) \
  60. { .fn = {NULL, user_fn, NULL, NULL}, .user_data = NULL, }
  61. #define ACTION_TAP_DANCE_FN_ADVANCED(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset) \
  62. { .fn = {user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset, NULL}, .user_data = NULL, }
  63. #define ACTION_TAP_DANCE_FN_ADVANCED_WITH_RELEASE(user_fn_on_each_tap, user_fn_on_each_release, user_fn_on_dance_finished, user_fn_on_dance_reset) \
  64. { .fn = {user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset, user_fn_on_each_release}, .user_data = NULL, }
  65. #define TD_INDEX(code) QK_TAP_DANCE_GET_INDEX(code)
  66. #define TAP_DANCE_KEYCODE(state) TD(((tap_dance_action_t *)state) - tap_dance_actions)
  67. void reset_tap_dance(tap_dance_state_t *state);
  68. tap_dance_state_t *tap_dance_get_state(uint8_t tap_dance_idx);
  69. /* To be used internally */
  70. bool preprocess_tap_dance(uint16_t keycode, keyrecord_t *record);
  71. bool process_tap_dance(uint16_t keycode, keyrecord_t *record);
  72. void tap_dance_task(void);
  73. void tap_dance_pair_on_each_tap(tap_dance_state_t *state, void *user_data);
  74. void tap_dance_pair_finished(tap_dance_state_t *state, void *user_data);
  75. void tap_dance_pair_reset(tap_dance_state_t *state, void *user_data);
  76. void tap_dance_dual_role_on_each_tap(tap_dance_state_t *state, void *user_data);
  77. void tap_dance_dual_role_finished(tap_dance_state_t *state, void *user_data);
  78. void tap_dance_dual_role_reset(tap_dance_state_t *state, void *user_data);