solid_reactive_cross.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #pragma once
  2. #ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
  3. #if !defined(DISABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS) || !defined(DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS)
  4. extern rgb_led g_rgb_leds[DRIVER_LED_TOTAL];
  5. extern rgb_config_t rgb_matrix_config;
  6. extern last_hit_t g_last_hit_tracker;
  7. static bool rgb_matrix_solid_reactive_multicross_range(uint8_t start, effect_params_t* params) {
  8. RGB_MATRIX_USE_LIMITS(led_min, led_max);
  9. HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, 0 };
  10. uint8_t count = g_last_hit_tracker.count;
  11. for (uint8_t i = led_min; i < led_max; i++) {
  12. hsv.v = 0;
  13. point_t point = g_rgb_leds[i].point;
  14. for (uint8_t j = start; j < count; j++) {
  15. RGB_MATRIX_TEST_LED_FLAGS();
  16. int16_t dx = point.x - g_last_hit_tracker.x[j];
  17. int16_t dy = point.y - g_last_hit_tracker.y[j];
  18. uint8_t dist = sqrt16(dx * dx + dy * dy);
  19. int16_t dist2 = 16;
  20. uint8_t dist3;
  21. uint16_t effect = scale16by8(g_last_hit_tracker.tick[j], rgb_matrix_config.speed) + dist;
  22. dx = dx < 0 ? dx * -1 : dx;
  23. dy = dy < 0 ? dy * -1 : dy;
  24. dx = dx * dist2 > 255 ? 255 : dx * dist2;
  25. dy = dy * dist2 > 255 ? 255 : dy * dist2;
  26. dist3 = dx > dy ? dy : dx;
  27. effect += dist3;
  28. if (effect > 255)
  29. effect = 255;
  30. hsv.v = qadd8(hsv.v, 255 - effect);
  31. }
  32. hsv.v = scale8(hsv.v, rgb_matrix_config.val);
  33. RGB rgb = hsv_to_rgb(hsv);
  34. rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
  35. }
  36. return led_max < DRIVER_LED_TOTAL;
  37. }
  38. bool rgb_matrix_solid_reactive_multicross(effect_params_t* params) {
  39. return rgb_matrix_solid_reactive_multicross_range(0, params);
  40. }
  41. bool rgb_matrix_solid_reactive_cross(effect_params_t* params) {
  42. return rgb_matrix_solid_reactive_multicross_range(qsub8(g_last_hit_tracker.count, 1), params);
  43. }
  44. #endif // !defined(DISABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS) || !defined(DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS)
  45. #endif // RGB_MATRIX_KEYREACTIVE_ENABLED