keymap.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /* Copyright 2017 IslandMan93
  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 "diverge3.h"
  17. #include "action_layer.h"
  18. #include "eeconfig.h"
  19. //**************** Definitions needed for quad function to work *********************//
  20. enum {
  21. SE_TAP_DANCE = 0
  22. };
  23. //Enums used to clearly convey the state of the tap dance
  24. enum {
  25. SINGLE_TAP = 1,
  26. SINGLE_HOLD = 2,
  27. DOUBLE_TAP = 3,
  28. DOUBLE_HOLD = 4,
  29. DOUBLE_SINGLE_TAP = 5 //send SINGLE_TAP twice - NOT DOUBLE_TAP
  30. // Add more enums here if you want for triple, quadruple, etc.
  31. };
  32. typedef struct {
  33. bool is_press_action;
  34. int state;
  35. } tap;
  36. int cur_dance (qk_tap_dance_state_t *state) {
  37. if (state->count == 1) {
  38. //If count = 1, and it has been interrupted - it doesn't matter if it is pressed or not: Send SINGLE_TAP
  39. if (state->interrupted || state->pressed==0) return SINGLE_TAP;
  40. else return SINGLE_HOLD;
  41. }
  42. //If count = 2, and it has been interrupted - assume that user is trying to type the letter associated
  43. //with single tap. In example below, that means to send `xx` instead of `Escape`.
  44. else if (state->count == 2) {
  45. if (state->interrupted) return DOUBLE_SINGLE_TAP;
  46. else if (state->pressed) return DOUBLE_HOLD;
  47. else return DOUBLE_TAP;
  48. }
  49. else return 6; //magic number. At some point this method will expand to work for more presses
  50. }
  51. //**************** Definitions needed for quad function to work *********************//
  52. // Backspace Shift TD
  53. //instanalize an instance of 'tap' for the 'x' tap dance.
  54. static tap se_tap_state = {
  55. .is_press_action = true,
  56. .state = 0
  57. };
  58. void se_finished (qk_tap_dance_state_t *state, void *user_data) {
  59. se_tap_state.state = cur_dance(state);
  60. switch (se_tap_state.state) {
  61. case SINGLE_TAP: register_code(KC_SPC); break;
  62. case SINGLE_HOLD: register_code(KC_ENT); break;
  63. default: register_code(KC_SPC); unregister_code(KC_SPC); register_code(KC_SPC);
  64. //Last case is for fast typing. Assuming your key is `f`:
  65. //For example, when typing the word `buffer`, and you want to make sure that you send `ff` and not `Esc`.
  66. //In order to type `ff` when typing fast, the next character will have to be hit within the `TAPPING_TERM`, which by default is 200ms.
  67. }
  68. }
  69. void se_reset (qk_tap_dance_state_t *state, void *user_data) {
  70. switch (se_tap_state.state) {
  71. case SINGLE_TAP: unregister_code(KC_SPC); break;
  72. case SINGLE_HOLD: unregister_code(KC_ENT); break;
  73. default: unregister_code(KC_SPC);
  74. }
  75. se_tap_state.state = 0;
  76. }
  77. qk_tap_dance_action_t tap_dance_actions[] = {
  78. [SE_TAP_DANCE] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, se_finished, se_reset)
  79. };
  80. // KEYMAP
  81. extern keymap_config_t keymap_config;
  82. #define _QWERTY 0
  83. #define _LOWER 1
  84. enum custom_keycodes {
  85. PAREN_MACRO = SAFE_RANGE,
  86. ARROW_MACRO,
  87. PSELF_MACRO
  88. };
  89. // Make layer undefined do nothing
  90. #define KC_ KC_TRNS
  91. // Macros
  92. #define KC_PMAC PAREN_MACRO
  93. #define KC_AMAC ARROW_MACRO
  94. // Holds for layer
  95. #define KC_DEL1 LT(_LOWER, KC_DEL)
  96. #define KC_TAB1 LT(_LOWER, KC_TAB)
  97. // Space on tap, enter on hold.
  98. #define KC_SPNT TD(SE_TAP_DANCE)
  99. #define KC_BSHT SFT_T(KC_BSPC)
  100. // Jumps the cursor a word right or left
  101. #define KC_WRDRT LCTL(KC_RIGHT)
  102. #define KC_WRDLT LCTL(KC_LEFT)
  103. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  104. [_QWERTY] = LAYOUT(
  105. //,----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
  106. ESC, 1 , 2 , 3 , 4 , 5 ,MUTE, MPLY, 6 , 7 , 8 , 9 , 0 ,PSCR,
  107. //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
  108. GRV, Q , W , E , R , T ,VOLD, VOLU, Y , U , I , O , P ,CAPS,
  109. //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
  110. TAB, A , S , D , F , G ,PGDN, PGUP, H , J , K , L ,SCLN,BSLS,
  111. //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
  112. LSFT, Z , X , C , V , B ,WRDLT, WRDRT, N , M ,COMM,DOT ,SLSH,QUOT,
  113. //|----+----+----+----+----+----+----+----|||----+----+----+----+----+----+----+----|
  114. LCTL,LGUI, APP,LALT,HOME,SPNT,DEL1,BSHT , ENT ,TAB1,BSHT,END ,DOWN, UP ,LEFT,RIGHT
  115. ),
  116. [_LOWER] = LAYOUT(
  117. //,----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
  118. , F1 , F2 , F3 , F4 , F5 ,F11 , F12, F6 , F7 , F8 , F9 , , ,
  119. //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
  120. TILD,EXLM, AT ,HASH,DLR ,PERC, , ,CIRC,AMPR,ASTR, , , ,
  121. //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
  122. , ,LBRC,LPRN,UNDS,LCBR, , ,RCBR, EQL,RPRN,RBRC,COLN, ,
  123. //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
  124. , , ,PMAC,MINS,AMAC, , , ,PLUS, , , , ,
  125. //|----+----+----+----+----+----+----+----|||----+----+----+----+----+----+----+----|
  126. , , , , , , , , , , , , , , ,
  127. )
  128. };
  129. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  130. if (record->event.pressed) {
  131. switch(keycode) {
  132. case PAREN_MACRO:
  133. SEND_STRING("()");
  134. return false; break;
  135. case ARROW_MACRO:
  136. SEND_STRING("->");
  137. return false; break;
  138. }
  139. }
  140. return true;
  141. };