2021-04-27 17:03:49 +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-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2022-03-21 16:01:46 +08:00
|
|
|
using System.Linq;
|
2021-04-29 12:53:01 +08:00
|
|
|
using NUnit.Framework;
|
2022-03-16 21:23:19 +08:00
|
|
|
using osu.Framework.Allocation;
|
2021-04-30 11:35:58 +08:00
|
|
|
using osu.Framework.Graphics;
|
2022-03-21 16:01:46 +08:00
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2021-04-27 17:03:49 +08:00
|
|
|
using osu.Framework.Testing;
|
2022-03-16 21:23:19 +08:00
|
|
|
using osu.Game.Overlays;
|
2022-03-21 16:01:46 +08:00
|
|
|
using osu.Game.Overlays.Settings;
|
2021-04-28 14:14:48 +08:00
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Osu;
|
2022-03-21 16:01:46 +08:00
|
|
|
using osu.Game.Screens.Play.HUD.HitErrorMeters;
|
2021-04-28 14:14:48 +08:00
|
|
|
using osu.Game.Skinning.Editor;
|
2022-03-21 16:01:46 +08:00
|
|
|
using osuTK.Input;
|
2021-04-27 17:03:49 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
|
|
|
{
|
2021-04-29 12:53:01 +08:00
|
|
|
public class TestSceneSkinEditor : PlayerTestScene
|
2021-04-27 17:03:49 +08:00
|
|
|
{
|
2021-04-29 12:53:01 +08:00
|
|
|
private SkinEditor skinEditor;
|
|
|
|
|
2021-05-13 13:54:52 +08:00
|
|
|
protected override bool Autoplay => true;
|
|
|
|
|
2022-03-16 21:23:19 +08:00
|
|
|
[Cached]
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
|
2021-04-27 17:03:49 +08:00
|
|
|
[SetUpSteps]
|
2021-04-29 12:53:01 +08:00
|
|
|
public override void SetUpSteps()
|
2021-04-27 17:03:49 +08:00
|
|
|
{
|
2021-04-29 12:53:01 +08:00
|
|
|
base.SetUpSteps();
|
2021-04-27 17:03:49 +08:00
|
|
|
|
2021-05-10 21:36:20 +08:00
|
|
|
AddStep("reload skin editor", () =>
|
2021-04-29 12:53:01 +08:00
|
|
|
{
|
|
|
|
skinEditor?.Expire();
|
2022-03-21 16:01:46 +08:00
|
|
|
Player.ScaleTo(0.4f);
|
2021-04-29 12:53:01 +08:00
|
|
|
LoadComponentAsync(skinEditor = new SkinEditor(Player), Add);
|
2021-04-27 17:03:49 +08:00
|
|
|
});
|
2022-03-27 02:28:07 +08:00
|
|
|
AddUntilStep("wait for loaded", () => skinEditor.IsLoaded);
|
2021-04-27 17:03:49 +08:00
|
|
|
}
|
|
|
|
|
2021-04-29 12:53:01 +08:00
|
|
|
[Test]
|
|
|
|
public void TestToggleEditor()
|
|
|
|
{
|
2022-06-24 20:25:23 +08:00
|
|
|
AddToggleStep("toggle editor visibility", _ => skinEditor.ToggleVisibility());
|
2021-04-29 12:53:01 +08:00
|
|
|
}
|
|
|
|
|
2022-03-21 16:01:46 +08:00
|
|
|
[Test]
|
|
|
|
public void TestEditComponent()
|
|
|
|
{
|
|
|
|
BarHitErrorMeter hitErrorMeter = null;
|
|
|
|
|
|
|
|
AddStep("select bar hit error blueprint", () =>
|
|
|
|
{
|
|
|
|
var blueprint = skinEditor.ChildrenOfType<SkinBlueprint>().First(b => b.Item is BarHitErrorMeter);
|
|
|
|
|
|
|
|
hitErrorMeter = (BarHitErrorMeter)blueprint.Item;
|
|
|
|
skinEditor.SelectedComponents.Clear();
|
|
|
|
skinEditor.SelectedComponents.Add(blueprint.Item);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddAssert("value is default", () => hitErrorMeter.JudgementLineThickness.IsDefault);
|
|
|
|
|
|
|
|
AddStep("hover first slider", () =>
|
|
|
|
{
|
|
|
|
InputManager.MoveMouseTo(
|
|
|
|
skinEditor.ChildrenOfType<SkinSettingsToolbox>().First()
|
|
|
|
.ChildrenOfType<SettingsSlider<float>>().First()
|
|
|
|
.ChildrenOfType<SliderBar<float>>().First()
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("adjust slider via keyboard", () => InputManager.Key(Key.Left));
|
|
|
|
|
|
|
|
AddAssert("value is less than default", () => hitErrorMeter.JudgementLineThickness.Value < hitErrorMeter.JudgementLineThickness.Default);
|
|
|
|
}
|
|
|
|
|
2021-04-29 12:53:01 +08:00
|
|
|
protected override Ruleset CreatePlayerRuleset() => new OsuRuleset();
|
2021-04-27 17:03:49 +08:00
|
|
|
}
|
|
|
|
}
|