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
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-09-17 17:49:54 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-03-28 12:26:20 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-09-17 17:49:54 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2017-04-18 07:05:58 +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
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
2016-11-17 08:20:51 +00:00
|
|
|
|
{
|
2017-09-06 09:05:51 +00:00
|
|
|
|
public partial class DrawableOsuJudgement : DrawableJudgement
|
2016-11-17 08:20:51 +00:00
|
|
|
|
{
|
2023-02-17 09:22:30 +00:00
|
|
|
|
internal 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)
|
|
|
|
|
{
|
2021-02-03 13:42:50 +00:00
|
|
|
|
Position = osuObject.StackedEndPosition;
|
2020-11-17 05:05:13 +00:00
|
|
|
|
Scale = new Vector2(osuObject.Scale);
|
|
|
|
|
}
|
2019-09-17 17:49:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-12 10:52:44 +00:00
|
|
|
|
protected override void ApplyHitAnimations()
|
2016-11-17 08:20:51 +00:00
|
|
|
|
{
|
2020-07-26 21:26:21 +00:00
|
|
|
|
bool hitLightingEnabled = config.Get<bool>(OsuSetting.HitLighting);
|
|
|
|
|
|
2020-11-19 05:10:07 +00:00
|
|
|
|
Lighting.Alpha = 0;
|
|
|
|
|
|
2022-11-09 07:45:06 +00:00
|
|
|
|
if (hitLightingEnabled)
|
2019-09-17 17:49:54 +00:00
|
|
|
|
{
|
2020-11-18 08:15:53 +00:00
|
|
|
|
// todo: this animation changes slightly based on new/old legacy skin versions.
|
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);
|
2020-07-26 21:26:21 +00:00
|
|
|
|
|
2020-11-18 06:39:02 +00:00
|
|
|
|
// extend the lifetime to cover lighting fade
|
2020-11-18 06:51:09 +00:00
|
|
|
|
LifetimeEnd = Lighting.LatestTransformEndTime;
|
2020-11-18 06:39:02 +00:00
|
|
|
|
}
|
2019-09-17 17:49:54 +00:00
|
|
|
|
|
2019-03-12 10:52:44 +00:00
|
|
|
|
base.ApplyHitAnimations();
|
2016-11-17 08:20:51 +00:00
|
|
|
|
}
|
2020-11-17 05:59:34 +00:00
|
|
|
|
|
2020-11-17 06:43:54 +00:00
|
|
|
|
protected override Drawable CreateDefaultJudgement(HitResult result) => new OsuJudgementPiece(result);
|
2020-11-17 05:59:34 +00:00
|
|
|
|
|
|
|
|
|
private partial class OsuJudgementPiece : DefaultJudgementPiece
|
|
|
|
|
{
|
2020-11-17 06:43:54 +00:00
|
|
|
|
public OsuJudgementPiece(HitResult result)
|
|
|
|
|
: base(result)
|
2020-11-17 05:59:34 +00:00
|
|
|
|
{
|
2020-11-17 06:43:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void PlayAnimation()
|
|
|
|
|
{
|
|
|
|
|
if (Result != HitResult.Miss)
|
2021-09-02 07:31:43 +00:00
|
|
|
|
{
|
|
|
|
|
JudgementText
|
|
|
|
|
.ScaleTo(new Vector2(0.8f, 1))
|
|
|
|
|
.ScaleTo(new Vector2(1.2f, 1), 1800, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base.PlayAnimation();
|
2020-11-17 05:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-17 08:20:51 +00:00
|
|
|
|
}
|
2017-12-30 20:23:18 +00:00
|
|
|
|
}
|