2018-06-07 15:08:37 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
2018-07-19 18:30:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Configuration;
|
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2018-06-07 15:08:37 +08:00
|
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Tests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestCaseEditor : EditorTestCase
|
|
|
|
|
{
|
2018-07-19 18:30:20 +08:00
|
|
|
|
private readonly Bindable<ManiaScrollingDirection> direction = new Bindable<ManiaScrollingDirection>();
|
|
|
|
|
|
2018-06-07 15:08:37 +08:00
|
|
|
|
public TestCaseEditor()
|
|
|
|
|
: base(new ManiaRuleset())
|
|
|
|
|
{
|
2018-07-19 18:30:20 +08:00
|
|
|
|
AddStep("upwards scroll", () => direction.Value = ManiaScrollingDirection.Up);
|
|
|
|
|
AddStep("downwards scroll", () => direction.Value = ManiaScrollingDirection.Down);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(RulesetConfigCache configCache)
|
|
|
|
|
{
|
|
|
|
|
var config = (ManiaConfigManager)configCache.GetConfigFor(Ruleset.Value.CreateInstance());
|
|
|
|
|
config.BindWith(ManiaSetting.ScrollDirection, direction);
|
2018-06-07 15:08:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|