2019-01-25 18:17:48 +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.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Settings;
|
2019-01-23 18:46:53 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Configuration;
|
2020-10-20 12:59:03 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
|
|
|
|
{
|
2019-01-23 18:46:53 +08:00
|
|
|
|
public class OsuSettingsSubsection : RulesetSettingsSubsection
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
protected override string Header => "osu!";
|
|
|
|
|
|
2019-01-23 18:46:53 +08:00
|
|
|
|
public OsuSettingsSubsection(Ruleset ruleset)
|
2018-06-11 12:28:50 +08:00
|
|
|
|
: base(ruleset)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2019-01-23 18:46:53 +08:00
|
|
|
|
private void load()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-01-25 18:14:37 +08:00
|
|
|
|
var config = (OsuRulesetConfigManager)Config;
|
2019-01-23 18:46:53 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Snaking in sliders",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuRulesetSetting.SnakingInSliders)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Snaking out sliders",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuRulesetSetting.SnakingOutSliders)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
2019-01-23 21:27:34 +08:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
2019-04-04 16:18:53 +08:00
|
|
|
|
LabelText = "Cursor trail",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuRulesetSetting.ShowCursorTrail)
|
2019-01-23 21:27:34 +08:00
|
|
|
|
},
|
2020-10-20 12:59:03 +08:00
|
|
|
|
new SettingsEnumDropdown<PlayfieldBorderStyle>
|
2020-10-20 03:00:49 +08:00
|
|
|
|
{
|
2020-10-20 12:59:03 +08:00
|
|
|
|
LabelText = "Playfield border style",
|
|
|
|
|
Current = config.GetBindable<PlayfieldBorderStyle>(OsuRulesetSetting.PlayfieldBorderStyle),
|
2020-10-20 03:00:49 +08:00
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|