2020-04-02 17:39:49 +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 System.Collections.Generic;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Tests.Skinning
|
|
|
|
{
|
|
|
|
public class TestScenePlayfield : ManiaSkinnableTestScene
|
|
|
|
{
|
|
|
|
private List<StageDefinition> stageDefinitions = new List<StageDefinition>();
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestSingleStage()
|
|
|
|
{
|
|
|
|
AddStep("create stage", () =>
|
|
|
|
{
|
|
|
|
stageDefinitions = new List<StageDefinition>
|
|
|
|
{
|
|
|
|
new StageDefinition { Columns = 2 }
|
|
|
|
};
|
|
|
|
|
2021-06-02 15:04:53 +08:00
|
|
|
SetContents(_ => new ManiaPlayfield(stageDefinitions));
|
2020-04-02 17:39:49 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestDualStages()
|
|
|
|
{
|
|
|
|
AddStep("create stage", () =>
|
|
|
|
{
|
|
|
|
stageDefinitions = new List<StageDefinition>
|
|
|
|
{
|
|
|
|
new StageDefinition { Columns = 2 },
|
|
|
|
new StageDefinition { Columns = 2 }
|
|
|
|
};
|
|
|
|
|
2021-06-02 15:04:53 +08:00
|
|
|
SetContents(_ => new ManiaPlayfield(stageDefinitions));
|
2020-04-02 17:39:49 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override IBeatmap CreateBeatmapForSkinProvider()
|
|
|
|
{
|
|
|
|
var maniaBeatmap = (ManiaBeatmap)base.CreateBeatmapForSkinProvider();
|
|
|
|
maniaBeatmap.Stages = stageDefinitions;
|
|
|
|
return maniaBeatmap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|