process_leader.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. #ifndef DISABLE_LEADER
  17. #include "process_leader.h"
  18. __attribute__ ((weak))
  19. void leader_start(void) {}
  20. __attribute__ ((weak))
  21. void leader_end(void) {}
  22. // Leader key stuff
  23. bool leading = false;
  24. uint16_t leader_time = 0;
  25. uint16_t leader_sequence[5] = {0, 0, 0, 0, 0};
  26. uint8_t leader_sequence_size = 0;
  27. bool process_leader(uint16_t keycode, keyrecord_t *record) {
  28. // Leader key set-up
  29. if (record->event.pressed) {
  30. if (!leading && keycode == KC_LEAD) {
  31. leader_start();
  32. leading = true;
  33. leader_time = timer_read();
  34. leader_sequence_size = 0;
  35. leader_sequence[0] = 0;
  36. leader_sequence[1] = 0;
  37. leader_sequence[2] = 0;
  38. leader_sequence[3] = 0;
  39. leader_sequence[4] = 0;
  40. return false;
  41. }
  42. if (leading && timer_elapsed(leader_time) < LEADER_TIMEOUT) {
  43. leader_sequence[leader_sequence_size] = keycode;
  44. leader_sequence_size++;
  45. return false;
  46. }
  47. }
  48. return true;
  49. }
  50. #endif