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.
|
|
|
|
|
|
|
|
using Humanizer;
|
|
|
|
using osu.Framework.Audio.Sample;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
using osu.Game.Audio;
|
|
|
|
using osu.Game.Skinning;
|
2020-02-19 14:55:22 +08:00
|
|
|
using osuTK;
|
2020-02-17 17:47:22 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Skinning
|
|
|
|
{
|
|
|
|
public class CatchLegacySkinTransformer : ISkin
|
|
|
|
{
|
|
|
|
private readonly ISkin source;
|
|
|
|
|
2020-04-05 05:30:10 +08:00
|
|
|
public CatchLegacySkinTransformer(ISkin source)
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
|
|
|
this.source = source;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Drawable GetDrawableComponent(ISkinComponent component)
|
|
|
|
{
|
|
|
|
if (!(component is CatchSkinComponent catchSkinComponent))
|
|
|
|
return null;
|
|
|
|
|
|
|
|
switch (catchSkinComponent.Component)
|
|
|
|
{
|
|
|
|
case CatchSkinComponents.FruitApple:
|
|
|
|
case CatchSkinComponents.FruitBananas:
|
|
|
|
case CatchSkinComponents.FruitOrange:
|
|
|
|
case CatchSkinComponents.FruitGrapes:
|
|
|
|
case CatchSkinComponents.FruitPear:
|
2020-02-20 14:45:54 +08:00
|
|
|
var lookupName = catchSkinComponent.Component.ToString().Kebaberize();
|
2020-02-17 18:06:08 +08:00
|
|
|
if (GetTexture(lookupName) != null)
|
|
|
|
return new LegacyFruitPiece(lookupName);
|
|
|
|
|
|
|
|
break;
|
2020-02-19 12:27:15 +08:00
|
|
|
|
|
|
|
case CatchSkinComponents.Droplet:
|
|
|
|
if (GetTexture("fruit-drop") != null)
|
2020-02-19 14:55:22 +08:00
|
|
|
return new LegacyFruitPiece("fruit-drop") { Scale = new Vector2(0.8f) };
|
2020-02-19 12:27:15 +08:00
|
|
|
|
|
|
|
break;
|
2020-03-10 10:42:08 +08:00
|
|
|
|
|
|
|
case CatchSkinComponents.CatcherIdle:
|
|
|
|
return this.GetAnimation("fruit-catcher-idle", true, true, true) ??
|
|
|
|
this.GetAnimation("fruit-ryuuta", true, true, true);
|
2020-03-10 14:26:39 +08:00
|
|
|
|
|
|
|
case CatchSkinComponents.CatcherFail:
|
|
|
|
return this.GetAnimation("fruit-catcher-fail", true, true, true) ??
|
|
|
|
this.GetAnimation("fruit-ryuuta", true, true, true);
|
|
|
|
|
|
|
|
case CatchSkinComponents.CatcherKiai:
|
|
|
|
return this.GetAnimation("fruit-catcher-kiai", true, true, true) ??
|
|
|
|
this.GetAnimation("fruit-ryuuta", true, true, true);
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Texture GetTexture(string componentName) => source.GetTexture(componentName);
|
|
|
|
|
|
|
|
public SampleChannel GetSample(ISampleInfo sample) => source.GetSample(sample);
|
|
|
|
|
2020-04-05 05:10:25 +08:00
|
|
|
public IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup)
|
|
|
|
{
|
|
|
|
switch (lookup)
|
|
|
|
{
|
|
|
|
case CatchSkinColour colour:
|
|
|
|
return source.GetConfig<SkinCustomColourLookup, TValue>(new SkinCustomColourLookup(colour));
|
|
|
|
}
|
|
|
|
|
|
|
|
return source.GetConfig<TLookup, TValue>(lookup);
|
|
|
|
}
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
|
|
|
}
|