]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/rgb_matrix_animations/solid_reactive_nexus.h
Cleanup/rgb matrix (#5811)
[qmk_firmware.git] / quantum / rgb_matrix_animations / solid_reactive_nexus.h
1 #ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
2 #if !defined(DISABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS) || !defined(DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS)
3
4 #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS
5 RGB_MATRIX_EFFECT(SOLID_REACTIVE_NEXUS)
6 #endif
7
8 #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS
9 RGB_MATRIX_EFFECT(SOLID_REACTIVE_MULTINEXUS)
10 #endif
11
12 #ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
13
14 static bool rgb_matrix_solid_reactive_multinexus_range(uint8_t start, effect_params_t* params) {
15   RGB_MATRIX_USE_LIMITS(led_min, led_max);
16
17   HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, 0 };
18   uint8_t count = g_last_hit_tracker.count;
19   for (uint8_t i = led_min; i < led_max; i++) {
20     hsv.v = 0;
21     for (uint8_t j = start; j < count; j++) {
22       RGB_MATRIX_TEST_LED_FLAGS();
23       int16_t dx = g_led_config.point[i].x - g_last_hit_tracker.x[j];
24       int16_t dy = g_led_config.point[i].y - g_last_hit_tracker.y[j];
25       uint8_t dist = sqrt16(dx * dx + dy * dy);
26       int16_t dist2 = 8;
27       uint16_t effect = scale16by8(g_last_hit_tracker.tick[j], rgb_matrix_config.speed) - dist;
28       if (effect > 255)
29         effect = 255;
30       if (dist > 72)
31         effect = 255;
32       if ((dx > dist2 || dx < -dist2) && (dy > dist2 || dy < -dist2))
33         effect = 255;
34       hsv.v = qadd8(hsv.v, 255 - effect);
35       hsv.h = rgb_matrix_config.hue + dy / 4;
36     }
37     hsv.v = scale8(hsv.v, rgb_matrix_config.val);
38     RGB rgb = hsv_to_rgb(hsv);
39     rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
40   }
41   return led_max < DRIVER_LED_TOTAL;
42 }
43
44 bool SOLID_REACTIVE_MULTINEXUS(effect_params_t* params) {
45   return rgb_matrix_solid_reactive_multinexus_range(0, params);
46 }
47
48 bool SOLID_REACTIVE_NEXUS(effect_params_t* params) {
49   return rgb_matrix_solid_reactive_multinexus_range(qsub8(g_last_hit_tracker.count, 1), params);
50 }
51
52 #endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
53 #endif // !defined(DISABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS) || !defined(DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS)
54 #endif // RGB_MATRIX_KEYREACTIVE_ENABLED