mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 01:07:24 +08:00
62 lines
2.3 KiB
C#
62 lines
2.3 KiB
C#
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Configuration;
|
|
|
|
namespace osu.Game.Overlays.Options.Gameplay
|
|
{
|
|
public class GeneralGameplayOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "General";
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
// TODO: bindable int stuff
|
|
/*
|
|
new OptionsSlider
|
|
{
|
|
Label = "Background dim",
|
|
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.DimLevel)
|
|
},
|
|
*/
|
|
new SpriteText { Text = "Progress display: TODO dropdown" },
|
|
new SpriteText { Text = "Score meter type: TODO dropdown" },
|
|
new OptionsSlider
|
|
{
|
|
Label = "Score meter size",
|
|
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.ScoreMeterScale)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Always show key overlay",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.KeyOverlay)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Show approach circle on first \"Hidden\" object",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.HiddenShowFirstApproach)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Scale osu!mania scroll speed with BPM",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.ManiaSpeedBPMScale)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Remember osu!mania scroll speed per beatmap",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.UsePerBeatmapManiaSpeed)
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|