effect_runner_reactive.h 1019 B

12345678910111213141516171819202122232425262728293031
  1. #pragma once
  2. #ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
  3. typedef void (*reactive_f)(HSV* hsv, uint16_t offset);
  4. bool effect_runner_reactive(effect_params_t* params, reactive_f effect_func) {
  5. RGB_MATRIX_USE_LIMITS(led_min, led_max);
  6. HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, rgb_matrix_config.val };
  7. uint16_t max_tick = 65535 / rgb_matrix_config.speed;
  8. for (uint8_t i = led_min; i < led_max; i++) {
  9. RGB_MATRIX_TEST_LED_FLAGS();
  10. uint16_t tick = max_tick;
  11. // Reverse search to find most recent key hit
  12. for (int8_t j = g_last_hit_tracker.count - 1; j >= 0; j--) {
  13. if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) {
  14. tick = g_last_hit_tracker.tick[j];
  15. break;
  16. }
  17. }
  18. uint16_t offset = scale16by8(tick, rgb_matrix_config.speed);
  19. effect_func(&hsv, offset);
  20. RGB rgb = hsv_to_rgb(hsv);
  21. rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
  22. }
  23. return led_max < DRIVER_LED_TOTAL;
  24. }
  25. #endif // RGB_MATRIX_KEYREACTIVE_ENABLED