2019-12-26 21:14:00 +00:00
|
|
|
// TODO
|
|
|
|
// [] - Moving animation blocks
|
|
|
|
// [] - dragging beginning and end of time blocks
|
|
|
|
// [] - creating a timeblock with a specific animation
|
|
|
|
// [x] - play, pause, stop,
|
|
|
|
// [] - setting the start and end of the animation system
|
|
|
|
// [] - displaying multiple layers
|
|
|
|
// [] -
|
|
|
|
|
2019-12-26 20:42:55 +00:00
|
|
|
PANEL_INIT_PROC(AnimationTimeline_Init)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PANEL_CLEANUP_PROC(AnimationTimeline_Cleanup)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
internal animation_block_handle
|
2019-12-27 00:23:43 +00:00
|
|
|
DrawAnimationTimeline (animation_system* AnimationSystem, s32 StartFrame, s32 EndFrame, v2 PanelMin, v2 PanelMax, animation_block_handle SelectedBlockHandle, render_command_buffer* RenderBuffer, app_state* State, mouse_state Mouse)
|
2019-12-26 20:42:55 +00:00
|
|
|
{
|
2019-12-27 00:23:43 +00:00
|
|
|
string TempString = MakeString(PushArray(&State->Transient, char, 256), 256);
|
|
|
|
s32 FrameCount = EndFrame - StartFrame;
|
|
|
|
|
2019-12-26 20:42:55 +00:00
|
|
|
animation_block_handle Result = SelectedBlockHandle;
|
|
|
|
|
2019-12-27 00:23:43 +00:00
|
|
|
r32 AnimationPanelHeight = PanelMax.y - PanelMin.y;
|
|
|
|
r32 AnimationPanelWidth = PanelMax.x - PanelMin.x;
|
|
|
|
PushRenderQuad2D(RenderBuffer, PanelMin, PanelMax, v4{.22f, .22f, .22f, 1.f});
|
2019-12-26 20:42:55 +00:00
|
|
|
|
2019-12-27 00:23:43 +00:00
|
|
|
// Frame Bar
|
|
|
|
r32 FrameBarHeight = 24;
|
|
|
|
v2 FrameBarMin = v2{PanelMin.x, PanelMax.y - FrameBarHeight};
|
|
|
|
v2 FrameBarMax = PanelMax;
|
|
|
|
PushRenderQuad2D(RenderBuffer, FrameBarMin, FrameBarMax, v4{.16f, .16f, .16f, 1.f});
|
2019-12-26 20:42:55 +00:00
|
|
|
|
2019-12-27 00:23:43 +00:00
|
|
|
// Mouse clicked inside frame nubmer bar -> change current frame on timeline
|
|
|
|
if (MouseButtonHeldDown(Mouse.LeftButtonState)
|
|
|
|
&& PointIsInRange(Mouse.DownPos, FrameBarMin, FrameBarMax))
|
|
|
|
{
|
|
|
|
r32 MouseX = Mouse.DownPos.x;
|
|
|
|
r32 MousePercentX = (MouseX - FrameBarMin.x) / (FrameBarMax.x - FrameBarMin.y);
|
|
|
|
s32 MouseFrame = (s32)((MousePercentX * FrameCount) + StartFrame);
|
|
|
|
r32 MouseFrameTime = (r32)MouseFrame * AnimationSystem->SecondsPerFrame;
|
|
|
|
AnimationSystem->Time = MouseFrameTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (s32 f = 0; f < FrameCount; f += 10)
|
|
|
|
{
|
|
|
|
s32 Frame = StartFrame + f;
|
|
|
|
PrintF(&TempString, "%d", Frame);
|
|
|
|
|
|
|
|
r32 FramePercent = (r32)f / (r32)FrameCount;
|
|
|
|
r32 FrameX = GSLerp(PanelMin.x, PanelMax.x, FramePercent);
|
|
|
|
v2 FrameTextPos = v2{FrameX, FrameBarMin.y + 2};
|
|
|
|
DrawString(RenderBuffer, TempString, State->Interface.Font, FrameTextPos, WhiteV4);
|
|
|
|
|
|
|
|
// Frame Vertical Slices
|
|
|
|
v2 LineTop = v2{FrameX, FrameBarMin.y};
|
|
|
|
v2 LineBottom = v2{FrameX + 1, PanelMin.y};
|
|
|
|
PushRenderQuad2D(RenderBuffer, LineTop, LineBottom, v4{.16f, .16f, .16f, 1.f});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Animation Blocks
|
|
|
|
v2 TimelineMin = PanelMin;
|
|
|
|
v2 TimelineMax = v2{PanelMax.x, FrameBarMin.y};
|
|
|
|
b32 MouseDownAndNotHandled = MouseButtonTransitionedDown(Mouse.LeftButtonState);
|
|
|
|
for (u32 i = 0; i < AnimationSystem->BlocksCount; i++)
|
|
|
|
{
|
|
|
|
animation_block_entry AnimationBlockEntry = AnimationSystem->Blocks[i];
|
|
|
|
if (AnimationBlockIsFree(AnimationBlockEntry)) { continue; }
|
2019-12-26 20:42:55 +00:00
|
|
|
|
|
|
|
animation_block_handle CurrentBlockHandle = {};
|
|
|
|
CurrentBlockHandle.Index = i;
|
|
|
|
CurrentBlockHandle.Generation = AnimationBlockEntry.Generation;
|
|
|
|
|
2019-12-27 00:23:43 +00:00
|
|
|
animation_block AnimationBlockAt = AnimationBlockEntry.Block;
|
|
|
|
|
|
|
|
s32 BlockStartFrame = AnimationBlockAt.StartTime / AnimationSystem->SecondsPerFrame;
|
|
|
|
r32 StartFramePercent = (r32)(BlockStartFrame - StartFrame) / (r32)FrameCount;
|
|
|
|
r32 StartPosition = AnimationPanelWidth * StartFramePercent;
|
|
|
|
|
|
|
|
s32 BlockEndFrame = AnimationBlockAt.EndTime / AnimationSystem->SecondsPerFrame;
|
|
|
|
r32 EndFramePercent = (r32)(BlockEndFrame - StartFrame) / (r32)FrameCount;
|
|
|
|
r32 EndPosition = AnimationPanelWidth * EndFramePercent;
|
|
|
|
|
|
|
|
v2 Min = TimelineMin + v2{StartPosition, 25};
|
|
|
|
v2 Max = TimelineMin + v2{EndPosition, 75};
|
2019-12-26 20:42:55 +00:00
|
|
|
|
|
|
|
v4 BlockColor = BlackV4;
|
|
|
|
if (AnimationBlockHandlesAreEqual(SelectedBlockHandle, CurrentBlockHandle))
|
|
|
|
{
|
|
|
|
BlockColor = PinkV4;
|
|
|
|
}
|
|
|
|
|
2019-12-27 00:23:43 +00:00
|
|
|
PushRenderQuad2D(RenderBuffer, Min, Max, BlockColor);
|
2019-12-26 20:42:55 +00:00
|
|
|
PushRenderBoundingBox2D(RenderBuffer, Min, Max, 1, WhiteV4);
|
|
|
|
|
|
|
|
if (PointIsInRange(Mouse.Pos, Min, Max)
|
|
|
|
&& MouseButtonTransitionedDown(Mouse.LeftButtonState))
|
|
|
|
{
|
|
|
|
MouseDownAndNotHandled = false;
|
2019-12-27 00:23:43 +00:00
|
|
|
if (AnimationBlockHandlesAreEqual(SelectedBlockHandle, CurrentBlockHandle))
|
2019-12-26 20:42:55 +00:00
|
|
|
{
|
2019-12-27 00:23:43 +00:00
|
|
|
// If the block is already selected, deselect it.
|
2019-12-26 20:42:55 +00:00
|
|
|
Result = {0};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-12-27 00:23:43 +00:00
|
|
|
Result = CurrentBlockHandle;
|
2019-12-26 20:42:55 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-27 00:23:43 +00:00
|
|
|
}
|
2019-12-26 20:42:55 +00:00
|
|
|
|
2019-12-27 00:23:43 +00:00
|
|
|
// Time Slider
|
|
|
|
s32 SliderFrame = AnimationSystem->Time / AnimationSystem->SecondsPerFrame;
|
|
|
|
r32 TimePercent = (r32)SliderFrame / (r32)EndFrame;
|
2019-12-26 20:42:55 +00:00
|
|
|
r32 SliderX = PanelMin.x + (AnimationPanelWidth * TimePercent);
|
|
|
|
v2 SliderMin = v2{SliderX, PanelMin.y};
|
|
|
|
v2 SliderMax = v2{SliderX + 1, PanelMax.y - 25};
|
2019-12-27 00:23:43 +00:00
|
|
|
v4 TimeSliderColor = v4{.36f, .52f, .78f, 1.f};
|
|
|
|
|
|
|
|
PushRenderQuad2D(RenderBuffer, SliderMin, SliderMax, TimeSliderColor);
|
|
|
|
|
|
|
|
r32 SliderHalfWidth = 10;
|
|
|
|
v2 HeadMin = v2{SliderX - SliderHalfWidth, SliderMax.y};
|
|
|
|
v2 HeadMax = v2{SliderX + SliderHalfWidth, SliderMax.y + FrameBarHeight};
|
|
|
|
PushRenderQuad2D(RenderBuffer, HeadMin, HeadMax, TimeSliderColor);
|
2019-12-26 20:42:55 +00:00
|
|
|
|
2019-12-27 00:23:43 +00:00
|
|
|
PrintF(&TempString, "%d", SliderFrame);
|
|
|
|
DrawString(RenderBuffer, TempString, State->Interface.Font, HeadMin + v2{4, 4}, WhiteV4);
|
|
|
|
|
|
|
|
if (MouseDownAndNotHandled && PointIsInRange(Mouse.Pos, TimelineMin, TimelineMax))
|
2019-12-26 20:42:55 +00:00
|
|
|
{
|
|
|
|
r32 MouseDownPositionPercent = (Mouse.Pos.x - PanelMin.x) / AnimationPanelWidth;
|
|
|
|
r32 NewBlockTimeStart = MouseDownPositionPercent * AnimationSystem->AnimationEnd;
|
|
|
|
#define NEW_BLOCK_DURATION 1
|
|
|
|
r32 NewBlockTimeEnd = NewBlockTimeStart + NEW_BLOCK_DURATION;
|
|
|
|
|
|
|
|
animation_block Block = {0};
|
|
|
|
Block.StartTime = NewBlockTimeStart;
|
|
|
|
Block.EndTime = NewBlockTimeEnd;
|
|
|
|
Block.Proc = TestPatternThree;
|
|
|
|
|
|
|
|
animation_block_handle NewBlockHandle = AddAnimationBlock(Block, AnimationSystem);
|
|
|
|
Result = NewBlockHandle;
|
|
|
|
}
|
|
|
|
return Result;
|
2019-12-27 00:23:43 +00:00
|
|
|
}
|
2019-12-26 20:42:55 +00:00
|
|
|
|
|
|
|
PANEL_RENDER_PROC(AnimationTimeline_Render)
|
|
|
|
{
|
|
|
|
animation_block_handle SelectedBlockHandle = State->SelectedAnimationBlockHandle;
|
|
|
|
|
2019-12-27 00:23:43 +00:00
|
|
|
r32 OptionsRowHeight = 25;
|
2019-12-26 20:42:55 +00:00
|
|
|
v2 TimelineMin = PanelMin;
|
|
|
|
v2 TimelineMax = v2{PanelMax.x, PanelMax.y - OptionsRowHeight};
|
|
|
|
if (TimelineMax.y - TimelineMin.y > 0)
|
|
|
|
{
|
2019-12-27 00:23:43 +00:00
|
|
|
s32 FrameEnd = (s32)(State->AnimationSystem.AnimationEnd / State->AnimationSystem.SecondsPerFrame);
|
2019-12-26 20:42:55 +00:00
|
|
|
SelectedBlockHandle = DrawAnimationTimeline(&State->AnimationSystem,
|
2019-12-27 00:23:43 +00:00
|
|
|
0, FrameEnd,
|
|
|
|
TimelineMin, TimelineMax,
|
|
|
|
SelectedBlockHandle,
|
|
|
|
RenderBuffer, State, Mouse);
|
2019-12-26 20:42:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
v2 OptionsRowMin = v2{ PanelMin.x, TimelineMax.y };
|
|
|
|
v2 OptionsRowMax = PanelMax;
|
|
|
|
panel_result AnimationPanel = EvaluatePanel(RenderBuffer, OptionsRowMin, OptionsRowMax,
|
|
|
|
0, State->Interface);
|
|
|
|
|
|
|
|
r32 ButtonWidth = 35;
|
|
|
|
v2 ButtonMin = v2{0, 0};
|
|
|
|
v2 ButtonMax = v2{35, OptionsRowHeight - 2};
|
|
|
|
v2 ButtonAt = v2{OptionsRowMin.x + 1, OptionsRowMin.y + 1};
|
|
|
|
|
|
|
|
button_result PauseResult = EvaluateButton(RenderBuffer,
|
|
|
|
ButtonAt + ButtonMin, ButtonAt + ButtonMax,
|
|
|
|
MakeStringLiteral("Pause"),
|
|
|
|
State->Interface, Mouse);
|
|
|
|
ButtonAt.x += ButtonWidth + 2;
|
2019-12-27 00:23:43 +00:00
|
|
|
button_result PlayResult = EvaluateButton(RenderBuffer,
|
|
|
|
ButtonAt + ButtonMin, ButtonAt + ButtonMax,
|
|
|
|
MakeStringLiteral("Play"),
|
2019-12-26 20:42:55 +00:00
|
|
|
State->Interface, Mouse);
|
|
|
|
ButtonAt.x += ButtonWidth + 2;
|
2019-12-27 00:23:43 +00:00
|
|
|
button_result StopResult = EvaluateButton(RenderBuffer,
|
|
|
|
ButtonAt + ButtonMin, ButtonAt + ButtonMax,
|
|
|
|
MakeStringLiteral("Stop"),
|
2019-12-26 20:42:55 +00:00
|
|
|
State->Interface, Mouse);
|
|
|
|
|
|
|
|
if (PauseResult.Pressed)
|
|
|
|
{
|
|
|
|
State->AnimationSystem.TimelineShouldAdvance = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PlayResult.Pressed)
|
|
|
|
{
|
|
|
|
State->AnimationSystem.TimelineShouldAdvance = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (StopResult.Pressed)
|
|
|
|
{
|
|
|
|
State->AnimationSystem.TimelineShouldAdvance = false;
|
|
|
|
State->AnimationSystem.Time = 0;
|
|
|
|
}
|
2019-12-27 00:23:43 +00:00
|
|
|
|
|
|
|
State->SelectedAnimationBlockHandle = SelectedBlockHandle;
|
2019-12-26 20:42:55 +00:00
|
|
|
}
|