diff options
author | Ryan <fauxpark@gmail.com> | 2021-06-22 18:26:23 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 18:26:23 +1000 |
commit | d61e5c0027e289ccf48652afa4c442342e7ccf04 (patch) | |
tree | e8edc86d191a190691b4722f05e32bdc40affc58 /quantum/led_matrix/animations/runners | |
parent | c03cb4edd7ff73391a0a64f0c4f5e0755e902908 (diff) | |
download | qmk_firmware-d61e5c0027e289ccf48652afa4c442342e7ccf04.tar.gz qmk_firmware-d61e5c0027e289ccf48652afa4c442342e7ccf04.zip |
Move LED/RGB Matrix code into their own directories (#13257)
Diffstat (limited to 'quantum/led_matrix/animations/runners')
7 files changed, 123 insertions, 0 deletions
diff --git a/quantum/led_matrix/animations/runners/effect_runner_dx_dy.h b/quantum/led_matrix/animations/runners/effect_runner_dx_dy.h new file mode 100644 index 000000000..ef97631b9 --- /dev/null +++ b/quantum/led_matrix/animations/runners/effect_runner_dx_dy.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #pragma once | ||
2 | |||
3 | typedef uint8_t (*dx_dy_f)(uint8_t val, int16_t dx, int16_t dy, uint8_t time); | ||
4 | |||
5 | bool effect_runner_dx_dy(effect_params_t* params, dx_dy_f effect_func) { | ||
6 | LED_MATRIX_USE_LIMITS(led_min, led_max); | ||
7 | |||
8 | uint8_t time = scale16by8(g_led_timer, led_matrix_eeconfig.speed / 2); | ||
9 | for (uint8_t i = led_min; i < led_max; i++) { | ||
10 | LED_MATRIX_TEST_LED_FLAGS(); | ||
11 | int16_t dx = g_led_config.point[i].x - k_led_matrix_center.x; | ||
12 | int16_t dy = g_led_config.point[i].y - k_led_matrix_center.y; | ||
13 | led_matrix_set_value(i, effect_func(led_matrix_eeconfig.val, dx, dy, time)); | ||
14 | } | ||
15 | return led_max < DRIVER_LED_TOTAL; | ||
16 | } | ||
diff --git a/quantum/led_matrix/animations/runners/effect_runner_dx_dy_dist.h b/quantum/led_matrix/animations/runners/effect_runner_dx_dy_dist.h new file mode 100644 index 000000000..5ef5938be --- /dev/null +++ b/quantum/led_matrix/animations/runners/effect_runner_dx_dy_dist.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #pragma once | ||
2 | |||
3 | typedef uint8_t (*dx_dy_dist_f)(uint8_t val, int16_t dx, int16_t dy, uint8_t dist, uint8_t time); | ||
4 | |||
5 | bool effect_runner_dx_dy_dist(effect_params_t* params, dx_dy_dist_f effect_func) { | ||
6 | LED_MATRIX_USE_LIMITS(led_min, led_max); | ||
7 | |||
8 | uint8_t time = scale16by8(g_led_timer, led_matrix_eeconfig.speed / 2); | ||
9 | for (uint8_t i = led_min; i < led_max; i++) { | ||
10 | LED_MATRIX_TEST_LED_FLAGS(); | ||
11 | int16_t dx = g_led_config.point[i].x - k_led_matrix_center.x; | ||
12 | int16_t dy = g_led_config.point[i].y - k_led_matrix_center.y; | ||
13 | uint8_t dist = sqrt16(dx * dx + dy * dy); | ||
14 | led_matrix_set_value(i, effect_func(led_matrix_eeconfig.val, dx, dy, dist, time)); | ||
15 | } | ||
16 | return led_max < DRIVER_LED_TOTAL; | ||
17 | } | ||
diff --git a/quantum/led_matrix/animations/runners/effect_runner_i.h b/quantum/led_matrix/animations/runners/effect_runner_i.h new file mode 100644 index 000000000..b3015759b --- /dev/null +++ b/quantum/led_matrix/animations/runners/effect_runner_i.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #pragma once | ||
2 | |||
3 | typedef uint8_t (*i_f)(uint8_t val, uint8_t i, uint8_t time); | ||
4 | |||
5 | bool effect_runner_i(effect_params_t* params, i_f effect_func) { | ||
6 | LED_MATRIX_USE_LIMITS(led_min, led_max); | ||
7 | |||
8 | uint8_t time = scale16by8(g_led_timer, led_matrix_eeconfig.speed / 4); | ||
9 | for (uint8_t i = led_min; i < led_max; i++) { | ||
10 | LED_MATRIX_TEST_LED_FLAGS(); | ||
11 | led_matrix_set_value(i, effect_func(led_matrix_eeconfig.val, i, time)); | ||
12 | } | ||
13 | return led_max < DRIVER_LED_TOTAL; | ||
14 | } | ||
diff --git a/quantum/led_matrix/animations/runners/effect_runner_reactive.h b/quantum/led_matrix/animations/runners/effect_runner_reactive.h new file mode 100644 index 000000000..4369ea8c4 --- /dev/null +++ b/quantum/led_matrix/animations/runners/effect_runner_reactive.h | |||
@@ -0,0 +1,28 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #ifdef LED_MATRIX_KEYREACTIVE_ENABLED | ||
4 | |||
5 | typedef uint8_t (*reactive_f)(uint8_t val, uint16_t offset); | ||
6 | |||
7 | bool effect_runner_reactive(effect_params_t* params, reactive_f effect_func) { | ||
8 | LED_MATRIX_USE_LIMITS(led_min, led_max); | ||
9 | |||
10 | uint16_t max_tick = 65535 / led_matrix_eeconfig.speed; | ||
11 | for (uint8_t i = led_min; i < led_max; i++) { | ||
12 | LED_MATRIX_TEST_LED_FLAGS(); | ||
13 | uint16_t tick = max_tick; | ||
14 | // Reverse search to find most recent key hit | ||
15 | for (int8_t j = g_last_hit_tracker.count - 1; j >= 0; j--) { | ||
16 | if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) { | ||
17 | tick = g_last_hit_tracker.tick[j]; | ||
18 | break; | ||
19 | } | ||
20 | } | ||
21 | |||
22 | uint16_t offset = scale16by8(tick, led_matrix_eeconfig.speed); | ||
23 | led_matrix_set_value(i, effect_func(led_matrix_eeconfig.val, offset)); | ||
24 | } | ||
25 | return led_max < DRIVER_LED_TOTAL; | ||
26 | } | ||
27 | |||
28 | #endif // LED_MATRIX_KEYREACTIVE_ENABLED | ||
diff --git a/quantum/led_matrix/animations/runners/effect_runner_reactive_splash.h b/quantum/led_matrix/animations/runners/effect_runner_reactive_splash.h new file mode 100644 index 000000000..d6eb9731e --- /dev/null +++ b/quantum/led_matrix/animations/runners/effect_runner_reactive_splash.h | |||
@@ -0,0 +1,26 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #ifdef LED_MATRIX_KEYREACTIVE_ENABLED | ||
4 | |||
5 | typedef uint8_t (*reactive_splash_f)(uint8_t val, int16_t dx, int16_t dy, uint8_t dist, uint16_t tick); | ||
6 | |||
7 | bool effect_runner_reactive_splash(uint8_t start, effect_params_t* params, reactive_splash_f effect_func) { | ||
8 | LED_MATRIX_USE_LIMITS(led_min, led_max); | ||
9 | |||
10 | uint8_t count = g_last_hit_tracker.count; | ||
11 | for (uint8_t i = led_min; i < led_max; i++) { | ||
12 | LED_MATRIX_TEST_LED_FLAGS(); | ||
13 | uint8_t val = 0; | ||
14 | for (uint8_t j = start; j < count; j++) { | ||
15 | int16_t dx = g_led_config.point[i].x - g_last_hit_tracker.x[j]; | ||
16 | int16_t dy = g_led_config.point[i].y - g_last_hit_tracker.y[j]; | ||
17 | uint8_t dist = sqrt16(dx * dx + dy * dy); | ||
18 | uint16_t tick = scale16by8(g_last_hit_tracker.tick[j], led_matrix_eeconfig.speed); | ||
19 | val = effect_func(val, dx, dy, dist, tick); | ||
20 | } | ||
21 | led_matrix_set_value(i, scale8(val, led_matrix_eeconfig.val)); | ||
22 | } | ||
23 | return led_max < DRIVER_LED_TOTAL; | ||
24 | } | ||
25 | |||
26 | #endif // LED_MATRIX_KEYREACTIVE_ENABLED | ||
diff --git a/quantum/led_matrix/animations/runners/effect_runner_sin_cos_i.h b/quantum/led_matrix/animations/runners/effect_runner_sin_cos_i.h new file mode 100644 index 000000000..4a5219abd --- /dev/null +++ b/quantum/led_matrix/animations/runners/effect_runner_sin_cos_i.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #pragma once | ||
2 | |||
3 | typedef uint8_t (*sin_cos_i_f)(uint8_t val, int8_t sin, int8_t cos, uint8_t i, uint8_t time); | ||
4 | |||
5 | bool effect_runner_sin_cos_i(effect_params_t* params, sin_cos_i_f effect_func) { | ||
6 | LED_MATRIX_USE_LIMITS(led_min, led_max); | ||
7 | |||
8 | uint16_t time = scale16by8(g_led_timer, led_matrix_eeconfig.speed / 4); | ||
9 | int8_t cos_value = cos8(time) - 128; | ||
10 | int8_t sin_value = sin8(time) - 128; | ||
11 | for (uint8_t i = led_min; i < led_max; i++) { | ||
12 | LED_MATRIX_TEST_LED_FLAGS(); | ||
13 | led_matrix_set_value(i, effect_func(led_matrix_eeconfig.val, cos_value, sin_value, i, time)); | ||
14 | } | ||
15 | return led_max < DRIVER_LED_TOTAL; | ||
16 | } | ||
diff --git a/quantum/led_matrix/animations/runners/led_matrix_runners.inc b/quantum/led_matrix/animations/runners/led_matrix_runners.inc new file mode 100644 index 000000000..c09022bb0 --- /dev/null +++ b/quantum/led_matrix/animations/runners/led_matrix_runners.inc | |||
@@ -0,0 +1,6 @@ | |||
1 | #include "effect_runner_dx_dy_dist.h" | ||
2 | #include "effect_runner_dx_dy.h" | ||
3 | #include "effect_runner_i.h" | ||
4 | #include "effect_runner_sin_cos_i.h" | ||
5 | #include "effect_runner_reactive.h" | ||
6 | #include "effect_runner_reactive_splash.h" | ||