1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 05:17:24 +08:00
osu-lazer/osu.Game/Skinning/Skin.cs

61 lines
1.8 KiB
C#
Raw Normal View History

2018-02-22 16:16:48 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-03-14 19:45:04 +08:00
using System;
2018-02-22 16:16:48 +08:00
using osu.Framework.Audio.Sample;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Textures;
2018-02-22 16:16:48 +08:00
namespace osu.Game.Skinning
{
2018-03-20 15:26:36 +08:00
public abstract class Skin : IDisposable, ISkinSource
2018-02-22 16:16:48 +08:00
{
public readonly SkinInfo SkinInfo;
public virtual SkinConfiguration Configuration { get; protected set; }
2018-03-20 15:26:36 +08:00
public event Action SourceChanged;
2018-02-22 16:16:48 +08:00
public abstract Drawable GetDrawableComponent(string componentName);
public abstract SampleChannel GetSample(string sampleName);
public abstract Texture GetTexture(string componentName);
2018-03-22 17:50:19 +08:00
public TValue GetValue<TConfiguration, TValue>(Func<TConfiguration, TValue> query) where TConfiguration : SkinConfiguration where TValue : class
=> Configuration is TConfiguration conf ? query?.Invoke(conf) : null;
2018-03-22 17:50:19 +08:00
public TValue? GetValue<TConfiguration, TValue>(Func<TConfiguration, TValue?> query) where TConfiguration : SkinConfiguration where TValue : struct
=> Configuration is TConfiguration conf ? query?.Invoke(conf) : null;
2018-02-22 16:16:48 +08:00
protected Skin(SkinInfo skin)
{
SkinInfo = skin;
}
2018-03-14 19:45:04 +08:00
#region Disposal
~Skin()
{
Dispose(false);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
private bool isDisposed;
protected virtual void Dispose(bool isDisposing)
{
if (isDisposed)
return;
isDisposed = true;
}
#endregion
2018-02-22 16:16:48 +08:00
}
}