2019-01-24 16:43:03 +08:00
|
|
|
|
// 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;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
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
|
|
|
|
|
2018-12-12 20:30:21 +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
|
2019-01-18 04:40:22 +08:00
|
|
|
|
{
|
2019-01-22 09:06:30 +08:00
|
|
|
|
LabelText = "Adjust gameplay cursor size based on current beatmap",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.AutoCursorSize)
|
2019-01-18 04:40:22 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
2019-01-21 22:04:06 +08:00
|
|
|
|
{
|
2019-01-22 09:06:30 +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
|
|
|
|
{
|
2019-01-22 09:06:30 +08:00
|
|
|
|
LabelText = "Beatmap hitsounds",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.BeatmapHitsounds)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2018-09-03 10:51:03 +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();
|
2018-07-02 15:49:07 +08:00
|
|
|
|
|
|
|
|
|
// 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;
|
2018-07-02 15:49:07 +08:00
|
|
|
|
|
2019-02-22 19:13:38 +08:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 17:09:23 +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
|
|
|
|
|
2019-02-25 17:24:06 +08:00
|
|
|
|
private void itemAdded(SkinInfo s, bool existing)
|
2018-11-28 19:19:21 +08:00
|
|
|
|
{
|
|
|
|
|
if (existing)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
2018-09-03 10:51:03 +08:00
|
|
|
|
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
|
|
|
|
{
|
2018-11-14 18:29:20 +08:00
|
|
|
|
protected override OsuDropdown<SkinInfo> CreateDropdown() => new SkinDropdownControl { Items = Items };
|
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();
|
2018-11-14 17:02:38 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|