solid_reactive_simple_anim.h 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. #pragma once
  2. #ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
  3. #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE
  4. extern rgb_config_t rgb_matrix_config;
  5. extern last_hit_t g_last_hit_tracker;
  6. bool rgb_matrix_solid_reactive_simple(effect_params_t* params) {
  7. RGB_MATRIX_USE_LIMITS(led_min, led_max);
  8. HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, 0 };
  9. // Max tick based on speed scale ensures results from scale16by8 with rgb_matrix_config.speed are no greater than 255
  10. uint16_t max_tick = 65535 / rgb_matrix_config.speed;
  11. for (uint8_t i = led_min; i < led_max; i++) {
  12. RGB_MATRIX_TEST_LED_FLAGS();
  13. uint16_t tick = max_tick;
  14. for(uint8_t j = 0; j < g_last_hit_tracker.count; j++) {
  15. if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) {
  16. tick = g_last_hit_tracker.tick[j];
  17. break;
  18. }
  19. }
  20. uint16_t offset = scale16by8(tick, rgb_matrix_config.speed);
  21. hsv.v = scale8(255 - offset, rgb_matrix_config.val);
  22. RGB rgb = hsv_to_rgb(hsv);
  23. rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
  24. }
  25. return led_max < DRIVER_LED_TOTAL;
  26. }
  27. #endif // DISABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE
  28. #endif // RGB_MATRIX_KEYREACTIVE_ENABLED