2021-10-12 13:26:57 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-10-12 13:26:57 +08:00
|
|
|
using osu.Framework.Allocation;
|
2022-10-14 13:37:24 +08:00
|
|
|
using osu.Framework.Bindables;
|
2021-10-12 13:26:57 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
using osu.Game.Localisation;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Gameplay
|
|
|
|
{
|
|
|
|
public partial class BeatmapSettings : SettingsSubsection
|
|
|
|
{
|
|
|
|
protected override LocalisableString Header => GameplaySettingsStrings.BeatmapHeader;
|
|
|
|
|
2022-11-02 12:46:50 +08:00
|
|
|
private readonly BindableFloat comboColourNormalisation = new BindableFloat();
|
2022-10-14 13:37:24 +08:00
|
|
|
|
2021-10-12 13:26:57 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
{
|
2022-11-02 17:14:20 +08:00
|
|
|
config.BindWith(OsuSetting.ComboColourNormalisationAmount, comboColourNormalisation);
|
2022-10-14 13:37:24 +08:00
|
|
|
|
2021-10-12 13:26:57 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new SettingsCheckbox
|
|
|
|
{
|
|
|
|
LabelText = SkinSettingsStrings.BeatmapSkins,
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.BeatmapSkins)
|
|
|
|
},
|
|
|
|
new SettingsCheckbox
|
|
|
|
{
|
|
|
|
LabelText = SkinSettingsStrings.BeatmapColours,
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.BeatmapColours)
|
|
|
|
},
|
|
|
|
new SettingsCheckbox
|
|
|
|
{
|
|
|
|
LabelText = SkinSettingsStrings.BeatmapHitsounds,
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.BeatmapHitsounds)
|
|
|
|
},
|
2021-10-12 13:34:00 +08:00
|
|
|
new SettingsCheckbox
|
|
|
|
{
|
|
|
|
LabelText = GraphicsSettingsStrings.StoryboardVideo,
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.ShowStoryboard)
|
|
|
|
},
|
2022-10-05 16:50:36 +08:00
|
|
|
new SettingsSlider<float>
|
|
|
|
{
|
2022-11-02 13:01:03 +08:00
|
|
|
LabelText = GraphicsSettingsStrings.ComboColourNormalisation,
|
2022-11-02 12:46:50 +08:00
|
|
|
Current = comboColourNormalisation,
|
2022-10-14 13:37:24 +08:00
|
|
|
DisplayAsPercentage = true,
|
2022-10-05 16:50:36 +08:00
|
|
|
}
|
2021-10-12 13:26:57 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|