2019-08-30 03:59:58 +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.
|
|
|
|
|
|
|
|
using System;
|
2019-09-03 08:57:34 +00:00
|
|
|
using osu.Framework.Bindables;
|
2019-08-30 03:59:58 +00:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
using osuTK;
|
|
|
|
|
2020-12-07 03:27:12 +00:00
|
|
|
namespace osu.Game.Rulesets.Osu.Skinning.Legacy
|
2019-08-30 03:59:58 +00:00
|
|
|
{
|
2020-06-21 20:04:10 +00:00
|
|
|
public class OsuLegacySkinTransformer : LegacySkinTransformer
|
2019-08-30 03:59:58 +00:00
|
|
|
{
|
2022-10-12 08:47:20 +00:00
|
|
|
public override bool IsProvidingLegacyResources => base.IsProvidingLegacyResources || hasHitCircle.Value;
|
|
|
|
|
2021-06-09 10:34:42 +00:00
|
|
|
private readonly Lazy<bool> hasHitCircle;
|
2019-08-30 03:59:58 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// On osu-stable, hitcircles have 5 pixels of transparent padding on each side to allow for shadows etc.
|
|
|
|
/// Their hittable area is 128px, but the actual circle portion is 118px.
|
|
|
|
/// We must account for some gameplay elements such as slider bodies, where this padding is not present.
|
|
|
|
/// </summary>
|
2019-12-18 06:39:36 +00:00
|
|
|
public const float LEGACY_CIRCLE_RADIUS = 64 - 5;
|
2019-08-30 03:59:58 +00:00
|
|
|
|
2021-06-09 10:34:42 +00:00
|
|
|
public OsuLegacySkinTransformer(ISkin skin)
|
|
|
|
: base(skin)
|
2019-08-30 03:59:58 +00:00
|
|
|
{
|
2021-06-11 09:44:44 +00:00
|
|
|
hasHitCircle = new Lazy<bool>(() => GetTexture("hitcircle") != null);
|
2019-08-30 03:59:58 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 07:04:56 +00:00
|
|
|
public override Drawable? GetDrawableComponent(ISkinComponentLookup lookup)
|
2019-08-30 03:59:58 +00:00
|
|
|
{
|
2022-11-09 07:04:56 +00:00
|
|
|
if (lookup is OsuSkinComponentLookup osuComponent)
|
2019-08-30 03:59:58 +00:00
|
|
|
{
|
2021-05-30 10:15:59 +00:00
|
|
|
switch (osuComponent.Component)
|
|
|
|
{
|
|
|
|
case OsuSkinComponents.FollowPoint:
|
2022-11-09 07:39:33 +00:00
|
|
|
return this.GetAnimation("followpoint", true, true, true, startAtCurrentTime: false);
|
2019-08-30 05:40:36 +00:00
|
|
|
|
2022-04-22 22:08:53 +00:00
|
|
|
case OsuSkinComponents.SliderScorePoint:
|
2022-11-09 07:39:33 +00:00
|
|
|
return this.GetAnimation("sliderscorepoint", false, false);
|
2022-04-22 22:08:53 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.SliderFollowCircle:
|
2022-06-29 08:23:35 +00:00
|
|
|
var followCircleContent = this.GetAnimation("sliderfollowcircle", true, true, true);
|
|
|
|
if (followCircleContent != null)
|
|
|
|
return new LegacyFollowCircle(followCircleContent);
|
|
|
|
|
|
|
|
return null;
|
2020-02-07 05:58:29 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.SliderBall:
|
2021-06-09 10:34:42 +00:00
|
|
|
var sliderBallContent = this.GetAnimation("sliderb", true, true, animationSeparator: "");
|
2019-08-30 03:59:58 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
// todo: slider ball has a custom frame delay based on velocity
|
|
|
|
// Math.Max((150 / Velocity) * GameBase.SIXTY_FRAME_TIME, GameBase.SIXTY_FRAME_TIME);
|
2019-08-30 03:59:58 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
if (sliderBallContent != null)
|
2021-06-09 10:34:42 +00:00
|
|
|
return new LegacySliderBall(sliderBallContent, this);
|
2019-08-30 03:59:58 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
return null;
|
2019-12-17 09:16:25 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.SliderBody:
|
|
|
|
if (hasHitCircle.Value)
|
|
|
|
return new LegacySliderBody();
|
2019-12-17 09:16:25 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
return null;
|
2020-10-02 04:41:22 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.SliderTailHitCircle:
|
|
|
|
if (hasHitCircle.Value)
|
|
|
|
return new LegacyMainCirclePiece("sliderendcircle", false);
|
2020-10-02 04:41:22 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
return null;
|
2020-03-28 04:39:08 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.SliderHeadHitCircle:
|
|
|
|
if (hasHitCircle.Value)
|
2021-09-01 10:34:57 +00:00
|
|
|
return new LegacySliderHeadHitCircle();
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
case OsuSkinComponents.ReverseArrow:
|
|
|
|
if (hasHitCircle.Value)
|
2021-09-27 19:45:26 +00:00
|
|
|
return new LegacyReverseArrow();
|
2020-03-28 04:39:08 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
return null;
|
2019-08-30 03:59:58 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.HitCircle:
|
|
|
|
if (hasHitCircle.Value)
|
|
|
|
return new LegacyMainCirclePiece();
|
2019-08-30 04:42:29 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
return null;
|
2019-08-30 04:42:29 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.Cursor:
|
2021-06-09 10:34:42 +00:00
|
|
|
if (GetTexture("cursor") != null)
|
|
|
|
return new LegacyCursor(this);
|
2019-08-30 04:42:29 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
return null;
|
2019-09-09 08:53:51 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.CursorTrail:
|
2021-06-09 10:34:42 +00:00
|
|
|
if (GetTexture("cursortrail") != null)
|
|
|
|
return new LegacyCursorTrail(this);
|
2019-09-09 08:53:51 +00:00
|
|
|
|
2021-03-06 23:18:31 +00:00
|
|
|
return null;
|
|
|
|
|
2023-04-29 07:05:45 +00:00
|
|
|
case OsuSkinComponents.CursorRipple:
|
|
|
|
// TODO: resize texture to 0.5?? but that might break skins..
|
|
|
|
if (GetTexture("cursor-ripple") != null)
|
|
|
|
return this.GetAnimation("cursor-ripple", false, false);
|
|
|
|
|
2023-04-29 07:06:08 +00:00
|
|
|
return null;
|
|
|
|
|
2021-09-09 22:29:05 +00:00
|
|
|
case OsuSkinComponents.CursorParticles:
|
2021-09-12 21:45:50 +00:00
|
|
|
if (GetTexture("star2") != null)
|
|
|
|
return new LegacyCursorParticles();
|
|
|
|
|
|
|
|
return null;
|
2021-09-09 22:29:05 +00:00
|
|
|
|
2022-10-06 02:11:38 +00:00
|
|
|
case OsuSkinComponents.CursorSmoke:
|
2022-09-18 19:08:34 +00:00
|
|
|
if (GetTexture("cursor-smoke") != null)
|
2022-10-05 09:27:51 +00:00
|
|
|
return new LegacySmokeSegment();
|
2022-09-18 19:08:34 +00:00
|
|
|
|
|
|
|
return null;
|
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.HitCircleText:
|
|
|
|
if (!this.HasFont(LegacyFont.HitCircle))
|
|
|
|
return null;
|
2020-07-29 07:25:10 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
return new LegacySpriteText(LegacyFont.HitCircle)
|
|
|
|
{
|
|
|
|
// stable applies a blanket 0.8x scale to hitcircle fonts
|
|
|
|
Scale = new Vector2(0.8f),
|
|
|
|
};
|
2020-07-31 15:05:04 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
case OsuSkinComponents.SpinnerBody:
|
2021-06-09 10:34:42 +00:00
|
|
|
bool hasBackground = GetTexture("spinner-background") != null;
|
2020-07-29 07:55:42 +00:00
|
|
|
|
2021-06-09 10:34:42 +00:00
|
|
|
if (GetTexture("spinner-top") != null && !hasBackground)
|
2021-05-30 10:15:59 +00:00
|
|
|
return new LegacyNewStyleSpinner();
|
|
|
|
else if (hasBackground)
|
|
|
|
return new LegacyOldStyleSpinner();
|
2019-08-30 03:59:58 +00:00
|
|
|
|
2021-05-30 10:15:59 +00:00
|
|
|
return null;
|
2021-09-16 10:35:15 +00:00
|
|
|
|
|
|
|
case OsuSkinComponents.ApproachCircle:
|
|
|
|
return new LegacyApproachCircle();
|
2022-04-22 22:08:53 +00:00
|
|
|
|
|
|
|
default:
|
2022-11-09 05:11:41 +00:00
|
|
|
throw new UnsupportedSkinComponentException(lookup);
|
2021-05-30 10:15:59 +00:00
|
|
|
}
|
2021-05-27 02:15:29 +00:00
|
|
|
}
|
2021-05-30 10:15:59 +00:00
|
|
|
|
2022-11-09 05:11:41 +00:00
|
|
|
return base.GetDrawableComponent(lookup);
|
2019-08-30 03:59:58 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 04:36:52 +00:00
|
|
|
public override IBindable<TValue>? GetConfig<TLookup, TValue>(TLookup lookup)
|
2019-09-02 03:36:08 +00:00
|
|
|
{
|
2019-09-03 08:57:34 +00:00
|
|
|
switch (lookup)
|
|
|
|
{
|
|
|
|
case OsuSkinColour colour:
|
2021-06-11 09:44:44 +00:00
|
|
|
return base.GetConfig<SkinCustomColourLookup, TValue>(new SkinCustomColourLookup(colour));
|
2019-09-03 08:57:34 +00:00
|
|
|
|
|
|
|
case OsuSkinConfiguration osuLookup:
|
|
|
|
switch (osuLookup)
|
|
|
|
{
|
|
|
|
case OsuSkinConfiguration.SliderPathRadius:
|
|
|
|
if (hasHitCircle.Value)
|
2019-12-18 06:39:36 +00:00
|
|
|
return SkinUtils.As<TValue>(new BindableFloat(LEGACY_CIRCLE_RADIUS));
|
2019-09-03 08:57:34 +00:00
|
|
|
|
|
|
|
break;
|
2020-04-04 08:13:25 +00:00
|
|
|
|
|
|
|
case OsuSkinConfiguration.HitCircleOverlayAboveNumber:
|
2020-04-05 05:13:06 +00:00
|
|
|
// See https://osu.ppy.sh/help/wiki/Skinning/skin.ini#%5Bgeneral%5D
|
|
|
|
// HitCircleOverlayAboveNumer (with typo) should still be supported for now.
|
2021-06-11 09:44:44 +00:00
|
|
|
return base.GetConfig<OsuSkinConfiguration, TValue>(OsuSkinConfiguration.HitCircleOverlayAboveNumber) ??
|
|
|
|
base.GetConfig<OsuSkinConfiguration, TValue>(OsuSkinConfiguration.HitCircleOverlayAboveNumer);
|
2019-09-03 08:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2019-09-02 03:36:08 +00:00
|
|
|
|
2021-06-11 09:44:44 +00:00
|
|
|
return base.GetConfig<TLookup, TValue>(lookup);
|
2019-09-02 03:36:08 +00:00
|
|
|
}
|
2019-08-30 03:59:58 +00:00
|
|
|
}
|
|
|
|
}
|