2019-05-31 05:40:53 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00: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 19:37:25 +00:00
|
|
|
public abstract class EditorTestScene : ScreenTestScene
|
2018-04-13 09:19:50 +00:00
|
|
|
{
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(Editor), typeof(EditorScreen) };
|
|
|
|
|
|
|
|
private readonly Ruleset ruleset;
|
|
|
|
|
2019-05-14 19:37:25 +00:00
|
|
|
protected EditorTestScene(Ruleset ruleset)
|
2018-04-13 09:19:50 +00:00
|
|
|
{
|
|
|
|
this.ruleset = ruleset;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2018-05-23 08:37:39 +00:00
|
|
|
private void load()
|
2018-04-13 09:19:50 +00:00
|
|
|
{
|
2019-05-31 05:40:53 +00:00
|
|
|
Beatmap.Value = CreateWorkingBeatmap(ruleset.RulesetInfo);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2019-03-12 08:45:16 +00:00
|
|
|
LoadScreen(new Editor());
|
2018-04-13 09:19:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|