2020-02-17 09:47:22 +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.
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2021-05-15 11:32:58 +00:00
|
|
|
using System.Linq;
|
2020-02-17 09:47:22 +00:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Skinning;
|
2020-08-29 20:23:36 +00:00
|
|
|
using osuTK.Graphics;
|
2020-02-17 09:47:22 +00:00
|
|
|
|
2020-12-07 03:35:24 +00:00
|
|
|
namespace osu.Game.Rulesets.Catch.Skinning.Legacy
|
2020-02-17 09:47:22 +00:00
|
|
|
{
|
2020-06-21 20:04:10 +00:00
|
|
|
public class CatchLegacySkinTransformer : LegacySkinTransformer
|
2020-02-17 09:47:22 +00:00
|
|
|
{
|
2020-10-16 09:19:09 +00:00
|
|
|
/// <summary>
|
|
|
|
/// For simplicity, let's use legacy combo font texture existence as a way to identify legacy skins from default.
|
|
|
|
/// </summary>
|
2021-03-06 23:18:31 +00:00
|
|
|
private bool providesComboCounter => this.HasFont(LegacyFont.Combo);
|
2020-10-16 09:19:09 +00:00
|
|
|
|
2021-06-09 10:34:42 +00:00
|
|
|
public CatchLegacySkinTransformer(ISkin skin)
|
|
|
|
: base(skin)
|
2020-02-17 09:47:22 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-06-21 20:04:10 +00:00
|
|
|
public override Drawable GetDrawableComponent(ISkinComponent component)
|
2020-02-17 09:47:22 +00:00
|
|
|
{
|
2021-05-19 20:37:22 +00:00
|
|
|
if (component is SkinnableTargetComponent targetComponent)
|
2020-10-16 09:19:09 +00:00
|
|
|
{
|
2021-05-19 20:37:22 +00:00
|
|
|
switch (targetComponent.Target)
|
2021-05-17 08:41:53 +00:00
|
|
|
{
|
2021-05-19 20:37:22 +00:00
|
|
|
case SkinnableTarget.MainHUDComponents:
|
2021-06-11 09:44:44 +00:00
|
|
|
var components = base.GetDrawableComponent(component) as SkinnableTargetComponentsContainer;
|
2021-05-19 20:37:22 +00:00
|
|
|
|
2021-05-30 11:20:03 +00:00
|
|
|
if (providesComboCounter && components != null)
|
2021-05-19 20:37:22 +00: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>())
|
2021-05-31 06:24:26 +00:00
|
|
|
legacyComboCounter.HiddenByRulesetImplementation = false;
|
2021-05-19 20:37:22 +00:00
|
|
|
}
|
2021-05-15 11:32:58 +00:00
|
|
|
|
2021-05-30 11:20:03 +00:00
|
|
|
return components;
|
2021-05-17 08:41:53 +00:00
|
|
|
}
|
2020-10-16 09:19:09 +00:00
|
|
|
}
|
|
|
|
|
2021-05-30 08:55:10 +00:00
|
|
|
if (component is CatchSkinComponent catchSkinComponent)
|
2020-02-17 09:47:22 +00:00
|
|
|
{
|
2021-05-30 08:55:10 +00:00
|
|
|
switch (catchSkinComponent.Component)
|
|
|
|
{
|
|
|
|
case CatchSkinComponents.Fruit:
|
|
|
|
if (GetTexture("fruit-pear") != null)
|
|
|
|
return new LegacyFruitPiece();
|
2020-12-07 03:59:03 +00:00
|
|
|
|
2021-05-30 08:55:10 +00:00
|
|
|
return null;
|
2020-12-07 03:59:03 +00:00
|
|
|
|
2021-05-30 08:55:10 +00:00
|
|
|
case CatchSkinComponents.Banana:
|
|
|
|
if (GetTexture("fruit-bananas") != null)
|
|
|
|
return new LegacyBananaPiece();
|
2020-02-17 10:06:08 +00:00
|
|
|
|
2021-05-30 08:55:10 +00:00
|
|
|
return null;
|
2020-02-19 04:27:15 +00:00
|
|
|
|
2021-05-30 08:55:10 +00:00
|
|
|
case CatchSkinComponents.Droplet:
|
|
|
|
if (GetTexture("fruit-drop") != null)
|
|
|
|
return new LegacyDropletPiece();
|
2020-02-19 04:27:15 +00:00
|
|
|
|
2021-05-30 08:55:10 +00:00
|
|
|
return null;
|
2020-03-10 02:42:08 +00:00
|
|
|
|
2021-06-08 10:51:40 +00:00
|
|
|
case CatchSkinComponents.Catcher:
|
2021-10-27 21:24:20 +00:00
|
|
|
decimal version = GetConfig<SkinConfiguration.LegacySetting, decimal>(SkinConfiguration.LegacySetting.Version)?.Value ?? 1;
|
2020-03-10 06:26:39 +00:00
|
|
|
|
2021-06-09 06:47:23 +00:00
|
|
|
if (version < 2.3m)
|
|
|
|
{
|
2021-07-25 17:00:37 +00:00
|
|
|
if (hasOldStyleCatcherSprite())
|
2021-06-09 06:47:23 +00:00
|
|
|
return new LegacyCatcherOld();
|
|
|
|
}
|
2020-03-10 06:26:39 +00:00
|
|
|
|
2021-07-25 17:00:37 +00:00
|
|
|
if (hasNewStyleCatcherSprite())
|
2021-06-08 12:58:39 +00:00
|
|
|
return new LegacyCatcherNew();
|
2020-03-10 06:26:39 +00:00
|
|
|
|
2021-06-08 10:51:40 +00:00
|
|
|
return null;
|
2020-08-03 18:40:13 +00:00
|
|
|
|
2021-05-30 08:55:10 +00:00
|
|
|
case CatchSkinComponents.CatchComboCounter:
|
|
|
|
if (providesComboCounter)
|
2022-02-01 20:41:18 +00:00
|
|
|
return new LegacyCatchComboCounter();
|
2020-08-03 18:40:13 +00:00
|
|
|
|
2021-05-30 08:55:10 +00:00
|
|
|
return null;
|
2021-07-25 17:00:37 +00:00
|
|
|
|
|
|
|
case CatchSkinComponents.HitExplosion:
|
|
|
|
if (hasOldStyleCatcherSprite() || hasNewStyleCatcherSprite())
|
|
|
|
return new LegacyHitExplosion();
|
|
|
|
|
|
|
|
return null;
|
2022-04-22 22:08:53 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
throw new UnsupportedSkinComponentException(component);
|
2021-05-30 08:55:10 +00:00
|
|
|
}
|
2020-02-17 09:47:22 +00:00
|
|
|
}
|
|
|
|
|
2021-06-11 09:44:44 +00:00
|
|
|
return base.GetDrawableComponent(component);
|
2020-02-17 09:47:22 +00:00
|
|
|
}
|
|
|
|
|
2021-07-25 17:00:37 +00:00
|
|
|
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;
|
|
|
|
|
2020-06-21 20:04:10 +00:00
|
|
|
public override IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup)
|
2020-04-04 21:10:25 +00:00
|
|
|
{
|
|
|
|
switch (lookup)
|
|
|
|
{
|
|
|
|
case CatchSkinColour colour:
|
2021-06-11 09:44:44 +00:00
|
|
|
var result = (Bindable<Color4>)base.GetConfig<SkinCustomColourLookup, TValue>(new SkinCustomColourLookup(colour));
|
2020-08-29 20:23:36 +00:00
|
|
|
if (result == null)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
result.Value = LegacyColourCompatibility.DisallowZeroAlpha(result.Value);
|
|
|
|
return (IBindable<TValue>)result;
|
2021-07-02 13:18:31 +00:00
|
|
|
|
|
|
|
case CatchSkinConfiguration config:
|
|
|
|
switch (config)
|
|
|
|
{
|
|
|
|
case CatchSkinConfiguration.FlipCatcherPlate:
|
2021-07-05 11:05:08 +00:00
|
|
|
// Don't flip catcher plate contents if the catcher is provided by this legacy skin.
|
|
|
|
if (GetDrawableComponent(new CatchSkinComponent(CatchSkinComponents.Catcher)) != null)
|
|
|
|
return (IBindable<TValue>)new Bindable<bool>();
|
|
|
|
|
|
|
|
break;
|
2021-07-02 13:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2020-04-04 21:10:25 +00:00
|
|
|
}
|
|
|
|
|
2021-06-11 09:44:44 +00:00
|
|
|
return base.GetConfig<TLookup, TValue>(lookup);
|
2020-04-04 21:10:25 +00:00
|
|
|
}
|
2020-02-17 09:47:22 +00:00
|
|
|
}
|
|
|
|
}
|