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

153 lines
5.5 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
2020-05-19 15:44:22 +08:00
using System;
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;
2020-05-24 12:44:11 +08:00
using osu.Framework.Logging;
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";
public override Drawable CreateIcon() => new SpriteIcon
{
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>();
2020-02-14 21:14:00 +08:00
[Resolved]
private SkinManager skins { get; set; }
2018-04-13 17:19:50 +08:00
private IBindable<WeakReference<SkinInfo>> managerUpdated;
2020-05-19 15:44:22 +08:00
private IBindable<WeakReference<SkinInfo>> managerRemoved;
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
2020-02-14 21:14:00 +08:00
private void load(OsuConfigManager config)
2018-04-13 17:19:50 +08:00
{
FlowContent.Spacing = new Vector2(0, 5);
2020-05-24 12:44:11 +08:00
2018-04-13 17:19:50 +08:00
Children = new Drawable[]
{
2018-11-14 17:02:38 +08:00
skinDropdown = new SkinSettingsDropdown(),
2020-05-24 22:15:24 +08:00
new ExportSkinButton(),
2019-09-03 06:28:51 +08:00
new SettingsSlider<float, SizeSlider>
2018-04-13 17:19:50 +08:00
{
LabelText = "Menu cursor size",
2019-09-03 06:28:51 +08:00
Bindable = config.GetBindable<float>(OsuSetting.MenuCursorSize),
2018-07-10 23:28:56 +08:00
KeyboardStep = 0.01f
2018-04-13 17:19:50 +08:00
},
2019-09-03 06:28:51 +08:00
new SettingsSlider<float, SizeSlider>
2018-04-13 17:19:50 +08:00
{
LabelText = "Gameplay cursor size",
2019-09-03 06:28:51 +08:00
Bindable = config.GetBindable<float>(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
},
};
managerUpdated = skins.ItemUpdated.GetBoundCopy();
managerUpdated.BindValueChanged(itemUpdated);
2020-05-19 15:44:22 +08:00
managerRemoved = skins.ItemRemoved.GetBoundCopy();
managerRemoved.BindValueChanged(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 itemUpdated(ValueChangedEvent<WeakReference<SkinInfo>> weakItem)
2018-04-13 17:19:50 +08:00
{
2020-05-19 15:44:22 +08:00
if (weakItem.NewValue.TryGetTarget(out var item))
Schedule(() => skinDropdown.Items = skinDropdown.Items.Where(i => !i.Equals(item)).Append(item).ToArray());
2020-05-19 15:44:22 +08:00
}
2018-04-13 17:19:50 +08:00
2020-05-19 15:44:22 +08:00
private void itemRemoved(ValueChangedEvent<WeakReference<SkinInfo>> weakItem)
{
if (weakItem.NewValue.TryGetTarget(out var item))
Schedule(() => skinDropdown.Items = skinDropdown.Items.Where(i => i.ID != item.ID).ToArray());
2018-04-13 17:19:50 +08:00
}
2019-09-03 06:28:51 +08:00
private class SizeSlider : OsuSliderBar<float>
2018-04-13 17:19:50 +08:00
{
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();
2018-11-14 17:02:38 +08:00
}
}
2020-05-24 22:15:24 +08:00
private class ExportSkinButton : SettingsButton
{
[Resolved]
private SkinManager skins { get; set; }
private Bindable<Skin> currentSkin;
[BackgroundDependencyLoader]
private void load()
{
Text = "Export selected skin";
Action = export;
currentSkin = skins.CurrentSkin.GetBoundCopy();
currentSkin.BindValueChanged(skin => Enabled.Value = skin.NewValue.SkinInfo.ID > 0, true);
}
private void export()
{
try
{
skins.Export(currentSkin.Value.SkinInfo);
}
catch (Exception e)
{
Logger.Log($"Could not export current skin: {e.Message}", level: LogLevel.Error);
}
}
}
2018-04-13 17:19:50 +08:00
}
}