2020-01-02 02:41:43 +00:00
|
|
|
//
|
|
|
|
// File: foldhaus_animation.h
|
|
|
|
// Author: Peter Slattery
|
|
|
|
// Creation Date: 2020-01-01
|
|
|
|
//
|
|
|
|
#ifndef FOLDHAUS_ANIMATION
|
|
|
|
|
2019-12-27 02:40:14 +00:00
|
|
|
#define ANIMATION_PROC(name) void name(assembly* Assembly, r32 Time)
|
2019-12-26 16:11:48 +00:00
|
|
|
typedef ANIMATION_PROC(animation_proc);
|
|
|
|
|
2019-11-29 05:12:57 +00:00
|
|
|
struct animation_block
|
|
|
|
{
|
2020-03-01 01:11:15 +00:00
|
|
|
u32 StartFrame;
|
|
|
|
u32 EndFrame;
|
2020-02-05 06:50:12 +00:00
|
|
|
u32 AnimationProcHandle;
|
2019-12-26 16:11:48 +00:00
|
|
|
u32 Layer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define ANIMATION_SYSTEM_LAYERS_MAX 128
|
|
|
|
#define ANIMATION_SYSTEM_BLOCKS_MAX 128
|
|
|
|
struct animation_system
|
|
|
|
{
|
2019-12-31 04:26:28 +00:00
|
|
|
gs_list<animation_block> Blocks;
|
2019-12-26 16:11:48 +00:00
|
|
|
|
2020-03-01 01:11:15 +00:00
|
|
|
// NOTE(Peter): The frame currently being displayed/processed. you
|
|
|
|
// can see which frame you're on by looking at the time slider on the timeline
|
|
|
|
// panel
|
|
|
|
u32 CurrentFrame;
|
|
|
|
u32 LastUpdatedFrame;
|
2019-12-27 00:23:43 +00:00
|
|
|
r32 SecondsPerFrame;
|
2019-12-28 19:31:21 +00:00
|
|
|
|
|
|
|
b32 TimelineShouldAdvance;
|
|
|
|
|
2020-03-01 01:11:15 +00:00
|
|
|
// Timeline
|
|
|
|
r32 StartFrame;
|
|
|
|
r32 EndFrame;
|
2019-11-29 05:12:57 +00:00
|
|
|
};
|
2020-01-02 02:41:43 +00:00
|
|
|
|
2020-03-01 01:11:15 +00:00
|
|
|
internal u32
|
|
|
|
SecondsToFrames(r32 Seconds, animation_system System)
|
|
|
|
{
|
|
|
|
u32 Result = Seconds * (1.0f / System.SecondsPerFrame);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2020-01-02 02:41:43 +00:00
|
|
|
#define FOLDHAUS_ANIMATION
|
|
|
|
#endif // FOLDHAUS_ANIMATION
|