1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:07:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/SkinSection.cs

116 lines
4.3 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using System.Linq;
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
using osu.Game.Skinning;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections
{
public class SkinSection : SettingsSection
{
2018-11-14 17:02:38 +08:00
private SkinSettingsDropdown skinDropdown;
2018-04-13 17:19:50 +08:00
public override string Header => "Skin";
2019-04-02 18:55:24 +08:00
public override IconUsage Icon => FontAwesome.Solid.PaintBrush;
2018-04-13 17:19:50 +08:00
private readonly Bindable<SkinInfo> dropdownBindable = new Bindable<SkinInfo> { Default = SkinInfo.Default };
2018-11-14 17:02:38 +08:00
private readonly Bindable<int> configBindable = new Bindable<int>();
2018-04-13 17:19:50 +08:00
private SkinManager skins;
[BackgroundDependencyLoader]
private void load(OsuConfigManager config, SkinManager skins)
{
this.skins = skins;
FlowContent.Spacing = new Vector2(0, 5);
Children = new Drawable[]
{
2018-11-14 17:02:38 +08:00
skinDropdown = new SkinSettingsDropdown(),
2018-04-13 17:19:50 +08:00
new SettingsSlider<double, SizeSlider>
{
LabelText = "Menu cursor size",
Bindable = config.GetBindable<double>(OsuSetting.MenuCursorSize),
2018-07-10 23:28:56 +08:00
KeyboardStep = 0.01f
2018-04-13 17:19:50 +08:00
},
new SettingsSlider<double, SizeSlider>
{
LabelText = "Gameplay cursor size",
Bindable = config.GetBindable<double>(OsuSetting.GameplayCursorSize),
2018-07-10 23:28:56 +08:00
KeyboardStep = 0.01f
2018-04-13 17:19:50 +08:00
},
new SettingsCheckbox
{
LabelText = "Adjust gameplay cursor size based on current beatmap",
Bindable = config.GetBindable<bool>(OsuSetting.AutoCursorSize)
},
new SettingsCheckbox
2019-01-21 22:04:06 +08:00
{
LabelText = "Beatmap skins",
Bindable = config.GetBindable<bool>(OsuSetting.BeatmapSkins)
2019-01-21 22:04:06 +08:00
},
new SettingsCheckbox
2018-04-13 17:19:50 +08:00
{
LabelText = "Beatmap hitsounds",
Bindable = config.GetBindable<bool>(OsuSetting.BeatmapHitsounds)
2018-04-13 17:19:50 +08:00
},
};
skins.ItemAdded += itemAdded;
skins.ItemRemoved += itemRemoved;
2018-04-13 17:19:50 +08:00
2018-11-14 17:02:38 +08:00
config.BindWith(OsuSetting.Skin, configBindable);
2018-04-13 17:19:50 +08:00
2018-11-14 17:02:38 +08:00
skinDropdown.Bindable = dropdownBindable;
2018-11-14 18:29:20 +08:00
skinDropdown.Items = skins.GetAllUsableSkins().ToArray();
// Todo: This should not be necessary when OsuConfigManager is databased
2018-11-14 18:29:20 +08:00
if (skinDropdown.Items.All(s => s.ID != configBindable.Value))
2018-11-14 17:02:38 +08:00
configBindable.Value = 0;
configBindable.BindValueChanged(id => dropdownBindable.Value = skinDropdown.Items.Single(s => s.ID == id.NewValue), true);
dropdownBindable.BindValueChanged(skin => configBindable.Value = skin.NewValue.ID);
2018-04-13 17:19:50 +08:00
}
private void itemRemoved(SkinInfo s) => Schedule(() => skinDropdown.Items = skinDropdown.Items.Where(i => i.ID != s.ID).ToArray());
2018-11-28 19:19:21 +08:00
private void itemAdded(SkinInfo s) => Schedule(() => skinDropdown.Items = skinDropdown.Items.Append(s).ToArray());
2018-04-13 17:19:50 +08:00
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
if (skins != null)
{
skins.ItemAdded -= itemAdded;
skins.ItemRemoved -= itemRemoved;
2018-04-13 17:19:50 +08:00
}
}
private class SizeSlider : OsuSliderBar<double>
{
public override string TooltipText => Current.Value.ToString(@"0.##x");
}
2018-11-14 17:02:38 +08:00
2018-11-14 18:29:20 +08:00
private class SkinSettingsDropdown : SettingsDropdown<SkinInfo>
2018-11-14 17:02:38 +08:00
{
protected override OsuDropdown<SkinInfo> CreateDropdown() => new SkinDropdownControl();
2018-11-14 17:02:38 +08:00
private class SkinDropdownControl : DropdownControl
{
2018-11-14 18:29:20 +08:00
protected override string GenerateItemText(SkinInfo item) => item.ToString();
2019-07-30 18:28:02 +08:00
protected override DropdownMenu CreateMenu() => base.CreateMenu().With(m => m.MaxHeight = 200);
2018-11-14 17:02:38 +08:00
}
}
2018-04-13 17:19:50 +08:00
}
}