osu/osu.Game/Screens/Play/PlayerSettings/VisualSettings.cs

50 lines
1.7 KiB
C#
Raw Normal View History

2018-01-09 23:24:51 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2018-01-11 21:37:28 +00:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-01-09 23:24:51 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Graphics.Sprites;
namespace osu.Game.Screens.Play.PlayerSettings
2018-01-09 23:24:51 +00:00
{
2018-01-15 17:52:52 +00:00
public class VisualSettings : PlayerSettingsGroup
2018-01-09 23:24:51 +00:00
{
protected override string Title => "Visual settings";
private readonly PlayerSliderBar<double> dimSliderBar;
private readonly PlayerSliderBar<double> blurSliderBar;
private readonly PlayerCheckbox showStoryboardToggle;
2018-01-09 23:24:51 +00:00
public VisualSettings()
{
Children = new Drawable[]
{
2018-01-11 20:39:23 +00:00
new OsuSpriteText
{
Text = "Background dim:"
},
dimSliderBar = new PlayerSliderBar<double>(),
2018-01-11 20:39:23 +00:00
new OsuSpriteText
{
Text = "Background blur:"
},
blurSliderBar = new PlayerSliderBar<double>(),
new OsuSpriteText
2018-01-11 20:39:23 +00:00
{
Text = "Toggles:"
},
showStoryboardToggle = new PlayerCheckbox { LabelText = "Storyboards" }
2018-01-09 23:24:51 +00:00
};
}
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
dimSliderBar.Bindable = config.GetBindable<double>(OsuSetting.DimLevel);
blurSliderBar.Bindable = config.GetBindable<double>(OsuSetting.BlurLevel);
2018-01-09 23:24:51 +00:00
showStoryboardToggle.Bindable = config.GetBindable<bool>(OsuSetting.ShowStoryboard);
2018-01-11 20:39:23 +00:00
}
2018-01-09 23:24:51 +00:00
}
}