-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColormap-Defy.cpp
373 lines (320 loc) · 13.6 KB
/
Colormap-Defy.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
/* -*- mode: c++ -*-
* Kaleidoscope-Colormap -- Per-layer colormap effect
* Copyright (C) 2016, 2017, 2018 Keyboard.io, Inc
* Copyright (C) 2023, 2024 DygmaLabs, S. L.
*
* This program is free software: you can redistribute it and/or modify it under it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but WITHOUT but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Colormap-Defy.h"
#include <Kaleidoscope-EEPROM-Settings.h>
#include <Kaleidoscope-FocusSerial.h>
#include "kaleidoscope/layers.h"
#include "LED-Palette-Theme-Defy.h"
namespace kaleidoscope {
namespace plugin {
uint16_t ColormapEffectDefy::map_base_;
uint8_t ColormapEffectDefy::max_layers_;
uint8_t ColormapEffectDefy::top_layer_;
bool right_side;
void ColormapEffectDefy::max_layers(uint8_t max_) {
if (map_base_ != 0) {
return;
}
max_layers_ = max_;
map_base_ = ::LEDPaletteThemeDefy.reserveThemes(max_layers_);
}
void ColormapEffectDefy::TransientLEDMode::onActivate(void) {
if (!Runtime.has_leds) {
return;
}
parent_->top_layer_ = Layer.mostRecent();
parent_->led_mode.layer = parent_->top_layer_;
sendLedMode(parent_->led_mode);
if (parent_->top_layer_ <= parent_->max_layers_) {
::LEDPaletteThemeDefy.updateHandler(parent_->map_base_, parent_->top_layer_);
}
}
void ColormapEffectDefy::updateColorIndexAtPosition(uint8_t layer, uint16_t position, uint8_t palette_index) {
if (layer >= max_layers_) {
return;
}
uint16_t index = (Runtime.device().led_count) * layer + position;
::LEDPaletteThemeDefy.updateColorIndexAtPosition(map_base_, index, palette_index);
}
uint8_t ColormapEffectDefy::getColorIndexAtPosition(uint8_t layer, uint16_t position) {
if (layer >= max_layers_) {
return 0;
}
uint16_t index = (Runtime.device().led_count) * layer + position;
return ::LEDPaletteThemeDefy.lookupColorIndexAtPosition(map_base_, index);
}
void ColormapEffectDefy::TransientLEDMode::refreshAt(KeyAddr key_addr) {
if (parent_->top_layer_ <= parent_->max_layers_) {
::LEDPaletteThemeDefy.refreshAt(parent_->map_base_, parent_->top_layer_, key_addr);
}
}
EventHandlerResult ColormapEffectDefy::onLayerChange() {
if (::LEDControl.get_mode_index() == led_mode_id_) {
::LEDControl.get_mode<TransientLEDMode>()->onActivate();
}
return EventHandlerResult::OK;
}
void ColormapEffectDefy::setFadein(bool fade_status) {
led_mode.fade_is_on = fade_status;
}
EventHandlerResult ColormapEffectDefy::onFocusEvent(const char *command) {
const char *expected_command = "colormap.map";
if (!Runtime.has_leds) {
return EventHandlerResult::OK;
}
if (::Focus.handleHelp(command, expected_command)) {
return EventHandlerResult::OK;
}
if (strcmp(command, expected_command) != 0) {
return EventHandlerResult::OK;
}
uint16_t max_index = (max_layers_ * (Runtime.device().led_count / 2));
if (::Focus.isEOL()) {
for (uint16_t pos = 0; pos < max_index; pos++) {
uint8_t indexes = Runtime.storage().read(map_base_ + pos);
::Focus.send((uint8_t)(indexes >> 4), indexes & ~0xf0);
}
return EventHandlerResult::EVENT_CONSUMED;
}
uint16_t pos = 0;
while (!::Focus.isEOL() && (pos < max_index)) {
uint8_t idx1, idx2;
::Focus.read(idx1);
::Focus.read(idx2);
uint8_t indexes = (idx1 << 4) + idx2;
Runtime.storage().update(map_base_ + pos, indexes);
pos++;
}
Runtime.storage().commit();
auto const &keyScanner = Runtime.device().keyScanner();
auto deviceLeft = keyScanner.leftHandDevice();
auto devicesRight = keyScanner.rightHandDevice();
Packet packet{};
packet.header.device = deviceLeft;
updateKeyMapCommunications(packet);
updateUnderGlowCommunications(packet);
packet.header.device = devicesRight;
updateKeyMapCommunications(packet);
updateUnderGlowCommunications(packet);
::LEDControl.refreshAll();
return EventHandlerResult::EVENT_CONSUMED;
}
void ColormapEffectDefy::getLayer(uint8_t layer, uint8_t output_buf[Runtime.device().led_count])
{
for (uint16_t i = 0; i < Runtime.device().led_count; ++i)
{
output_buf[i] = getColorIndexAtPosition(layer, i);
}
}
uint8_t ColormapEffectDefy::getMaxLayers() {
return max_layers_;
}
EventHandlerResult ColormapEffectDefy::onSetup() {
Communications.callbacks.bind(CONNECTED,
([](Packet packet) {
LEDPaletteThemeDefy::updatePaletteCommunication(packet);
}));
Communications.callbacks.bind(CONNECTED,
([this](Packet packet) {
updateKeyMapCommunications(packet);
}));
Communications.callbacks.bind(CONNECTED,
([this](Packet packet) {
updateUnderGlowCommunications(packet);
}));
Communications.callbacks.bind(RETRY_LAYERS,
([this](Packet packet) {
updateKeyMapCommunications(packet);
}));
Communications.callbacks.bind(RETRY_LAYERS,
([](Packet packet) {
LEDPaletteThemeDefy::updatePaletteCommunication(packet);
}));
Communications.callbacks.bind(RETRY_LAYERS,
([this](Packet packet) {
updateUnderGlowCommunications(packet);
}));
Communications.callbacks.bind(RETRY_LAYERS,
([](Packet packet) {
::LEDControl.set_mode(::LEDControl.get_mode_index());
}));
return EventHandlerResult::OK;
}
void ColormapEffectDefy::updateKeyMapCommunications(Packet &packet)
{
union PaletteJoiner {
struct {
uint8_t firstColor : 4;
uint8_t secondColor : 4;
};
uint8_t paletteColor;
};
uint8_t baseKeymapIndex;
if (packet.header.device == KEYSCANNER_DEFY_RIGHT || packet.header.device == Communications_protocol::RF_DEFY_RIGHT || packet.header.device == Communications_protocol::BLE_DEFY_RIGHT) {
baseKeymapIndex = Runtime.device().ledDriver().key_matrix_left;
right_side = true;
} else {
baseKeymapIndex = 0;
right_side = false;
}
for (uint8_t layer = 0; layer < max_layers_; ++layer) {
if (right_side){
uint8_t layerColors[Runtime.device().led_count];
getLayer(layer, layerColors);
packet.header.command = LAYER_KEYMAP_COLORS;
const uint8_t sizeofMessage = (Runtime.device().ledDriver().key_matrix_right)/ 2.0 + 0.5;
PaletteJoiner message[sizeofMessage];
packet.header.size = sizeof(message) + 1;
packet.data[0] = layer;
uint8_t k{};
bool swap = true;
for (int j = 0; j < Runtime.device().ledDriver().key_matrix_right; ++j) {
if (swap) {
message[k].firstColor = layerColors[baseKeymapIndex + j];
} else {
message[k++].secondColor = layerColors[baseKeymapIndex + j];
}
swap = !swap;
}
memcpy(&packet.data[1], message, packet.header.size - 1);
Communications.sendPacket(packet);
} else {
uint8_t layerColors[Runtime.device().led_count];
getLayer(layer, layerColors);
packet.header.command = LAYER_KEYMAP_COLORS;
const uint8_t sizeofMessage = Runtime.device().ledDriver().key_matrix_left / 2.0 + 0.5;
PaletteJoiner message[sizeofMessage];
packet.header.size = sizeof(message) + 1;
packet.data[0] = layer;
uint8_t k{};
bool swap = true;
for (int j = 0; j < Runtime.device().ledDriver().key_matrix_left; ++j) {
if (swap) {
message[k].firstColor = layerColors[baseKeymapIndex + j];
} else {
message[k++].secondColor = layerColors[baseKeymapIndex + j];
}
swap = !swap;
}
memcpy(&packet.data[1], message, packet.header.size - 1);
Communications.sendPacket(packet);
right_side = false;
}
}
}
void ColormapEffectDefy::updateUnderGlowCommunications(Packet &packet)
{
right_side = false;
union PaletteJoiner {
struct {
uint8_t firstColor : 4;
uint8_t secondColor : 4;
};
uint8_t paletteColor;
};
uint8_t baseUnderGlowIndex;
if (packet.header.device == KEYSCANNER_DEFY_RIGHT || packet.header.device == Communications_protocol::RF_DEFY_RIGHT || packet.header.device == Communications_protocol::BLE_DEFY_RIGHT) {
baseUnderGlowIndex = Runtime.device().ledDriver().key_matrix_left + Runtime.device().ledDriver().key_matrix_right +
Runtime.device().ledDriver().underglow_leds ;
right_side = true;
}
else
{
baseUnderGlowIndex = Runtime.device().ledDriver().key_matrix_left + Runtime.device().ledDriver().key_matrix_right;
right_side = false;
}
if (right_side)
{
uint8_t layerColors[Runtime.device().led_count];
for (uint8_t layer = 0; layer < max_layers_; ++layer)
{
getLayer(layer, layerColors);
packet.header.command = Communications_protocol::LAYER_UNDERGLOW_COLORS;
const uint8_t sizeofMessage = Runtime.device().ledDriver().underglow_leds_right / 2.0 + 0.5;
PaletteJoiner message[sizeofMessage];
packet.header.size = sizeof(message) + 1;
packet.data[0] = layer;
bool swap = true;
uint8_t k{};
for (int j = 0; j < Runtime.device().ledDriver().underglow_leds_right; ++j)
{
if (swap)
{
message[k].firstColor = layerColors[baseUnderGlowIndex + j];
}
else
{
message[k++].secondColor = layerColors[baseUnderGlowIndex + j];
}
swap = !swap;
}
memcpy(&packet.data[1], message, packet.header.size - 1);
Communications.sendPacket(packet);
}
}
else
{
uint8_t layerColors[Runtime.device().led_count];
for (uint8_t layer = 0; layer < max_layers_; ++layer)
{
getLayer(layer, layerColors);
packet.header.command = Communications_protocol::LAYER_UNDERGLOW_COLORS;
const uint8_t sizeofMessage = Runtime.device().ledDriver().underglow_leds / 2.0 + 0.5;
PaletteJoiner message[sizeofMessage];
packet.header.size = sizeof(message) + 1;
packet.data[0] = layer;
bool swap = true;
uint8_t k{};
for (int j = 0; j < Runtime.device().ledDriver().underglow_leds; ++j)
{
if (swap)
{
message[k].firstColor = layerColors[baseUnderGlowIndex + j];
}
else
{
message[k++].secondColor = layerColors[baseUnderGlowIndex + j];
}
swap = !swap;
}
memcpy(&packet.data[1], message, packet.header.size - 1);
Communications.sendPacket(packet);
}
}
}
void ColormapEffectDefy::updateBrigthness(LedBrightnessControlEffect led_effect_id, bool take_brightness_handler, bool updateWiredBrightness)
{
Packet packet;
packet.header.command = BRIGHTNESS;
packet.header.size = 4;
auto &ledDriver = Runtime.device().ledDriver();
if (updateWiredBrightness) {
packet.data[0] = ledDriver.getBrightness();
packet.data[1] = ledDriver.getBrightnessUG();
} else {
packet.data[0] = ledDriver.getBrightnessWireless();
packet.data[1] = ledDriver.getBrightnessUGWireless();
}
packet.data[2] = static_cast<uint8_t>(led_effect_id); //LED effect ID.
packet.data[3] = take_brightness_handler; // Tell KS that we want to take (or left) brightness control.
packet.header.device = UNKNOWN;
Communications.sendPacket(packet);
}
} // namespace plugin
} // namespace kaleidoscope
kaleidoscope::plugin::ColormapEffectDefy ColormapEffectDefy;