]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/rgb_matrix_animations/splash_anim.h
Switching rgb_config_t to use HSV struct
[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 HSV SPLASH_math(HSV hsv,  int16_t dx, int16_t dy, uint8_t dist, uint16_t tick) {
15     uint16_t effect = tick - dist;
16     if (effect > 255)
17         effect = 255;
18     hsv.h += effect;
19     hsv.v = qadd8(hsv.v, 255 - effect);
20     return hsv;
21 }
22
23 #ifndef DISABLE_RGB_MATRIX_SPLASH
24 bool SPLASH(effect_params_t* params) {
25     return effect_runner_reactive_splash(qsub8(g_last_hit_tracker.count, 1), params, &SPLASH_math);
26 }
27 #endif
28
29 #ifndef DISABLE_RGB_MATRIX_MULTISPLASH
30 bool MULTISPLASH(effect_params_t* params) {
31     return effect_runner_reactive_splash(0, params, &SPLASH_math);
32 }
33 #endif
34
35 #endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
36 #endif // !defined(DISABLE_RGB_MATRIX_SPLASH) || !defined(DISABLE_RGB_MATRIX_MULTISPLASH)
37 #endif // RGB_MATRIX_KEYREACTIVE_ENABLED