2020-02-17 17:47:22 +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-05-15 19:32:58 +08:00
|
|
|
using System.Linq;
|
2020-02-17 17:47:22 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Skinning;
|
2024-08-06 17:17:21 +08:00
|
|
|
using osuTK;
|
2020-08-30 04:23:36 +08:00
|
|
|
using osuTK.Graphics;
|
2020-02-17 17:47:22 +08:00
|
|
|
|
2020-12-07 11:35:24 +08:00
|
|
|
namespace osu.Game.Rulesets.Catch.Skinning.Legacy
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
2020-06-22 04:04:10 +08:00
|
|
|
public class CatchLegacySkinTransformer : LegacySkinTransformer
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
2022-10-12 16:47:20 +08:00
|
|
|
public override bool IsProvidingLegacyResources => base.IsProvidingLegacyResources || hasPear;
|
|
|
|
|
|
|
|
private bool hasPear => GetTexture("fruit-pear") != null;
|
|
|
|
|
2020-10-16 17:19:09 +08:00
|
|
|
/// <summary>
|
|
|
|
/// For simplicity, let's use legacy combo font texture existence as a way to identify legacy skins from default.
|
|
|
|
/// </summary>
|
2021-03-07 07:18:31 +08:00
|
|
|
private bool providesComboCounter => this.HasFont(LegacyFont.Combo);
|
2020-10-16 17:19:09 +08:00
|
|
|
|
2021-06-09 18:34:42 +08:00
|
|
|
public CatchLegacySkinTransformer(ISkin skin)
|
|
|
|
: base(skin)
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-11-09 15:04:56 +08:00
|
|
|
public override Drawable? GetDrawableComponent(ISkinComponentLookup lookup)
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
2023-12-30 08:54:53 +08:00
|
|
|
switch (lookup)
|
2020-10-16 17:19:09 +08:00
|
|
|
{
|
2024-08-22 17:39:36 +08:00
|
|
|
case GlobalSkinnableContainerLookup containerLookup:
|
2024-08-12 13:27:21 +08:00
|
|
|
// Only handle per ruleset defaults here.
|
2024-08-06 17:17:21 +08:00
|
|
|
if (containerLookup.Ruleset == null)
|
2024-08-08 23:19:36 +08:00
|
|
|
return base.GetDrawableComponent(lookup);
|
2020-10-16 17:19:09 +08:00
|
|
|
|
2024-08-06 17:17:21 +08:00
|
|
|
// Skin has configuration.
|
2024-08-08 15:29:54 +08:00
|
|
|
if (base.GetDrawableComponent(lookup) is UserConfiguredLayoutContainer d)
|
2024-08-06 17:17:21 +08:00
|
|
|
return d;
|
|
|
|
|
2024-08-15 15:16:52 +08:00
|
|
|
// we don't have enough assets to display these components (this is especially the case on a "beatmap" skin).
|
|
|
|
if (!IsProvidingLegacyResources)
|
|
|
|
return null;
|
|
|
|
|
2024-08-06 17:17:21 +08:00
|
|
|
// Our own ruleset components default.
|
2024-08-12 13:27:21 +08:00
|
|
|
switch (containerLookup.Target)
|
2023-12-30 08:54:53 +08:00
|
|
|
{
|
2024-08-22 17:45:44 +08:00
|
|
|
case GlobalSkinnableContainers.MainHUDComponents:
|
2024-08-12 13:27:21 +08:00
|
|
|
// todo: remove CatchSkinComponents.CatchComboCounter and refactor LegacyCatchComboCounter to be added here instead.
|
|
|
|
return new DefaultSkinComponentsContainer(container =>
|
|
|
|
{
|
|
|
|
var keyCounter = container.OfType<LegacyKeyCounterDisplay>().FirstOrDefault();
|
2020-10-16 17:19:09 +08:00
|
|
|
|
2024-08-12 13:27:21 +08:00
|
|
|
if (keyCounter != null)
|
|
|
|
{
|
|
|
|
// set the anchor to top right so that it won't squash to the return button to the top
|
|
|
|
keyCounter.Anchor = Anchor.CentreRight;
|
2024-08-20 23:02:05 +08:00
|
|
|
keyCounter.Origin = Anchor.TopRight;
|
|
|
|
keyCounter.Position = new Vector2(0, -40) * 1.6f;
|
2024-08-12 13:27:21 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
{
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new LegacyKeyCounterDisplay(),
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2023-12-30 08:54:53 +08:00
|
|
|
|
|
|
|
case CatchSkinComponentLookup catchSkinComponent:
|
|
|
|
switch (catchSkinComponent.Component)
|
|
|
|
{
|
|
|
|
case CatchSkinComponents.Fruit:
|
|
|
|
if (hasPear)
|
|
|
|
return new LegacyFruitPiece();
|
2020-12-07 11:59:03 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
return null;
|
2020-12-07 11:59:03 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
case CatchSkinComponents.Banana:
|
|
|
|
if (GetTexture("fruit-bananas") != null)
|
|
|
|
return new LegacyBananaPiece();
|
2020-02-17 18:06:08 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
return null;
|
2020-02-19 12:27:15 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
case CatchSkinComponents.Droplet:
|
|
|
|
if (GetTexture("fruit-drop") != null)
|
|
|
|
return new LegacyDropletPiece();
|
2020-02-19 12:27:15 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
return null;
|
2020-03-10 10:42:08 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
case CatchSkinComponents.Catcher:
|
|
|
|
decimal version = GetConfig<SkinConfiguration.LegacySetting, decimal>(SkinConfiguration.LegacySetting.Version)?.Value ?? 1;
|
2020-03-10 14:26:39 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
if (version < 2.3m)
|
|
|
|
{
|
|
|
|
if (hasOldStyleCatcherSprite())
|
|
|
|
return new LegacyCatcherOld();
|
|
|
|
}
|
2020-03-10 14:26:39 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
if (hasNewStyleCatcherSprite())
|
|
|
|
return new LegacyCatcherNew();
|
2020-03-10 14:26:39 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
return null;
|
2020-08-04 02:40:13 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
case CatchSkinComponents.CatchComboCounter:
|
|
|
|
if (providesComboCounter)
|
|
|
|
return new LegacyCatchComboCounter();
|
2020-08-04 02:40:13 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
return null;
|
2021-07-26 01:00:37 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
case CatchSkinComponents.HitExplosion:
|
|
|
|
if (hasOldStyleCatcherSprite() || hasNewStyleCatcherSprite())
|
|
|
|
return new LegacyHitExplosion();
|
2021-07-26 01:00:37 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
return null;
|
2022-04-23 06:08:53 +08:00
|
|
|
|
2023-12-30 08:54:53 +08:00
|
|
|
default:
|
|
|
|
throw new UnsupportedSkinComponentException(lookup);
|
|
|
|
}
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
|
|
|
|
2022-11-09 13:11:41 +08:00
|
|
|
return base.GetDrawableComponent(lookup);
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
|
|
|
|
2021-07-26 01:00:37 +08: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;
|
|
|
|
|
2022-11-09 12:37:19 +08:00
|
|
|
public override IBindable<TValue>? GetConfig<TLookup, TValue>(TLookup lookup)
|
2020-04-05 05:10:25 +08:00
|
|
|
{
|
|
|
|
switch (lookup)
|
|
|
|
{
|
|
|
|
case CatchSkinColour colour:
|
2022-11-09 12:37:19 +08:00
|
|
|
var result = (Bindable<Color4>?)base.GetConfig<SkinCustomColourLookup, TValue>(new SkinCustomColourLookup(colour));
|
2020-08-30 04:23:36 +08:00
|
|
|
if (result == null)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
result.Value = LegacyColourCompatibility.DisallowZeroAlpha(result.Value);
|
|
|
|
return (IBindable<TValue>)result;
|
2020-04-05 05:10:25 +08:00
|
|
|
}
|
|
|
|
|
2021-06-11 17:44:44 +08:00
|
|
|
return base.GetConfig<TLookup, TValue>(lookup);
|
2020-04-05 05:10:25 +08:00
|
|
|
}
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
|
|
|
}
|