a39002ce22
* Dolphin Animation Refactoring, part 1 * Remove animations from desktop * Remove excess, first start * Split animation_manager with callbacks * allocate view inside animation_view * Work on ViewComposed * Draw white rectangles under bubble corners * Fix bubbles sequence * RPC: remove obsolete include "status.pb.h" * Add animations manifest decoding * Flipper file: add strict mode * FFF: Animation structures parsing * Assembling structure of animation * Lot of view fixes: Add multi-line bubbles Add support for passive bubbles (frame_order values starts from passive now) Add hard-coded delay (active_shift) for active state enabling Fix active state handling Fix leaks Fix parsing uncorrect bubble_animation meta file Fix bubble rules of showing * Animation load/unload & view freeze/unfreeze * Blocking & system animations, fixes: View correct activation Refactoring + blocking animation Freeze first passive/active frames Many insert/eject SD tests fixes Add system animations Add Loader events app started/finished Add system no_sd animation * Assets: dolphin packer. Scripts: minor refactoring. * Desktop: update logging tags. Scripts: add metadata to dolphin bundling process, extra sorting for fs traversing. Make: phony assets rules. * Github: rebuild assets on build * Docker: add missing dependencies for assets compilation * Docker: fix run command syntax * ReadMe: update naming rules with link to source * Assets: recompile icons * Loader: add loader event * Desktop, Gui, Furi Core: const shenanigans macros Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
90 lines
2.3 KiB
C
90 lines
2.3 KiB
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
#include "../animation_manager.h"
|
|
|
|
/** Bubble Animation instance */
|
|
typedef struct BubbleAnimationView BubbleAnimationView;
|
|
|
|
/** Callback type to be called when interact button pressed */
|
|
typedef void (*BubbleAnimationInteractCallback)(void*);
|
|
|
|
/**
|
|
* Allocate bubble animation view.
|
|
* This is animation with bubbles, and 2 phases:
|
|
* active and passive.
|
|
*
|
|
* @return instance of new bubble animation
|
|
*/
|
|
BubbleAnimationView* bubble_animation_view_alloc(void);
|
|
|
|
/**
|
|
* Free bubble animation view.
|
|
*
|
|
* @view bubble animation view instance
|
|
*/
|
|
void bubble_animation_view_free(BubbleAnimationView* view);
|
|
|
|
/**
|
|
* Set callback for interact action for animation.
|
|
* Currently this is right button.
|
|
*
|
|
* @view bubble animation view instance
|
|
* @callback callback to call when button pressed
|
|
* @context context
|
|
*/
|
|
void bubble_animation_view_set_interact_callback(
|
|
BubbleAnimationView* view,
|
|
BubbleAnimationInteractCallback callback,
|
|
void* context);
|
|
|
|
/**
|
|
* Set new animation.
|
|
* BubbleAnimation doesn't posses Bubble Animation object
|
|
* so it doesn't handle any memory manipulation on Bubble Animations.
|
|
*
|
|
* @view bubble animation view instance
|
|
* @new_bubble_animation new animation to set
|
|
*/
|
|
void bubble_animation_view_set_animation(
|
|
BubbleAnimationView* view,
|
|
const BubbleAnimation* new_bubble_animation);
|
|
|
|
/**
|
|
* Get view of bubble animation.
|
|
*
|
|
* @view bubble animation view instance
|
|
* @return view
|
|
*/
|
|
View* bubble_animation_get_view(BubbleAnimationView* view);
|
|
|
|
/**
|
|
* Freeze current playing animation. Saves a frame to be shown
|
|
* during next unfreeze called.
|
|
* bubble_animation_freeze() stops any reference to 'current' animation
|
|
* so it can be freed. Therefore lock unfreeze should be preceeded with
|
|
* new animation set.
|
|
*
|
|
* Freeze/Unfreeze usage example:
|
|
*
|
|
* animation_view_alloc()
|
|
* set_animation()
|
|
* ...
|
|
* freeze_animation()
|
|
* // release animation
|
|
* ...
|
|
* // allocate animation
|
|
* set_animation()
|
|
* unfreeze()
|
|
*
|
|
* @view bubble animation view instance
|
|
*/
|
|
void bubble_animation_freeze(BubbleAnimationView* view);
|
|
|
|
/**
|
|
* Starts bubble animation after freezing.
|
|
*
|
|
* @view bubble animation view instance
|
|
*/
|
|
void bubble_animation_unfreeze(BubbleAnimationView* view);
|