2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Configuration.Tracking;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.Rulesets.Configuration;
|
2018-06-11 13:36:19 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Configuration
|
|
|
|
|
{
|
2019-01-25 18:14:37 +08:00
|
|
|
|
public class ManiaRulesetConfigManager : RulesetConfigManager<ManiaRulesetSetting>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-01-25 18:14:37 +08:00
|
|
|
|
public ManiaRulesetConfigManager(SettingsStore settings, RulesetInfo ruleset, int? variant = null)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
: base(settings, ruleset, variant)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void InitialiseDefaults()
|
|
|
|
|
{
|
|
|
|
|
base.InitialiseDefaults();
|
|
|
|
|
|
2019-09-11 11:51:54 +08:00
|
|
|
|
Set(ManiaRulesetSetting.ScrollTime, 1500.0, 50.0, 5000.0, 50.0);
|
2019-01-25 18:14:37 +08:00
|
|
|
|
Set(ManiaRulesetSetting.ScrollDirection, ManiaScrollingDirection.Down);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override TrackedSettings CreateTrackedSettings() => new TrackedSettings
|
|
|
|
|
{
|
2019-01-25 18:14:37 +08:00
|
|
|
|
new TrackedSetting<double>(ManiaRulesetSetting.ScrollTime, v => new SettingDescription(v, "Scroll Time", $"{v}ms"))
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-25 18:14:37 +08:00
|
|
|
|
public enum ManiaRulesetSetting
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-06-11 13:36:19 +08:00
|
|
|
|
ScrollTime,
|
|
|
|
|
ScrollDirection
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|