2019-10-09 15:06:16 +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.
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
2020-07-17 13:38:28 +08:00
|
|
|
using osu.Game.Rulesets.Edit;
|
2020-09-30 15:06:58 +08:00
|
|
|
using osu.Game.Rulesets.Osu;
|
2020-01-02 00:23:21 +08:00
|
|
|
using osu.Game.Screens.Edit;
|
2019-10-09 15:06:16 +08:00
|
|
|
using osu.Game.Screens.Edit.Timing;
|
|
|
|
|
2020-04-23 16:07:55 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
2019-10-09 15:06:16 +08:00
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
public class TestSceneTimingScreen : EditorClockTestScene
|
|
|
|
{
|
2020-01-02 00:23:21 +08:00
|
|
|
[Cached(typeof(EditorBeatmap))]
|
2020-07-17 13:38:28 +08:00
|
|
|
[Cached(typeof(IBeatSnapProvider))]
|
2020-02-04 11:23:02 +08:00
|
|
|
private readonly EditorBeatmap editorBeatmap;
|
|
|
|
|
2020-09-30 15:39:02 +08:00
|
|
|
protected override bool ScrollUsingMouseWheel => false;
|
|
|
|
|
2020-02-04 11:23:02 +08:00
|
|
|
public TestSceneTimingScreen()
|
|
|
|
{
|
2020-09-30 15:06:58 +08:00
|
|
|
editorBeatmap = new EditorBeatmap(CreateBeatmap(new OsuRuleset().RulesetInfo));
|
2020-02-04 11:23:02 +08:00
|
|
|
}
|
2020-01-02 00:23:21 +08:00
|
|
|
|
2019-10-09 15:06:16 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2020-01-02 00:23:21 +08:00
|
|
|
Beatmap.Value = CreateWorkingBeatmap(editorBeatmap.PlayableBeatmap);
|
2020-09-30 15:16:14 +08:00
|
|
|
Beatmap.Disabled = true;
|
|
|
|
|
2019-10-09 15:06:16 +08:00
|
|
|
Child = new TimingScreen();
|
|
|
|
}
|
2020-09-30 15:16:14 +08:00
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
Beatmap.Disabled = false;
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
}
|
2019-10-09 15:06:16 +08:00
|
|
|
}
|
|
|
|
}
|