-
Notifications
You must be signed in to change notification settings - Fork 2
/
led_manager.c
607 lines (517 loc) · 20 KB
/
led_manager.c
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
/*
* tasshack
* (c) 2019 - 2022
*
* License: GPLv3
*
*/
#include "led_manager.h"
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
typedef struct {
led_manager_config_t config;
led_manager_led_t* leds;
led_manager_profile_t current_profile;
led_manager_profile_t new_profile;
unsigned long leds_count;
unsigned short new_intensity;
unsigned short current_intensity;
unsigned char state;
double fsaturation;
double fvalue;
double fintensity;
short brightness_correction;
long _x;
long _y;
long _i;
long _width_33;
long _width_50;
long _width_66;
long _width_px;
long _height_33;
long _height_66;
long _height_50;
long long _px_address;
long long _max_address;
unsigned char _r;
unsigned char _g;
unsigned char _b;
unsigned char _px_r;
unsigned char _px_g;
unsigned char _px_b;
unsigned char _changed;
unsigned char _profile_changed;
unsigned char _rPos;
unsigned char _gPos;
unsigned char _bPos;
unsigned long _px_count;
unsigned long long _address;
unsigned long long _total_r;
unsigned long long _total_g;
unsigned long long _total_b;
} led_manager_t;
static led_manager_t led_manager;
unsigned char led_manager_correction(unsigned char color, short brightness_correction)
{
if (brightness_correction) {
if (brightness_correction > 0) {
if (color + brightness_correction < 255) {
return color + brightness_correction;
}
return 255;
}
if (color + brightness_correction > 0) {
return color + brightness_correction;
}
return 0;
}
return color;
}
int led_manager_get_pixel(const unsigned char* buffer, unsigned char* red, unsigned char* green, unsigned char* blue, long x, long y, unsigned char correction)
{
if (led_manager.config.capture_pos) {
led_manager._px_address = (y * (led_manager._width_px)) + (x * 4);
}
else {
led_manager._px_address = ((led_manager.config.image_height - 1 - y) * (led_manager._width_px)) + ((led_manager.config.image_width - 1 - x) * 4);
}
if (led_manager._px_address >= 0 && led_manager._px_address < led_manager._max_address) {
if (correction == 1) {
*red = led_manager_correction(buffer[led_manager._px_address + led_manager._rPos], led_manager.brightness_correction);
*green = led_manager_correction(buffer[led_manager._px_address + led_manager._gPos], led_manager.brightness_correction);
*blue = led_manager_correction(buffer[led_manager._px_address + led_manager._bPos], led_manager.brightness_correction);
}
else {
*red = buffer[led_manager._px_address + led_manager._rPos];
*green = buffer[led_manager._px_address + led_manager._gPos];
*blue = buffer[led_manager._px_address + led_manager._bPos];
}
return 1;
}
*red = 0;
*green = 0;
*blue = 0;
return 0;
}
unsigned char led_manager_check_black(const unsigned char* buffer, long x, long y, unsigned char threshold)
{
if (led_manager_get_pixel(buffer, &led_manager._px_r, &led_manager._px_g, &led_manager._px_b, x, y, 0)) {
if (led_manager._px_r <= threshold && led_manager._px_g <= threshold && led_manager._px_b <= threshold) {
return 1;
}
}
return 0;
}
unsigned char led_manager_get_borders(const unsigned char* buffer, short* h_border, short* v_border) {
*h_border = -1;
*v_border = -1;
for (led_manager._i = 0; led_manager._i < led_manager._width_33; ++led_manager._i)
{
if (!led_manager_check_black(buffer, led_manager._i, led_manager._height_50, 10) ||
!led_manager_check_black(buffer, led_manager._i, led_manager._height_33, 10) ||
!led_manager_check_black(buffer, led_manager._i, led_manager._height_66, 10)) {
*v_border = ((100 * led_manager._i) / led_manager.config.image_width);
break;
}
}
for (led_manager._i = 0; led_manager._i < led_manager._height_33; ++led_manager._i)
{
if (!led_manager_check_black(buffer, led_manager._width_50, led_manager._i, 10) ||
!led_manager_check_black(buffer, led_manager._width_33, led_manager._i, 10) ||
!led_manager_check_black(buffer, led_manager._width_66, led_manager._i, 10)) {
*h_border = ((100 * led_manager._i) / led_manager.config.image_height);
break;
}
}
//led_manager.new_profile.v_padding_percent = ((100 * non_black_x) / led_manager.config.image_width);
//led_manager.new_profile.h_padding_percent = ((100 * non_black_y) / led_manager.config.image_height);
if (*h_border == -1 || *v_border == -1) {
return 0;
}
return 1;
}
void led_manager_deinit() {
free(led_manager.leds);
}
static void led_manager_rgb2hsv(unsigned char red, unsigned char green, unsigned char blue, unsigned short* hue, unsigned short* saturation, unsigned short* value)
{
unsigned char rgbMin, rgbMax;
rgbMin = red < green ? (red < blue ? red : blue) : (green < blue ? green : blue);
rgbMax = red > green ? (red > blue ? red : blue) : (green > blue ? green : blue);
*value = rgbMax;
if (*value == 0) {
*hue = 0;
*saturation = 0;
return;
}
*saturation = 255 * (long)(rgbMax - rgbMin) / *value;
if (*saturation == 0) {
*hue = 0;
return;
}
if (rgbMax == red) {
*hue = 360 + 60 * (green - blue) / (rgbMax - rgbMin);
if (*hue > 359)
*hue -= 360;
}
else if (rgbMax == green) {
*hue = 120 + 60 * (blue - red) / (rgbMax - rgbMin);
}
else {
*hue = 240 + 60 * (red - green) / (rgbMax - rgbMin);
}
}
static void led_manager_hsv2rgb(unsigned short hue, unsigned short saturation, unsigned char value, unsigned char* red, unsigned char* green, unsigned char* blue)
{
unsigned char region, remainder, p, q, t;
if (saturation == 0) {
*red = value;
*green = value;
*blue = value;
return;
}
region = hue / 60;
remainder = (hue - (region * 60)) * 256 / 60;
p = (value * (255 - saturation)) >> 8;
q = (value * (255 - ((saturation * remainder) >> 8))) >> 8;
t = (value * (255 - ((saturation * (255 - remainder)) >> 8))) >> 8;
switch (region) {
case 0:
*red = value; *green = t; *blue = p;
break;
case 1:
*red = q; *green = value; *blue = p;
break;
case 2:
*red = p; *green = value; *blue = t;
break;
case 3:
*red = p; *green = q; *blue = value;
break;
case 4:
*red = t; *green = p; *blue = value;
break;
default:
*red = value; *green = p; *blue = q;
break;
}
}
static void led_manager_transform(unsigned char* red, unsigned char* green, unsigned char* blue, double saturationGain, double valueGain)
{
if (saturationGain != 1.0 || valueGain != 1.0) {
unsigned short hue;
unsigned short saturation, value;
led_manager_rgb2hsv(*red, *green, *blue, &hue, &saturation, &value);
int s = saturation * saturationGain;
if (s > 255)
saturation = 255;
else
saturation = s;
int v = value * valueGain;
if (v > 255)
value = 255;
else
value = v;
led_manager_hsv2rgb(hue, saturation, value, red, green, blue);
}
}
static int led_manager_increment_value(short* currentValue, short newValue, unsigned short step)
{
if (*currentValue != newValue) {
if (*currentValue > newValue) {
if (*currentValue - step > newValue) {
*currentValue -= step;
}
else {
*currentValue = newValue;
}
return 1;
}
if (*currentValue < newValue) {
if (*currentValue + step < newValue) {
*currentValue += step;
}
else {
*currentValue = newValue;
}
return -1;
}
}
return 0;
}
int led_manager_calculate_area()
{
unsigned long padded_width, padded_height, vertical_depth, horizontal_depth, index, i, j, overlap_px_x, overlap_px_y, v_padding_px, h_padding_px;
double x_area, y_area;
v_padding_px = ((led_manager.current_profile.v_padding_percent / 100.0) * led_manager.config.image_width);
h_padding_px = ((led_manager.current_profile.h_padding_percent / 100.0) * led_manager.config.image_height);
padded_width = led_manager.config.image_width - (v_padding_px * 2);
padded_height = led_manager.config.image_height - (h_padding_px * 2);
vertical_depth = ((led_manager.current_profile.vertical_depth_percent / 100.0) * padded_width);
horizontal_depth = ((led_manager.current_profile.horizontal_depth_percent / 100.0) * padded_height);
x_area = (double)padded_width / led_manager.config.h_leds_count;
y_area = (double)padded_height / led_manager.config.v_leds_count;
overlap_px_x = ((led_manager.current_profile.overlap_percent / 100.0) * x_area);
overlap_px_y = ((led_manager.current_profile.overlap_percent / 100.0) * y_area);
memset(led_manager.leds, 0, sizeof(led_manager_led_t) * led_manager.leds_count);
for (i = 0; i < led_manager.config.h_leds_count; i++) {
for (j = 0; j < 2; j++) {
index = i + (j * (((led_manager.config.h_leds_count - i) * 2) + led_manager.config.v_leds_count - 1));
if (index > (led_manager.config.h_leds_count + led_manager.config.v_leds_count + ((led_manager.config.h_leds_count - led_manager.config.bottom_gap) / 2) - 1)) {
if (index < (led_manager.config.h_leds_count + led_manager.config.v_leds_count + ((led_manager.config.h_leds_count - led_manager.config.bottom_gap) / 2) + led_manager.config.bottom_gap - 1)) {
break;
}
index -= led_manager.config.bottom_gap;
}
index += (led_manager.leds_count - led_manager.config.start_offset);
if (index >= led_manager.leds_count) {
index = index - led_manager.leds_count;
}
if (led_manager.config.led_order == 0) {
index = led_manager.leds_count - index - 1;
}
if (j == 0) {
led_manager.leds[index].y1 = h_padding_px;
}
else {
led_manager.leds[index].y1 = led_manager.config.image_height - horizontal_depth - h_padding_px - 1;
}
led_manager.leds[index].y2 = led_manager.leds[index].y1 + horizontal_depth;
led_manager.leds[index].x1 = floorf(x_area * i) + v_padding_px - overlap_px_x;
led_manager.leds[index].x2 = ceilf((x_area * (i + 1)) - 1) + v_padding_px + overlap_px_x + 1;
if (led_manager.leds[index].x1 < 0) {
led_manager.leds[index].x1 = 0;
}
if (led_manager.leds[index].x2 >= led_manager.config.image_width) {
led_manager.leds[index].x2 = led_manager.config.image_width - 1;
}
}
}
for (i = 0; i < led_manager.config.v_leds_count; i++) {
for (j = 0; j < 2; j++) {
index = i + led_manager.config.h_leds_count + (j * (((led_manager.config.v_leds_count - i) * 2) + led_manager.config.h_leds_count - led_manager.config.bottom_gap - 1)) + (led_manager.leds_count - led_manager.config.start_offset);
if (index >= led_manager.leds_count) {
index = index - led_manager.leds_count;
}
if (led_manager.config.led_order == 0) {
index = led_manager.leds_count - index - 1;
}
if (j == 0) {
led_manager.leds[index].x1 = led_manager.config.image_width - vertical_depth - v_padding_px - 1;
}
else {
led_manager.leds[index].x1 = v_padding_px;
}
led_manager.leds[index].x2 = led_manager.leds[index].x1 + vertical_depth;
led_manager.leds[index].y1 = floorf(y_area * i) + h_padding_px - overlap_px_y;
led_manager.leds[index].y2 = ceilf((y_area * (i + 1)) - 1) + h_padding_px + overlap_px_y;
if (led_manager.leds[index].y1 < 0) {
led_manager.leds[index].y1 = 0;
}
if (led_manager.leds[index].y2 >= led_manager.config.image_height) {
led_manager.leds[index].y2 = led_manager.config.image_height - 1;
}
}
}
return 0;
}
int led_manager_recalculate_profile()
{
if (memcmp(&led_manager.current_profile, &led_manager.new_profile, sizeof(led_manager_profile_t)) != 0) {
unsigned int area_changed = led_manager_increment_value(&led_manager.current_profile.v_padding_percent, led_manager.new_profile.v_padding_percent, 1) != 0;
area_changed = led_manager_increment_value(&led_manager.current_profile.h_padding_percent, led_manager.new_profile.h_padding_percent, 1) != 0 || area_changed;
area_changed = led_manager_increment_value(&led_manager.current_profile.horizontal_depth_percent, led_manager.new_profile.horizontal_depth_percent, 1) != 0 || area_changed;
area_changed = led_manager_increment_value(&led_manager.current_profile.vertical_depth_percent, led_manager.new_profile.vertical_depth_percent, 1) != 0 || area_changed;
area_changed = led_manager_increment_value(&led_manager.current_profile.overlap_percent, led_manager.new_profile.overlap_percent, 1) != 0 || area_changed;
if (area_changed) {
led_manager_calculate_area();
}
unsigned int profile_changed = led_manager_increment_value(&led_manager.current_profile.value_gain_percent, led_manager.new_profile.value_gain_percent, 4) != 0;
profile_changed = led_manager_increment_value(&led_manager.current_profile.saturation_gain_percent, led_manager.new_profile.saturation_gain_percent, 4) != 0 || profile_changed;
profile_changed = led_manager_increment_value(&led_manager.current_profile.brightness_correction, led_manager.new_profile.brightness_correction, 2) != 0 || profile_changed;
if (profile_changed) {
led_manager.fsaturation = led_manager.current_profile.saturation_gain_percent / 100.0;
led_manager.fvalue = led_manager.current_profile.value_gain_percent / 100.0;
led_manager.brightness_correction = led_manager.current_profile.brightness_correction;
}
if (!area_changed && !profile_changed) {
memcpy(&led_manager.current_profile, &led_manager.new_profile, sizeof(led_manager_profile_t));
return 0;
}
return 1;
}
return 0;
}
int led_manager_argb8888_to_leds(const unsigned char* buffer, unsigned char* data)
{
led_manager._changed = 0;
if (led_manager._profile_changed && !led_manager_recalculate_profile()) {
led_manager._profile_changed = 0;
}
if ((led_manager.state || led_manager.current_intensity > 0)) {
if (!led_manager.state) {
if (led_manager_increment_value(&led_manager.current_intensity, 0, 4)) {
led_manager.fintensity = led_manager.current_intensity / 100.0;
}
}
else {
if (led_manager_increment_value(&led_manager.current_intensity, led_manager.new_intensity, 4)) {
led_manager.fintensity = led_manager.current_intensity / 100.0;
}
}
for (led_manager._i = 0; led_manager._i < led_manager.leds_count; led_manager._i++) {
led_manager._total_r = 0;
led_manager._total_g = 0;
led_manager._total_b = 0;
led_manager._px_count = 0;
for (led_manager._x = led_manager.leds[led_manager._i].x1; led_manager._x < led_manager.leds[led_manager._i].x2; led_manager._x++) {
for (led_manager._y = led_manager.leds[led_manager._i].y1; led_manager._y < led_manager.leds[led_manager._i].y2; led_manager._y++) {
if (led_manager_get_pixel(buffer, &led_manager._px_r, &led_manager._px_g, &led_manager._px_b, led_manager._x, led_manager._y, 1)) {
led_manager._total_r += led_manager._px_r;
led_manager._total_g += led_manager._px_g;
led_manager._total_b += led_manager._px_b;
led_manager._px_count++;
}
}
}
if (led_manager._px_count) {
led_manager._r = (unsigned char)(led_manager._total_r / led_manager._px_count);
led_manager._g = (unsigned char)(led_manager._total_g / led_manager._px_count);
led_manager._b = (unsigned char)(led_manager._total_b / led_manager._px_count);
led_manager_transform(&led_manager._r, &led_manager._g, &led_manager._b, led_manager.fsaturation, led_manager.fvalue);
led_manager._r = (unsigned char)(led_manager._r * led_manager.fintensity);
led_manager._g = (unsigned char)(led_manager._g * led_manager.fintensity);
led_manager._b = (unsigned char)(led_manager._b * led_manager.fintensity);
}
else {
led_manager._r = 0;
led_manager._g = 0;
led_manager._b = 0;
}
led_manager._address = led_manager._i * 3;
if (!led_manager._changed && (led_manager._r != data[led_manager._address + 0] || led_manager._g != data[led_manager._address + 1] || led_manager._b != data[led_manager._address + 2])) {
led_manager._changed = 1;
}
data[led_manager._address + 0] = led_manager._r;
data[led_manager._address + 1] = led_manager._g;
data[led_manager._address + 2] = led_manager._b;
}
}
return led_manager._changed;
}
int led_manager_init(const led_manager_config_t* config, const led_manager_profile_t* profile)
{
memcpy(&led_manager.config, config, sizeof(led_manager_config_t));
led_manager.leds_count = ((led_manager.config.h_leds_count + led_manager.config.v_leds_count) * 2) - led_manager.config.bottom_gap;
led_manager.current_intensity = 0;
led_manager.new_intensity = 100;
led_manager.state = 1;
led_manager._profile_changed = 1;
led_manager.leds = malloc(sizeof(led_manager_led_t) * led_manager.leds_count);
memset(led_manager.leds, 0, sizeof(led_manager_led_t) * led_manager.leds_count);
memcpy(&led_manager.new_profile, profile, sizeof(led_manager_profile_t));
memcpy(&led_manager.current_profile, profile, sizeof(led_manager_profile_t));
led_manager.fsaturation = led_manager.current_profile.saturation_gain_percent / 100.0;
led_manager.fvalue = led_manager.current_profile.value_gain_percent / 100.0;
led_manager.brightness_correction = led_manager.current_profile.brightness_correction;
for (led_manager._i = 0; led_manager._i < 3; led_manager._i++) {
switch (led_manager.config.color_order[led_manager._i]) {
case 'b':
case 'B':
led_manager._bPos = 2 - led_manager._i;
break;
case 'g':
case 'G':
led_manager._gPos = 2 - led_manager._i;
break;
case 'r':
case 'R':
led_manager._rPos = 2 - led_manager._i;
break;
default:;
}
}
if (led_manager.config.capture_pos == 1) {
led_manager._rPos += 4;
led_manager._gPos += 4;
led_manager._bPos += 4;
}
led_manager._width_33 = led_manager.config.image_width / 3;
led_manager._height_33 = led_manager.config.image_height / 3;
led_manager._width_66 = led_manager._width_33 * 2;
led_manager._width_px = led_manager.config.image_width * 4;
led_manager._height_66 = led_manager._height_33 * 2;
led_manager._width_50 = led_manager.config.image_width / 2;
led_manager._height_50 = led_manager.config.image_height / 2;
led_manager._max_address = led_manager.config.image_width * led_manager.config.image_height * 4;
led_manager_calculate_area();
return led_manager.leds_count;
}
int led_manager_set_profile(const led_manager_profile_t* profile)
{
memcpy(&led_manager.new_profile, profile, sizeof(led_manager_profile_t));
led_manager._profile_changed = 1;
return 0;
}
int led_manager_get_profile(led_manager_profile_t* profile)
{
if (profile) {
memcpy(profile, &led_manager.new_profile, sizeof(led_manager_profile_t));
return 0;
}
return -1;
}
unsigned int led_manager_get_profile_index()
{
return led_manager.current_profile.index;
}
int led_manager_set_state(unsigned char state)
{
if (led_manager.state != state) {
led_manager.state = state;
return 1;
}
return 0;
}
int led_manager_get_state()
{
return led_manager.state || led_manager.current_intensity;
}
int led_manager_set_intensity(unsigned short intensity, unsigned int current)
{
if (intensity <= 100) {
if (current) {
led_manager.current_intensity = intensity;
led_manager.new_intensity = intensity;
led_manager.fintensity = led_manager.current_intensity / 100.0;
return 1;
}
else {
if (intensity != led_manager.new_intensity) {
led_manager.new_intensity = intensity;
return 1;
}
}
return 0;
}
return -1;
}
int led_manager_get_intensity()
{
return led_manager.new_intensity;
}
int led_manager_print_area(char* buffer)
{
char buff[500] = {};
sprintf(buffer, "%d x %d \n", led_manager.config.image_width, led_manager.config.image_height);
for (int i = 0; i < led_manager.leds_count; i++) {
memset(buff, 0, sizeof(buff));
sprintf(buff, "LED %02d: %03d:%03d - %03d:%03d (%03dx%03d %02d)\n", i, led_manager.leds[i].x1, led_manager.leds[i].x2, led_manager.leds[i].y1, led_manager.leds[i].y2, led_manager.leds[i].x2 - led_manager.leds[i].x1, led_manager.leds[i].y2 - led_manager.leds[i].y1, (led_manager.leds[i].x2 - led_manager.leds[i].x1) * (led_manager.leds[i].y2 - led_manager.leds[i].y1));
strcat(buffer, buff);
}
}
led_manager_led_t* led_manager_get_leds() {
return led_manager.leds;
}