mirror of
https://github.com/ppy/osu.git
synced 2024-11-16 01:17:27 +08:00
136 lines
5.3 KiB
C#
136 lines
5.3 KiB
C#
// 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 System.Diagnostics;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Skinning;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Skinning.Legacy
|
|
{
|
|
public class CatchLegacySkinTransformer : LegacySkinTransformer
|
|
{
|
|
public override bool IsProvidingLegacyResources => base.IsProvidingLegacyResources || hasPear;
|
|
|
|
private bool hasPear => GetTexture("fruit-pear") != null;
|
|
|
|
/// <summary>
|
|
/// For simplicity, let's use legacy combo font texture existence as a way to identify legacy skins from default.
|
|
/// </summary>
|
|
private bool providesComboCounter => this.HasFont(LegacyFont.Combo);
|
|
|
|
public CatchLegacySkinTransformer(ISkin skin)
|
|
: base(skin)
|
|
{
|
|
}
|
|
|
|
public override Drawable? GetDrawableComponent(ISkinComponentLookup lookup)
|
|
{
|
|
switch (lookup)
|
|
{
|
|
case SkinComponentsContainerLookup containerLookup:
|
|
switch (containerLookup.Target)
|
|
{
|
|
case SkinComponentsContainerLookup.TargetArea.MainHUDComponents when containerLookup.Ruleset != null:
|
|
Debug.Assert(containerLookup.Ruleset.ShortName == CatchRuleset.SHORT_NAME);
|
|
// todo: remove CatchSkinComponents.CatchComboCounter and refactor LegacyCatchComboCounter to be added here instead.
|
|
return Skin.GetDrawableComponent(lookup);
|
|
}
|
|
|
|
break;
|
|
|
|
case CatchSkinComponentLookup catchSkinComponent:
|
|
switch (catchSkinComponent.Component)
|
|
{
|
|
case CatchSkinComponents.Fruit:
|
|
if (hasPear)
|
|
return new LegacyFruitPiece();
|
|
|
|
return null;
|
|
|
|
case CatchSkinComponents.Banana:
|
|
if (GetTexture("fruit-bananas") != null)
|
|
return new LegacyBananaPiece();
|
|
|
|
return null;
|
|
|
|
case CatchSkinComponents.Droplet:
|
|
if (GetTexture("fruit-drop") != null)
|
|
return new LegacyDropletPiece();
|
|
|
|
return null;
|
|
|
|
case CatchSkinComponents.Catcher:
|
|
decimal version = GetConfig<SkinConfiguration.LegacySetting, decimal>(SkinConfiguration.LegacySetting.Version)?.Value ?? 1;
|
|
|
|
if (version < 2.3m)
|
|
{
|
|
if (hasOldStyleCatcherSprite())
|
|
return new LegacyCatcherOld();
|
|
}
|
|
|
|
if (hasNewStyleCatcherSprite())
|
|
return new LegacyCatcherNew();
|
|
|
|
return null;
|
|
|
|
case CatchSkinComponents.CatchComboCounter:
|
|
if (providesComboCounter)
|
|
return new LegacyCatchComboCounter();
|
|
|
|
return null;
|
|
|
|
case CatchSkinComponents.HitExplosion:
|
|
if (hasOldStyleCatcherSprite() || hasNewStyleCatcherSprite())
|
|
return new LegacyHitExplosion();
|
|
|
|
return null;
|
|
|
|
default:
|
|
throw new UnsupportedSkinComponentException(lookup);
|
|
}
|
|
}
|
|
|
|
return base.GetDrawableComponent(lookup);
|
|
}
|
|
|
|
private bool hasOldStyleCatcherSprite() =>
|
|
GetTexture(@"fruit-ryuuta") != null
|
|
|| GetTexture(@"fruit-ryuuta-0") != null;
|
|
|
|
private bool hasNewStyleCatcherSprite() =>
|
|
GetTexture(@"fruit-catcher-idle") != null
|
|
|| GetTexture(@"fruit-catcher-idle-0") != null;
|
|
|
|
public override IBindable<TValue>? GetConfig<TLookup, TValue>(TLookup lookup)
|
|
{
|
|
switch (lookup)
|
|
{
|
|
case CatchSkinColour colour:
|
|
var result = (Bindable<Color4>?)base.GetConfig<SkinCustomColourLookup, TValue>(new SkinCustomColourLookup(colour));
|
|
if (result == null)
|
|
return null;
|
|
|
|
result.Value = LegacyColourCompatibility.DisallowZeroAlpha(result.Value);
|
|
return (IBindable<TValue>)result;
|
|
|
|
case CatchSkinConfiguration config:
|
|
switch (config)
|
|
{
|
|
case CatchSkinConfiguration.FlipCatcherPlate:
|
|
// Don't flip catcher plate contents if the catcher is provided by this legacy skin.
|
|
if (GetDrawableComponent(new CatchSkinComponentLookup(CatchSkinComponents.Catcher)) != null)
|
|
return (IBindable<TValue>)new Bindable<bool>();
|
|
|
|
break;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
return base.GetConfig<TLookup, TValue>(lookup);
|
|
}
|
|
}
|
|
}
|