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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

144 lines
4.4 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
2022-06-17 15:37:17 +08:00
#nullable disable
2019-05-14 12:04:49 +08:00
using System;
using System.IO;
2017-09-08 05:55:05 +08:00
using osu.Framework.Allocation;
2017-09-09 02:39:17 +08:00
using osu.Framework.Graphics;
2017-09-08 05:55:05 +08:00
using osu.Framework.Graphics.Animations;
using osu.Framework.Graphics.Textures;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
using osu.Game.Skinning;
using osuTK;
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
namespace osu.Game.Storyboards.Drawables
{
public class DrawableStoryboardAnimation : TextureAnimation, IFlippable, IVectorScalable
2017-09-08 05:55:05 +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-03-04 00:48:00 +08:00
public override bool RemoveWhenNotAlive => false;
2018-04-13 17:19:50 +08:00
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 => StoryboardExtensions.AdjustOrigin(base.Origin, VectorScale, FlipH, FlipV);
2018-04-13 17:19:50 +08:00
public override bool IsPresent
=> !float.IsNaN(DrawPosition.X) && !float.IsNaN(DrawPosition.Y) && base.IsPresent;
2018-04-13 17:19:50 +08:00
2017-09-13 17:22:24 +08:00
public DrawableStoryboardAnimation(StoryboardAnimation animation)
2017-09-08 05:55:05 +08:00
{
2017-09-13 17:22:24 +08:00
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;
2017-09-08 05:55:05 +08:00
}
2018-04-13 17:19:50 +08:00
[Resolved]
private ISkinSource skin { get; set; }
2017-09-08 05:55:05 +08:00
[BackgroundDependencyLoader]
private void load(TextureStore textureStore, Storyboard storyboard)
2017-09-08 05:55:05 +08:00
{
int frameIndex = 0;
Texture frameTexture = storyboard.GetTextureFromPath(getFramePath(frameIndex), textureStore);
if (frameTexture != null)
2017-09-08 05:55:05 +08:00
{
// sourcing from storyboard.
for (frameIndex = 0; frameIndex < Animation.FrameCount; frameIndex++)
{
AddFrame(storyboard.GetTextureFromPath(getFramePath(frameIndex), textureStore), Animation.FrameDelay);
}
}
else if (storyboard.UseSkinSprites)
{
// fallback to skin if required.
skin.SourceChanged += skinSourceChanged;
skinSourceChanged();
2017-09-08 05:55:05 +08:00
}
2019-02-28 12:31:40 +08:00
2017-09-13 17:22:24 +08:00
Animation.ApplyTransforms(this);
2017-09-08 05:55:05 +08:00
}
private void skinSourceChanged()
{
ClearFrames();
// When reading from a skin, we match stables weird behaviour where `FrameCount` is ignored
// and resources are retrieved until the end of the animation.
foreach (var texture in skin.GetTextures(Path.GetFileNameWithoutExtension(Animation.Path), default, default, true, string.Empty, out _))
AddFrame(texture, Animation.FrameDelay);
}
private string getFramePath(int i) => Animation.Path.Replace(".", $"{i}.");
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
if (skin != null)
skin.SourceChanged -= skinSourceChanged;
}
2017-09-08 05:55:05 +08:00
}
}