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;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-12 11:11:22 +08:00
|
|
|
|
using osu.Game.Localisation;
|
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
|
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
protected override LocalisableString Header => GameplaySettingsStrings.GeneralHeader;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SettingsSlider<double>
|
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.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>
|
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.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
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.LightenDuringBreaks,
|
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
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.HUDVisibilityMode,
|
2020-10-20 13:19:04 +08:00
|
|
|
|
Current = config.GetBindable<HUDVisibilityMode>(OsuSetting.HUDVisibilityMode)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
2019-07-04 17:59:38 +08:00
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.ShowProgressGraph,
|
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
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.ShowHealthDisplayWhenCantFail,
|
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
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.FadePlayfieldWhenHealthLow,
|
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
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.KeyOverlay,
|
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
|
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.PositionalHitsounds,
|
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
|
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.AlwaysPlayFirstComboBreak,
|
2020-11-13 12:42:00 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.AlwaysPlayFirstComboBreak)
|
|
|
|
|
},
|
2018-06-08 02:17:12 +08:00
|
|
|
|
new SettingsEnumDropdown<ScoringMode>
|
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.ScoreDisplayMode,
|
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
|
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.DisableWinKey,
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|