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