1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/Skinning/SkinManager.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

320 lines
12 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
2022-06-17 15:37:17 +08:00
#nullable disable
2018-02-23 12:22:33 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
2018-02-23 12:22:33 +08:00
using System.Linq.Expressions;
using System.Threading;
using System.Threading.Tasks;
using JetBrains.Annotations;
2018-02-22 16:16:48 +08:00
using osu.Framework.Audio;
2018-03-20 15:26:36 +08:00
using osu.Framework.Audio.Sample;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-03-20 15:26:36 +08:00
using osu.Framework.Graphics;
2022-08-02 18:50:57 +08:00
using osu.Framework.Graphics.Rendering;
using osu.Framework.Graphics.Textures;
using osu.Framework.IO.Stores;
using osu.Framework.Platform;
using osu.Framework.Testing;
using osu.Framework.Threading;
2020-11-11 12:05:03 +08:00
using osu.Framework.Utils;
2019-08-23 19:32:43 +08:00
using osu.Game.Audio;
using osu.Game.Database;
using osu.Game.IO;
using osu.Game.Overlays.Notifications;
using osu.Game.Utils;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Skinning
{
/// <summary>
/// Handles the storage and retrieval of <see cref="Skin"/>s.
/// </summary>
/// <remarks>
/// This is also exposed and cached as <see cref="ISkinSource"/> to allow for any component to potentially have skinning support.
/// For gameplay components, see <see cref="RulesetSkinProvidingContainer"/> which adds extra legacy and toggle logic that may affect the lookup process.
/// </remarks>
[ExcludeFromDynamicCompile]
public class SkinManager : ModelManager<SkinInfo>, ISkinSource, IStorageResourceProvider, IModelImporter<SkinInfo>
{
2018-02-22 16:16:48 +08:00
private readonly AudioManager audio;
2018-04-13 17:19:50 +08:00
private readonly Scheduler scheduler;
private readonly GameHost host;
private readonly IResourceStore<byte[]> resources;
public readonly Bindable<Skin> CurrentSkin = new Bindable<Skin>();
2021-11-29 16:15:26 +08:00
2022-09-17 23:14:49 +08:00
public readonly Bindable<Live<SkinInfo>> CurrentSkinInfo = new Bindable<Live<SkinInfo>>(TrianglesSkin.CreateInfo().ToLiveUnmanaged())
2021-11-29 16:15:26 +08:00
{
2022-09-17 23:14:49 +08:00
Default = TrianglesSkin.CreateInfo().ToLiveUnmanaged()
2021-11-29 16:15:26 +08:00
};
2018-04-13 17:19:50 +08:00
private readonly SkinImporter skinImporter;
private readonly IResourceStore<byte[]> userFiles;
/// <summary>
2022-09-18 17:18:10 +08:00
/// The default "triangles" skin.
/// </summary>
public Skin DefaultSkinTriangles { get; }
/// <summary>
2022-09-18 17:18:10 +08:00
/// The default "classic" skin.
/// </summary>
2022-09-18 17:18:10 +08:00
public Skin DefaultClassicSkin { get; }
public SkinManager(Storage storage, RealmAccess realm, GameHost host, IResourceStore<byte[]> resources, AudioManager audio, Scheduler scheduler)
: base(storage, realm)
2018-11-28 18:01:22 +08:00
{
this.audio = audio;
this.scheduler = scheduler;
this.host = host;
this.resources = resources;
2018-11-28 18:01:22 +08:00
userFiles = new StorageBackedResourceStore(storage.GetStorageForDirectory("files"));
2022-06-16 18:48:18 +08:00
skinImporter = new SkinImporter(storage, realm, this)
{
PostNotification = obj => PostNotification?.Invoke(obj),
};
2021-11-29 16:15:26 +08:00
var defaultSkins = new[]
{
2022-09-18 17:18:10 +08:00
DefaultClassicSkin = new DefaultLegacySkin(this),
2022-09-17 23:14:49 +08:00
DefaultSkinTriangles = new TrianglesSkin(this),
2021-11-29 16:15:26 +08:00
};
// Ensure the default entries are present.
realm.Write(r =>
2021-11-29 16:15:26 +08:00
{
foreach (var skin in defaultSkins)
{
if (r.Find<SkinInfo>(skin.SkinInfo.ID) == null)
r.Add(skin.SkinInfo.Value);
2021-11-29 16:15:26 +08:00
}
});
CurrentSkinInfo.ValueChanged += skin =>
{
CurrentSkin.Value = skin.NewValue.PerformRead(GetSkin);
};
CurrentSkin.Value = DefaultSkinTriangles;
2018-11-28 18:01:22 +08:00
CurrentSkin.ValueChanged += skin =>
{
if (!skin.NewValue.SkinInfo.Equals(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();
};
}
2018-04-13 17:19:50 +08:00
2020-11-11 12:05:03 +08:00
public void SelectRandomSkin()
{
Realm.Run(r =>
2020-11-11 12:05:03 +08:00
{
// choose from only user skins, removing the current selection to ensure a new one is chosen.
var randomChoices = r.All<SkinInfo>()
.Where(s => !s.DeletePending && s.ID != CurrentSkinInfo.Value.ID)
.ToArray();
2020-11-11 12:05:03 +08:00
if (randomChoices.Length == 0)
{
2022-09-17 23:14:49 +08:00
CurrentSkinInfo.Value = TrianglesSkin.CreateInfo().ToLiveUnmanaged();
return;
}
var chosen = randomChoices.ElementAt(RNG.Next(0, randomChoices.Length));
CurrentSkinInfo.Value = chosen.ToLive(Realm);
});
}
2018-04-13 17:19:50 +08:00
2018-02-22 16:16:48 +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>
public Skin GetSkin(SkinInfo skinInfo) => skinInfo.CreateInstance(this);
/// <summary>
/// Ensure that the current skin is in a state it can accept user modifications.
/// This will create a copy of any internal skin and being tracking in the database if not already.
/// </summary>
/// <returns>
/// Whether a new skin was created to allow for mutation.
/// </returns>
public bool EnsureMutableSkin()
2018-02-22 16:16:48 +08:00
{
return CurrentSkinInfo.Value.PerformRead(s =>
{
if (!s.Protected)
return false;
string[] existingSkinNames = Realm.Run(r => r.All<SkinInfo>()
.Where(skin => !skin.DeletePending)
.AsEnumerable()
.Select(skin => skin.Name).ToArray());
// if the user is attempting to save one of the default skin implementations, create a copy first.
var skinInfo = new SkinInfo
{
Creator = s.Creator,
InstantiationInfo = s.InstantiationInfo,
Name = NamingUtils.GetNextBestName(existingSkinNames, $@"{s.Name} (modified)")
};
var result = skinImporter.ImportModel(skinInfo);
if (result != null)
{
// save once to ensure the required json content is populated.
// currently this only happens on save.
result.PerformRead(skin => Save(skin.CreateInstance(this)));
CurrentSkinInfo.Value = result;
return true;
}
return false;
});
2018-02-22 16:16:48 +08:00
}
2018-04-13 17:19:50 +08:00
2021-05-10 21:43:48 +08:00
public void Save(Skin skin)
{
if (!skin.SkinInfo.IsManaged)
throw new InvalidOperationException($"Attempting to save a skin which is not yet tracked. Call {nameof(EnsureMutableSkin)} first.");
2021-05-10 21:43:48 +08:00
skinImporter.Save(skin);
2021-05-10 21:43:48 +08:00
}
2018-02-23 12:22:33 +08:00
/// <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 Live<SkinInfo> Query(Expression<Func<SkinInfo, bool>> query)
{
return Realm.Run(r => r.All<SkinInfo>().FirstOrDefault(query)?.ToLive(Realm));
}
2018-04-13 17:19:50 +08:00
2018-03-20 15:26:36 +08:00
public event Action SourceChanged;
2018-04-13 17:19:50 +08:00
2021-06-06 11:17:55 +08:00
public Drawable GetDrawableComponent(ISkinComponent component) => lookupWithFallback(s => s.GetDrawableComponent(component));
2018-04-13 17:19:50 +08:00
2021-06-06 11:17:55 +08:00
public Texture GetTexture(string componentName, WrapMode wrapModeS, WrapMode wrapModeT) => lookupWithFallback(s => s.GetTexture(componentName, wrapModeS, wrapModeT));
2018-04-13 17:19:50 +08:00
2021-06-06 11:17:55 +08:00
public ISample GetSample(ISampleInfo sampleInfo) => lookupWithFallback(s => s.GetSample(sampleInfo));
2018-04-13 17:19:50 +08:00
2021-06-06 11:17:55 +08:00
public IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup) => lookupWithFallback(s => s.GetConfig<TLookup, TValue>(lookup));
public ISkin FindProvider(Func<ISkin, bool> lookupFunction)
{
foreach (var source in AllSources)
{
if (lookupFunction(source))
return source;
}
return null;
}
2021-06-06 11:17:55 +08:00
public IEnumerable<ISkin> AllSources
{
get
{
yield return CurrentSkin.Value;
2022-09-18 17:18:10 +08:00
if (CurrentSkin.Value is LegacySkin && CurrentSkin.Value != DefaultClassicSkin)
yield return DefaultClassicSkin;
if (CurrentSkin.Value != DefaultSkinTriangles)
yield return DefaultSkinTriangles;
}
}
private T lookupWithFallback<T>(Func<ISkin, T> lookupFunction)
2021-06-06 11:17:55 +08:00
where T : class
{
foreach (var source in AllSources)
{
if (lookupFunction(source) is T skinSourced)
return skinSourced;
}
2021-06-06 11:17:55 +08:00
return null;
2021-06-06 11:17:55 +08:00
}
2021-05-31 16:25:21 +08:00
#region IResourceStorageProvider
2022-08-02 18:50:57 +08:00
IRenderer IStorageResourceProvider.Renderer => host.Renderer;
AudioManager IStorageResourceProvider.AudioManager => audio;
IResourceStore<byte[]> IStorageResourceProvider.Resources => resources;
IResourceStore<byte[]> IStorageResourceProvider.Files => userFiles;
RealmAccess IStorageResourceProvider.RealmAccess => Realm;
IResourceStore<TextureUpload> IStorageResourceProvider.CreateTextureLoaderStore(IResourceStore<byte[]> underlyingStore) => host.CreateTextureLoaderStore(underlyingStore);
#endregion
#region Implementation of IModelImporter<SkinInfo>
2022-06-20 17:21:37 +08:00
public Action<IEnumerable<Live<SkinInfo>>> PresentImport
{
2022-06-20 17:21:37 +08:00
set => skinImporter.PresentImport = value;
}
public Task Import(params string[] paths) => skinImporter.Import(paths);
public Task Import(params ImportTask[] tasks) => skinImporter.Import(tasks);
public IEnumerable<string> HandledExtensions => skinImporter.HandledExtensions;
public Task<IEnumerable<Live<SkinInfo>>> Import(ProgressNotification notification, params ImportTask[] tasks) => skinImporter.Import(notification, tasks);
public Task<Live<SkinInfo>> ImportAsUpdate(ProgressNotification notification, ImportTask task, SkinInfo original) => skinImporter.ImportAsUpdate(notification, task, original);
public Task<Live<SkinInfo>> Import(ImportTask task, bool batchImport = false, CancellationToken cancellationToken = default) => skinImporter.Import(task, batchImport, cancellationToken);
#endregion
public void Delete([CanBeNull] Expression<Func<SkinInfo, bool>> filter = null, bool silent = false)
{
Realm.Run(r =>
{
var items = r.All<SkinInfo>()
.Where(s => !s.Protected && !s.DeletePending);
if (filter != null)
items = items.Where(filter);
// check the removed skin is not the current user choice. if it is, switch back to default.
Guid currentUserSkin = CurrentSkinInfo.Value.ID;
if (items.Any(s => s.ID == currentUserSkin))
2022-09-17 23:14:49 +08:00
scheduler.Add(() => CurrentSkinInfo.Value = TrianglesSkin.CreateInfo().ToLiveUnmanaged());
Delete(items.ToList(), silent);
});
}
public void SetSkinFromConfiguration(string guidString)
{
Live<SkinInfo> skinInfo = null;
if (Guid.TryParse(guidString, out var guid))
skinInfo = Query(s => s.ID == guid);
if (skinInfo == null)
{
if (guid == SkinInfo.CLASSIC_SKIN)
2022-09-18 17:18:10 +08:00
skinInfo = DefaultClassicSkin.SkinInfo;
}
CurrentSkinInfo.Value = skinInfo ?? DefaultSkinTriangles.SkinInfo;
}
}
}