1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game/Storyboards/Drawables/DrawableStoryboardAnimation.cs

130 lines
4.0 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2019-05-14 12:04:49 +08:00
using System;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
2021-02-25 14:38:56 +08:00
using osu.Framework.Extensions.EnumExtensions;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Animations;
using osu.Framework.Graphics.Textures;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Storyboards.Drawables
{
public class DrawableStoryboardAnimation : DrawableAnimation, IFlippable, IVectorScalable
2018-04-13 17:19:50 +08:00
{
public StoryboardAnimation Animation { get; }
2018-04-13 17:19:50 +08:00
private bool flipH;
public bool FlipH
{
get => flipH;
set
{
if (flipH == value)
return;
flipH = value;
Invalidate(Invalidation.MiscGeometry);
}
}
private bool flipV;
public bool FlipV
{
get => flipV;
set
{
if (flipV == value)
return;
flipV = value;
Invalidate(Invalidation.MiscGeometry);
}
}
2018-04-13 17:19:50 +08:00
private Vector2 vectorScale = Vector2.One;
public Vector2 VectorScale
{
get => vectorScale;
set
{
if (Math.Abs(value.X) < Precision.FLOAT_EPSILON)
value.X = Precision.FLOAT_EPSILON;
if (Math.Abs(value.Y) < Precision.FLOAT_EPSILON)
value.Y = Precision.FLOAT_EPSILON;
if (vectorScale == value)
return;
if (!Validation.IsFinite(value)) throw new ArgumentException($@"{nameof(VectorScale)} must be finite, but is {value}.");
vectorScale = value;
Invalidate(Invalidation.MiscGeometry);
}
}
2018-04-13 17:19:50 +08:00
public override bool RemoveWhenNotAlive => false;
protected override Vector2 DrawScale
=> new Vector2(FlipH ? -base.DrawScale.X : base.DrawScale.X, FlipV ? -base.DrawScale.Y : base.DrawScale.Y) * VectorScale;
2018-04-13 17:19:50 +08:00
public override Anchor Origin
{
get
{
var origin = base.Origin;
if (FlipH)
{
2021-02-25 14:38:56 +08:00
if (origin.HasFlagFast(Anchor.x0))
2018-04-13 17:19:50 +08:00
origin = Anchor.x2 | (origin & (Anchor.y0 | Anchor.y1 | Anchor.y2));
2021-02-25 14:38:56 +08:00
else if (origin.HasFlagFast(Anchor.x2))
2018-04-13 17:19:50 +08:00
origin = Anchor.x0 | (origin & (Anchor.y0 | Anchor.y1 | Anchor.y2));
}
if (FlipV)
{
2021-02-25 14:38:56 +08:00
if (origin.HasFlagFast(Anchor.y0))
2018-04-13 17:19:50 +08:00
origin = Anchor.y2 | (origin & (Anchor.x0 | Anchor.x1 | Anchor.x2));
2021-02-25 14:38:56 +08:00
else if (origin.HasFlagFast(Anchor.y2))
2018-04-13 17:19:50 +08:00
origin = Anchor.y0 | (origin & (Anchor.x0 | Anchor.x1 | Anchor.x2));
}
return origin;
}
}
public override bool IsPresent
=> !float.IsNaN(DrawPosition.X) && !float.IsNaN(DrawPosition.Y) && base.IsPresent;
public DrawableStoryboardAnimation(StoryboardAnimation animation)
{
Animation = animation;
Origin = animation.Origin;
Position = animation.InitialPosition;
Loop = animation.LoopType == AnimationLoopType.LoopForever;
2018-04-13 17:19:50 +08:00
LifetimeStart = animation.StartTime;
LifetimeEnd = animation.EndTime;
}
[BackgroundDependencyLoader]
private void load(TextureStore textureStore, Storyboard storyboard)
2018-04-13 17:19:50 +08:00
{
2020-11-10 19:20:26 +08:00
for (int frameIndex = 0; frameIndex < Animation.FrameCount; frameIndex++)
2018-04-13 17:19:50 +08:00
{
2020-11-10 19:20:26 +08:00
string framePath = Animation.Path.Replace(".", frameIndex + ".");
2020-11-10 19:20:49 +08:00
Drawable frame = storyboard.CreateSpriteFromResourcePath(framePath, textureStore) ?? Empty();
2020-11-10 19:20:26 +08:00
AddFrame(frame, Animation.FrameDelay);
2018-04-13 17:19:50 +08:00
}
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
Animation.ApplyTransforms(this);
}
}
}