Update Dvorak, Colemak and Workman keycode aliases (#8217)
[jackhill/qmk/firmware.git] / quantum / dynamic_keymap.c
CommitLineData
48a992f1
W
1/* Copyright 2017 Jason Williams (Wilba)
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
17#include "config.h"
b624f32f 18#include "keymap.h" // to get keymaps[][][]
a173eda6 19#include "tmk_core/common/eeprom.h"
b624f32f 20#include "progmem.h" // to read default from flash
21#include "quantum.h" // for send_string()
48a992f1 22#include "dynamic_keymap.h"
667045b4 23#include "via.h" // for default VIA_EEPROM_ADDR_END
320822d7
W
24
25#ifndef DYNAMIC_KEYMAP_LAYER_COUNT
667045b4 26# define DYNAMIC_KEYMAP_LAYER_COUNT 4
320822d7
W
27#endif
28
29#ifndef DYNAMIC_KEYMAP_MACRO_COUNT
667045b4 30# define DYNAMIC_KEYMAP_MACRO_COUNT 16
320822d7
W
31#endif
32
79d5903b
W
33// This is the default EEPROM max address to use for dynamic keymaps.
34// The default is the ATmega32u4 EEPROM max address.
35// Explicitly override it if the keyboard uses a microcontroller with
36// more EEPROM *and* it makes sense to increase it.
37#ifndef DYNAMIC_KEYMAP_EEPROM_MAX_ADDR
38# define DYNAMIC_KEYMAP_EEPROM_MAX_ADDR 1023
39#endif
40
320822d7
W
41// If DYNAMIC_KEYMAP_EEPROM_ADDR not explicitly defined in config.h,
42// default it start after VIA_EEPROM_CUSTOM_ADDR+VIA_EEPROM_CUSTOM_SIZE
43#ifndef DYNAMIC_KEYMAP_EEPROM_ADDR
667045b4
JC
44# ifdef VIA_EEPROM_CUSTOM_CONFIG_ADDR
45# define DYNAMIC_KEYMAP_EEPROM_ADDR (VIA_EEPROM_CUSTOM_CONFIG_ADDR + VIA_EEPROM_CUSTOM_CONFIG_SIZE)
46# else
47# error DYNAMIC_KEYMAP_EEPROM_ADDR not defined
48# endif
320822d7
W
49#endif
50
51// Dynamic macro starts after dynamic keymaps
52#ifndef DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR
667045b4 53# define DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR (DYNAMIC_KEYMAP_EEPROM_ADDR + (DYNAMIC_KEYMAP_LAYER_COUNT * MATRIX_ROWS * MATRIX_COLS * 2))
320822d7
W
54#endif
55
79d5903b
W
56// Sanity check that dynamic keymaps fit in available EEPROM
57// If there's not 100 bytes available for macros, then something is wrong.
58// The keyboard should override DYNAMIC_KEYMAP_LAYER_COUNT to reduce it,
59// or DYNAMIC_KEYMAP_EEPROM_MAX_ADDR to increase it, *only if* the microcontroller has
60// more than the default.
61#if DYNAMIC_KEYMAP_EEPROM_MAX_ADDR - DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR < 100
62# error Dynamic keymaps are configured to use more EEPROM than is available.
63#endif
64
65// Dynamic macros are stored after the keymaps and use what is available
66// up to and including DYNAMIC_KEYMAP_EEPROM_MAX_ADDR.
320822d7 67#ifndef DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE
79d5903b 68# define DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE (DYNAMIC_KEYMAP_EEPROM_MAX_ADDR - DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR + 1)
320822d7 69#endif
d7f1e072 70
b624f32f 71uint8_t dynamic_keymap_get_layer_count(void) { return DYNAMIC_KEYMAP_LAYER_COUNT; }
d7f1e072 72
b624f32f 73void *dynamic_keymap_key_to_eeprom_address(uint8_t layer, uint8_t row, uint8_t column) {
74 // TODO: optimize this with some left shifts
75 return ((void *)DYNAMIC_KEYMAP_EEPROM_ADDR) + (layer * MATRIX_ROWS * MATRIX_COLS * 2) + (row * MATRIX_COLS * 2) + (column * 2);
48a992f1
W
76}
77
b624f32f 78uint16_t dynamic_keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t column) {
79 void *address = dynamic_keymap_key_to_eeprom_address(layer, row, column);
80 // Big endian, so we can read/write EEPROM directly from host if we want
81 uint16_t keycode = eeprom_read_byte(address) << 8;
82 keycode |= eeprom_read_byte(address + 1);
83 return keycode;
48a992f1
W
84}
85
b624f32f 86void dynamic_keymap_set_keycode(uint8_t layer, uint8_t row, uint8_t column, uint16_t keycode) {
87 void *address = dynamic_keymap_key_to_eeprom_address(layer, row, column);
88 // Big endian, so we can read/write EEPROM directly from host if we want
89 eeprom_update_byte(address, (uint8_t)(keycode >> 8));
90 eeprom_update_byte(address + 1, (uint8_t)(keycode & 0xFF));
48a992f1
W
91}
92
b624f32f 93void dynamic_keymap_reset(void) {
94 // Reset the keymaps in EEPROM to what is in flash.
95 // All keyboards using dynamic keymaps should define a layout
96 // for the same number of layers as DYNAMIC_KEYMAP_LAYER_COUNT.
97 for (int layer = 0; layer < DYNAMIC_KEYMAP_LAYER_COUNT; layer++) {
98 for (int row = 0; row < MATRIX_ROWS; row++) {
99 for (int column = 0; column < MATRIX_COLS; column++) {
100 dynamic_keymap_set_keycode(layer, row, column, pgm_read_word(&keymaps[layer][row][column]));
101 }
102 }
103 }
48a992f1
W
104}
105
b624f32f 106void dynamic_keymap_get_buffer(uint16_t offset, uint16_t size, uint8_t *data) {
107 uint16_t dynamic_keymap_eeprom_size = DYNAMIC_KEYMAP_LAYER_COUNT * MATRIX_ROWS * MATRIX_COLS * 2;
108 void * source = (void *)(DYNAMIC_KEYMAP_EEPROM_ADDR + offset);
109 uint8_t *target = data;
110 for (uint16_t i = 0; i < size; i++) {
111 if (offset + i < dynamic_keymap_eeprom_size) {
112 *target = eeprom_read_byte(source);
113 } else {
114 *target = 0x00;
115 }
116 source++;
117 target++;
118 }
d7f1e072
W
119}
120
b624f32f 121void dynamic_keymap_set_buffer(uint16_t offset, uint16_t size, uint8_t *data) {
122 uint16_t dynamic_keymap_eeprom_size = DYNAMIC_KEYMAP_LAYER_COUNT * MATRIX_ROWS * MATRIX_COLS * 2;
123 void * target = (void *)(DYNAMIC_KEYMAP_EEPROM_ADDR + offset);
124 uint8_t *source = data;
125 for (uint16_t i = 0; i < size; i++) {
126 if (offset + i < dynamic_keymap_eeprom_size) {
127 eeprom_update_byte(target, *source);
128 }
129 source++;
130 target++;
131 }
d7f1e072
W
132}
133
48a992f1 134// This overrides the one in quantum/keymap_common.c
b624f32f 135uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key) {
136 if (layer < DYNAMIC_KEYMAP_LAYER_COUNT && key.row < MATRIX_ROWS && key.col < MATRIX_COLS) {
137 return dynamic_keymap_get_keycode(layer, key.row, key.col);
138 } else {
139 return KC_NO;
140 }
d7f1e072
W
141}
142
b624f32f 143uint8_t dynamic_keymap_macro_get_count(void) { return DYNAMIC_KEYMAP_MACRO_COUNT; }
144
145uint16_t dynamic_keymap_macro_get_buffer_size(void) { return DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE; }
146
147void dynamic_keymap_macro_get_buffer(uint16_t offset, uint16_t size, uint8_t *data) {
148 void * source = (void *)(DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR + offset);
149 uint8_t *target = data;
150 for (uint16_t i = 0; i < size; i++) {
151 if (offset + i < DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE) {
152 *target = eeprom_read_byte(source);
153 } else {
154 *target = 0x00;
155 }
156 source++;
157 target++;
158 }
d7f1e072
W
159}
160
b624f32f 161void dynamic_keymap_macro_set_buffer(uint16_t offset, uint16_t size, uint8_t *data) {
162 void * target = (void *)(DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR + offset);
163 uint8_t *source = data;
164 for (uint16_t i = 0; i < size; i++) {
165 if (offset + i < DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE) {
166 eeprom_update_byte(target, *source);
167 }
168 source++;
169 target++;
170 }
d7f1e072
W
171}
172
b624f32f 173void dynamic_keymap_macro_reset(void) {
174 void *p = (void *)(DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR);
175 void *end = (void *)(DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR + DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE);
176 while (p != end) {
177 eeprom_update_byte(p, 0);
178 ++p;
179 }
d7f1e072
W
180}
181
b624f32f 182void dynamic_keymap_macro_send(uint8_t id) {
183 if (id >= DYNAMIC_KEYMAP_MACRO_COUNT) {
184 return;
185 }
186
187 // Check the last byte of the buffer.
188 // If it's not zero, then we are in the middle
189 // of buffer writing, possibly an aborted buffer
190 // write. So do nothing.
191 void *p = (void *)(DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR + DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE - 1);
192 if (eeprom_read_byte(p) != 0) {
193 return;
194 }
195
196 // Skip N null characters
197 // p will then point to the Nth macro
198 p = (void *)(DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR);
199 void *end = (void *)(DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR + DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE);
200 while (id > 0) {
201 // If we are past the end of the buffer, then the buffer
202 // contents are garbage, i.e. there were not DYNAMIC_KEYMAP_MACRO_COUNT
203 // nulls in the buffer.
204 if (p == end) {
205 return;
206 }
207 if (eeprom_read_byte(p) == 0) {
208 --id;
209 }
210 ++p;
211 }
212
213 // Send the macro string one or two chars at a time
214 // by making temporary 1 or 2 char strings
215 char data[3] = {0, 0, 0};
216 // We already checked there was a null at the end of
217 // the buffer, so this cannot go past the end
218 while (1) {
219 data[0] = eeprom_read_byte(p++);
220 data[1] = 0;
221 // Stop at the null terminator of this macro string
222 if (data[0] == 0) {
223 break;
224 }
225 // If the char is magic (tap, down, up),
226 // add the next char (key to use) and send a 2 char string.
227 if (data[0] == SS_TAP_CODE || data[0] == SS_DOWN_CODE || data[0] == SS_UP_CODE) {
228 data[1] = eeprom_read_byte(p++);
229 if (data[1] == 0) {
230 break;
231 }
232 }
233 send_string(data);
234 }
d7f1e072 235}