osu/osu.Game/Skinning/Skin.cs

76 lines
1.9 KiB
C#
Raw Normal View History

2018-02-22 08:16:48 +00: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 11:45:04 +00:00
using System;
2018-02-22 08:16:48 +00:00
using osu.Framework.Audio.Sample;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Textures;
2018-03-20 07:26:36 +00:00
using OpenTK.Graphics;
2018-02-22 08:16:48 +00:00
namespace osu.Game.Skinning
{
2018-03-20 07:26:36 +00:00
public abstract class Skin : IDisposable, ISkinSource
2018-02-22 08:16:48 +00:00
{
public readonly SkinInfo SkinInfo;
public virtual SkinConfiguration Configuration { get; protected set; }
2018-03-20 07:26:36 +00:00
public event Action SourceChanged;
2018-02-22 08:16:48 +00:00
public abstract Drawable GetDrawableComponent(string componentName);
public abstract SampleChannel GetSample(string sampleName);
public abstract Texture GetTexture(string componentName);
2018-03-22 08:32:05 +00:00
public virtual Color4? GetColour(string colourName)
{
var namespaces = colourName.Split('/');
switch (namespaces[0])
{
case "Play":
switch (namespaces[1])
{
case "Combo":
int index = int.Parse(namespaces[2]);
return Configuration.ComboColours.Count == 0 ? (Color4?)null : Configuration.ComboColours[index % Configuration.ComboColours.Count];
}
break;
}
return null;
}
2018-03-20 07:26:36 +00:00
2018-02-22 08:16:48 +00:00
protected Skin(SkinInfo skin)
{
SkinInfo = skin;
}
2018-03-14 11:45:04 +00: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 08:16:48 +00:00
}
}