2022-04-19 08:25:18 +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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Linq;
|
2022-04-19 13:03:50 +08:00
|
|
|
using Moq;
|
2022-04-19 08:25:18 +08:00
|
|
|
using NUnit.Framework;
|
2022-08-02 18:50:57 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics.Rendering;
|
2022-04-19 08:25:18 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Rulesets.Osu.Skinning.Legacy;
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
{
|
|
|
|
[HeadlessTest]
|
|
|
|
public class LegacyMainCirclePieceTest : OsuTestScene
|
|
|
|
{
|
2022-08-02 18:50:57 +08:00
|
|
|
[Resolved]
|
|
|
|
private IRenderer renderer { get; set; } = null!;
|
|
|
|
|
2022-04-19 08:25:18 +08:00
|
|
|
private static readonly object?[][] texture_priority_cases =
|
|
|
|
{
|
|
|
|
// default priority lookup
|
|
|
|
new object?[]
|
|
|
|
{
|
|
|
|
// available textures
|
|
|
|
new[] { @"hitcircle", @"hitcircleoverlay" },
|
2022-04-20 05:24:18 +08:00
|
|
|
// priority lookup prefix
|
2022-04-20 00:46:29 +08:00
|
|
|
null,
|
2022-04-19 08:25:18 +08:00
|
|
|
// expected circle and overlay
|
|
|
|
@"hitcircle", @"hitcircleoverlay",
|
|
|
|
},
|
|
|
|
// custom priority lookup
|
|
|
|
new object?[]
|
|
|
|
{
|
|
|
|
new[] { @"hitcircle", @"hitcircleoverlay", @"sliderstartcircle", @"sliderstartcircleoverlay" },
|
|
|
|
@"sliderstartcircle",
|
|
|
|
@"sliderstartcircle", @"sliderstartcircleoverlay",
|
|
|
|
},
|
|
|
|
// when no sprites are available for the specified prefix, fall back to "hitcircle"/"hitcircleoverlay".
|
|
|
|
new object?[]
|
|
|
|
{
|
|
|
|
new[] { @"hitcircle", @"hitcircleoverlay" },
|
|
|
|
@"sliderstartcircle",
|
|
|
|
@"hitcircle", @"hitcircleoverlay",
|
|
|
|
},
|
|
|
|
// when a circle is available for the specified prefix but no overlay exists, no overlay is displayed.
|
|
|
|
new object?[]
|
|
|
|
{
|
|
|
|
new[] { @"hitcircle", @"hitcircleoverlay", @"sliderstartcircle" },
|
|
|
|
@"sliderstartcircle",
|
|
|
|
@"sliderstartcircle", null
|
|
|
|
},
|
|
|
|
// when no circle is available for the specified prefix but an overlay exists, the overlay is ignored.
|
|
|
|
new object?[]
|
|
|
|
{
|
|
|
|
new[] { @"hitcircle", @"hitcircleoverlay", @"sliderstartcircleoverlay" },
|
|
|
|
@"sliderstartcircle",
|
|
|
|
@"hitcircle", @"hitcircleoverlay",
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
[TestCaseSource(nameof(texture_priority_cases))]
|
|
|
|
public void TestTexturePriorities(string[] textureFilenames, string priorityLookup, string? expectedCircle, string? expectedOverlay)
|
|
|
|
{
|
2022-04-20 05:24:18 +08:00
|
|
|
TestLegacyMainCirclePiece piece = null!;
|
2022-04-19 08:25:18 +08:00
|
|
|
|
|
|
|
AddStep("load circle piece", () =>
|
|
|
|
{
|
2022-04-19 13:03:50 +08:00
|
|
|
var skin = new Mock<ISkinSource>();
|
|
|
|
|
2022-04-20 05:27:02 +08:00
|
|
|
// shouldn't be required as GetTexture(string) calls GetTexture(string, WrapMode, WrapMode) by default,
|
|
|
|
// but moq doesn't handle that well, therefore explicitly requiring to use `CallBase`:
|
|
|
|
// https://github.com/moq/moq4/issues/972
|
2022-04-19 13:03:50 +08:00
|
|
|
skin.Setup(s => s.GetTexture(It.IsAny<string>())).CallBase();
|
2022-04-20 05:27:02 +08:00
|
|
|
|
2022-04-19 13:03:50 +08:00
|
|
|
skin.Setup(s => s.GetTexture(It.IsIn(textureFilenames), It.IsAny<WrapMode>(), It.IsAny<WrapMode>()))
|
2022-08-02 18:50:57 +08:00
|
|
|
.Returns((string componentName, WrapMode _, WrapMode _) =>
|
|
|
|
{
|
|
|
|
var tex = renderer.CreateTexture(1, 1);
|
|
|
|
tex.AssetName = componentName;
|
|
|
|
return tex;
|
|
|
|
});
|
2022-04-19 13:03:50 +08:00
|
|
|
|
2022-04-19 08:25:18 +08:00
|
|
|
Child = new DependencyProvidingContainer
|
|
|
|
{
|
2022-04-19 13:03:50 +08:00
|
|
|
CachedDependencies = new (Type, object)[] { (typeof(ISkinSource), skin.Object) },
|
2022-04-20 05:24:18 +08:00
|
|
|
Child = piece = new TestLegacyMainCirclePiece(priorityLookup),
|
2022-04-19 08:25:18 +08:00
|
|
|
};
|
|
|
|
|
2022-08-02 19:18:45 +08:00
|
|
|
var sprites = this.ChildrenOfType<Sprite>().Where(s => !string.IsNullOrEmpty(s.Texture.AssetName)).DistinctBy(s => s.Texture.AssetName).ToArray();
|
2022-04-19 08:25:18 +08:00
|
|
|
Debug.Assert(sprites.Length <= 2);
|
|
|
|
});
|
|
|
|
|
2022-04-20 05:24:18 +08:00
|
|
|
AddAssert("check circle sprite", () => piece.CircleSprite?.Texture?.AssetName == expectedCircle);
|
|
|
|
AddAssert("check overlay sprite", () => piece.OverlaySprite?.Texture?.AssetName == expectedOverlay);
|
|
|
|
}
|
|
|
|
|
|
|
|
private class TestLegacyMainCirclePiece : LegacyMainCirclePiece
|
|
|
|
{
|
|
|
|
public new Sprite? CircleSprite => base.CircleSprite.ChildrenOfType<Sprite>().DistinctBy(s => s.Texture.AssetName).SingleOrDefault();
|
|
|
|
public new Sprite? OverlaySprite => base.OverlaySprite.ChildrenOfType<Sprite>().DistinctBy(s => s.Texture.AssetName).SingleOrDefault();
|
|
|
|
|
|
|
|
public TestLegacyMainCirclePiece(string? priorityLookupPrefix)
|
|
|
|
: base(priorityLookupPrefix, false)
|
|
|
|
{
|
|
|
|
}
|
2022-04-19 08:25:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|