2021-07-07 08:57:49 +00:00
|
|
|
#include "icon_animation_i.h"
|
|
|
|
#include "icon_i.h"
|
|
|
|
|
|
|
|
#include <furi.h>
|
|
|
|
|
|
|
|
IconAnimation* icon_animation_alloc(const Icon* icon) {
|
|
|
|
furi_assert(icon);
|
2022-02-18 19:53:46 +00:00
|
|
|
IconAnimation* instance = malloc(sizeof(IconAnimation));
|
2021-07-07 08:57:49 +00:00
|
|
|
instance->icon = icon;
|
2022-07-20 10:56:33 +00:00
|
|
|
instance->timer =
|
|
|
|
furi_timer_alloc(icon_animation_timer_callback, FuriTimerTypePeriodic, instance);
|
2021-07-07 08:57:49 +00:00
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void icon_animation_free(IconAnimation* instance) {
|
|
|
|
furi_assert(instance);
|
2021-12-01 22:13:21 +00:00
|
|
|
icon_animation_stop(instance);
|
2022-07-20 10:56:33 +00:00
|
|
|
while(xTimerIsTimerActive(instance->timer) == pdTRUE) furi_delay_tick(1);
|
|
|
|
furi_timer_free(instance->timer);
|
2021-07-07 08:57:49 +00:00
|
|
|
free(instance);
|
|
|
|
}
|
|
|
|
|
2021-10-02 17:00:56 +00:00
|
|
|
void icon_animation_set_update_callback(
|
|
|
|
IconAnimation* instance,
|
|
|
|
IconAnimationCallback callback,
|
|
|
|
void* context) {
|
2021-07-07 08:57:49 +00:00
|
|
|
furi_assert(instance);
|
2021-10-02 17:00:56 +00:00
|
|
|
instance->callback = callback;
|
|
|
|
instance->callback_context = context;
|
|
|
|
}
|
|
|
|
|
2023-02-09 04:58:01 +00:00
|
|
|
const uint8_t* icon_animation_get_data(const IconAnimation* instance) {
|
2021-07-07 08:57:49 +00:00
|
|
|
return instance->icon->frames[instance->frame];
|
|
|
|
}
|
|
|
|
|
|
|
|
void icon_animation_next_frame(IconAnimation* instance) {
|
|
|
|
furi_assert(instance);
|
|
|
|
instance->frame = (instance->frame + 1) % instance->icon->frame_count;
|
|
|
|
}
|
|
|
|
|
2021-10-02 17:00:56 +00:00
|
|
|
void icon_animation_timer_callback(void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
|
|
|
|
IconAnimation* instance = context;
|
|
|
|
|
|
|
|
if(!instance->animating) return;
|
|
|
|
|
|
|
|
icon_animation_next_frame(instance);
|
|
|
|
if(instance->callback) {
|
|
|
|
instance->callback(instance, instance->callback_context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-09 04:58:01 +00:00
|
|
|
uint8_t icon_animation_get_width(const IconAnimation* instance) {
|
2021-07-07 08:57:49 +00:00
|
|
|
furi_assert(instance);
|
|
|
|
return instance->icon->width;
|
|
|
|
}
|
|
|
|
|
2023-02-09 04:58:01 +00:00
|
|
|
uint8_t icon_animation_get_height(const IconAnimation* instance) {
|
2021-07-07 08:57:49 +00:00
|
|
|
furi_assert(instance);
|
|
|
|
return instance->icon->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void icon_animation_start(IconAnimation* instance) {
|
|
|
|
furi_assert(instance);
|
2021-10-02 17:00:56 +00:00
|
|
|
if(!instance->animating) {
|
|
|
|
instance->animating = true;
|
2021-11-24 16:21:12 +00:00
|
|
|
furi_assert(instance->icon->frame_rate);
|
2021-10-02 17:00:56 +00:00
|
|
|
furi_check(
|
2021-10-04 07:01:41 +00:00
|
|
|
xTimerChangePeriod(
|
2021-12-01 22:13:21 +00:00
|
|
|
instance->timer,
|
2022-07-20 10:56:33 +00:00
|
|
|
(furi_kernel_get_tick_frequency() / instance->icon->frame_rate),
|
2021-12-01 22:13:21 +00:00
|
|
|
portMAX_DELAY) == pdPASS);
|
2021-10-02 17:00:56 +00:00
|
|
|
}
|
2021-07-07 08:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void icon_animation_stop(IconAnimation* instance) {
|
|
|
|
furi_assert(instance);
|
2021-10-02 17:00:56 +00:00
|
|
|
if(instance->animating) {
|
|
|
|
instance->animating = false;
|
2021-12-01 22:13:21 +00:00
|
|
|
furi_check(xTimerStop(instance->timer, portMAX_DELAY) == pdPASS);
|
2021-10-02 17:00:56 +00:00
|
|
|
instance->frame = 0;
|
|
|
|
}
|
2021-07-07 08:57:49 +00:00
|
|
|
}
|
|
|
|
|
2023-02-09 04:58:01 +00:00
|
|
|
bool icon_animation_is_last_frame(const IconAnimation* instance) {
|
2021-07-07 08:57:49 +00:00
|
|
|
furi_assert(instance);
|
|
|
|
return instance->icon->frame_count - instance->frame <= 1;
|
2021-10-02 17:00:56 +00:00
|
|
|
}
|