1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-21 06:42:54 +08:00
osu-lazer/osu.Game/Skinning/SkinProvidingContainer.cs

103 lines
3.4 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
using System;
using osu.Framework.Allocation;
using osu.Framework.Audio.Sample;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
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
{
/// <summary>
/// A container which adds a local <see cref="ISkinSource"/> to the hierarchy.
/// </summary>
public class SkinProvidingContainer : Container, ISkinSource
2018-04-13 17:19:50 +08:00
{
public event Action SourceChanged;
2019-04-25 16:36:17 +08:00
private readonly ISkin skin;
2019-06-29 09:45:11 +08:00
private ISkinSource fallbackSource;
protected virtual bool AllowDrawableLookup(string componentName) => true;
protected virtual bool AllowTextureLookup(string componentName) => true;
protected virtual bool AllowSampleLookup(ISampleInfo componentName) => true;
protected virtual bool AllowConfigurationLookup => true;
public SkinProvidingContainer(ISkin skin)
{
2019-04-25 16:36:17 +08:00
this.skin = skin;
RelativeSizeAxes = Axes.Both;
}
2018-04-20 23:17:57 +08:00
public Drawable GetDrawableComponent(string componentName)
{
Drawable sourceDrawable;
if (AllowDrawableLookup(componentName) && (sourceDrawable = skin?.GetDrawableComponent(componentName)) != null)
2018-04-20 23:17:57 +08:00
return sourceDrawable;
2018-04-20 23:17:57 +08:00
return fallbackSource?.GetDrawableComponent(componentName);
}
2018-04-13 17:19:50 +08:00
2018-04-20 23:17:57 +08:00
public Texture GetTexture(string componentName)
{
Texture sourceTexture;
if (AllowTextureLookup(componentName) && (sourceTexture = skin?.GetTexture(componentName)) != null)
2018-04-20 23:17:57 +08:00
return sourceTexture;
2018-04-20 23:17:57 +08:00
return fallbackSource.GetTexture(componentName);
}
2018-04-13 17:19:50 +08:00
2019-08-23 19:32:43 +08:00
public SampleChannel GetSample(ISampleInfo sampleInfo)
{
SampleChannel sourceChannel;
if (AllowSampleLookup(sampleInfo) && (sourceChannel = skin?.GetSample(sampleInfo)) != null)
return sourceChannel;
2019-08-23 19:32:43 +08:00
return fallbackSource?.GetSample(sampleInfo);
}
2018-04-13 17:19:50 +08:00
2019-01-07 19:12:39 +08:00
public TValue GetValue<TConfiguration, TValue>(Func<TConfiguration, TValue> query) where TConfiguration : SkinConfiguration
2018-04-13 17:19:50 +08:00
{
2019-01-07 19:12:39 +08:00
TValue val;
if (AllowConfigurationLookup && skin != null && (val = skin.GetValue(query)) != null)
return val;
2019-01-07 19:12:39 +08:00
return fallbackSource == null ? default : fallbackSource.GetValue(query);
2018-04-13 17:19:50 +08:00
}
protected virtual void TriggerSourceChanged() => 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>();
if (fallbackSource != null)
fallbackSource.SourceChanged += TriggerSourceChanged;
2018-04-13 17:19:50 +08:00
dependencies.CacheAs<ISkinSource>(this);
return dependencies;
2018-04-13 17:19:50 +08:00
}
protected override void Dispose(bool isDisposing)
{
// Must be done before base.Dispose()
SourceChanged = null;
2018-04-13 17:19:50 +08:00
base.Dispose(isDisposing);
if (fallbackSource != null)
fallbackSource.SourceChanged -= TriggerSourceChanged;
2018-04-13 17:19:50 +08:00
}
}
}