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
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2022-04-18 11:46:06 +08:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2018-03-02 14:34:31 +08:00
|
|
|
using NUnit.Framework;
|
2017-11-29 15:30:59 +08:00
|
|
|
using osu.Framework.Allocation;
|
2022-04-18 11:46:06 +08:00
|
|
|
using osu.Framework.Extensions.ObjectExtensions;
|
|
|
|
using osu.Framework.Graphics;
|
2021-08-29 01:09:35 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2022-04-18 11:46:06 +08:00
|
|
|
using osu.Framework.Testing;
|
2022-05-25 05:14:28 +08:00
|
|
|
using osu.Game.Overlays;
|
2020-01-23 13:39:56 +08:00
|
|
|
using osu.Game.Rulesets.Edit;
|
2018-03-16 22:53:46 +08:00
|
|
|
using osu.Game.Rulesets.Osu;
|
2020-01-02 00:23:21 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Beatmaps;
|
|
|
|
using osu.Game.Screens.Edit;
|
2018-11-06 17:28:22 +08:00
|
|
|
using osu.Game.Screens.Edit.Compose;
|
2022-04-18 11:46:06 +08:00
|
|
|
using osu.Game.Skinning;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-04-23 16:07:55 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
2017-11-29 15:30:59 +08:00
|
|
|
{
|
2018-03-02 14:34:31 +08:00
|
|
|
[TestFixture]
|
2019-10-09 15:05:38 +08:00
|
|
|
public class TestSceneComposeScreen : EditorClockTestScene
|
2017-11-29 15:30:59 +08:00
|
|
|
{
|
2022-04-18 11:46:06 +08:00
|
|
|
private EditorBeatmap editorBeatmap;
|
2020-01-02 00:23:21 +08:00
|
|
|
|
2021-11-10 19:36:23 +08:00
|
|
|
[Cached]
|
|
|
|
private EditorClipboard clipboard = new EditorClipboard();
|
2021-11-08 22:27:11 +08:00
|
|
|
|
2022-04-18 11:46:06 +08:00
|
|
|
[SetUpSteps]
|
|
|
|
public void SetUpSteps()
|
2017-11-29 15:30:59 +08:00
|
|
|
{
|
2022-04-18 11:46:06 +08:00
|
|
|
AddStep("setup compose screen", () =>
|
|
|
|
{
|
|
|
|
var beatmap = new OsuBeatmap
|
|
|
|
{
|
|
|
|
BeatmapInfo = { Ruleset = new OsuRuleset().RulesetInfo }
|
|
|
|
};
|
|
|
|
|
|
|
|
editorBeatmap = new EditorBeatmap(beatmap, new LegacyBeatmapSkin(beatmap.BeatmapInfo, null));
|
2022-01-18 12:22:55 +08:00
|
|
|
|
2022-04-18 11:46:06 +08:00
|
|
|
Beatmap.Value = CreateWorkingBeatmap(editorBeatmap.PlayableBeatmap);
|
2020-01-02 00:23:21 +08:00
|
|
|
|
2022-04-18 11:46:06 +08:00
|
|
|
Child = new DependencyProvidingContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
CachedDependencies = new (Type, object)[]
|
|
|
|
{
|
|
|
|
(typeof(EditorBeatmap), editorBeatmap),
|
|
|
|
(typeof(IBeatSnapProvider), editorBeatmap),
|
2022-05-25 05:14:28 +08:00
|
|
|
(typeof(OverlayColourProvider), new OverlayColourProvider(OverlayColourScheme.Green)),
|
2022-04-18 11:46:06 +08:00
|
|
|
},
|
|
|
|
Child = new ComposeScreen { State = { Value = Visibility.Visible } },
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
AddUntilStep("wait for composer", () => this.ChildrenOfType<HitObjectComposer>().SingleOrDefault()?.IsLoaded == true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Ensures that the skin of the edited beatmap is properly wrapped in a <see cref="LegacySkinTransformer"/>.
|
|
|
|
/// </summary>
|
|
|
|
[Test]
|
|
|
|
public void TestLegacyBeatmapSkinHasTransformer()
|
|
|
|
{
|
|
|
|
AddAssert("legacy beatmap skin has transformer", () =>
|
2021-08-29 01:09:35 +08:00
|
|
|
{
|
2022-04-18 11:46:06 +08:00
|
|
|
var sources = this.ChildrenOfType<BeatmapSkinProvidingContainer>().First().AllSources;
|
|
|
|
return sources.OfType<LegacySkinTransformer>().Count(t => t.Skin == editorBeatmap.BeatmapSkin.AsNonNull().Skin) == 1;
|
|
|
|
});
|
2017-11-29 15:30:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|