2020-10-21 04:42:47 +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.
|
|
|
|
|
2022-03-14 08:46:05 +08:00
|
|
|
using System.Collections.Generic;
|
2023-09-19 18:44:41 +08:00
|
|
|
using System.IO;
|
2020-10-21 04:42:47 +08:00
|
|
|
using System.Linq;
|
2023-09-19 18:44:41 +08:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2020-10-21 04:42:47 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
2022-03-14 08:35:23 +08:00
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
2020-10-21 04:42:47 +08:00
|
|
|
using osu.Framework.Graphics;
|
2022-04-07 16:51:10 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2023-09-19 18:44:41 +08:00
|
|
|
using osu.Framework.IO.Stores;
|
2020-10-21 04:42:47 +08:00
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Rulesets;
|
2023-09-19 18:44:41 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2020-10-21 04:42:47 +08:00
|
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
using osu.Game.Storyboards;
|
|
|
|
using osu.Game.Storyboards.Drawables;
|
2023-09-19 18:44:41 +08:00
|
|
|
using osu.Game.Tests.Resources;
|
2020-10-21 04:42:47 +08:00
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
|
|
|
{
|
|
|
|
public partial class TestSceneDrawableStoryboardSprite : SkinnableTestScene
|
|
|
|
{
|
|
|
|
protected override Ruleset CreateRulesetForSkinProvider() => new OsuRuleset();
|
|
|
|
|
2023-09-19 18:44:41 +08:00
|
|
|
[Cached(typeof(Storyboard))]
|
|
|
|
private TestStoryboard storyboard { get; set; } = new TestStoryboard();
|
2020-10-21 04:42:47 +08:00
|
|
|
|
2022-03-14 08:46:05 +08:00
|
|
|
private IEnumerable<DrawableStoryboardSprite> sprites => this.ChildrenOfType<DrawableStoryboardSprite>();
|
|
|
|
|
2023-09-19 18:44:41 +08:00
|
|
|
private const string lookup_name = "hitcircleoverlay";
|
|
|
|
|
2020-10-21 04:42:47 +08:00
|
|
|
[Test]
|
|
|
|
public void TestSkinSpriteDisallowedByDefault()
|
|
|
|
{
|
2023-09-19 18:44:41 +08:00
|
|
|
AddStep("disallow all lookups", () =>
|
|
|
|
{
|
|
|
|
storyboard.UseSkinSprites = false;
|
|
|
|
storyboard.AlwaysProvideTexture = false;
|
|
|
|
});
|
2020-10-21 04:42:47 +08:00
|
|
|
|
2021-06-02 15:04:53 +08:00
|
|
|
AddStep("create sprites", () => SetContents(_ => createSprite(lookup_name, Anchor.TopLeft, Vector2.Zero)));
|
2020-10-21 04:42:47 +08:00
|
|
|
|
2022-04-07 16:51:10 +08:00
|
|
|
AddAssert("sprite didn't find texture", () =>
|
|
|
|
sprites.All(sprite => sprite.ChildrenOfType<Sprite>().All(s => s.Texture == null)));
|
2020-10-21 04:42:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
2023-09-19 18:44:41 +08:00
|
|
|
public void TestLookupFromStoryboard()
|
|
|
|
{
|
|
|
|
AddStep("allow storyboard lookup", () =>
|
|
|
|
{
|
|
|
|
storyboard.UseSkinSprites = false;
|
|
|
|
storyboard.AlwaysProvideTexture = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("create sprites", () => SetContents(_ => createSprite(lookup_name, Anchor.TopLeft, Vector2.Zero)));
|
|
|
|
|
|
|
|
// Only checking for at least one sprite that succeeded, as not all skins in this test provide the hitcircleoverlay texture.
|
|
|
|
AddAssert("sprite found texture", () =>
|
|
|
|
sprites.Any(sprite => sprite.ChildrenOfType<Sprite>().All(s => s.Texture != null)));
|
|
|
|
|
|
|
|
assertStoryboardSourced();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestSkinLookupPreferredOverStoryboard()
|
2020-10-21 04:42:47 +08:00
|
|
|
{
|
2023-09-19 18:44:41 +08:00
|
|
|
AddStep("allow all lookups", () =>
|
|
|
|
{
|
|
|
|
storyboard.UseSkinSprites = true;
|
|
|
|
storyboard.AlwaysProvideTexture = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("create sprites", () => SetContents(_ => createSprite(lookup_name, Anchor.TopLeft, Vector2.Zero)));
|
|
|
|
|
|
|
|
// Only checking for at least one sprite that succeeded, as not all skins in this test provide the hitcircleoverlay texture.
|
|
|
|
AddAssert("sprite found texture", () =>
|
|
|
|
sprites.Any(sprite => sprite.ChildrenOfType<Sprite>().All(s => s.Texture != null)));
|
|
|
|
|
|
|
|
assertSkinSourced();
|
|
|
|
}
|
2020-10-21 04:42:47 +08:00
|
|
|
|
2023-09-19 18:44:41 +08:00
|
|
|
[Test]
|
|
|
|
public void TestAllowLookupFromSkin()
|
|
|
|
{
|
|
|
|
AddStep("allow skin lookup", () =>
|
|
|
|
{
|
|
|
|
storyboard.UseSkinSprites = true;
|
|
|
|
storyboard.AlwaysProvideTexture = false;
|
|
|
|
});
|
2020-10-21 04:42:47 +08:00
|
|
|
|
2022-03-14 08:46:05 +08:00
|
|
|
AddStep("create sprites", () => SetContents(_ => createSprite(lookup_name, Anchor.TopLeft, Vector2.Zero)));
|
2020-10-21 04:42:47 +08:00
|
|
|
|
2022-04-07 16:51:10 +08:00
|
|
|
// Only checking for at least one sprite that succeeded, as not all skins in this test provide the hitcircleoverlay texture.
|
|
|
|
AddAssert("sprite found texture", () =>
|
|
|
|
sprites.Any(sprite => sprite.ChildrenOfType<Sprite>().All(s => s.Texture != null)));
|
2022-03-14 08:46:05 +08:00
|
|
|
|
2023-09-19 18:44:41 +08:00
|
|
|
assertSkinSourced();
|
2020-10-21 04:42:47 +08:00
|
|
|
}
|
|
|
|
|
2022-03-14 08:35:23 +08:00
|
|
|
[Test]
|
|
|
|
public void TestFlippedSprite()
|
|
|
|
{
|
2023-09-19 18:44:41 +08:00
|
|
|
AddStep("allow all lookups", () =>
|
|
|
|
{
|
|
|
|
storyboard.UseSkinSprites = true;
|
|
|
|
storyboard.AlwaysProvideTexture = true;
|
|
|
|
});
|
2022-03-14 08:35:23 +08:00
|
|
|
|
|
|
|
AddStep("create sprites", () => SetContents(_ => createSprite(lookup_name, Anchor.TopLeft, Vector2.Zero)));
|
|
|
|
AddStep("flip sprites", () => sprites.ForEach(s =>
|
|
|
|
{
|
|
|
|
s.FlipH = true;
|
|
|
|
s.FlipV = true;
|
|
|
|
}));
|
|
|
|
AddAssert("origin flipped", () => sprites.All(s => s.Origin == Anchor.BottomRight));
|
|
|
|
}
|
|
|
|
|
2022-09-07 14:37:22 +08:00
|
|
|
[Test]
|
|
|
|
public void TestZeroScale()
|
|
|
|
{
|
2023-09-19 18:44:41 +08:00
|
|
|
AddStep("allow all lookups", () =>
|
|
|
|
{
|
|
|
|
storyboard.UseSkinSprites = true;
|
|
|
|
storyboard.AlwaysProvideTexture = true;
|
|
|
|
});
|
2022-09-07 14:37:22 +08:00
|
|
|
|
|
|
|
AddStep("create sprites", () => SetContents(_ => createSprite(lookup_name, Anchor.TopLeft, Vector2.Zero)));
|
2022-09-08 12:43:37 +08:00
|
|
|
AddAssert("sprites present", () => sprites.All(s => s.IsPresent));
|
2022-09-07 14:37:22 +08:00
|
|
|
AddStep("scale sprite", () => sprites.ForEach(s => s.VectorScale = new Vector2(0, 1)));
|
2022-09-08 18:42:09 +08:00
|
|
|
AddAssert("sprites not present", () => sprites.All(s => !s.IsPresent));
|
2022-09-07 14:37:22 +08:00
|
|
|
}
|
|
|
|
|
2022-03-14 08:35:23 +08:00
|
|
|
[Test]
|
|
|
|
public void TestNegativeScale()
|
|
|
|
{
|
2023-09-19 18:44:41 +08:00
|
|
|
AddStep("allow all lookups", () =>
|
|
|
|
{
|
|
|
|
storyboard.UseSkinSprites = true;
|
|
|
|
storyboard.AlwaysProvideTexture = true;
|
|
|
|
});
|
2022-03-14 08:35:23 +08:00
|
|
|
|
|
|
|
AddStep("create sprites", () => SetContents(_ => createSprite(lookup_name, Anchor.TopLeft, Vector2.Zero)));
|
|
|
|
AddStep("scale sprite", () => sprites.ForEach(s => s.VectorScale = new Vector2(-1)));
|
|
|
|
AddAssert("origin flipped", () => sprites.All(s => s.Origin == Anchor.BottomRight));
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestNegativeScaleWithFlippedSprite()
|
|
|
|
{
|
2023-09-19 18:44:41 +08:00
|
|
|
AddStep("allow all lookups", () =>
|
|
|
|
{
|
|
|
|
storyboard.UseSkinSprites = true;
|
|
|
|
storyboard.AlwaysProvideTexture = true;
|
|
|
|
});
|
2022-03-14 08:35:23 +08:00
|
|
|
|
|
|
|
AddStep("create sprites", () => SetContents(_ => createSprite(lookup_name, Anchor.TopLeft, Vector2.Zero)));
|
|
|
|
AddStep("scale sprite", () => sprites.ForEach(s => s.VectorScale = new Vector2(-1)));
|
|
|
|
AddAssert("origin flipped", () => sprites.All(s => s.Origin == Anchor.BottomRight));
|
|
|
|
AddStep("flip sprites", () => sprites.ForEach(s =>
|
|
|
|
{
|
|
|
|
s.FlipH = true;
|
|
|
|
s.FlipV = true;
|
|
|
|
}));
|
|
|
|
AddAssert("origin back", () => sprites.All(s => s.Origin == Anchor.TopLeft));
|
|
|
|
}
|
|
|
|
|
2023-09-19 18:44:41 +08:00
|
|
|
private DrawableStoryboard createSprite(string lookupName, Anchor origin, Vector2 initialPosition)
|
|
|
|
{
|
|
|
|
var layer = storyboard.GetLayer("Background");
|
|
|
|
|
|
|
|
var sprite = new StoryboardSprite(lookupName, origin, initialPosition);
|
|
|
|
sprite.AddLoop(Time.Current, 100).Alpha.Add(Easing.None, 0, 10000, 1, 1);
|
|
|
|
|
|
|
|
layer.Elements.Clear();
|
|
|
|
layer.Add(sprite);
|
|
|
|
|
2023-09-20 18:05:23 +08:00
|
|
|
return storyboard.CreateDrawable().With(s => s.RelativeSizeAxes = Axes.Both);
|
2023-09-19 18:44:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void assertStoryboardSourced()
|
|
|
|
{
|
|
|
|
AddAssert("sprite came from storyboard", () =>
|
|
|
|
sprites.Any(sprite => sprite.ChildrenOfType<Sprite>().All(s => s.Size == new Vector2(200))));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void assertSkinSourced()
|
|
|
|
{
|
|
|
|
AddAssert("sprite came from skin", () =>
|
|
|
|
sprites.Any(sprite => sprite.ChildrenOfType<Sprite>().All(s => s.Size == new Vector2(128))));
|
|
|
|
}
|
|
|
|
|
|
|
|
private partial class TestStoryboard : Storyboard
|
|
|
|
{
|
|
|
|
public override DrawableStoryboard CreateDrawable(IReadOnlyList<Mod>? mods = null)
|
2020-10-21 04:42:47 +08:00
|
|
|
{
|
2023-09-19 18:44:41 +08:00
|
|
|
return new TestDrawableStoryboard(this, mods);
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool AlwaysProvideTexture { get; set; }
|
|
|
|
|
|
|
|
public override string GetStoragePathFromStoryboardPath(string path) => AlwaysProvideTexture ? path : string.Empty;
|
|
|
|
|
|
|
|
private partial class TestDrawableStoryboard : DrawableStoryboard
|
|
|
|
{
|
|
|
|
private readonly bool alwaysProvideTexture;
|
|
|
|
|
|
|
|
public TestDrawableStoryboard(TestStoryboard storyboard, IReadOnlyList<Mod>? mods)
|
|
|
|
: base(storyboard, mods)
|
|
|
|
{
|
|
|
|
alwaysProvideTexture = storyboard.AlwaysProvideTexture;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override IResourceStore<byte[]> CreateResourceLookupStore() => alwaysProvideTexture
|
|
|
|
? new AlwaysReturnsTextureStore()
|
|
|
|
: new ResourceStore<byte[]>();
|
|
|
|
|
|
|
|
internal class AlwaysReturnsTextureStore : IResourceStore<byte[]>
|
|
|
|
{
|
|
|
|
private const string test_image = "Resources/Textures/test-image.png";
|
|
|
|
|
|
|
|
private readonly DllResourceStore store;
|
|
|
|
|
|
|
|
public AlwaysReturnsTextureStore()
|
|
|
|
{
|
|
|
|
store = TestResources.GetStore();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose() => store.Dispose();
|
|
|
|
|
|
|
|
public byte[] Get(string name) => store.Get(test_image);
|
|
|
|
|
|
|
|
public Task<byte[]> GetAsync(string name, CancellationToken cancellationToken = new CancellationToken()) => store.GetAsync(test_image, cancellationToken);
|
|
|
|
|
|
|
|
public Stream GetStream(string name) => store.GetStream(test_image);
|
|
|
|
|
|
|
|
public IEnumerable<string> GetAvailableResources() => store.GetAvailableResources();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-21 04:42:47 +08:00
|
|
|
}
|
|
|
|
}
|