 4bf29827f8
			
		
	
	
		4bf29827f8
		
			
		
	
	
	
	
		
			
			* Quicksave 1 * Header stage complete * Source stage complete * Lint & merge fixes * Includes * Documentation step 1 * FBT: output free size considering BT STACK * Documentation step 2 * py lint * Fix music player plugin * unit test stage 1: string allocator, mem, getters, setters, appends, compare, search. * unit test: string equality * unit test: string replace * unit test: string start_with, end_with * unit test: string trim * unit test: utf-8 * Rename * Revert fw_size changes * Simplify CLI backspace handling * Simplify CLI character insert * Merge fixes * Furi: correct filenaming and spelling * Bt: remove furi string include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			89 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| #include <stdint.h>
 | |
| #include <m-list.h>
 | |
| #include "views/bubble_animation_view.h"
 | |
| 
 | |
| /** Main structure to handle animation data.
 | |
|  * Contains all, including animation playing data (BubbleAnimation),
 | |
|  * data for random animation selection (StorageAnimationMeta) and
 | |
|  * flag of location internal/external */
 | |
| typedef struct StorageAnimation StorageAnimation;
 | |
| 
 | |
| typedef struct {
 | |
|     const char* name;
 | |
|     uint8_t min_butthurt;
 | |
|     uint8_t max_butthurt;
 | |
|     uint8_t min_level;
 | |
|     uint8_t max_level;
 | |
|     uint8_t weight;
 | |
| } StorageAnimationManifestInfo;
 | |
| 
 | |
| /** Container to return available animations list */
 | |
| LIST_DEF(StorageAnimationList, StorageAnimation*, M_PTR_OPLIST)
 | |
| #define M_OPL_StorageAnimationList_t() LIST_OPLIST(StorageAnimationList)
 | |
| 
 | |
| /**
 | |
|  * Fill list of available animations.
 | |
|  * List will contain all idle animations on inner flash
 | |
|  * and all available on SD-card, mentioned in manifest.txt.
 | |
|  * Performs caching of animation. If fail - falls back to
 | |
|  * inner animation.
 | |
|  * List has to be initialized.
 | |
|  *
 | |
|  * @list        list to fill with animations data
 | |
|  */
 | |
| void animation_storage_fill_animation_list(StorageAnimationList_t* list);
 | |
| 
 | |
| /**
 | |
|  * Get bubble animation of storage animation.
 | |
|  * Bubble Animation is a structure which describes animation
 | |
|  * independent of it's place of storage and meta data.
 | |
|  * It contain all what is need to be played.
 | |
|  * If storage_animation is not cached - caches it.
 | |
|  *
 | |
|  * @storage_animation       animation from which extract bubble animation
 | |
|  * @return                  bubble_animation, NULL if failed to cache data.
 | |
|  */
 | |
| const BubbleAnimation* animation_storage_get_bubble_animation(StorageAnimation* storage_animation);
 | |
| 
 | |
| /**
 | |
|  * Performs caching animation data (Bubble Animation)
 | |
|  * if this is not done yet.
 | |
|  *
 | |
|  * @storage_animation       animation to cache
 | |
|  */
 | |
| void animation_storage_cache_animation(StorageAnimation* storage_animation);
 | |
| 
 | |
| /**
 | |
|  * Find animation by name.
 | |
|  * Search through the inner flash, and SD-card if has.
 | |
|  *
 | |
|  * @name        name of animation
 | |
|  * @return      found animation. NULL if nothing found.
 | |
|  */
 | |
| StorageAnimation* animation_storage_find_animation(const char* name);
 | |
| 
 | |
| /**
 | |
|  * Get meta information of storage animation.
 | |
|  * This information allows to randomly select animation.
 | |
|  * Also it contains name. Never returns NULL.
 | |
|  *
 | |
|  * @storage_animation       item of whom we have to extract meta.
 | |
|  * @return                  meta itself
 | |
|  */
 | |
| StorageAnimationManifestInfo* animation_storage_get_meta(StorageAnimation* storage_animation);
 | |
| 
 | |
| /**
 | |
|  * Free storage_animation, which previously acquired
 | |
|  * by Animation Storage.
 | |
|  *
 | |
|  * @storage_animation   item to free. NULL-ed after all.
 | |
|  */
 | |
| void animation_storage_free_storage_animation(StorageAnimation** storage_animation);
 | |
| 
 | |
| /**
 | |
|  * Has to be called at least 1 time to initialize runtime structures
 | |
|  * of animations in inner flash.
 | |
|  */
 | |
| void animation_storage_initialize_internal_animations(void);
 |