2019-01-24 16:43:03 +08:00
|
|
|
|
// 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;
|
2017-09-08 05:55:05 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-09-09 02:39:17 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2022-04-07 16:26:31 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-09-08 05:55:05 +08:00
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2020-01-09 12:43:44 +08:00
|
|
|
|
using osu.Framework.Utils;
|
2022-04-07 16:26:31 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2020-10-23 14:33:38 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-09-08 05:55:05 +08:00
|
|
|
|
namespace osu.Game.Storyboards.Drawables
|
|
|
|
|
{
|
2022-04-07 16:26:31 +08:00
|
|
|
|
public class DrawableStoryboardSprite : Sprite, IFlippable, IVectorScalable
|
2017-09-08 05:55:05 +08:00
|
|
|
|
{
|
2020-01-20 12:50:27 +08:00
|
|
|
|
public StoryboardSprite Sprite { get; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-18 16:27:13 +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
|
|
|
|
|
2019-12-18 16:21:38 +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
|
|
|
|
|
2017-09-09 02:39:17 +08:00
|
|
|
|
protected override Vector2 DrawScale
|
2019-12-18 16:21:38 +08:00
|
|
|
|
=> 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
|
|
|
|
|
2022-03-14 11:29:49 +08:00
|
|
|
|
public override Anchor Origin => StoryboardExtensions.AdjustOrigin(base.Origin, VectorScale, FlipH, FlipV);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-09-11 02:08:56 +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 DrawableStoryboardSprite(StoryboardSprite sprite)
|
2017-09-08 05:55:05 +08:00
|
|
|
|
{
|
2017-09-13 17:22:24 +08:00
|
|
|
|
Sprite = sprite;
|
|
|
|
|
Origin = sprite.Origin;
|
|
|
|
|
Position = sprite.InitialPosition;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-09-15 19:35:41 +08:00
|
|
|
|
LifetimeStart = sprite.StartTime;
|
|
|
|
|
LifetimeEnd = sprite.EndTime;
|
2017-09-08 05:55:05 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-04-07 16:26:31 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private ISkinSource skin { get; set; }
|
|
|
|
|
|
2017-09-08 05:55:05 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2020-10-23 14:33:38 +08:00
|
|
|
|
private void load(TextureStore textureStore, Storyboard storyboard)
|
2017-09-08 05:55:05 +08:00
|
|
|
|
{
|
2022-04-07 16:26:31 +08:00
|
|
|
|
Texture = storyboard.GetTextureFromPath(Sprite.Path, textureStore);
|
2020-08-06 10:41:44 +08:00
|
|
|
|
|
2022-04-07 16:26:31 +08:00
|
|
|
|
if (Texture == null && storyboard.UseSkinSprites)
|
|
|
|
|
{
|
|
|
|
|
skin.SourceChanged += skinSourceChanged;
|
|
|
|
|
skinSourceChanged();
|
|
|
|
|
}
|
2020-08-06 10:41:44 +08:00
|
|
|
|
|
2017-09-13 17:22:24 +08:00
|
|
|
|
Sprite.ApplyTransforms(this);
|
2017-09-08 05:55:05 +08:00
|
|
|
|
}
|
2022-04-07 16:26:31 +08:00
|
|
|
|
|
|
|
|
|
private void skinSourceChanged() => Texture = skin.GetTexture(Sprite.Path);
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
2022-04-08 03:37:42 +08:00
|
|
|
|
|
|
|
|
|
if (skin != null)
|
|
|
|
|
skin.SourceChanged -= skinSourceChanged;
|
2022-04-07 16:26:31 +08:00
|
|
|
|
}
|
2017-09-08 05:55:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|