2019-05-31 14:40:53 +09:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 17:43:03 +09:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Screens.Edit;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
{
|
2019-05-14 22:37:25 +03:00
|
|
|
public abstract class EditorTestScene : ScreenTestScene
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(Editor), typeof(EditorScreen) };
|
|
|
|
|
|
|
|
private readonly Ruleset ruleset;
|
|
|
|
|
2019-05-14 22:37:25 +03:00
|
|
|
protected EditorTestScene(Ruleset ruleset)
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
|
|
|
this.ruleset = ruleset;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2018-05-23 17:37:39 +09:00
|
|
|
private void load()
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
2019-05-31 14:40:53 +09:00
|
|
|
Beatmap.Value = CreateWorkingBeatmap(ruleset.RulesetInfo);
|
2020-02-07 16:42:56 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void SetUpSteps()
|
|
|
|
{
|
|
|
|
base.SetUpSteps();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2020-02-07 16:42:56 +09:00
|
|
|
AddStep("Load editor", () => LoadScreen(new Editor()));
|
2018-04-13 18:19:50 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|