1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 11:27:24 +08:00
osu-lazer/osu.Game/Skinning/LegacySkinTransformer.cs

52 lines
1.8 KiB
C#
Raw Normal View History

2020-06-22 04:04:10 +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.
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
2020-07-17 15:54:30 +08:00
using osu.Framework.Graphics.OpenGL.Textures;
2020-06-22 04:04:10 +08:00
using osu.Framework.Graphics.Textures;
using osu.Game.Audio;
2020-06-22 04:44:35 +08:00
using osu.Game.Rulesets.Objects.Legacy;
using static osu.Game.Skinning.LegacySkinConfiguration;
2020-06-22 04:04:10 +08:00
namespace osu.Game.Skinning
{
/// <summary>
/// Transformer used to handle support of legacy features for individual rulesets.
/// </summary>
public abstract class LegacySkinTransformer : ISkin
2020-06-22 04:04:10 +08:00
{
/// <summary>
/// The <see cref="ISkin"/> which is being transformed.
2020-06-22 04:04:10 +08:00
/// </summary>
protected ISkin Skin { get; }
2020-06-22 04:04:10 +08:00
protected LegacySkinTransformer(ISkin skin)
2020-06-22 04:04:10 +08:00
{
Skin = skin;
2020-06-22 04:04:10 +08:00
}
public abstract Drawable GetDrawableComponent(ISkinComponent component);
2020-07-17 15:54:30 +08:00
public Texture GetTexture(string componentName) => GetTexture(componentName, default, default);
public Texture GetTexture(string componentName, WrapMode wrapModeS, WrapMode wrapModeT)
=> Skin.GetTexture(componentName, wrapModeS, wrapModeT);
2020-06-22 04:04:10 +08:00
public virtual ISample GetSample(ISampleInfo sampleInfo)
2020-06-22 04:44:35 +08:00
{
if (!(sampleInfo is ConvertHitObjectParser.LegacyHitSampleInfo legacySample))
return Skin.GetSample(sampleInfo);
2020-06-22 04:44:35 +08:00
var playLayeredHitSounds = GetConfig<LegacySetting, bool>(LegacySetting.LayeredHitSounds);
2020-06-22 04:44:35 +08:00
if (legacySample.IsLayered && playLayeredHitSounds?.Value == false)
2021-01-19 16:11:40 +08:00
return new SampleVirtual();
2020-06-22 04:44:35 +08:00
return Skin.GetSample(sampleInfo);
2020-06-22 04:44:35 +08:00
}
2020-06-22 04:04:10 +08:00
public abstract IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup);
}
}