mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:37:51 +08:00
c03ab9014f
Now doesn't rely on framesync.
95 lines
3.7 KiB
C#
95 lines
3.7 KiB
C#
// 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;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Configuration.Tracking;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Overlays;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
[TestFixture]
|
|
public class TestCaseOnScreenDisplay : OsuTestCase
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
var config = new TestConfigManager();
|
|
|
|
var osd = new TestOnScreenDisplay();
|
|
osd.BeginTracking(this, config);
|
|
Add(osd);
|
|
|
|
AddRepeatStep("Change toggle (no bind)", () => config.ToggleSetting(TestConfigSetting.ToggleSettingNoKeybind), 2);
|
|
AddRepeatStep("Change toggle (with bind)", () => config.ToggleSetting(TestConfigSetting.ToggleSettingWithKeybind), 2);
|
|
AddRepeatStep("Change enum (no bind)", () => config.IncrementEnumSetting(TestConfigSetting.EnumSettingNoKeybind), 3);
|
|
AddRepeatStep("Change enum (with bind)", () => config.IncrementEnumSetting(TestConfigSetting.EnumSettingWithKeybind), 3);
|
|
}
|
|
|
|
private class TestConfigManager : ConfigManager<TestConfigSetting>
|
|
{
|
|
public TestConfigManager()
|
|
{
|
|
InitialiseDefaults();
|
|
}
|
|
|
|
protected override void InitialiseDefaults()
|
|
{
|
|
Set(TestConfigSetting.ToggleSettingNoKeybind, false);
|
|
Set(TestConfigSetting.EnumSettingNoKeybind, EnumSetting.Setting1);
|
|
Set(TestConfigSetting.ToggleSettingWithKeybind, false);
|
|
Set(TestConfigSetting.EnumSettingWithKeybind, EnumSetting.Setting1);
|
|
|
|
base.InitialiseDefaults();
|
|
}
|
|
|
|
public void ToggleSetting(TestConfigSetting setting) => Set(setting, !Get<bool>(setting));
|
|
|
|
public void IncrementEnumSetting(TestConfigSetting setting)
|
|
{
|
|
var nextValue = Get<EnumSetting>(setting) + 1;
|
|
if (nextValue > EnumSetting.Setting4)
|
|
nextValue = EnumSetting.Setting1;
|
|
Set(setting, nextValue);
|
|
}
|
|
|
|
public override TrackedSettings CreateTrackedSettings() => new TrackedSettings
|
|
{
|
|
new TrackedSetting<bool>(TestConfigSetting.ToggleSettingNoKeybind, b => new SettingDescription(b, "toggle setting with no keybind", b ? "enabled" : "disabled")),
|
|
new TrackedSetting<EnumSetting>(TestConfigSetting.EnumSettingNoKeybind, v => new SettingDescription(v, "enum setting with no keybind", v.ToString())),
|
|
new TrackedSetting<bool>(TestConfigSetting.ToggleSettingWithKeybind, b => new SettingDescription(b, "toggle setting with keybind", b ? "enabled" : "disabled", "fake keybind")),
|
|
new TrackedSetting<EnumSetting>(TestConfigSetting.EnumSettingWithKeybind, v => new SettingDescription(v, "enum setting with keybind", v.ToString(), "fake keybind")),
|
|
};
|
|
|
|
protected override void PerformLoad()
|
|
{
|
|
}
|
|
|
|
protected override bool PerformSave() => false;
|
|
}
|
|
|
|
private enum TestConfigSetting
|
|
{
|
|
ToggleSettingNoKeybind,
|
|
EnumSettingNoKeybind,
|
|
ToggleSettingWithKeybind,
|
|
EnumSettingWithKeybind
|
|
}
|
|
|
|
private enum EnumSetting
|
|
{
|
|
Setting1,
|
|
Setting2,
|
|
Setting3,
|
|
Setting4
|
|
}
|
|
|
|
private class TestOnScreenDisplay : OnScreenDisplay
|
|
{
|
|
protected override void Display(Drawable toDisplay) => toDisplay.FadeIn().ResizeHeightTo(110);
|
|
}
|
|
}
|
|
}
|