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-07-06 17:15:56 +08:00
|
|
|
|
using osu.Framework;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Configuration;
|
2018-06-08 02:17:12 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Gameplay
|
|
|
|
|
{
|
|
|
|
|
public class GeneralSettings : SettingsSubsection
|
|
|
|
|
{
|
|
|
|
|
protected override string Header => "General";
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SettingsSlider<double>
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Background dim",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<double>(OsuSetting.DimLevel),
|
2020-01-28 12:32:30 +08:00
|
|
|
|
KeyboardStep = 0.01f,
|
|
|
|
|
DisplayAsPercentage = true
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsSlider<double>
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Background blur",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<double>(OsuSetting.BlurLevel),
|
2020-01-28 12:32:30 +08:00
|
|
|
|
KeyboardStep = 0.01f,
|
|
|
|
|
DisplayAsPercentage = true
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
2019-12-10 20:10:35 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Lighten playfield during breaks",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.LightenDuringBreaks)
|
2019-12-10 20:10:35 +08:00
|
|
|
|
},
|
2020-07-22 11:41:06 +08:00
|
|
|
|
new SettingsEnumDropdown<HUDVisibilityMode>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-10-20 13:19:04 +08:00
|
|
|
|
LabelText = "HUD overlay visibility mode",
|
|
|
|
|
Current = config.GetBindable<HUDVisibilityMode>(OsuSetting.HUDVisibilityMode)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
2019-07-04 17:59:38 +08:00
|
|
|
|
{
|
2019-07-05 14:52:44 +08:00
|
|
|
|
LabelText = "Show difficulty graph on progress bar",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.ShowProgressGraph)
|
2019-07-04 17:59:38 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
2019-07-02 06:45:09 +08:00
|
|
|
|
{
|
2019-07-07 11:13:27 +08:00
|
|
|
|
LabelText = "Show health display even when you can't fail",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.ShowHealthDisplayWhenCantFail),
|
2019-11-21 21:35:15 +08:00
|
|
|
|
Keywords = new[] { "hp", "bar" }
|
2019-07-02 06:45:09 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
2020-03-30 18:59:39 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Fade playfield to red when health is low",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.FadePlayfieldWhenHealthLow),
|
2020-03-30 18:59:39 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Always show key overlay",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.KeyOverlay)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
2020-04-10 00:12:15 +08:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Positional hitsounds",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.PositionalHitSounds)
|
2020-04-10 00:12:15 +08:00
|
|
|
|
},
|
2020-11-13 12:42:00 +08:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Always play first combo break sound",
|
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.AlwaysPlayFirstComboBreak)
|
|
|
|
|
},
|
2019-08-18 20:01:04 +08:00
|
|
|
|
new SettingsEnumDropdown<ScoreMeterType>
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Score meter type",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<ScoreMeterType>(OsuSetting.ScoreMeter)
|
2019-08-18 20:01:04 +08:00
|
|
|
|
},
|
2018-06-08 02:17:12 +08:00
|
|
|
|
new SettingsEnumDropdown<ScoringMode>
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Score display mode",
|
2020-10-19 13:05:41 +08:00
|
|
|
|
Current = config.GetBindable<ScoringMode>(OsuSetting.ScoreDisplayMode),
|
|
|
|
|
Keywords = new[] { "scoring" }
|
2020-07-10 03:01:28 +08:00
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
2020-07-06 17:15:56 +08:00
|
|
|
|
|
|
|
|
|
if (RuntimeInfo.OS == RuntimeInfo.Platform.Windows)
|
|
|
|
|
{
|
|
|
|
|
Add(new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Disable Windows key during gameplay",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.GameplayDisableWinKey)
|
2020-07-06 17:15:56 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|