2019-01-24 08:43:03 +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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-09-17 17:49:54 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-09-17 17:49:54 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2020-11-17 05:59:34 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
|
|
|
{
|
|
|
|
|
public class DrawableOsuJudgement : DrawableJudgement
|
|
|
|
|
{
|
2020-11-05 05:49:15 +00:00
|
|
|
|
protected SkinnableLighting Lighting { get; private set; }
|
2019-09-17 17:49:54 +00:00
|
|
|
|
|
2020-07-26 21:20:38 +00:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuConfigManager config { get; set; }
|
|
|
|
|
|
2019-09-17 17:49:54 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
2020-07-26 21:20:38 +00:00
|
|
|
|
private void load()
|
2019-09-17 17:49:54 +00:00
|
|
|
|
{
|
2020-11-05 05:49:15 +00:00
|
|
|
|
AddInternal(Lighting = new SkinnableLighting
|
2019-09-17 17:49:54 +00:00
|
|
|
|
{
|
2020-07-26 21:20:38 +00:00
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Blending = BlendingParameters.Additive,
|
|
|
|
|
Depth = float.MaxValue,
|
|
|
|
|
Alpha = 0
|
|
|
|
|
});
|
2020-07-04 07:45:46 +00:00
|
|
|
|
}
|
2019-09-17 17:49:54 +00:00
|
|
|
|
|
2020-07-04 07:45:46 +00:00
|
|
|
|
protected override void PrepareForUse()
|
|
|
|
|
{
|
|
|
|
|
base.PrepareForUse();
|
|
|
|
|
|
2020-07-26 21:20:38 +00:00
|
|
|
|
Lighting.ResetAnimation();
|
2020-11-05 05:49:15 +00:00
|
|
|
|
Lighting.SetColourFrom(JudgedObject, Result);
|
2020-11-17 05:05:13 +00:00
|
|
|
|
|
|
|
|
|
if (JudgedObject?.HitObject is OsuHitObject osuObject)
|
|
|
|
|
{
|
|
|
|
|
Position = osuObject.StackedPosition;
|
|
|
|
|
Scale = new Vector2(osuObject.Scale);
|
|
|
|
|
}
|
2019-09-17 17:49:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-26 21:26:21 +00:00
|
|
|
|
private double fadeOutDelay;
|
|
|
|
|
protected override double FadeOutDelay => fadeOutDelay;
|
2019-09-17 17:49:54 +00:00
|
|
|
|
|
2019-03-12 10:52:44 +00:00
|
|
|
|
protected override void ApplyHitAnimations()
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-07-26 21:26:21 +00:00
|
|
|
|
bool hitLightingEnabled = config.Get<bool>(OsuSetting.HitLighting);
|
|
|
|
|
|
|
|
|
|
if (hitLightingEnabled)
|
2019-09-17 17:49:54 +00:00
|
|
|
|
{
|
2020-07-04 07:45:46 +00:00
|
|
|
|
JudgementBody.FadeIn().Delay(FadeInDuration).FadeOut(400);
|
2019-09-17 17:49:54 +00:00
|
|
|
|
|
2020-07-14 20:51:30 +00:00
|
|
|
|
Lighting.ScaleTo(0.8f).ScaleTo(1.2f, 600, Easing.Out);
|
|
|
|
|
Lighting.FadeIn(200).Then().Delay(200).FadeOut(1000);
|
2019-09-17 17:49:54 +00:00
|
|
|
|
}
|
2020-07-26 21:26:21 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
JudgementBody.Alpha = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fadeOutDelay = hitLightingEnabled ? 1400 : base.FadeOutDelay;
|
2019-09-17 17:49:54 +00:00
|
|
|
|
|
2019-03-12 10:52:44 +00:00
|
|
|
|
base.ApplyHitAnimations();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
2020-11-17 05:59:34 +00:00
|
|
|
|
|
|
|
|
|
protected override Drawable CreateDefaultJudgement(HitResult type) => new OsuJudgementPiece();
|
|
|
|
|
|
|
|
|
|
private class OsuJudgementPiece : DefaultJudgementPiece
|
|
|
|
|
{
|
|
|
|
|
public override void PlayAnimation(HitResult resultType)
|
|
|
|
|
{
|
|
|
|
|
base.PlayAnimation(resultType);
|
|
|
|
|
|
|
|
|
|
if (resultType != HitResult.Miss)
|
|
|
|
|
JudgementText.TransformSpacingTo(Vector2.Zero).Then().TransformSpacingTo(new Vector2(14, 0), 1800, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|