1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 00:57:45 +08:00

97 lines
4.0 KiB
C#
Raw Normal View History

// 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 18:19:50 +09:00
2020-07-06 11:15:56 +02:00
using osu.Framework;
2018-04-13 18:19:50 +09:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Localisation;
2018-04-13 18:19:50 +09:00
using osu.Game.Configuration;
2021-08-12 11:11:22 +08:00
using osu.Game.Localisation;
using osu.Game.Rulesets.Scoring;
2018-04-13 18:19:50 +09: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 18:19:50 +09:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
Children = new Drawable[]
{
new SettingsSlider<double>
{
LabelText = GameplaySettingsStrings.BackgroundDim,
Current = config.GetBindable<double>(OsuSetting.DimLevel),
KeyboardStep = 0.01f,
DisplayAsPercentage = true
2018-04-13 18:19:50 +09:00
},
new SettingsSlider<double>
{
LabelText = GameplaySettingsStrings.BackgroundBlur,
Current = config.GetBindable<double>(OsuSetting.BlurLevel),
KeyboardStep = 0.01f,
DisplayAsPercentage = true
2018-04-13 18:19:50 +09:00
},
new SettingsCheckbox
{
2021-08-12 11:11:22 +08:00
LabelText = GameplaySettingsStrings.LightenDuringBreaks,
Current = config.GetBindable<bool>(OsuSetting.LightenDuringBreaks)
},
new SettingsEnumDropdown<HUDVisibilityMode>
2018-04-13 18:19:50 +09:00
{
2021-08-12 11:11:22 +08:00
LabelText = GameplaySettingsStrings.HUDVisibilityMode,
Current = config.GetBindable<HUDVisibilityMode>(OsuSetting.HUDVisibilityMode)
2018-04-13 18:19:50 +09:00
},
new SettingsCheckbox
{
LabelText = GameplaySettingsStrings.ShowDifficultyGraph,
Current = config.GetBindable<bool>(OsuSetting.ShowProgressGraph)
},
new SettingsCheckbox
2019-07-02 01:45:09 +03:00
{
2021-08-12 11:11:22 +08:00
LabelText = GameplaySettingsStrings.ShowHealthDisplayWhenCantFail,
Current = config.GetBindable<bool>(OsuSetting.ShowHealthDisplayWhenCantFail),
2019-11-21 22:35:15 +09:00
Keywords = new[] { "hp", "bar" }
2019-07-02 01:45:09 +03:00
},
new SettingsCheckbox
{
2021-08-12 11:11:22 +08:00
LabelText = GameplaySettingsStrings.FadePlayfieldWhenHealthLow,
Current = config.GetBindable<bool>(OsuSetting.FadePlayfieldWhenHealthLow),
},
new SettingsCheckbox
2018-04-13 18:19:50 +09:00
{
LabelText = GameplaySettingsStrings.AlwaysShowKeyOverlay,
Current = config.GetBindable<bool>(OsuSetting.KeyOverlay)
2018-04-13 18:19:50 +09:00
},
new SettingsCheckbox
{
2021-08-12 11:11:22 +08:00
LabelText = GameplaySettingsStrings.PositionalHitsounds,
Current = config.GetBindable<bool>(OsuSetting.PositionalHitSounds)
},
new SettingsCheckbox
{
2021-08-12 11:11:22 +08:00
LabelText = GameplaySettingsStrings.AlwaysPlayFirstComboBreak,
Current = config.GetBindable<bool>(OsuSetting.AlwaysPlayFirstComboBreak)
},
new SettingsEnumDropdown<ScoringMode>
{
2021-08-12 11:11:22 +08:00
LabelText = GameplaySettingsStrings.ScoreDisplayMode,
Current = config.GetBindable<ScoringMode>(OsuSetting.ScoreDisplayMode),
Keywords = new[] { "scoring" }
},
2018-04-13 18:19:50 +09:00
};
2020-07-06 11:15:56 +02:00
if (RuntimeInfo.OS == RuntimeInfo.Platform.Windows)
{
Add(new SettingsCheckbox
{
2021-08-12 11:11:22 +08:00
LabelText = GameplaySettingsStrings.DisableWinKey,
Current = config.GetBindable<bool>(OsuSetting.GameplayDisableWinKey)
2020-07-06 11:15:56 +02:00
});
}
2018-04-13 18:19:50 +09:00
}
}
}