1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 18:47:32 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Skinning/Legacy/CatchLegacySkinTransformer.cs

112 lines
4.3 KiB
C#
Raw Normal View History

// 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.Linq;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Game.Screens.Play.HUD;
using osu.Game.Skinning;
using osuTK.Graphics;
2020-12-07 11:35:24 +08:00
namespace osu.Game.Rulesets.Catch.Skinning.Legacy
{
2020-06-22 04:04:10 +08:00
public class CatchLegacySkinTransformer : LegacySkinTransformer
{
/// <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)
{
}
2020-06-22 04:04:10 +08:00
public override Drawable GetDrawableComponent(ISkinComponent component)
{
2021-05-20 04:37:22 +08:00
if (component is SkinnableTargetComponent targetComponent)
{
2021-05-20 04:37:22 +08:00
switch (targetComponent.Target)
2021-05-17 16:41:53 +08:00
{
2021-05-20 04:37:22 +08:00
case SkinnableTarget.MainHUDComponents:
var components = Skin.GetDrawableComponent(component) as SkinnableTargetComponentsContainer;
2021-05-20 04:37:22 +08:00
2021-05-30 19:20:03 +08:00
if (providesComboCounter && components != null)
2021-05-20 04:37:22 +08:00
{
// catch may provide its own combo counter; hide the default.
// todo: this should be done in an elegant way per ruleset, defining which HUD skin components should be displayed.
foreach (var legacyComboCounter in components.OfType<LegacyComboCounter>())
legacyComboCounter.HiddenByRulesetImplementation = false;
2021-05-20 04:37:22 +08:00
}
2021-05-30 19:20:03 +08:00
return components;
2021-05-17 16:41:53 +08:00
}
}
if (component is CatchSkinComponent catchSkinComponent)
{
switch (catchSkinComponent.Component)
{
case CatchSkinComponents.Fruit:
if (GetTexture("fruit-pear") != null)
return new LegacyFruitPiece();
return null;
case CatchSkinComponents.Banana:
if (GetTexture("fruit-bananas") != null)
return new LegacyBananaPiece();
2020-02-17 18:06:08 +08:00
return null;
2020-02-19 12:27:15 +08:00
case CatchSkinComponents.Droplet:
if (GetTexture("fruit-drop") != null)
return new LegacyDropletPiece();
2020-02-19 12:27:15 +08:00
return null;
case CatchSkinComponents.Catcher:
var version = Source.GetConfig<LegacySkinConfiguration.LegacySetting, decimal>(LegacySkinConfiguration.LegacySetting.Version)?.Value ?? 1;
2020-03-10 14:26:39 +08:00
if (version < 2.3m)
{
if (GetTexture(@"fruit-ryuuta") != null ||
GetTexture(@"fruit-ryuuta-0") != null)
return new LegacyCatcherOld();
}
2020-03-10 14:26:39 +08:00
if (GetTexture(@"fruit-catcher-idle") != null ||
GetTexture(@"fruit-catcher-idle-0") != null)
return new LegacyCatcherNew();
2020-03-10 14:26:39 +08:00
return null;
case CatchSkinComponents.CatchComboCounter:
if (providesComboCounter)
return new LegacyCatchComboCounter(Skin);
return null;
}
}
return Skin.GetDrawableComponent(component);
}
2020-06-22 04:04:10 +08:00
public override IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup)
{
switch (lookup)
{
case CatchSkinColour colour:
var result = (Bindable<Color4>)Skin.GetConfig<SkinCustomColourLookup, TValue>(new SkinCustomColourLookup(colour));
if (result == null)
return null;
result.Value = LegacyColourCompatibility.DisallowZeroAlpha(result.Value);
return (IBindable<TValue>)result;
}
return Skin.GetConfig<TLookup, TValue>(lookup);
}
}
}