2017-09-08 05:55:05 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK;
|
|
|
|
|
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.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Storyboards.Drawables
|
|
|
|
|
{
|
2017-09-13 17:22:24 +08:00
|
|
|
|
public class DrawableStoryboardSprite : Sprite, IFlippable
|
2017-09-08 05:55:05 +08:00
|
|
|
|
{
|
2017-09-13 17:22:24 +08:00
|
|
|
|
public StoryboardSprite Sprite { get; private set; }
|
2017-09-08 05:55:05 +08:00
|
|
|
|
|
|
|
|
|
public bool FlipH { get; set; }
|
|
|
|
|
public bool FlipV { get; set; }
|
2017-09-09 02:39:17 +08:00
|
|
|
|
|
|
|
|
|
protected override Vector2 DrawScale
|
|
|
|
|
=> new Vector2(FlipH ? -base.DrawScale.X : base.DrawScale.X, FlipV ? -base.DrawScale.Y : base.DrawScale.Y);
|
|
|
|
|
|
|
|
|
|
public override Anchor Origin
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var origin = base.Origin;
|
|
|
|
|
|
|
|
|
|
if (FlipH)
|
|
|
|
|
{
|
|
|
|
|
if (origin.HasFlag(Anchor.x0))
|
|
|
|
|
origin = Anchor.x2 | (origin & (Anchor.y0 | Anchor.y1 | Anchor.y2));
|
|
|
|
|
else if (origin.HasFlag(Anchor.x2))
|
|
|
|
|
origin = Anchor.x0 | (origin & (Anchor.y0 | Anchor.y1 | Anchor.y2));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (FlipV)
|
|
|
|
|
{
|
|
|
|
|
if (origin.HasFlag(Anchor.y0))
|
|
|
|
|
origin = Anchor.y2 | (origin & (Anchor.x0 | Anchor.x1 | Anchor.x2));
|
|
|
|
|
else if (origin.HasFlag(Anchor.y2))
|
|
|
|
|
origin = Anchor.y0 | (origin & (Anchor.x0 | Anchor.x1 | Anchor.x2));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return origin;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-09-08 05:55:05 +08:00
|
|
|
|
|
2017-09-11 02:08:56 +08:00
|
|
|
|
public override bool IsPresent
|
|
|
|
|
=> !float.IsNaN(DrawPosition.X) && !float.IsNaN(DrawPosition.Y) && base.IsPresent;
|
|
|
|
|
|
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;
|
2017-09-08 05:55:05 +08:00
|
|
|
|
|
2017-09-15 19:35:41 +08:00
|
|
|
|
LifetimeStart = sprite.StartTime;
|
|
|
|
|
LifetimeEnd = sprite.EndTime;
|
2017-09-08 05:55:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuGameBase game, TextureStore textureStore)
|
|
|
|
|
{
|
2017-09-13 17:22:24 +08:00
|
|
|
|
var spritePath = Sprite.Path.ToLowerInvariant();
|
2017-09-11 04:02:55 +08:00
|
|
|
|
var path = game.Beatmap.Value.BeatmapSetInfo.Files.FirstOrDefault(f => f.Filename.ToLowerInvariant() == spritePath)?.FileInfo.StoragePath;
|
2017-09-08 05:55:05 +08:00
|
|
|
|
if (path == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Texture = textureStore.Get(path);
|
2017-09-13 17:22:24 +08:00
|
|
|
|
Sprite.ApplyTransforms(this);
|
2017-09-08 05:55:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|