process_tap_dance.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. #include "quantum.h"
  17. #include "action_tapping.h"
  18. uint8_t get_oneshot_mods(void);
  19. static uint16_t last_td;
  20. static int8_t highest_td = -1;
  21. void qk_tap_dance_pair_finished (qk_tap_dance_state_t *state, void *user_data) {
  22. qk_tap_dance_pair_t *pair = (qk_tap_dance_pair_t *)user_data;
  23. if (state->count == 1) {
  24. register_code16 (pair->kc1);
  25. } else if (state->count == 2) {
  26. register_code16 (pair->kc2);
  27. }
  28. }
  29. void qk_tap_dance_pair_reset (qk_tap_dance_state_t *state, void *user_data) {
  30. qk_tap_dance_pair_t *pair = (qk_tap_dance_pair_t *)user_data;
  31. if (state->count == 1) {
  32. unregister_code16 (pair->kc1);
  33. } else if (state->count == 2) {
  34. unregister_code16 (pair->kc2);
  35. }
  36. }
  37. void qk_tap_dance_dual_role_finished (qk_tap_dance_state_t *state, void *user_data) {
  38. qk_tap_dance_dual_role_t *pair = (qk_tap_dance_dual_role_t *)user_data;
  39. if (state->count == 1) {
  40. register_code16 (pair->kc);
  41. } else if (state->count == 2) {
  42. layer_invert (pair->layer);
  43. }
  44. }
  45. void qk_tap_dance_dual_role_reset (qk_tap_dance_state_t *state, void *user_data) {
  46. qk_tap_dance_dual_role_t *pair = (qk_tap_dance_dual_role_t *)user_data;
  47. if (state->count == 1) {
  48. unregister_code16 (pair->kc);
  49. }
  50. }
  51. static inline void _process_tap_dance_action_fn (qk_tap_dance_state_t *state,
  52. void *user_data,
  53. qk_tap_dance_user_fn_t fn)
  54. {
  55. if (fn) {
  56. fn(state, user_data);
  57. }
  58. }
  59. static inline void process_tap_dance_action_on_each_tap (qk_tap_dance_action_t *action)
  60. {
  61. _process_tap_dance_action_fn (&action->state, action->user_data, action->fn.on_each_tap);
  62. }
  63. static inline void process_tap_dance_action_on_dance_finished (qk_tap_dance_action_t *action)
  64. {
  65. if (action->state.finished)
  66. return;
  67. action->state.finished = true;
  68. add_mods(action->state.oneshot_mods);
  69. send_keyboard_report();
  70. _process_tap_dance_action_fn (&action->state, action->user_data, action->fn.on_dance_finished);
  71. }
  72. static inline void process_tap_dance_action_on_reset (qk_tap_dance_action_t *action)
  73. {
  74. _process_tap_dance_action_fn (&action->state, action->user_data, action->fn.on_reset);
  75. del_mods(action->state.oneshot_mods);
  76. send_keyboard_report();
  77. }
  78. bool process_tap_dance(uint16_t keycode, keyrecord_t *record) {
  79. uint16_t idx = keycode - QK_TAP_DANCE;
  80. qk_tap_dance_action_t *action;
  81. if (last_td && last_td != keycode) {
  82. (&tap_dance_actions[last_td - QK_TAP_DANCE])->state.interrupted = true;
  83. }
  84. switch(keycode) {
  85. case QK_TAP_DANCE ... QK_TAP_DANCE_MAX:
  86. if ((int16_t)idx > highest_td)
  87. highest_td = idx;
  88. action = &tap_dance_actions[idx];
  89. action->state.pressed = record->event.pressed;
  90. if (record->event.pressed) {
  91. action->state.keycode = keycode;
  92. action->state.count++;
  93. action->state.timer = timer_read();
  94. action->state.oneshot_mods = get_oneshot_mods();
  95. process_tap_dance_action_on_each_tap (action);
  96. if (last_td && last_td != keycode) {
  97. qk_tap_dance_action_t *paction = &tap_dance_actions[last_td - QK_TAP_DANCE];
  98. paction->state.interrupted = true;
  99. process_tap_dance_action_on_dance_finished (paction);
  100. reset_tap_dance (&paction->state);
  101. }
  102. last_td = keycode;
  103. }
  104. break;
  105. default:
  106. if (!record->event.pressed)
  107. return true;
  108. if (highest_td == -1)
  109. return true;
  110. for (int i = 0; i <= highest_td; i++) {
  111. action = &tap_dance_actions[i];
  112. if (action->state.count == 0)
  113. continue;
  114. action->state.interrupted = true;
  115. process_tap_dance_action_on_dance_finished (action);
  116. reset_tap_dance (&action->state);
  117. }
  118. break;
  119. }
  120. return true;
  121. }
  122. void matrix_scan_tap_dance () {
  123. if (highest_td == -1)
  124. return;
  125. uint16_t tap_user_defined;
  126. for (uint8_t i = 0; i <= highest_td; i++) {
  127. qk_tap_dance_action_t *action = &tap_dance_actions[i];
  128. if(action->custom_tapping_term > 0 ) {
  129. tap_user_defined = action->custom_tapping_term;
  130. }
  131. else{
  132. tap_user_defined = TAPPING_TERM;
  133. }
  134. if (action->state.count && timer_elapsed (action->state.timer) > tap_user_defined) {
  135. process_tap_dance_action_on_dance_finished (action);
  136. reset_tap_dance (&action->state);
  137. }
  138. }
  139. }
  140. void reset_tap_dance (qk_tap_dance_state_t *state) {
  141. qk_tap_dance_action_t *action;
  142. if (state->pressed)
  143. return;
  144. action = &tap_dance_actions[state->keycode - QK_TAP_DANCE];
  145. process_tap_dance_action_on_reset (action);
  146. state->count = 0;
  147. state->interrupted = false;
  148. state->finished = false;
  149. last_td = 0;
  150. }