2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
2022-04-18 03:46:06 +00:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2018-03-02 06:34:31 +00:00
|
|
|
using NUnit.Framework;
|
2017-11-29 07:30:59 +00:00
|
|
|
using osu.Framework.Allocation;
|
2022-04-18 03:46:06 +00:00
|
|
|
using osu.Framework.Extensions.ObjectExtensions;
|
|
|
|
using osu.Framework.Graphics;
|
2021-08-28 17:09:35 +00:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2022-04-18 03:46:06 +00:00
|
|
|
using osu.Framework.Testing;
|
2022-05-24 21:14:28 +00:00
|
|
|
using osu.Game.Overlays;
|
2020-01-23 05:39:56 +00:00
|
|
|
using osu.Game.Rulesets.Edit;
|
2018-03-16 14:53:46 +00:00
|
|
|
using osu.Game.Rulesets.Osu;
|
2020-01-01 16:23:21 +00:00
|
|
|
using osu.Game.Rulesets.Osu.Beatmaps;
|
|
|
|
using osu.Game.Screens.Edit;
|
2018-11-06 09:28:22 +00:00
|
|
|
using osu.Game.Screens.Edit.Compose;
|
2022-04-18 03:46:06 +00:00
|
|
|
using osu.Game.Skinning;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2020-04-23 08:07:55 +00:00
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
2017-11-29 07:30:59 +00:00
|
|
|
{
|
2018-03-02 06:34:31 +00:00
|
|
|
[TestFixture]
|
2019-10-09 07:05:38 +00:00
|
|
|
public class TestSceneComposeScreen : EditorClockTestScene
|
2017-11-29 07:30:59 +00:00
|
|
|
{
|
2022-07-07 08:51:49 +00:00
|
|
|
private EditorBeatmap editorBeatmap = null!;
|
2020-01-01 16:23:21 +00:00
|
|
|
|
2021-11-10 11:36:23 +00:00
|
|
|
[Cached]
|
|
|
|
private EditorClipboard clipboard = new EditorClipboard();
|
2021-11-08 14:27:11 +00:00
|
|
|
|
2022-04-18 03:46:06 +00:00
|
|
|
[SetUpSteps]
|
|
|
|
public void SetUpSteps()
|
2017-11-29 07:30:59 +00:00
|
|
|
{
|
2022-04-18 03:46:06 +00: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 04:22:55 +00:00
|
|
|
|
2022-04-18 03:46:06 +00:00
|
|
|
Beatmap.Value = CreateWorkingBeatmap(editorBeatmap.PlayableBeatmap);
|
2020-01-01 16:23:21 +00:00
|
|
|
|
2022-04-18 03:46:06 +00:00
|
|
|
Child = new DependencyProvidingContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
CachedDependencies = new (Type, object)[]
|
|
|
|
{
|
|
|
|
(typeof(EditorBeatmap), editorBeatmap),
|
|
|
|
(typeof(IBeatSnapProvider), editorBeatmap),
|
2022-05-24 21:14:28 +00:00
|
|
|
(typeof(OverlayColourProvider), new OverlayColourProvider(OverlayColourScheme.Green)),
|
2022-04-18 03:46:06 +00: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-28 17:09:35 +00:00
|
|
|
{
|
2022-04-18 03:46:06 +00:00
|
|
|
var sources = this.ChildrenOfType<BeatmapSkinProvidingContainer>().First().AllSources;
|
|
|
|
return sources.OfType<LegacySkinTransformer>().Count(t => t.Skin == editorBeatmap.BeatmapSkin.AsNonNull().Skin) == 1;
|
|
|
|
});
|
2017-11-29 07:30:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|