osu/osu.Game/Skinning/LegacySkin.cs

113 lines
3.7 KiB
C#
Raw Normal View History

2019-08-21 06:11:33 +00: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 09:19:50 +00:00
using System.IO;
using System.Linq;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Textures;
using osu.Framework.IO.Stores;
2019-08-23 11:32:43 +00:00
using osu.Game.Audio;
using osuTK.Graphics;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Skinning
{
public class LegacySkin : Skin
{
protected TextureStore Textures;
protected IResourceStore<SampleChannel> Samples;
2018-04-13 09:19:50 +00:00
public LegacySkin(SkinInfo skin, IResourceStore<byte[]> storage, AudioManager audioManager)
: this(skin, new LegacySkinResourceStore<SkinFileInfo>(skin, storage), audioManager, "skin.ini")
{
// defaults should only be applied for non-beatmap skins (which are parsed via this constructor).
2019-08-20 06:02:07 +00:00
if (!Configuration.CustomColours.ContainsKey("SliderBall")) Configuration.CustomColours["SliderBall"] = new Color4(2, 170, 255, 255);
2018-04-13 09:19:50 +00:00
}
2019-02-28 04:31:40 +00:00
protected LegacySkin(SkinInfo skin, IResourceStore<byte[]> storage, AudioManager audioManager, string filename)
: base(skin)
2018-04-13 09:19:50 +00:00
{
Stream stream = storage.GetStream(filename);
if (stream != null)
using (StreamReader reader = new StreamReader(stream))
Configuration = new LegacySkinDecoder().Decode(reader);
else
Configuration = new SkinConfiguration();
Samples = audioManager.GetSampleStore(storage);
2018-09-07 09:56:08 +00:00
Textures = new TextureStore(new TextureLoaderStore(storage));
2018-04-13 09:19:50 +00:00
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
Textures?.Dispose();
Samples?.Dispose();
}
public override Drawable GetDrawableComponent(ISkinComponent component)
2018-04-13 09:19:50 +00:00
{
switch (component.LookupName)
2018-04-13 09:19:50 +00:00
{
case "Play/Miss":
return this.GetAnimation("hit0", true, false);
2019-04-01 03:16:05 +00:00
2018-04-13 09:19:50 +00:00
case "Play/Meh":
return this.GetAnimation("hit50", true, false);
2019-04-01 03:16:05 +00:00
2018-04-13 09:19:50 +00:00
case "Play/Good":
return this.GetAnimation("hit100", true, false);
2019-04-01 03:16:05 +00:00
2018-04-13 09:19:50 +00:00
case "Play/Great":
return this.GetAnimation("hit300", true, false);
2018-04-13 09:19:50 +00:00
}
return this.GetAnimation(component.LookupName, false, false);
2019-08-19 10:23:54 +00:00
}
2019-08-27 08:18:32 +00:00
public override Texture GetTexture(string componentName)
{
componentName = getFallbackName(componentName);
float ratio = 2;
var texture = Textures.Get($"{componentName}@2x");
if (texture == null)
{
ratio = 1;
texture = Textures.Get(componentName);
}
if (texture != null)
texture.ScaleAdjust = ratio;
return texture;
}
2019-08-23 11:32:43 +00:00
public override SampleChannel GetSample(ISampleInfo sampleInfo)
{
2019-08-23 11:32:43 +00:00
foreach (var lookup in sampleInfo.LookupNames)
{
2019-08-27 17:06:17 +00:00
var sample = Samples.Get(getFallbackName(lookup));
2019-08-23 11:32:43 +00:00
if (sample != null)
return sample;
}
2019-08-23 11:32:43 +00:00
if (sampleInfo is HitSampleInfo hsi)
// Try fallback to non-bank samples.
2019-08-24 06:30:43 +00:00
return Samples.Get(hsi.Name);
2019-08-23 11:32:43 +00:00
return null;
}
2019-08-27 08:18:32 +00:00
private string getFallbackName(string componentName)
{
string lastPiece = componentName.Split('/').Last();
return componentName.StartsWith("Gameplay/taiko/") ? "taiko-" + lastPiece : lastPiece;
}
2018-04-13 09:19:50 +00:00
}
}