]> git.gir.st - tmk_keyboard.git/blob - common/keymap.c
Squashed 'tmk_core/' changes from dc0e46e..57d27a8
[tmk_keyboard.git] / common / keymap.c
1 /*
2 Copyright 2013 Jun Wako <wakojun@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17 #include "keymap.h"
18 #include "report.h"
19 #include "keycode.h"
20 #include "action_layer.h"
21 #include "action.h"
22 #include "action_macro.h"
23 #include "wait.h"
24 #include "debug.h"
25
26
27 static action_t keycode_to_action(uint8_t keycode);
28
29
30 /* converts key to action */
31 action_t action_for_key(uint8_t layer, keypos_t key)
32 {
33 uint8_t keycode = keymap_key_to_keycode(layer, key);
34 switch (keycode) {
35 case KC_FN0 ... KC_FN31:
36 return keymap_fn_to_action(keycode);
37 #ifdef BOOTMAGIC_ENABLE
38 case KC_CAPSLOCK:
39 case KC_LOCKING_CAPS:
40 if (keymap_config.swap_control_capslock || keymap_config.capslock_to_control) {
41 return keycode_to_action(KC_LCTL);
42 }
43 return keycode_to_action(keycode);
44 case KC_LCTL:
45 if (keymap_config.swap_control_capslock) {
46 return keycode_to_action(KC_CAPSLOCK);
47 }
48 return keycode_to_action(KC_LCTL);
49 case KC_LALT:
50 if (keymap_config.swap_lalt_lgui) {
51 if (keymap_config.no_gui) {
52 return keycode_to_action(ACTION_NO);
53 }
54 return keycode_to_action(KC_LGUI);
55 }
56 return keycode_to_action(KC_LALT);
57 case KC_LGUI:
58 if (keymap_config.swap_lalt_lgui) {
59 return keycode_to_action(KC_LALT);
60 }
61 if (keymap_config.no_gui) {
62 return keycode_to_action(ACTION_NO);
63 }
64 return keycode_to_action(KC_LGUI);
65 case KC_RALT:
66 if (keymap_config.swap_ralt_rgui) {
67 if (keymap_config.no_gui) {
68 return keycode_to_action(ACTION_NO);
69 }
70 return keycode_to_action(KC_RGUI);
71 }
72 return keycode_to_action(KC_RALT);
73 case KC_RGUI:
74 if (keymap_config.swap_ralt_rgui) {
75 return keycode_to_action(KC_RALT);
76 }
77 if (keymap_config.no_gui) {
78 return keycode_to_action(ACTION_NO);
79 }
80 return keycode_to_action(KC_RGUI);
81 case KC_GRAVE:
82 if (keymap_config.swap_grave_esc) {
83 return keycode_to_action(KC_ESC);
84 }
85 return keycode_to_action(KC_GRAVE);
86 case KC_ESC:
87 if (keymap_config.swap_grave_esc) {
88 return keycode_to_action(KC_GRAVE);
89 }
90 return keycode_to_action(KC_ESC);
91 case KC_BSLASH:
92 if (keymap_config.swap_backslash_backspace) {
93 return keycode_to_action(KC_BSPACE);
94 }
95 return keycode_to_action(KC_BSLASH);
96 case KC_BSPACE:
97 if (keymap_config.swap_backslash_backspace) {
98 return keycode_to_action(KC_BSLASH);
99 }
100 return keycode_to_action(KC_BSPACE);
101 #endif
102 default:
103 return keycode_to_action(keycode);
104 }
105 }
106
107
108 /* Macro */
109 __attribute__ ((weak))
110 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
111 {
112 return MACRO_NONE;
113 }
114
115 /* Function */
116 __attribute__ ((weak))
117 void action_function(keyrecord_t *record, uint8_t id, uint8_t opt)
118 {
119 }
120
121
122
123 /* translates keycode to action */
124 static action_t keycode_to_action(uint8_t keycode)
125 {
126 action_t action;
127 switch (keycode) {
128 case KC_A ... KC_EXSEL:
129 case KC_LCTRL ... KC_RGUI:
130 action.code = ACTION_KEY(keycode);
131 break;
132 case KC_SYSTEM_POWER ... KC_SYSTEM_WAKE:
133 action.code = ACTION_USAGE_SYSTEM(KEYCODE2SYSTEM(keycode));
134 break;
135 case KC_AUDIO_MUTE ... KC_MEDIA_REWIND:
136 action.code = ACTION_USAGE_CONSUMER(KEYCODE2CONSUMER(keycode));
137 break;
138 case KC_MS_UP ... KC_MS_ACCEL2:
139 action.code = ACTION_MOUSEKEY(keycode);
140 break;
141 case KC_TRNS:
142 action.code = ACTION_TRANSPARENT;
143 break;
144 case KC_BOOTLOADER:
145 clear_keyboard();
146 wait_ms(50);
147 bootloader_jump(); // not return
148 break;
149 default:
150 action.code = ACTION_NO;
151 break;
152 }
153 return action;
154 }
155
156
157
158 #ifdef USE_LEGACY_KEYMAP
159 /*
160 * Legacy keymap support
161 * Consider using new keymap API instead.
162 */
163 __attribute__ ((weak))
164 uint8_t keymap_key_to_keycode(uint8_t layer, keypos_t key)
165 {
166 return keymap_get_keycode(layer, key.row, key.col);
167 }
168
169
170 /* Legacy keymap support */
171 __attribute__ ((weak))
172 action_t keymap_fn_to_action(uint8_t keycode)
173 {
174 action_t action = { .code = ACTION_NO };
175 switch (keycode) {
176 case KC_FN0 ... KC_FN31:
177 {
178 uint8_t layer = keymap_fn_layer(FN_INDEX(keycode));
179 uint8_t key = keymap_fn_keycode(FN_INDEX(keycode));
180 if (key) {
181 action.code = ACTION_LAYER_TAP_KEY(layer, key);
182 } else {
183 action.code = ACTION_LAYER_MOMENTARY(layer);
184 }
185 }
186 return action;
187 default:
188 return action;
189 }
190 }
191 #endif
Imprint / Impressum