mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 09:37:24 +08:00
90 lines
2.7 KiB
C#
90 lines
2.7 KiB
C#
// 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.Graphics;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
{
|
|
public class DrawableOsuJudgement : DrawableJudgement
|
|
{
|
|
protected SkinnableLighting Lighting { get; private set; }
|
|
|
|
[Resolved]
|
|
private OsuConfigManager config { get; set; }
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
AddInternal(Lighting = new SkinnableLighting
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Blending = BlendingParameters.Additive,
|
|
Depth = float.MaxValue,
|
|
Alpha = 0
|
|
});
|
|
}
|
|
|
|
protected override void PrepareForUse()
|
|
{
|
|
base.PrepareForUse();
|
|
|
|
Lighting.ResetAnimation();
|
|
Lighting.SetColourFrom(JudgedObject, Result);
|
|
|
|
if (JudgedObject?.HitObject is OsuHitObject osuObject)
|
|
{
|
|
Position = osuObject.StackedPosition;
|
|
Scale = new Vector2(osuObject.Scale);
|
|
}
|
|
}
|
|
|
|
private double fadeOutDelay;
|
|
protected override double FadeOutDelay => fadeOutDelay;
|
|
|
|
protected override void ApplyHitAnimations()
|
|
{
|
|
bool hitLightingEnabled = config.Get<bool>(OsuSetting.HitLighting);
|
|
|
|
if (hitLightingEnabled)
|
|
{
|
|
JudgementBody.FadeIn().Delay(FadeInDuration).FadeOut(400);
|
|
|
|
Lighting.ScaleTo(0.8f).ScaleTo(1.2f, 600, Easing.Out);
|
|
Lighting.FadeIn(200).Then().Delay(200).FadeOut(1000);
|
|
}
|
|
else
|
|
{
|
|
JudgementBody.Alpha = 1;
|
|
}
|
|
|
|
fadeOutDelay = hitLightingEnabled ? 1400 : base.FadeOutDelay;
|
|
|
|
base.ApplyHitAnimations();
|
|
}
|
|
|
|
protected override Drawable CreateDefaultJudgement(HitResult result) => new OsuJudgementPiece(result);
|
|
|
|
private class OsuJudgementPiece : DefaultJudgementPiece
|
|
{
|
|
public OsuJudgementPiece(HitResult result)
|
|
: base(result)
|
|
{
|
|
}
|
|
|
|
public override void PlayAnimation()
|
|
{
|
|
base.PlayAnimation();
|
|
|
|
if (Result != HitResult.Miss)
|
|
JudgementText.TransformSpacingTo(Vector2.Zero).Then().TransformSpacingTo(new Vector2(14, 0), 1800, Easing.OutQuint);
|
|
}
|
|
}
|
|
}
|
|
}
|