2018-01-05 11:21:19 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 04:59:30 +00:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-02-07 04:52:19 +00:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
|
2017-05-15 01:55:29 +00:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections
|
2017-02-07 04:52:19 +00:00
|
|
|
|
{
|
2017-05-15 01:55:29 +00:00
|
|
|
|
public class SkinSection : SettingsSection
|
2017-02-07 04:52:19 +00:00
|
|
|
|
{
|
|
|
|
|
public override string Header => "Skin";
|
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_paint_brush;
|
2017-04-06 08:21:18 +00:00
|
|
|
|
|
2017-02-07 04:52:19 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
2017-03-01 18:33:01 +00:00
|
|
|
|
FlowContent.Spacing = new Vector2(0, 5);
|
2017-02-07 04:52:19 +00:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-05-15 01:55:29 +00:00
|
|
|
|
new SettingsSlider<double, SizeSlider>
|
2017-02-07 04:52:19 +00:00
|
|
|
|
{
|
2017-03-18 14:22:03 +00:00
|
|
|
|
LabelText = "Menu cursor size",
|
2017-10-23 05:36:08 +00:00
|
|
|
|
Bindable = config.GetBindable<double>(OsuSetting.MenuCursorSize),
|
|
|
|
|
KeyboardStep = 0.1f
|
2017-02-07 04:52:19 +00:00
|
|
|
|
},
|
2017-05-15 01:55:29 +00:00
|
|
|
|
new SettingsSlider<double, SizeSlider>
|
2017-03-17 17:40:03 +00:00
|
|
|
|
{
|
2017-03-18 14:22:03 +00:00
|
|
|
|
LabelText = "Gameplay cursor size",
|
2017-10-23 05:36:08 +00:00
|
|
|
|
Bindable = config.GetBindable<double>(OsuSetting.GameplayCursorSize),
|
|
|
|
|
KeyboardStep = 0.1f
|
2017-03-17 17:40:03 +00:00
|
|
|
|
},
|
2017-05-15 03:21:43 +00:00
|
|
|
|
new SettingsCheckbox
|
2017-05-13 00:46:37 +00:00
|
|
|
|
{
|
2017-05-15 03:57:55 +00:00
|
|
|
|
LabelText = "Adjust gameplay cursor size based on current beatmap",
|
2017-05-15 03:21:43 +00:00
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.AutoCursorSize)
|
2017-05-13 00:46:37 +00:00
|
|
|
|
},
|
2017-02-07 04:52:19 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2017-04-21 11:59:04 +00:00
|
|
|
|
|
|
|
|
|
private class SizeSlider : OsuSliderBar<double>
|
|
|
|
|
{
|
|
|
|
|
public override string TooltipText => Current.Value.ToString(@"0.##x");
|
|
|
|
|
}
|
2017-02-07 04:52:19 +00:00
|
|
|
|
}
|
2017-03-18 14:22:03 +00:00
|
|
|
|
}
|