2019-09-03 08:57:34 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using System;
|
2021-05-10 13:43:48 +00:00
|
|
|
|
using System.Collections.Generic;
|
2021-10-22 05:41:59 +00:00
|
|
|
|
using System.IO;
|
2021-05-10 13:43:48 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2021-10-22 05:41:59 +00:00
|
|
|
|
using JetBrains.Annotations;
|
2021-05-10 13:43:48 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Audio.Sample;
|
2019-09-03 08:57:34 +00:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2020-07-17 07:54:30 +00:00
|
|
|
|
using osu.Framework.Graphics.OpenGL.Textures;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2021-10-01 13:15:10 +00:00
|
|
|
|
using osu.Framework.Logging;
|
2019-08-23 11:32:43 +00:00
|
|
|
|
using osu.Game.Audio;
|
2021-11-29 09:02:09 +00:00
|
|
|
|
using osu.Game.Database;
|
2021-05-10 13:43:48 +00:00
|
|
|
|
using osu.Game.IO;
|
|
|
|
|
using osu.Game.Screens.Play.HUD;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
|
{
|
2019-04-25 08:36:17 +00:00
|
|
|
|
public abstract class Skin : IDisposable, ISkin
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2022-03-22 09:36:42 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A texture store which can be used to perform user file loops for this skin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[CanBeNull]
|
|
|
|
|
protected TextureStore Textures { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A sample store which can be used to perform user file loops for this skin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[CanBeNull]
|
|
|
|
|
protected ISampleStore Samples { get; set; }
|
|
|
|
|
|
2022-01-26 04:37:33 +00:00
|
|
|
|
public readonly Live<SkinInfo> SkinInfo;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-10-22 05:41:59 +00:00
|
|
|
|
public SkinConfiguration Configuration { get; set; }
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-05-10 13:43:48 +00:00
|
|
|
|
public IDictionary<SkinnableTarget, SkinnableInfo[]> DrawableComponentInfo => drawableComponentInfo;
|
|
|
|
|
|
|
|
|
|
private readonly Dictionary<SkinnableTarget, SkinnableInfo[]> drawableComponentInfo = new Dictionary<SkinnableTarget, SkinnableInfo[]>();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-02-18 09:32:28 +00:00
|
|
|
|
public abstract ISample GetSample(ISampleInfo sampleInfo);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-07-17 07:54:30 +00:00
|
|
|
|
public Texture GetTexture(string componentName) => GetTexture(componentName, default, default);
|
|
|
|
|
|
|
|
|
|
public abstract Texture GetTexture(string componentName, WrapMode wrapModeS, WrapMode wrapModeT);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-09-03 08:57:34 +00:00
|
|
|
|
public abstract IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-03-22 09:36:42 +00:00
|
|
|
|
private readonly RealmBackedResourceStore skinStorage;
|
|
|
|
|
|
2021-10-22 05:41:59 +00:00
|
|
|
|
protected Skin(SkinInfo skin, IStorageResourceProvider resources, [CanBeNull] Stream configurationStream = null)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2022-03-22 09:36:42 +00:00
|
|
|
|
if (resources.RealmAccess != null)
|
|
|
|
|
{
|
|
|
|
|
SkinInfo = skin.ToLive(resources.RealmAccess);
|
|
|
|
|
skinStorage = new RealmBackedResourceStore(skin, resources.Files);
|
2021-12-15 02:16:37 +00:00
|
|
|
|
|
2022-03-22 09:36:42 +00:00
|
|
|
|
var samples = resources?.AudioManager?.GetSampleStore(skinStorage);
|
|
|
|
|
if (samples != null)
|
|
|
|
|
samples.PlaybackConcurrency = OsuGameBase.SAMPLE_CONCURRENCY;
|
2021-10-22 05:41:59 +00:00
|
|
|
|
|
2022-03-22 09:36:42 +00:00
|
|
|
|
Samples = samples;
|
|
|
|
|
Textures = new TextureStore(resources?.CreateTextureLoaderStore(skinStorage));
|
|
|
|
|
|
|
|
|
|
skinStorage.AddExtension("ogg");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SkinInfo = skin.ToLiveUnmanaged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
configurationStream ??= skinStorage?.GetStream(@"skin.ini");
|
2021-10-22 05:41:59 +00:00
|
|
|
|
|
|
|
|
|
if (configurationStream != null)
|
2021-10-24 14:43:37 +00:00
|
|
|
|
// stream will be closed after use by LineBufferedReader.
|
2021-10-22 05:41:59 +00:00
|
|
|
|
ParseConfigurationStream(configurationStream);
|
|
|
|
|
else
|
|
|
|
|
Configuration = new SkinConfiguration();
|
2021-05-10 13:43:48 +00:00
|
|
|
|
|
2021-11-29 09:02:09 +00:00
|
|
|
|
// skininfo files may be null for default skin.
|
2022-03-22 09:36:42 +00:00
|
|
|
|
foreach (SkinnableTarget skinnableTarget in Enum.GetValues(typeof(SkinnableTarget)))
|
2021-05-11 02:54:45 +00:00
|
|
|
|
{
|
2022-03-22 09:36:42 +00:00
|
|
|
|
string filename = $"{skinnableTarget}.json";
|
2021-05-11 02:54:45 +00:00
|
|
|
|
|
2022-03-22 09:36:42 +00:00
|
|
|
|
byte[] bytes = skinStorage?.Get(filename);
|
2021-05-11 02:54:45 +00:00
|
|
|
|
|
2022-03-22 09:36:42 +00:00
|
|
|
|
if (bytes == null)
|
|
|
|
|
continue;
|
2021-05-11 02:54:45 +00:00
|
|
|
|
|
2022-03-22 09:36:42 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
string jsonContent = Encoding.UTF8.GetString(bytes);
|
|
|
|
|
var deserializedContent = JsonConvert.DeserializeObject<IEnumerable<SkinnableInfo>>(jsonContent);
|
2021-05-11 02:54:45 +00:00
|
|
|
|
|
2022-03-22 09:36:42 +00:00
|
|
|
|
if (deserializedContent == null)
|
2021-11-29 09:02:09 +00:00
|
|
|
|
continue;
|
2021-05-11 02:54:45 +00:00
|
|
|
|
|
2022-03-22 09:36:42 +00:00
|
|
|
|
DrawableComponentInfo[skinnableTarget] = deserializedContent.ToArray();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error(ex, "Failed to load skin configuration.");
|
2021-10-01 13:15:10 +00:00
|
|
|
|
}
|
2022-03-22 09:36:42 +00:00
|
|
|
|
}
|
2021-05-11 02:54:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-22 05:41:59 +00:00
|
|
|
|
protected virtual void ParseConfigurationStream(Stream stream)
|
|
|
|
|
{
|
|
|
|
|
using (LineBufferedReader reader = new LineBufferedReader(stream, true))
|
|
|
|
|
Configuration = new LegacySkinDecoder().Decode(reader);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-13 04:09:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove all stored customisations for the provided target.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="targetContainer">The target container to reset.</param>
|
2021-05-13 08:25:51 +00:00
|
|
|
|
public void ResetDrawableTarget(ISkinnableTarget targetContainer)
|
2021-05-11 02:54:45 +00:00
|
|
|
|
{
|
|
|
|
|
DrawableComponentInfo.Remove(targetContainer.Target);
|
2021-05-10 13:43:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-13 04:09:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Update serialised information for the provided target.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="targetContainer">The target container to serialise to this skin.</param>
|
2021-05-13 08:25:51 +00:00
|
|
|
|
public void UpdateDrawableTarget(ISkinnableTarget targetContainer)
|
2021-05-10 13:43:48 +00:00
|
|
|
|
{
|
2021-05-13 04:14:49 +00:00
|
|
|
|
DrawableComponentInfo[targetContainer.Target] = targetContainer.CreateSkinnableInfo().ToArray();
|
2021-05-10 13:43:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual Drawable GetDrawableComponent(ISkinComponent component)
|
|
|
|
|
{
|
|
|
|
|
switch (component)
|
|
|
|
|
{
|
|
|
|
|
case SkinnableTargetComponent target:
|
2021-05-13 04:09:33 +00:00
|
|
|
|
if (!DrawableComponentInfo.TryGetValue(target.Target, out var skinnableInfo))
|
2021-05-10 13:43:48 +00:00
|
|
|
|
return null;
|
|
|
|
|
|
2021-05-13 09:51:23 +00:00
|
|
|
|
return new SkinnableTargetComponentsContainer
|
2021-05-10 13:43:48 +00:00
|
|
|
|
{
|
|
|
|
|
ChildrenEnumerable = skinnableInfo.Select(i => i.CreateInstance())
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Disposal
|
|
|
|
|
|
|
|
|
|
~Skin()
|
|
|
|
|
{
|
2021-03-02 07:07:51 +00:00
|
|
|
|
// required to potentially clean up sample store from audio hierarchy.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
Dispose(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
Dispose(true);
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool isDisposed;
|
|
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
if (isDisposed)
|
|
|
|
|
return;
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
isDisposed = true;
|
2022-03-22 09:36:42 +00:00
|
|
|
|
|
|
|
|
|
Textures?.Dispose();
|
|
|
|
|
Samples?.Dispose();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|