2019-08-30 11:59:58 +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 osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
2022-04-19 13:08:02 +08:00
|
|
|
using osu.Framework.Extensions.ObjectExtensions;
|
2019-08-30 11:59:58 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2021-12-28 22:50:43 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2019-08-30 11:59:58 +08:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2020-11-05 13:40:48 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
2019-08-30 11:59:58 +08:00
|
|
|
using osu.Game.Skinning;
|
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
2020-12-04 19:21:53 +08:00
|
|
|
namespace osu.Game.Rulesets.Osu.Skinning.Legacy
|
2019-08-30 11:59:58 +08:00
|
|
|
{
|
2021-06-02 10:46:28 +08:00
|
|
|
public class LegacyMainCirclePiece : CompositeDrawable
|
2019-08-30 11:59:58 +08:00
|
|
|
{
|
2021-06-09 09:53:52 +08:00
|
|
|
public override bool RemoveCompletedTransforms => false;
|
|
|
|
|
2022-04-19 13:06:39 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A prioritised prefix to perform texture lookups with.
|
|
|
|
/// </summary>
|
2022-04-20 00:39:06 +08:00
|
|
|
private readonly string? priorityLookupPrefix;
|
|
|
|
|
|
|
|
private readonly bool hasNumber;
|
2022-04-19 13:06:39 +08:00
|
|
|
|
2022-04-20 05:24:18 +08:00
|
|
|
protected Drawable CircleSprite = null!;
|
|
|
|
protected Drawable OverlaySprite = null!;
|
2021-09-01 18:34:57 +08:00
|
|
|
|
2022-04-19 17:10:10 +08:00
|
|
|
protected Container OverlayLayer { get; private set; } = null!;
|
2020-08-06 01:07:05 +08:00
|
|
|
|
2022-04-19 17:10:10 +08:00
|
|
|
private SkinnableSpriteText hitCircleText = null!;
|
2019-10-01 13:23:41 +08:00
|
|
|
|
2019-08-30 11:59:58 +08:00
|
|
|
private readonly Bindable<Color4> accentColour = new Bindable<Color4>();
|
2019-09-26 15:57:58 +08:00
|
|
|
private readonly IBindable<int> indexInCurrentCombo = new Bindable<int>();
|
2019-10-01 13:23:41 +08:00
|
|
|
|
2022-05-19 12:49:52 +08:00
|
|
|
[Resolved(canBeNull: true)] // Can't really be null but required to handle potential of disposal before DI completes.
|
2022-04-19 17:10:10 +08:00
|
|
|
private DrawableHitObject? drawableObject { get; set; }
|
2020-11-04 16:30:23 +08:00
|
|
|
|
2019-10-03 10:58:20 +08:00
|
|
|
[Resolved]
|
2022-04-19 17:10:10 +08:00
|
|
|
private ISkinSource skin { get; set; } = null!;
|
|
|
|
|
|
|
|
public LegacyMainCirclePiece(string? priorityLookupPrefix = null, bool hasNumber = true)
|
|
|
|
{
|
|
|
|
this.priorityLookupPrefix = priorityLookupPrefix;
|
|
|
|
this.hasNumber = hasNumber;
|
|
|
|
|
|
|
|
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
|
|
|
|
}
|
2019-10-03 10:58:20 +08:00
|
|
|
|
2019-08-30 11:59:58 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2020-11-04 16:30:23 +08:00
|
|
|
private void load()
|
2019-08-30 11:59:58 +08:00
|
|
|
{
|
2022-04-19 17:10:10 +08:00
|
|
|
var drawableOsuObject = (DrawableOsuHitObject?)drawableObject;
|
2019-08-30 11:59:58 +08:00
|
|
|
|
2022-04-20 00:39:06 +08:00
|
|
|
// if a base texture for the specified prefix exists, continue using it for subsequent lookups.
|
|
|
|
// otherwise fall back to the default prefix "hitcircle".
|
|
|
|
string circleName = (priorityLookupPrefix != null && skin.GetTexture(priorityLookupPrefix) != null) ? priorityLookupPrefix : @"hitcircle";
|
2020-10-06 12:56:38 +08:00
|
|
|
|
|
|
|
// at this point, any further texture fetches should be correctly using the priority source if the base texture was retrieved using it.
|
2022-04-20 00:39:06 +08:00
|
|
|
// the conditional above handles the case where a sliderendcircle.png is retrieved from the skin, but sliderendcircleoverlay.png doesn't exist.
|
2022-04-19 12:12:05 +08:00
|
|
|
// expected behaviour in this scenario is not showing the overlay, rather than using hitcircleoverlay.png.
|
2020-10-06 12:56:38 +08:00
|
|
|
|
2021-09-01 18:34:57 +08:00
|
|
|
InternalChildren = new[]
|
2019-08-30 11:59:58 +08:00
|
|
|
{
|
2022-04-20 05:24:18 +08:00
|
|
|
CircleSprite = new KiaiFlashingDrawable(() => new Sprite { Texture = skin.GetTexture(circleName) })
|
2019-08-30 11:59:58 +08:00
|
|
|
{
|
2021-09-01 18:34:57 +08:00
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
},
|
2021-10-03 21:40:32 +08:00
|
|
|
OverlayLayer = new Container
|
2021-09-01 18:34:57 +08:00
|
|
|
{
|
2019-08-30 11:59:58 +08:00
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
2022-04-20 05:24:18 +08:00
|
|
|
Child = OverlaySprite = new KiaiFlashingDrawable(() => skin.GetAnimation(@$"{circleName}overlay", true, true, frameLength: 1000 / 2d))
|
2021-10-03 21:40:32 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
},
|
|
|
|
}
|
2020-10-02 12:40:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
if (hasNumber)
|
|
|
|
{
|
2021-10-03 21:40:32 +08:00
|
|
|
OverlayLayer.Add(hitCircleText = new SkinnableSpriteText(new OsuSkinComponent(OsuSkinComponents.HitCircleText), _ => new OsuSpriteText
|
2019-08-30 11:59:58 +08:00
|
|
|
{
|
|
|
|
Font = OsuFont.Numeric.With(size: 40),
|
|
|
|
UseFullGlyphHeight = false,
|
2019-10-03 11:49:32 +08:00
|
|
|
}, confineMode: ConfineMode.NoScaling)
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
2020-10-02 12:40:24 +08:00
|
|
|
});
|
|
|
|
}
|
2019-08-30 11:59:58 +08:00
|
|
|
|
2020-03-30 18:42:18 +08:00
|
|
|
bool overlayAboveNumber = skin.GetConfig<OsuSkinConfiguration, bool>(OsuSkinConfiguration.HitCircleOverlayAboveNumber)?.Value ?? true;
|
|
|
|
|
2020-08-06 01:07:05 +08:00
|
|
|
if (overlayAboveNumber)
|
2022-04-20 05:24:18 +08:00
|
|
|
OverlayLayer.ChangeChildDepth(OverlaySprite, float.MinValue);
|
2020-03-30 18:42:18 +08:00
|
|
|
|
2022-04-19 08:25:18 +08:00
|
|
|
if (drawableOsuObject != null)
|
|
|
|
{
|
|
|
|
accentColour.BindTo(drawableOsuObject.AccentColour);
|
|
|
|
indexInCurrentCombo.BindTo(drawableOsuObject.IndexInCurrentComboBindable);
|
|
|
|
}
|
2019-08-30 11:59:58 +08:00
|
|
|
}
|
|
|
|
|
2020-08-06 01:07:05 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2022-04-20 05:24:18 +08:00
|
|
|
accentColour.BindValueChanged(colour => CircleSprite.Colour = LegacyColourCompatibility.DisallowZeroAlpha(colour.NewValue), true);
|
2020-10-02 12:40:24 +08:00
|
|
|
if (hasNumber)
|
|
|
|
indexInCurrentCombo.BindValueChanged(index => hitCircleText.Text = (index.NewValue + 1).ToString(), true);
|
2021-06-02 10:32:24 +08:00
|
|
|
|
2022-04-19 08:25:18 +08:00
|
|
|
if (drawableObject != null)
|
2022-04-19 13:08:02 +08:00
|
|
|
{
|
2022-04-19 08:25:18 +08:00
|
|
|
drawableObject.ApplyCustomUpdateState += updateStateTransforms;
|
2022-04-19 13:08:02 +08:00
|
|
|
updateStateTransforms(drawableObject, drawableObject.State.Value);
|
|
|
|
}
|
2020-08-06 01:07:05 +08:00
|
|
|
}
|
|
|
|
|
2021-06-09 15:14:55 +08:00
|
|
|
private void updateStateTransforms(DrawableHitObject drawableHitObject, ArmedState state)
|
2019-08-30 11:59:58 +08:00
|
|
|
{
|
|
|
|
const double legacy_fade_duration = 240;
|
|
|
|
|
2022-04-19 13:08:02 +08:00
|
|
|
using (BeginAbsoluteSequence(drawableObject.AsNonNull().HitStateUpdateTime))
|
2019-08-30 11:59:58 +08:00
|
|
|
{
|
2021-06-09 15:14:55 +08:00
|
|
|
switch (state)
|
2020-11-04 16:30:23 +08:00
|
|
|
{
|
|
|
|
case ArmedState.Hit:
|
2022-04-20 05:24:18 +08:00
|
|
|
CircleSprite.FadeOut(legacy_fade_duration, Easing.Out);
|
|
|
|
CircleSprite.ScaleTo(1.4f, legacy_fade_duration, Easing.Out);
|
2021-09-01 18:34:57 +08:00
|
|
|
|
2022-04-20 05:24:18 +08:00
|
|
|
OverlaySprite.FadeOut(legacy_fade_duration, Easing.Out);
|
|
|
|
OverlaySprite.ScaleTo(1.4f, legacy_fade_duration, Easing.Out);
|
2020-10-02 12:40:24 +08:00
|
|
|
|
2020-11-04 16:30:23 +08:00
|
|
|
if (hasNumber)
|
2020-10-02 12:40:24 +08:00
|
|
|
{
|
2021-10-28 05:24:20 +08:00
|
|
|
decimal? legacyVersion = skin.GetConfig<SkinConfiguration.LegacySetting, decimal>(SkinConfiguration.LegacySetting.Version)?.Value;
|
2020-11-04 16:30:23 +08:00
|
|
|
|
|
|
|
if (legacyVersion >= 2.0m)
|
|
|
|
// legacy skins of version 2.0 and newer only apply very short fade out to the number piece.
|
|
|
|
hitCircleText.FadeOut(legacy_fade_duration / 4, Easing.Out);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// old skins scale and fade it normally along other pieces.
|
|
|
|
hitCircleText.FadeOut(legacy_fade_duration, Easing.Out);
|
|
|
|
hitCircleText.ScaleTo(1.4f, legacy_fade_duration, Easing.Out);
|
|
|
|
}
|
2020-10-02 12:40:24 +08:00
|
|
|
}
|
2019-10-03 10:58:20 +08:00
|
|
|
|
2020-11-04 16:30:23 +08:00
|
|
|
break;
|
|
|
|
}
|
2019-08-30 11:59:58 +08:00
|
|
|
}
|
|
|
|
}
|
2021-06-09 15:14:55 +08:00
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
|
|
|
if (drawableObject != null)
|
|
|
|
drawableObject.ApplyCustomUpdateState -= updateStateTransforms;
|
|
|
|
}
|
2019-08-30 11:59:58 +08:00
|
|
|
}
|
|
|
|
}
|