4d6b170769
* Fixing compiler warnings with -Wextra * More warnings suppression, WIP * Even more warning fixes * Added new lines at end of text files. * Padding fix * Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline * Fixes for Secplus v1 * -additional warnings * +-Wredundant-decls fixes * FuriHal: print stack overflow task name in console * FuriHal: add missing include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
536 lines
19 KiB
C
536 lines
19 KiB
C
|
|
#include <stdint.h>
|
|
#include <flipper_format/flipper_format.h>
|
|
#include <furi.h>
|
|
#include <furi/dangerous_defines.h>
|
|
#include <storage/storage.h>
|
|
#include <gui/icon_i.h>
|
|
#include <m-string.h>
|
|
|
|
#include "animation_manager.h"
|
|
#include "animation_storage.h"
|
|
#include "animation_storage_i.h"
|
|
#include <assets_dolphin_internal.h>
|
|
#include <assets_dolphin_blocking.h>
|
|
|
|
#define ANIMATION_META_FILE "meta.txt"
|
|
#define ANIMATION_DIR "/ext/dolphin"
|
|
#define ANIMATION_MANIFEST_FILE ANIMATION_DIR "/manifest.txt"
|
|
#define TAG "AnimationStorage"
|
|
|
|
static void animation_storage_free_bubbles(BubbleAnimation* animation);
|
|
static void animation_storage_free_frames(BubbleAnimation* animation);
|
|
static void animation_storage_free_animation(BubbleAnimation** storage_animation);
|
|
static BubbleAnimation* animation_storage_load_animation(const char* name);
|
|
|
|
static bool animation_storage_load_single_manifest_info(
|
|
StorageAnimationManifestInfo* manifest_info,
|
|
const char* name) {
|
|
furi_assert(manifest_info);
|
|
|
|
bool result = false;
|
|
Storage* storage = furi_record_open("storage");
|
|
FlipperFormat* file = flipper_format_file_alloc(storage);
|
|
flipper_format_set_strict_mode(file, true);
|
|
string_t read_string;
|
|
string_init(read_string);
|
|
|
|
do {
|
|
uint32_t u32value;
|
|
if(FSE_OK != storage_sd_status(storage)) break;
|
|
if(!flipper_format_file_open_existing(file, ANIMATION_MANIFEST_FILE)) break;
|
|
|
|
if(!flipper_format_read_header(file, read_string, &u32value)) break;
|
|
if(string_cmp_str(read_string, "Flipper Animation Manifest")) break;
|
|
|
|
manifest_info->name = NULL;
|
|
|
|
/* skip other animation names */
|
|
flipper_format_set_strict_mode(file, false);
|
|
while(flipper_format_read_string(file, "Name", read_string) &&
|
|
string_cmp_str(read_string, name))
|
|
;
|
|
if(string_cmp_str(read_string, name)) break;
|
|
flipper_format_set_strict_mode(file, true);
|
|
|
|
manifest_info->name = malloc(string_size(read_string) + 1);
|
|
strcpy((char*)manifest_info->name, string_get_cstr(read_string));
|
|
|
|
if(!flipper_format_read_uint32(file, "Min butthurt", &u32value, 1)) break;
|
|
manifest_info->min_butthurt = u32value;
|
|
if(!flipper_format_read_uint32(file, "Max butthurt", &u32value, 1)) break;
|
|
manifest_info->max_butthurt = u32value;
|
|
if(!flipper_format_read_uint32(file, "Min level", &u32value, 1)) break;
|
|
manifest_info->min_level = u32value;
|
|
if(!flipper_format_read_uint32(file, "Max level", &u32value, 1)) break;
|
|
manifest_info->max_level = u32value;
|
|
if(!flipper_format_read_uint32(file, "Weight", &u32value, 1)) break;
|
|
manifest_info->weight = u32value;
|
|
result = true;
|
|
} while(0);
|
|
|
|
if(!result && manifest_info->name) {
|
|
free((void*)manifest_info->name);
|
|
}
|
|
string_clear(read_string);
|
|
flipper_format_free(file);
|
|
|
|
furi_record_close("storage");
|
|
|
|
return result;
|
|
}
|
|
|
|
void animation_storage_fill_animation_list(StorageAnimationList_t* animation_list) {
|
|
furi_assert(sizeof(StorageAnimationList_t) == sizeof(void*));
|
|
furi_assert(!StorageAnimationList_size(*animation_list));
|
|
|
|
Storage* storage = furi_record_open("storage");
|
|
FlipperFormat* file = flipper_format_file_alloc(storage);
|
|
/* Forbid skipping fields */
|
|
flipper_format_set_strict_mode(file, true);
|
|
string_t read_string;
|
|
string_init(read_string);
|
|
|
|
do {
|
|
uint32_t u32value;
|
|
StorageAnimation* storage_animation = NULL;
|
|
|
|
if(FSE_OK != storage_sd_status(storage)) break;
|
|
if(!flipper_format_file_open_existing(file, ANIMATION_MANIFEST_FILE)) break;
|
|
if(!flipper_format_read_header(file, read_string, &u32value)) break;
|
|
if(string_cmp_str(read_string, "Flipper Animation Manifest")) break;
|
|
do {
|
|
storage_animation = malloc(sizeof(StorageAnimation));
|
|
storage_animation->external = true;
|
|
storage_animation->animation = NULL;
|
|
storage_animation->manifest_info.name = NULL;
|
|
|
|
if(!flipper_format_read_string(file, "Name", read_string)) break;
|
|
storage_animation->manifest_info.name = malloc(string_size(read_string) + 1);
|
|
strcpy((char*)storage_animation->manifest_info.name, string_get_cstr(read_string));
|
|
|
|
if(!flipper_format_read_uint32(file, "Min butthurt", &u32value, 1)) break;
|
|
storage_animation->manifest_info.min_butthurt = u32value;
|
|
if(!flipper_format_read_uint32(file, "Max butthurt", &u32value, 1)) break;
|
|
storage_animation->manifest_info.max_butthurt = u32value;
|
|
if(!flipper_format_read_uint32(file, "Min level", &u32value, 1)) break;
|
|
storage_animation->manifest_info.min_level = u32value;
|
|
if(!flipper_format_read_uint32(file, "Max level", &u32value, 1)) break;
|
|
storage_animation->manifest_info.max_level = u32value;
|
|
if(!flipper_format_read_uint32(file, "Weight", &u32value, 1)) break;
|
|
storage_animation->manifest_info.weight = u32value;
|
|
|
|
StorageAnimationList_push_back(*animation_list, storage_animation);
|
|
} while(1);
|
|
|
|
animation_storage_free_storage_animation(&storage_animation);
|
|
} while(0);
|
|
|
|
string_clear(read_string);
|
|
flipper_format_free(file);
|
|
|
|
// add hard-coded animations
|
|
for(size_t i = 0; i < dolphin_internal_size; ++i) {
|
|
StorageAnimationList_push_back(*animation_list, (StorageAnimation*)&dolphin_internal[i]);
|
|
}
|
|
|
|
furi_record_close("storage");
|
|
}
|
|
|
|
StorageAnimation* animation_storage_find_animation(const char* name) {
|
|
furi_assert(name);
|
|
furi_assert(strlen(name));
|
|
StorageAnimation* storage_animation = NULL;
|
|
|
|
for(size_t i = 0; i < dolphin_blocking_size; ++i) {
|
|
if(!strcmp(dolphin_blocking[i].manifest_info.name, name)) {
|
|
storage_animation = (StorageAnimation*)&dolphin_blocking[i];
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(!storage_animation) {
|
|
for(size_t i = 0; i < dolphin_internal_size; ++i) {
|
|
if(!strcmp(dolphin_internal[i].manifest_info.name, name)) {
|
|
storage_animation = (StorageAnimation*)&dolphin_internal[i];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* look through external animations */
|
|
if(!storage_animation) {
|
|
storage_animation = malloc(sizeof(StorageAnimation));
|
|
storage_animation->external = true;
|
|
|
|
bool result = false;
|
|
result =
|
|
animation_storage_load_single_manifest_info(&storage_animation->manifest_info, name);
|
|
if(result) {
|
|
storage_animation->animation = animation_storage_load_animation(name);
|
|
result = !!storage_animation->animation;
|
|
}
|
|
if(!result) {
|
|
animation_storage_free_storage_animation(&storage_animation);
|
|
}
|
|
}
|
|
|
|
return storage_animation;
|
|
}
|
|
|
|
StorageAnimationManifestInfo* animation_storage_get_meta(StorageAnimation* storage_animation) {
|
|
furi_assert(storage_animation);
|
|
return &storage_animation->manifest_info;
|
|
}
|
|
|
|
const BubbleAnimation*
|
|
animation_storage_get_bubble_animation(StorageAnimation* storage_animation) {
|
|
furi_assert(storage_animation);
|
|
animation_storage_cache_animation(storage_animation);
|
|
return storage_animation->animation;
|
|
}
|
|
|
|
void animation_storage_cache_animation(StorageAnimation* storage_animation) {
|
|
furi_assert(storage_animation);
|
|
|
|
if(storage_animation->external) {
|
|
if(!storage_animation->animation) {
|
|
storage_animation->animation =
|
|
animation_storage_load_animation(storage_animation->manifest_info.name);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void animation_storage_free_animation(BubbleAnimation** animation) {
|
|
furi_assert(animation);
|
|
|
|
if(*animation) {
|
|
animation_storage_free_bubbles(*animation);
|
|
animation_storage_free_frames(*animation);
|
|
if((*animation)->frame_order) {
|
|
free((void*)(*animation)->frame_order);
|
|
}
|
|
free(*animation);
|
|
*animation = NULL;
|
|
}
|
|
}
|
|
|
|
void animation_storage_free_storage_animation(StorageAnimation** storage_animation) {
|
|
furi_assert(storage_animation);
|
|
furi_assert(*storage_animation);
|
|
|
|
if((*storage_animation)->external) {
|
|
animation_storage_free_animation((BubbleAnimation**)&(*storage_animation)->animation);
|
|
|
|
if((*storage_animation)->manifest_info.name) {
|
|
free((void*)(*storage_animation)->manifest_info.name);
|
|
}
|
|
free(*storage_animation);
|
|
}
|
|
|
|
*storage_animation = NULL;
|
|
}
|
|
|
|
static bool animation_storage_cast_align(string_t align_str, Align* align) {
|
|
if(!string_cmp_str(align_str, "Bottom")) {
|
|
*align = AlignBottom;
|
|
} else if(!string_cmp_str(align_str, "Top")) {
|
|
*align = AlignTop;
|
|
} else if(!string_cmp_str(align_str, "Left")) {
|
|
*align = AlignLeft;
|
|
} else if(!string_cmp_str(align_str, "Right")) {
|
|
*align = AlignRight;
|
|
} else if(!string_cmp_str(align_str, "Center")) {
|
|
*align = AlignCenter;
|
|
} else {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static void animation_storage_free_frames(BubbleAnimation* animation) {
|
|
furi_assert(animation);
|
|
|
|
const Icon* icon = &animation->icon_animation;
|
|
for(int i = 0; i < icon->frame_count; ++i) {
|
|
if(icon->frames[i]) {
|
|
free((void*)icon->frames[i]);
|
|
}
|
|
}
|
|
|
|
free((void*)icon->frames);
|
|
}
|
|
|
|
static bool animation_storage_load_frames(
|
|
Storage* storage,
|
|
const char* name,
|
|
BubbleAnimation* animation,
|
|
uint32_t* frame_order,
|
|
uint8_t width,
|
|
uint8_t height) {
|
|
uint16_t frame_order_count = animation->passive_frames + animation->active_frames;
|
|
|
|
/* The frames should go in order (0...N), without omissions */
|
|
size_t max_frame_count = 0;
|
|
for(int i = 0; i < frame_order_count; ++i) {
|
|
max_frame_count = MAX(max_frame_count, frame_order[i]);
|
|
}
|
|
|
|
if((max_frame_count >= frame_order_count) || (max_frame_count >= 256 /* max uint8_t */)) {
|
|
return false;
|
|
}
|
|
|
|
Icon* icon = (Icon*)&animation->icon_animation;
|
|
FURI_CONST_ASSIGN(icon->frame_count, max_frame_count + 1);
|
|
FURI_CONST_ASSIGN(icon->frame_rate, 0);
|
|
FURI_CONST_ASSIGN(icon->height, height);
|
|
FURI_CONST_ASSIGN(icon->width, width);
|
|
icon->frames = malloc(sizeof(const uint8_t*) * icon->frame_count);
|
|
|
|
bool frames_ok = false;
|
|
File* file = storage_file_alloc(storage);
|
|
FileInfo file_info;
|
|
string_t filename;
|
|
string_init(filename);
|
|
size_t max_filesize = ROUND_UP_TO(width, 8) * height + 1;
|
|
|
|
for(int i = 0; i < icon->frame_count; ++i) {
|
|
frames_ok = false;
|
|
string_printf(filename, ANIMATION_DIR "/%s/frame_%d.bm", name, i);
|
|
|
|
if(storage_common_stat(storage, string_get_cstr(filename), &file_info) != FSE_OK) break;
|
|
if(file_info.size > max_filesize) {
|
|
FURI_LOG_E(
|
|
TAG,
|
|
"Filesize %d, max: %d (width %d, height %d)",
|
|
file_info.size,
|
|
max_filesize,
|
|
width,
|
|
height);
|
|
break;
|
|
}
|
|
if(!storage_file_open(file, string_get_cstr(filename), FSAM_READ, FSOM_OPEN_EXISTING)) {
|
|
FURI_LOG_E(TAG, "Can't open file \'%s\'", string_get_cstr(filename));
|
|
break;
|
|
}
|
|
|
|
FURI_CONST_ASSIGN_PTR(icon->frames[i], malloc(file_info.size));
|
|
if(storage_file_read(file, (void*)icon->frames[i], file_info.size) != file_info.size) {
|
|
FURI_LOG_E(TAG, "Read failed: \'%s\'", string_get_cstr(filename));
|
|
break;
|
|
}
|
|
storage_file_close(file);
|
|
frames_ok = true;
|
|
}
|
|
|
|
if(!frames_ok) {
|
|
FURI_LOG_E(
|
|
TAG,
|
|
"Load \'%s\' failed, %dx%d, size: %d",
|
|
string_get_cstr(filename),
|
|
width,
|
|
height,
|
|
file_info.size);
|
|
animation_storage_free_frames(animation);
|
|
} else {
|
|
furi_check(animation->icon_animation.frames);
|
|
for(int i = 0; i < animation->icon_animation.frame_count; ++i) {
|
|
furi_check(animation->icon_animation.frames[i]);
|
|
}
|
|
}
|
|
|
|
storage_file_free(file);
|
|
string_clear(filename);
|
|
|
|
return frames_ok;
|
|
}
|
|
|
|
static bool animation_storage_load_bubbles(BubbleAnimation* animation, FlipperFormat* ff) {
|
|
uint32_t u32value;
|
|
string_t str;
|
|
string_init(str);
|
|
bool success = false;
|
|
furi_assert(!animation->frame_bubble_sequences);
|
|
|
|
do {
|
|
if(!flipper_format_read_uint32(ff, "Bubble slots", &u32value, 1)) break;
|
|
if(u32value > 20) break;
|
|
animation->frame_bubble_sequences_count = u32value;
|
|
if(animation->frame_bubble_sequences_count == 0) {
|
|
animation->frame_bubble_sequences = NULL;
|
|
success = true;
|
|
break;
|
|
}
|
|
animation->frame_bubble_sequences =
|
|
malloc(sizeof(FrameBubble*) * animation->frame_bubble_sequences_count);
|
|
|
|
int32_t current_slot = 0;
|
|
for(int i = 0; i < animation->frame_bubble_sequences_count; ++i) {
|
|
FURI_CONST_ASSIGN_PTR(
|
|
animation->frame_bubble_sequences[i], malloc(sizeof(FrameBubble)));
|
|
}
|
|
|
|
const FrameBubble* bubble = animation->frame_bubble_sequences[0];
|
|
int8_t index = -1;
|
|
for(;;) {
|
|
if(!flipper_format_read_int32(ff, "Slot", ¤t_slot, 1)) break;
|
|
if((current_slot != 0) && (index == -1)) break;
|
|
|
|
if(current_slot == index) {
|
|
FURI_CONST_ASSIGN_PTR(bubble->next_bubble, malloc(sizeof(FrameBubble)));
|
|
bubble = bubble->next_bubble;
|
|
} else if(current_slot == index + 1) {
|
|
++index;
|
|
bubble = animation->frame_bubble_sequences[index];
|
|
} else {
|
|
/* slots have to start from 0, be ascending sorted, and
|
|
* have exact number of slots as specified in "Bubble slots" */
|
|
break;
|
|
}
|
|
if(index >= animation->frame_bubble_sequences_count) break;
|
|
|
|
if(!flipper_format_read_uint32(ff, "X", &u32value, 1)) break;
|
|
FURI_CONST_ASSIGN(bubble->bubble.x, u32value);
|
|
if(!flipper_format_read_uint32(ff, "Y", &u32value, 1)) break;
|
|
FURI_CONST_ASSIGN(bubble->bubble.y, u32value);
|
|
|
|
if(!flipper_format_read_string(ff, "Text", str)) break;
|
|
if(string_size(str) > 100) break;
|
|
|
|
string_replace_all_str(str, "\\n", "\n");
|
|
|
|
FURI_CONST_ASSIGN_PTR(bubble->bubble.text, malloc(string_size(str) + 1));
|
|
strcpy((char*)bubble->bubble.text, string_get_cstr(str));
|
|
|
|
if(!flipper_format_read_string(ff, "AlignH", str)) break;
|
|
if(!animation_storage_cast_align(str, (Align*)&bubble->bubble.align_h)) break;
|
|
if(!flipper_format_read_string(ff, "AlignV", str)) break;
|
|
if(!animation_storage_cast_align(str, (Align*)&bubble->bubble.align_v)) break;
|
|
|
|
if(!flipper_format_read_uint32(ff, "StartFrame", &u32value, 1)) break;
|
|
FURI_CONST_ASSIGN(bubble->start_frame, u32value);
|
|
if(!flipper_format_read_uint32(ff, "EndFrame", &u32value, 1)) break;
|
|
FURI_CONST_ASSIGN(bubble->end_frame, u32value);
|
|
}
|
|
success = (index + 1) == animation->frame_bubble_sequences_count;
|
|
} while(0);
|
|
|
|
if(!success) {
|
|
if(animation->frame_bubble_sequences) {
|
|
FURI_LOG_E(TAG, "Failed to load animation bubbles");
|
|
animation_storage_free_bubbles(animation);
|
|
}
|
|
}
|
|
|
|
string_clear(str);
|
|
return success;
|
|
}
|
|
|
|
static BubbleAnimation* animation_storage_load_animation(const char* name) {
|
|
furi_assert(name);
|
|
BubbleAnimation* animation = malloc(sizeof(BubbleAnimation));
|
|
|
|
uint32_t height = 0;
|
|
uint32_t width = 0;
|
|
uint32_t* u32array = NULL;
|
|
Storage* storage = furi_record_open("storage");
|
|
FlipperFormat* ff = flipper_format_file_alloc(storage);
|
|
/* Forbid skipping fields */
|
|
flipper_format_set_strict_mode(ff, true);
|
|
string_t str;
|
|
string_init(str);
|
|
animation->frame_bubble_sequences = NULL;
|
|
|
|
bool success = false;
|
|
do {
|
|
uint32_t u32value;
|
|
|
|
if(FSE_OK != storage_sd_status(storage)) break;
|
|
|
|
string_printf(str, ANIMATION_DIR "/%s/" ANIMATION_META_FILE, name);
|
|
if(!flipper_format_file_open_existing(ff, string_get_cstr(str))) break;
|
|
if(!flipper_format_read_header(ff, str, &u32value)) break;
|
|
if(string_cmp_str(str, "Flipper Animation")) break;
|
|
|
|
if(!flipper_format_read_uint32(ff, "Width", &width, 1)) break;
|
|
if(!flipper_format_read_uint32(ff, "Height", &height, 1)) break;
|
|
|
|
if(!flipper_format_read_uint32(ff, "Passive frames", &u32value, 1)) break;
|
|
animation->passive_frames = u32value;
|
|
if(!flipper_format_read_uint32(ff, "Active frames", &u32value, 1)) break;
|
|
animation->active_frames = u32value;
|
|
|
|
uint8_t frames = animation->passive_frames + animation->active_frames;
|
|
uint32_t count = 0;
|
|
if(!flipper_format_get_value_count(ff, "Frames order", &count)) break;
|
|
if(count != frames) {
|
|
FURI_LOG_E(TAG, "Error loading animation: frames order");
|
|
break;
|
|
}
|
|
u32array = malloc(sizeof(uint32_t) * frames);
|
|
if(!flipper_format_read_uint32(ff, "Frames order", u32array, frames)) break;
|
|
animation->frame_order = malloc(sizeof(uint8_t) * frames);
|
|
for(int i = 0; i < frames; ++i) {
|
|
FURI_CONST_ASSIGN(animation->frame_order[i], u32array[i]);
|
|
}
|
|
|
|
/* passive and active frames must be loaded up to this point */
|
|
if(!animation_storage_load_frames(storage, name, animation, u32array, width, height))
|
|
break;
|
|
|
|
if(!flipper_format_read_uint32(ff, "Active cycles", &u32value, 1)) break;
|
|
animation->active_cycles = u32value;
|
|
if(!flipper_format_read_uint32(ff, "Frame rate", &u32value, 1)) break;
|
|
FURI_CONST_ASSIGN(animation->icon_animation.frame_rate, u32value);
|
|
if(!flipper_format_read_uint32(ff, "Duration", &u32value, 1)) break;
|
|
animation->duration = u32value;
|
|
if(!flipper_format_read_uint32(ff, "Active cooldown", &u32value, 1)) break;
|
|
animation->active_cooldown = u32value;
|
|
|
|
if(!animation_storage_load_bubbles(animation, ff)) break;
|
|
success = true;
|
|
} while(0);
|
|
|
|
string_clear(str);
|
|
flipper_format_free(ff);
|
|
if(u32array) {
|
|
free(u32array);
|
|
}
|
|
|
|
if(!success) {
|
|
if(animation->frame_order) {
|
|
free((void*)animation->frame_order);
|
|
}
|
|
free(animation);
|
|
animation = NULL;
|
|
}
|
|
|
|
return animation;
|
|
}
|
|
|
|
static void animation_storage_free_bubbles(BubbleAnimation* animation) {
|
|
if(!animation->frame_bubble_sequences) return;
|
|
|
|
for(int i = 0; i < animation->frame_bubble_sequences_count;) {
|
|
const FrameBubble* const* bubble = &animation->frame_bubble_sequences[i];
|
|
|
|
if((*bubble) == NULL) break;
|
|
|
|
while((*bubble)->next_bubble != NULL) {
|
|
bubble = &(*bubble)->next_bubble;
|
|
}
|
|
|
|
if((*bubble)->bubble.text) {
|
|
free((void*)(*bubble)->bubble.text);
|
|
}
|
|
if((*bubble) == animation->frame_bubble_sequences[i]) {
|
|
++i;
|
|
}
|
|
free((void*)*bubble);
|
|
FURI_CONST_ASSIGN_PTR(*bubble, NULL);
|
|
}
|
|
free((void*)animation->frame_bubble_sequences);
|
|
animation->frame_bubble_sequences = NULL;
|
|
}
|