2019-09-03 16:57:34 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2019-06-30 22:52:39 +08:00
|
|
|
|
using System.IO;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Linq.Expressions;
|
2019-05-28 17:59:21 +08:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
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.Textures;
|
2019-08-29 15:38:39 +08:00
|
|
|
|
using osu.Framework.IO.Stores;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2019-08-23 19:32:43 +08:00
|
|
|
|
using osu.Game.Audio;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
using osu.Game.IO.Archives;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
|
{
|
|
|
|
|
public class SkinManager : ArchiveModelManager<SkinInfo, SkinFileInfo>, ISkinSource
|
|
|
|
|
{
|
|
|
|
|
private readonly AudioManager audio;
|
|
|
|
|
|
2019-08-29 15:38:39 +08:00
|
|
|
|
private readonly IResourceStore<byte[]> legacyDefaultResources;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public readonly Bindable<Skin> CurrentSkin = new Bindable<Skin>(new DefaultSkin());
|
|
|
|
|
public readonly Bindable<SkinInfo> CurrentSkinInfo = new Bindable<SkinInfo>(SkinInfo.Default) { Default = SkinInfo.Default };
|
|
|
|
|
|
|
|
|
|
public override string[] HandledExtensions => new[] { ".osk" };
|
|
|
|
|
|
2018-11-28 18:16:05 +08:00
|
|
|
|
protected override string[] HashableFileTypes => new[] { ".ini" };
|
|
|
|
|
|
2018-08-31 17:28:53 +08:00
|
|
|
|
protected override string ImportFromStablePath => "Skins";
|
|
|
|
|
|
2019-08-29 15:38:39 +08:00
|
|
|
|
public SkinManager(Storage storage, DatabaseContextFactory contextFactory, IIpcHost importHost, AudioManager audio, IResourceStore<byte[]> legacyDefaultResources)
|
2018-11-28 18:01:22 +08:00
|
|
|
|
: base(storage, contextFactory, new SkinStore(contextFactory, storage), importHost)
|
|
|
|
|
{
|
|
|
|
|
this.audio = audio;
|
2019-08-29 15:38:39 +08:00
|
|
|
|
this.legacyDefaultResources = legacyDefaultResources;
|
2018-11-28 18:01:22 +08:00
|
|
|
|
|
2020-05-19 15:44:22 +08:00
|
|
|
|
ItemRemoved.BindValueChanged(weakRemovedInfo =>
|
2018-11-28 18:01:22 +08:00
|
|
|
|
{
|
2020-05-19 15:44:22 +08:00
|
|
|
|
if (weakRemovedInfo.NewValue.TryGetTarget(out var removedInfo))
|
|
|
|
|
{
|
|
|
|
|
// check the removed skin is not the current user choice. if it is, switch back to default.
|
|
|
|
|
if (removedInfo.ID == CurrentSkinInfo.Value.ID)
|
|
|
|
|
CurrentSkinInfo.Value = SkinInfo.Default;
|
|
|
|
|
}
|
|
|
|
|
});
|
2018-11-28 18:01:22 +08:00
|
|
|
|
|
2019-07-26 18:29:06 +08:00
|
|
|
|
CurrentSkinInfo.ValueChanged += skin => CurrentSkin.Value = GetSkin(skin.NewValue);
|
2019-02-22 16:51:39 +08:00
|
|
|
|
CurrentSkin.ValueChanged += skin =>
|
2018-11-28 18:01:22 +08:00
|
|
|
|
{
|
2019-02-22 16:51:39 +08:00
|
|
|
|
if (skin.NewValue.SkinInfo != CurrentSkinInfo.Value)
|
2018-11-28 18:01:22 +08:00
|
|
|
|
throw new InvalidOperationException($"Setting {nameof(CurrentSkin)}'s value directly is not supported. Use {nameof(CurrentSkinInfo)} instead.");
|
|
|
|
|
|
|
|
|
|
SourceChanged?.Invoke();
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 12:49:54 +08:00
|
|
|
|
protected override bool ShouldDeleteArchive(string path) => Path.GetExtension(path)?.ToLowerInvariant() == ".osk";
|
2019-06-27 20:41:11 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
2018-08-31 17:28:53 +08:00
|
|
|
|
/// Returns a list of all usable <see cref="SkinInfo"/>s. Includes the special default skin plus all skins from <see cref="GetAllUserSkins"/>.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>A list of available <see cref="SkinInfo"/>.</returns>
|
|
|
|
|
public List<SkinInfo> GetAllUsableSkins()
|
|
|
|
|
{
|
2018-08-31 17:28:53 +08:00
|
|
|
|
var userSkins = GetAllUserSkins();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
userSkins.Insert(0, SkinInfo.Default);
|
2019-08-29 15:38:39 +08:00
|
|
|
|
userSkins.Insert(1, DefaultLegacySkin.Info);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return userSkins;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-31 17:28:53 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns a list of all usable <see cref="SkinInfo"/>s that have been loaded by the user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>A list of available <see cref="SkinInfo"/>.</returns>
|
|
|
|
|
public List<SkinInfo> GetAllUserSkins() => ModelStore.ConsumableItems.Where(s => !s.DeletePending).ToList();
|
|
|
|
|
|
2018-11-28 18:01:22 +08:00
|
|
|
|
protected override SkinInfo CreateModel(ArchiveReader archive) => new SkinInfo { Name = archive.Name };
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-05-28 17:59:21 +08:00
|
|
|
|
protected override async Task Populate(SkinInfo model, ArchiveReader archive, CancellationToken cancellationToken = default)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-05-28 17:59:21 +08:00
|
|
|
|
await base.Populate(model, archive, cancellationToken);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-07-26 18:29:06 +08:00
|
|
|
|
Skin reference = GetSkin(model);
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
if (!string.IsNullOrEmpty(reference.Configuration.SkinInfo.Name))
|
|
|
|
|
{
|
|
|
|
|
model.Name = reference.Configuration.SkinInfo.Name;
|
|
|
|
|
model.Creator = reference.Configuration.SkinInfo.Creator;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
model.Name = model.Name.Replace(".osk", "");
|
2019-11-12 18:35:08 +08:00
|
|
|
|
model.Creator ??= "Unknown";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieve a <see cref="Skin"/> instance for the provided <see cref="SkinInfo"/>
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="skinInfo">The skin to lookup.</param>
|
|
|
|
|
/// <returns>A <see cref="Skin"/> instance correlating to the provided <see cref="SkinInfo"/>.</returns>
|
2019-07-26 18:29:06 +08:00
|
|
|
|
public Skin GetSkin(SkinInfo skinInfo)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
if (skinInfo == SkinInfo.Default)
|
|
|
|
|
return new DefaultSkin();
|
|
|
|
|
|
2019-08-29 15:38:39 +08:00
|
|
|
|
if (skinInfo == DefaultLegacySkin.Info)
|
|
|
|
|
return new DefaultLegacySkin(legacyDefaultResources, audio);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return new LegacySkin(skinInfo, Files.Store, audio);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Perform a lookup query on available <see cref="SkinInfo"/>s.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="query">The query.</param>
|
|
|
|
|
/// <returns>The first result for the provided query, or null if no results were found.</returns>
|
|
|
|
|
public SkinInfo Query(Expression<Func<SkinInfo, bool>> query) => ModelStore.ConsumableItems.AsNoTracking().FirstOrDefault(query);
|
|
|
|
|
|
|
|
|
|
public event Action SourceChanged;
|
|
|
|
|
|
2019-08-30 13:39:02 +08:00
|
|
|
|
public Drawable GetDrawableComponent(ISkinComponent component) => CurrentSkin.Value.GetDrawableComponent(component);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public Texture GetTexture(string componentName) => CurrentSkin.Value.GetTexture(componentName);
|
|
|
|
|
|
2019-08-23 19:32:43 +08:00
|
|
|
|
public SampleChannel GetSample(ISampleInfo sampleInfo) => CurrentSkin.Value.GetSample(sampleInfo);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-09-03 16:57:34 +08:00
|
|
|
|
public IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup) => CurrentSkin.Value.GetConfig<TLookup, TValue>(lookup);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|