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.
|
|
|
|
|
2021-06-10 18:41:41 +08:00
|
|
|
using System;
|
|
|
|
using JetBrains.Annotations;
|
2020-06-22 04:04:10 +08:00
|
|
|
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;
|
2021-10-22 13:41:59 +08:00
|
|
|
using static osu.Game.Skinning.SkinConfiguration;
|
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>
|
2021-06-09 18:34:42 +08:00
|
|
|
public abstract class LegacySkinTransformer : ISkin
|
2020-06-22 04:04:10 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
2021-06-09 18:34:42 +08:00
|
|
|
/// The <see cref="ISkin"/> which is being transformed.
|
2020-06-22 04:04:10 +08:00
|
|
|
/// </summary>
|
2021-06-10 18:41:41 +08:00
|
|
|
[NotNull]
|
2022-04-05 15:47:15 +08:00
|
|
|
protected internal ISkin Skin { get; }
|
2020-06-22 04:04:10 +08:00
|
|
|
|
2021-06-10 18:41:41 +08:00
|
|
|
protected LegacySkinTransformer([NotNull] ISkin skin)
|
2020-06-22 04:04:10 +08:00
|
|
|
{
|
2021-06-10 18:41:41 +08:00
|
|
|
Skin = skin ?? throw new ArgumentNullException(nameof(skin));
|
2020-06-22 04:04:10 +08:00
|
|
|
}
|
|
|
|
|
2021-06-11 17:44:25 +08:00
|
|
|
public virtual Drawable GetDrawableComponent(ISkinComponent component) => Skin.GetDrawableComponent(component);
|
2020-06-22 04:04:10 +08:00
|
|
|
|
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)
|
2021-06-09 18:34:42 +08:00
|
|
|
=> Skin.GetTexture(componentName, wrapModeS, wrapModeT);
|
2020-06-22 04:04:10 +08:00
|
|
|
|
2021-02-18 17:32:28 +08:00
|
|
|
public virtual ISample GetSample(ISampleInfo sampleInfo)
|
2020-06-22 04:44:35 +08:00
|
|
|
{
|
|
|
|
if (!(sampleInfo is ConvertHitObjectParser.LegacyHitSampleInfo legacySample))
|
2021-06-09 18:34:42 +08:00
|
|
|
return Skin.GetSample(sampleInfo);
|
2020-06-22 04:44:35 +08:00
|
|
|
|
2020-07-29 15:34:09 +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
|
|
|
|
2021-06-09 18:34:42 +08:00
|
|
|
return Skin.GetSample(sampleInfo);
|
2020-06-22 04:44:35 +08:00
|
|
|
}
|
2020-06-22 04:04:10 +08:00
|
|
|
|
2021-06-11 17:44:25 +08:00
|
|
|
public virtual IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup) => Skin.GetConfig<TLookup, TValue>(lookup);
|
2020-06-22 04:04:10 +08:00
|
|
|
}
|
|
|
|
}
|