2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2020-04-03 09:25:01 +00:00
|
|
|
|
using System;
|
2018-01-18 08:00:41 +00:00
|
|
|
|
using osu.Framework.Configuration.Tracking;
|
2018-01-24 08:35:37 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2023-01-16 04:28:45 +00:00
|
|
|
|
using osu.Game.Localisation;
|
2018-01-17 11:10:35 +00:00
|
|
|
|
using osu.Game.Rulesets.Configuration;
|
2018-06-11 05:36:19 +00:00
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-01-17 11:10:35 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Configuration
|
|
|
|
|
{
|
2019-01-25 10:14:37 +00:00
|
|
|
|
public class ManiaRulesetConfigManager : RulesetConfigManager<ManiaRulesetSetting>
|
2018-01-17 11:10:35 +00:00
|
|
|
|
{
|
2022-09-12 07:58:20 +00:00
|
|
|
|
public ManiaRulesetConfigManager(SettingsStore? settings, RulesetInfo ruleset, int? variant = null)
|
2018-01-25 14:41:03 +00:00
|
|
|
|
: base(settings, ruleset, variant)
|
2018-01-17 11:10:35 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-01-17 12:13:14 +00:00
|
|
|
|
protected override void InitialiseDefaults()
|
|
|
|
|
{
|
|
|
|
|
base.InitialiseDefaults();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2023-05-29 12:14:03 +00:00
|
|
|
|
SetDefault(ManiaRulesetSetting.ScrollSpeed, 8, 1, 40);
|
2021-03-17 07:10:16 +00:00
|
|
|
|
SetDefault(ManiaRulesetSetting.ScrollDirection, ManiaScrollingDirection.Down);
|
2021-04-26 11:05:12 +00:00
|
|
|
|
SetDefault(ManiaRulesetSetting.TimingBasedNoteColouring, false);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2023-05-29 12:14:03 +00:00
|
|
|
|
#pragma warning disable CS0618
|
2023-05-30 08:27:48 +00:00
|
|
|
|
// Although obsolete, this is still required to populate the bindable from the database in case migration is required.
|
|
|
|
|
SetDefault<double?>(ManiaRulesetSetting.ScrollTime, null);
|
|
|
|
|
|
2023-05-29 12:14:03 +00:00
|
|
|
|
if (Get<double?>(ManiaRulesetSetting.ScrollTime) is double scrollTime)
|
|
|
|
|
{
|
|
|
|
|
SetValue(ManiaRulesetSetting.ScrollSpeed, (int)Math.Round(DrawableManiaRuleset.MAX_TIME_RANGE / scrollTime));
|
|
|
|
|
SetValue<double?>(ManiaRulesetSetting.ScrollTime, null);
|
|
|
|
|
}
|
|
|
|
|
#pragma warning restore CS0618
|
2023-05-30 08:27:48 +00:00
|
|
|
|
}
|
2023-05-29 12:14:03 +00:00
|
|
|
|
|
2018-01-18 08:00:41 +00:00
|
|
|
|
public override TrackedSettings CreateTrackedSettings() => new TrackedSettings
|
|
|
|
|
{
|
2023-05-29 12:14:03 +00:00
|
|
|
|
new TrackedSetting<int>(ManiaRulesetSetting.ScrollSpeed,
|
|
|
|
|
speed => new SettingDescription(
|
|
|
|
|
rawValue: speed,
|
2023-01-16 04:28:45 +00:00
|
|
|
|
name: RulesetSettingsStrings.ScrollSpeed,
|
2023-06-06 12:40:09 +00:00
|
|
|
|
value: RulesetSettingsStrings.ScrollSpeedTooltip((int)DrawableManiaRuleset.ComputeScrollTime(speed), speed)
|
2021-10-19 08:00:51 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
2018-01-18 08:00:41 +00:00
|
|
|
|
};
|
2018-01-17 11:10:35 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-01-25 10:14:37 +00:00
|
|
|
|
public enum ManiaRulesetSetting
|
2018-01-17 11:10:35 +00:00
|
|
|
|
{
|
2023-05-29 12:14:03 +00:00
|
|
|
|
[Obsolete("Use ScrollSpeed instead.")] // Can be removed 2023-11-30
|
2018-06-11 05:36:19 +00:00
|
|
|
|
ScrollTime,
|
2023-05-29 12:14:03 +00:00
|
|
|
|
ScrollSpeed,
|
2021-04-24 08:23:52 +00:00
|
|
|
|
ScrollDirection,
|
2021-04-26 11:05:12 +00:00
|
|
|
|
TimingBasedNoteColouring
|
2018-01-17 11:10:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|