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.

193 lines
6.1 KiB

  1. /* Copyright 2017 Joseph Wasson
  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 "process_steno.h"
  17. #include "quantum_keycodes.h"
  18. #include "eeprom.h"
  19. #include "keymap_steno.h"
  20. #include "virtser.h"
  21. #include <string.h>
  22. // TxBolt Codes
  23. #define TXB_NUL 0
  24. #define TXB_S_L 0b00000001
  25. #define TXB_T_L 0b00000010
  26. #define TXB_K_L 0b00000100
  27. #define TXB_P_L 0b00001000
  28. #define TXB_W_L 0b00010000
  29. #define TXB_H_L 0b00100000
  30. #define TXB_R_L 0b01000001
  31. #define TXB_A_L 0b01000010
  32. #define TXB_O_L 0b01000100
  33. #define TXB_STR 0b01001000
  34. #define TXB_E_R 0b01010000
  35. #define TXB_U_R 0b01100000
  36. #define TXB_F_R 0b10000001
  37. #define TXB_R_R 0b10000010
  38. #define TXB_P_R 0b10000100
  39. #define TXB_B_R 0b10001000
  40. #define TXB_L_R 0b10010000
  41. #define TXB_G_R 0b10100000
  42. #define TXB_T_R 0b11000001
  43. #define TXB_S_R 0b11000010
  44. #define TXB_D_R 0b11000100
  45. #define TXB_Z_R 0b11001000
  46. #define TXB_NUM 0b11010000
  47. #define TXB_GRP0 0b00000000
  48. #define TXB_GRP1 0b01000000
  49. #define TXB_GRP2 0b10000000
  50. #define TXB_GRP3 0b11000000
  51. #define TXB_GRPMASK 0b11000000
  52. #define TXB_GET_GROUP(code) ((code & TXB_GRPMASK) >> 6)
  53. #define BOLT_STATE_SIZE 4
  54. #define GEMINI_STATE_SIZE 6
  55. #define MAX_STATE_SIZE GEMINI_STATE_SIZE
  56. static uint8_t state[MAX_STATE_SIZE] = {0};
  57. static uint8_t chord[MAX_STATE_SIZE] = {0};
  58. static int8_t pressed = 0;
  59. static steno_mode_t mode;
  60. static const uint8_t boltmap[64] PROGMEM = {TXB_NUL, TXB_NUM, TXB_NUM, TXB_NUM, TXB_NUM, TXB_NUM, TXB_NUM, TXB_S_L, TXB_S_L, TXB_T_L, TXB_K_L, TXB_P_L, TXB_W_L, TXB_H_L, TXB_R_L, TXB_A_L, TXB_O_L, TXB_STR, TXB_STR, TXB_NUL, TXB_NUL, TXB_NUL, TXB_STR, TXB_STR, TXB_E_R, TXB_U_R, TXB_F_R, TXB_R_R, TXB_P_R, TXB_B_R, TXB_L_R, TXB_G_R, TXB_T_R, TXB_S_R, TXB_D_R, TXB_NUM, TXB_NUM, TXB_NUM, TXB_NUM, TXB_NUM, TXB_NUM, TXB_Z_R};
  61. static void steno_clear_state(void) {
  62. memset(state, 0, sizeof(state));
  63. memset(chord, 0, sizeof(chord));
  64. }
  65. static void send_steno_state(uint8_t size, bool send_empty) {
  66. for (uint8_t i = 0; i < size; ++i) {
  67. if (chord[i] || send_empty) {
  68. virtser_send(chord[i]);
  69. }
  70. }
  71. }
  72. void steno_init() {
  73. if (!eeconfig_is_enabled()) {
  74. eeconfig_init();
  75. }
  76. mode = eeprom_read_byte(EECONFIG_STENOMODE);
  77. }
  78. void steno_set_mode(steno_mode_t new_mode) {
  79. steno_clear_state();
  80. mode = new_mode;
  81. eeprom_update_byte(EECONFIG_STENOMODE, mode);
  82. }
  83. /* override to intercept chords right before they get sent.
  84. * return zero to suppress normal sending behavior.
  85. */
  86. __attribute__((weak)) bool send_steno_chord_user(steno_mode_t mode, uint8_t chord[6]) { return true; }
  87. __attribute__((weak)) bool postprocess_steno_user(uint16_t keycode, keyrecord_t *record, steno_mode_t mode, uint8_t chord[6], int8_t pressed) { return true; }
  88. __attribute__((weak)) bool process_steno_user(uint16_t keycode, keyrecord_t *record) { return true; }
  89. static void send_steno_chord(void) {
  90. if (send_steno_chord_user(mode, chord)) {
  91. switch (mode) {
  92. case STENO_MODE_BOLT:
  93. send_steno_state(BOLT_STATE_SIZE, false);
  94. virtser_send(0); // terminating byte
  95. break;
  96. case STENO_MODE_GEMINI:
  97. chord[0] |= 0x80; // Indicate start of packet
  98. send_steno_state(GEMINI_STATE_SIZE, true);
  99. break;
  100. }
  101. }
  102. steno_clear_state();
  103. }
  104. uint8_t *steno_get_state(void) { return &state[0]; }
  105. uint8_t *steno_get_chord(void) { return &chord[0]; }
  106. static bool update_state_bolt(uint8_t key, bool press) {
  107. uint8_t boltcode = pgm_read_byte(boltmap + key);
  108. if (press) {
  109. state[TXB_GET_GROUP(boltcode)] |= boltcode;
  110. chord[TXB_GET_GROUP(boltcode)] |= boltcode;
  111. } else {
  112. state[TXB_GET_GROUP(boltcode)] &= ~boltcode;
  113. }
  114. return false;
  115. }
  116. static bool update_state_gemini(uint8_t key, bool press) {
  117. int idx = key / 7;
  118. uint8_t bit = 1 << (6 - (key % 7));
  119. if (press) {
  120. state[idx] |= bit;
  121. chord[idx] |= bit;
  122. } else {
  123. state[idx] &= ~bit;
  124. }
  125. return false;
  126. }
  127. bool process_steno(uint16_t keycode, keyrecord_t *record) {
  128. switch (keycode) {
  129. case QK_STENO_BOLT:
  130. if (!process_steno_user(keycode, record)) {
  131. return false;
  132. }
  133. if (IS_PRESSED(record->event)) {
  134. steno_set_mode(STENO_MODE_BOLT);
  135. }
  136. return false;
  137. case QK_STENO_GEMINI:
  138. if (!process_steno_user(keycode, record)) {
  139. return false;
  140. }
  141. if (IS_PRESSED(record->event)) {
  142. steno_set_mode(STENO_MODE_GEMINI);
  143. }
  144. return false;
  145. case STN__MIN ... STN__MAX:
  146. if (!process_steno_user(keycode, record)) {
  147. return false;
  148. }
  149. switch (mode) {
  150. case STENO_MODE_BOLT:
  151. update_state_bolt(keycode - QK_STENO, IS_PRESSED(record->event));
  152. break;
  153. case STENO_MODE_GEMINI:
  154. update_state_gemini(keycode - QK_STENO, IS_PRESSED(record->event));
  155. break;
  156. }
  157. // allow postprocessing hooks
  158. if (postprocess_steno_user(keycode, record, mode, chord, pressed)) {
  159. if (IS_PRESSED(record->event)) {
  160. ++pressed;
  161. } else {
  162. --pressed;
  163. if (pressed <= 0) {
  164. pressed = 0;
  165. send_steno_chord();
  166. }
  167. }
  168. }
  169. return false;
  170. }
  171. return true;
  172. }