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