2019-01-25 10:17:48 +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.
|
2019-01-23 10:46:53 +00:00
|
|
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
using osu.Game.Rulesets.Configuration;
|
2020-10-20 04:59:03 +00:00
|
|
|
using osu.Game.Rulesets.UI;
|
2019-01-23 10:46:53 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Configuration
|
|
|
|
{
|
2019-01-25 10:14:37 +00:00
|
|
|
public class OsuRulesetConfigManager : RulesetConfigManager<OsuRulesetSetting>
|
2019-01-23 10:46:53 +00:00
|
|
|
{
|
2019-01-25 10:14:37 +00:00
|
|
|
public OsuRulesetConfigManager(SettingsStore settings, RulesetInfo ruleset, int? variant = null)
|
2019-01-23 10:46:53 +00:00
|
|
|
: base(settings, ruleset, variant)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void InitialiseDefaults()
|
|
|
|
{
|
|
|
|
base.InitialiseDefaults();
|
2021-03-17 07:10:16 +00:00
|
|
|
SetDefault(OsuRulesetSetting.SnakingInSliders, true);
|
|
|
|
SetDefault(OsuRulesetSetting.SnakingOutSliders, true);
|
|
|
|
SetDefault(OsuRulesetSetting.ShowCursorTrail, true);
|
|
|
|
SetDefault(OsuRulesetSetting.PlayfieldBorderStyle, PlayfieldBorderStyle.None);
|
2019-01-23 10:46:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-25 10:14:37 +00:00
|
|
|
public enum OsuRulesetSetting
|
2019-01-23 10:46:53 +00:00
|
|
|
{
|
|
|
|
SnakingInSliders,
|
2019-04-04 08:09:11 +00:00
|
|
|
SnakingOutSliders,
|
2020-10-19 19:00:49 +00:00
|
|
|
ShowCursorTrail,
|
2020-10-20 04:59:03 +00:00
|
|
|
PlayfieldBorderStyle,
|
2019-01-23 10:46:53 +00:00
|
|
|
}
|
|
|
|
}
|