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
|
|
|
|
|
2020-04-03 17:25:01 +08:00
|
|
|
|
using System;
|
2018-01-18 16:00:41 +08:00
|
|
|
|
using osu.Framework.Configuration.Tracking;
|
2018-01-24 16:35:37 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2023-01-16 12:28:45 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-01-17 19:10:35 +08:00
|
|
|
|
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
|
|
|
|
|
2018-01-17 19:10:35 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Configuration
|
|
|
|
|
{
|
2019-01-25 18:14:37 +08:00
|
|
|
|
public class ManiaRulesetConfigManager : RulesetConfigManager<ManiaRulesetSetting>
|
2018-01-17 19:10:35 +08:00
|
|
|
|
{
|
2022-09-12 15:58:20 +08:00
|
|
|
|
public ManiaRulesetConfigManager(SettingsStore? settings, RulesetInfo ruleset, int? variant = null)
|
2018-01-25 22:41:03 +08:00
|
|
|
|
: base(settings, ruleset, variant)
|
2018-01-17 19:10:35 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-01-17 20:13:14 +08:00
|
|
|
|
protected override void InitialiseDefaults()
|
|
|
|
|
{
|
|
|
|
|
base.InitialiseDefaults();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-03-17 15:10:16 +08:00
|
|
|
|
SetDefault(ManiaRulesetSetting.ScrollTime, 1500.0, DrawableManiaRuleset.MIN_TIME_RANGE, DrawableManiaRuleset.MAX_TIME_RANGE, 5);
|
|
|
|
|
SetDefault(ManiaRulesetSetting.ScrollDirection, ManiaScrollingDirection.Down);
|
2021-04-26 19:05:12 +08:00
|
|
|
|
SetDefault(ManiaRulesetSetting.TimingBasedNoteColouring, false);
|
2018-01-17 20:13:14 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-01-18 16:00:41 +08:00
|
|
|
|
public override TrackedSettings CreateTrackedSettings() => new TrackedSettings
|
|
|
|
|
{
|
2020-04-03 17:38:04 +08:00
|
|
|
|
new TrackedSetting<double>(ManiaRulesetSetting.ScrollTime,
|
2021-10-19 16:22:50 +08:00
|
|
|
|
scrollTime => new SettingDescription(
|
|
|
|
|
rawValue: scrollTime,
|
2023-01-16 12:28:45 +08:00
|
|
|
|
name: RulesetSettingsStrings.ScrollSpeed,
|
|
|
|
|
value: RulesetSettingsStrings.ScrollSpeedTooltip(scrollTime, (int)Math.Round(DrawableManiaRuleset.MAX_TIME_RANGE / scrollTime))
|
2021-10-19 16:00:51 +08:00
|
|
|
|
)
|
|
|
|
|
)
|
2018-01-18 16:00:41 +08:00
|
|
|
|
};
|
2018-01-17 19:10:35 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-01-25 18:14:37 +08:00
|
|
|
|
public enum ManiaRulesetSetting
|
2018-01-17 19:10:35 +08:00
|
|
|
|
{
|
2018-06-11 13:36:19 +08:00
|
|
|
|
ScrollTime,
|
2021-04-24 16:23:52 +08:00
|
|
|
|
ScrollDirection,
|
2021-04-26 19:05:12 +08:00
|
|
|
|
TimingBasedNoteColouring
|
2018-01-17 19:10:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|