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