process_ucis.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* Copyright 2017 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 <stdbool.h>
  18. #include <stdint.h>
  19. #include "action.h"
  20. #ifndef UCIS_MAX_SYMBOL_LENGTH
  21. # define UCIS_MAX_SYMBOL_LENGTH 32
  22. #endif
  23. #ifndef UCIS_MAX_CODE_POINTS
  24. # define UCIS_MAX_CODE_POINTS 3
  25. #endif
  26. typedef struct {
  27. char * symbol;
  28. uint32_t code_points[UCIS_MAX_CODE_POINTS];
  29. } qk_ucis_symbol_t;
  30. typedef struct {
  31. uint8_t count;
  32. uint16_t codes[UCIS_MAX_SYMBOL_LENGTH];
  33. bool in_progress : 1;
  34. } qk_ucis_state_t;
  35. extern qk_ucis_state_t qk_ucis_state;
  36. // clang-format off
  37. #define UCIS_TABLE(...) \
  38. { \
  39. __VA_ARGS__, \
  40. { NULL, {} } \
  41. }
  42. #define UCIS_SYM(name, ...) \
  43. { name, {__VA_ARGS__} }
  44. // clang-format on
  45. extern const qk_ucis_symbol_t ucis_symbol_table[];
  46. void qk_ucis_start(void);
  47. void qk_ucis_start_user(void);
  48. void qk_ucis_symbol_fallback(void);
  49. void qk_ucis_success(uint8_t symbol_index);
  50. void register_ucis(const uint32_t *code_points);
  51. bool process_ucis(uint16_t keycode, keyrecord_t *record);