2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2021-06-11 17:29:28 +08:00
|
|
|
|
using System.Collections.Generic;
|
2021-06-10 17:17:51 +08:00
|
|
|
|
using System.Collections.Specialized;
|
|
|
|
|
using System.Linq;
|
2021-05-31 17:00:06 +08:00
|
|
|
|
using JetBrains.Annotations;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
2019-09-03 16:57:34 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-07-17 15:54:30 +08:00
|
|
|
|
using osu.Framework.Graphics.OpenGL.Textures;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2019-08-23 19:32:43 +08:00
|
|
|
|
using osu.Game.Audio;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
|
{
|
2019-02-05 16:50:32 +08:00
|
|
|
|
/// <summary>
|
2019-08-26 11:21:11 +08:00
|
|
|
|
/// A container which adds a local <see cref="ISkinSource"/> to the hierarchy.
|
2019-02-05 16:50:32 +08:00
|
|
|
|
/// </summary>
|
2019-08-26 11:21:11 +08:00
|
|
|
|
public class SkinProvidingContainer : Container, ISkinSource
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public event Action SourceChanged;
|
|
|
|
|
|
2021-06-10 01:36:34 +08:00
|
|
|
|
/// <summary>
|
2021-06-11 16:25:07 +08:00
|
|
|
|
/// Skins which should be exposed by this container, in order of lookup precedence.
|
2021-06-10 01:36:34 +08:00
|
|
|
|
/// </summary>
|
2021-06-10 17:17:51 +08:00
|
|
|
|
protected readonly BindableList<ISkin> SkinSources = new BindableList<ISkin>();
|
2019-06-29 09:45:11 +08:00
|
|
|
|
|
2021-06-11 17:29:28 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A dictionary mapping each <see cref="ISkin"/> from the <see cref="SkinSources"/>
|
|
|
|
|
/// to one that performs the "allow lookup" checks before proceeding with a lookup.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly Dictionary<ISkin, DisableableSkinSource> disableableSkinSources = new Dictionary<ISkin, DisableableSkinSource>();
|
|
|
|
|
|
2021-05-31 17:00:06 +08:00
|
|
|
|
[CanBeNull]
|
2019-02-05 16:50:32 +08:00
|
|
|
|
private ISkinSource fallbackSource;
|
|
|
|
|
|
2019-08-30 13:39:02 +08:00
|
|
|
|
protected virtual bool AllowDrawableLookup(ISkinComponent component) => true;
|
2019-08-26 11:21:11 +08:00
|
|
|
|
|
|
|
|
|
protected virtual bool AllowTextureLookup(string componentName) => true;
|
|
|
|
|
|
2019-08-28 15:36:20 +08:00
|
|
|
|
protected virtual bool AllowSampleLookup(ISampleInfo componentName) => true;
|
2019-08-26 11:21:11 +08:00
|
|
|
|
|
|
|
|
|
protected virtual bool AllowConfigurationLookup => true;
|
|
|
|
|
|
2021-01-14 02:07:07 +08:00
|
|
|
|
protected virtual bool AllowColourLookup => true;
|
|
|
|
|
|
2021-06-10 16:56:13 +08:00
|
|
|
|
/// <summary>
|
2021-06-11 16:25:07 +08:00
|
|
|
|
/// Constructs a new <see cref="SkinProvidingContainer"/> initialised with a single skin source.
|
2021-06-10 16:56:13 +08:00
|
|
|
|
/// </summary>
|
2021-06-11 17:58:38 +08:00
|
|
|
|
public SkinProvidingContainer([CanBeNull] ISkin skin)
|
2021-06-10 01:36:34 +08:00
|
|
|
|
: this()
|
2019-02-05 16:50:32 +08:00
|
|
|
|
{
|
2021-06-11 17:58:38 +08:00
|
|
|
|
if (skin != null)
|
|
|
|
|
SkinSources.Add(skin);
|
2021-06-10 01:36:34 +08:00
|
|
|
|
}
|
2019-08-27 17:27:21 +08:00
|
|
|
|
|
2021-06-10 16:56:13 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructs a new <see cref="SkinProvidingContainer"/> with no sources.
|
2021-06-11 16:25:07 +08:00
|
|
|
|
/// Implementations can add or change sources through the <see cref="SkinSources"/> list.
|
2021-06-10 16:56:13 +08:00
|
|
|
|
/// </summary>
|
2021-06-10 01:36:34 +08:00
|
|
|
|
protected SkinProvidingContainer()
|
|
|
|
|
{
|
2019-08-27 17:27:21 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2021-06-09 14:25:42 +08:00
|
|
|
|
|
2021-06-10 17:17:51 +08:00
|
|
|
|
SkinSources.BindCollectionChanged(((_, args) =>
|
|
|
|
|
{
|
|
|
|
|
switch (args.Action)
|
|
|
|
|
{
|
|
|
|
|
case NotifyCollectionChangedAction.Add:
|
2021-06-11 17:29:28 +08:00
|
|
|
|
foreach (var skin in args.NewItems.Cast<ISkin>())
|
|
|
|
|
{
|
|
|
|
|
disableableSkinSources.Add(skin, new DisableableSkinSource(skin, this));
|
|
|
|
|
|
|
|
|
|
if (skin is ISkinSource source)
|
|
|
|
|
source.SourceChanged += OnSourceChanged;
|
|
|
|
|
}
|
2021-06-10 17:17:51 +08:00
|
|
|
|
|
|
|
|
|
break;
|
2021-06-10 18:15:18 +08:00
|
|
|
|
|
2021-06-11 16:34:22 +08:00
|
|
|
|
case NotifyCollectionChangedAction.Reset:
|
2021-06-10 18:15:18 +08:00
|
|
|
|
case NotifyCollectionChangedAction.Remove:
|
2021-06-11 17:29:28 +08:00
|
|
|
|
foreach (var skin in args.OldItems.Cast<ISkin>())
|
|
|
|
|
{
|
|
|
|
|
disableableSkinSources.Remove(skin);
|
|
|
|
|
|
|
|
|
|
if (skin is ISkinSource source)
|
|
|
|
|
source.SourceChanged -= OnSourceChanged;
|
|
|
|
|
}
|
2021-06-10 18:15:18 +08:00
|
|
|
|
|
|
|
|
|
break;
|
2021-06-11 16:34:22 +08:00
|
|
|
|
|
|
|
|
|
case NotifyCollectionChangedAction.Replace:
|
2021-06-11 17:29:28 +08:00
|
|
|
|
foreach (var skin in args.OldItems.Cast<ISkin>())
|
|
|
|
|
{
|
|
|
|
|
disableableSkinSources.Remove(skin);
|
|
|
|
|
|
|
|
|
|
if (skin is ISkinSource source)
|
|
|
|
|
source.SourceChanged -= OnSourceChanged;
|
|
|
|
|
}
|
2021-06-11 16:34:22 +08:00
|
|
|
|
|
2021-06-11 17:29:28 +08:00
|
|
|
|
foreach (var skin in args.NewItems.Cast<ISkin>())
|
|
|
|
|
{
|
|
|
|
|
disableableSkinSources.Add(skin, new DisableableSkinSource(skin, this));
|
|
|
|
|
|
|
|
|
|
if (skin is ISkinSource source)
|
|
|
|
|
source.SourceChanged += OnSourceChanged;
|
|
|
|
|
}
|
2021-06-11 16:34:22 +08:00
|
|
|
|
|
|
|
|
|
break;
|
2021-06-10 17:17:51 +08:00
|
|
|
|
}
|
|
|
|
|
}), true);
|
2019-02-05 16:50:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-31 16:04:38 +08:00
|
|
|
|
public ISkin FindProvider(Func<ISkin, bool> lookupFunction)
|
|
|
|
|
{
|
2021-06-10 16:55:22 +08:00
|
|
|
|
foreach (var skin in SkinSources)
|
2021-06-07 22:23:44 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
if (lookupFunction(disableableSkinSources[skin]))
|
2021-06-07 22:23:44 +08:00
|
|
|
|
return skin;
|
|
|
|
|
}
|
2021-05-31 16:04:38 +08:00
|
|
|
|
|
2021-05-31 17:00:06 +08:00
|
|
|
|
return fallbackSource?.FindProvider(lookupFunction);
|
2021-05-31 16:04:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 13:39:02 +08:00
|
|
|
|
public Drawable GetDrawableComponent(ISkinComponent component)
|
2018-04-20 23:17:57 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
foreach (var skin in SkinSources)
|
2021-06-10 01:36:34 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
Drawable sourceDrawable;
|
|
|
|
|
if ((sourceDrawable = disableableSkinSources[skin]?.GetDrawableComponent(component)) != null)
|
|
|
|
|
return sourceDrawable;
|
2021-06-10 01:36:34 +08:00
|
|
|
|
}
|
2019-02-27 20:07:17 +08:00
|
|
|
|
|
2019-08-30 13:39:02 +08:00
|
|
|
|
return fallbackSource?.GetDrawableComponent(component);
|
2018-04-20 23:17:57 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-07-17 15:54:30 +08:00
|
|
|
|
public Texture GetTexture(string componentName, WrapMode wrapModeS, WrapMode wrapModeT)
|
2018-04-20 23:17:57 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
foreach (var skin in SkinSources)
|
2021-06-10 01:36:34 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
Texture sourceTexture;
|
|
|
|
|
if ((sourceTexture = disableableSkinSources[skin]?.GetTexture(componentName, wrapModeS, wrapModeT)) != null)
|
|
|
|
|
return sourceTexture;
|
2021-06-10 01:36:34 +08:00
|
|
|
|
}
|
2019-02-27 20:07:17 +08:00
|
|
|
|
|
2020-07-17 15:54:30 +08:00
|
|
|
|
return fallbackSource?.GetTexture(componentName, wrapModeS, wrapModeT);
|
2018-04-20 23:17:57 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-02-18 17:32:28 +08:00
|
|
|
|
public ISample GetSample(ISampleInfo sampleInfo)
|
2018-04-20 23:30:41 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
foreach (var skin in SkinSources)
|
2021-06-10 01:36:34 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
ISample sourceSample;
|
|
|
|
|
if ((sourceSample = disableableSkinSources[skin]?.GetSample(sampleInfo)) != null)
|
|
|
|
|
return sourceSample;
|
2021-06-10 01:36:34 +08:00
|
|
|
|
}
|
2019-02-27 20:07:17 +08:00
|
|
|
|
|
2019-08-23 19:32:43 +08:00
|
|
|
|
return fallbackSource?.GetSample(sampleInfo);
|
2018-04-20 23:30:41 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-09-03 16:57:34 +08:00
|
|
|
|
public IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup)
|
2021-01-14 05:05:46 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
foreach (var skin in SkinSources)
|
2021-01-18 15:13:58 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
IBindable<TValue> bindable;
|
|
|
|
|
if ((bindable = disableableSkinSources[skin]?.GetConfig<TLookup, TValue>(lookup)) != null)
|
|
|
|
|
return bindable;
|
2021-01-18 15:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fallbackSource?.GetConfig<TLookup, TValue>(lookup);
|
2021-01-14 05:05:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 01:36:34 +08:00
|
|
|
|
protected virtual void OnSourceChanged() => SourceChanged?.Invoke();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-07-11 16:07:14 +08:00
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-07-11 16:07:14 +08:00
|
|
|
|
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
fallbackSource = dependencies.Get<ISkinSource>();
|
2019-02-27 13:30:04 +08:00
|
|
|
|
if (fallbackSource != null)
|
2021-06-10 01:36:34 +08:00
|
|
|
|
fallbackSource.SourceChanged += OnSourceChanged;
|
2019-02-27 13:30:04 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
dependencies.CacheAs<ISkinSource>(this);
|
|
|
|
|
|
2019-02-27 13:30:04 +08:00
|
|
|
|
return dependencies;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
2019-02-27 20:04:14 +08:00
|
|
|
|
// Must be done before base.Dispose()
|
|
|
|
|
SourceChanged = null;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
|
|
|
|
|
if (fallbackSource != null)
|
2021-06-10 01:36:34 +08:00
|
|
|
|
fallbackSource.SourceChanged -= OnSourceChanged;
|
2021-06-09 16:56:07 +08:00
|
|
|
|
|
2021-06-10 22:23:15 +08:00
|
|
|
|
foreach (var source in SkinSources.OfType<ISkinSource>())
|
|
|
|
|
source.SourceChanged -= OnSourceChanged;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2021-06-09 14:25:42 +08:00
|
|
|
|
|
2021-06-11 17:29:28 +08:00
|
|
|
|
private class DisableableSkinSource : ISkin
|
2021-06-09 14:25:42 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
private readonly ISkin skin;
|
2021-06-09 14:25:42 +08:00
|
|
|
|
private readonly SkinProvidingContainer provider;
|
|
|
|
|
|
2021-06-11 17:29:28 +08:00
|
|
|
|
public DisableableSkinSource(ISkin skin, SkinProvidingContainer provider)
|
2021-06-09 14:25:42 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
this.skin = skin;
|
2021-06-09 14:25:42 +08:00
|
|
|
|
this.provider = provider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Drawable GetDrawableComponent(ISkinComponent component)
|
2021-06-11 17:29:28 +08:00
|
|
|
|
{
|
|
|
|
|
if (provider.AllowDrawableLookup(component))
|
|
|
|
|
return skin.GetDrawableComponent(component);
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2021-06-09 14:25:42 +08:00
|
|
|
|
|
|
|
|
|
public Texture GetTexture(string componentName, WrapMode wrapModeS, WrapMode wrapModeT)
|
2021-06-11 17:29:28 +08:00
|
|
|
|
{
|
|
|
|
|
if (provider.AllowTextureLookup(componentName))
|
|
|
|
|
return skin.GetTexture(componentName, wrapModeS, wrapModeT);
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2021-06-09 14:25:42 +08:00
|
|
|
|
|
|
|
|
|
public ISample GetSample(ISampleInfo sampleInfo)
|
2021-06-11 17:29:28 +08:00
|
|
|
|
{
|
|
|
|
|
if (provider.AllowSampleLookup(sampleInfo))
|
|
|
|
|
return skin.GetSample(sampleInfo);
|
2021-06-09 14:25:42 +08:00
|
|
|
|
|
2021-06-11 17:29:28 +08:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2021-06-09 14:25:42 +08:00
|
|
|
|
|
2021-06-11 17:29:28 +08:00
|
|
|
|
public IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup)
|
2021-06-09 14:25:42 +08:00
|
|
|
|
{
|
2021-06-11 17:29:28 +08:00
|
|
|
|
switch (lookup)
|
|
|
|
|
{
|
|
|
|
|
case GlobalSkinColours _:
|
|
|
|
|
case SkinCustomColourLookup _:
|
|
|
|
|
if (provider.AllowColourLookup)
|
|
|
|
|
return skin.GetConfig<TLookup, TValue>(lookup);
|
2021-06-09 14:25:42 +08:00
|
|
|
|
|
2021-06-11 17:29:28 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if (provider.AllowConfigurationLookup)
|
|
|
|
|
return skin.GetConfig<TLookup, TValue>(lookup);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|