1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 02:57:26 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableOsuJudgement.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

113 lines
3.4 KiB
C#
Raw Normal View History

// 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 17:19:50 +08:00
using osu.Framework.Allocation;
2017-03-28 20:26:20 +08:00
using osu.Framework.Graphics;
using osu.Game.Configuration;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Judgements;
2024-07-18 18:07:02 +08:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Scoring;
using osuTK;
2024-07-18 18:07:02 +08:00
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Osu.Objects.Drawables
{
2017-09-06 17:05:51 +08:00
public partial class DrawableOsuJudgement : DrawableJudgement
{
2024-07-18 18:07:02 +08:00
internal Color4 AccentColour { get; private set; }
internal SkinnableLighting Lighting { get; private set; } = null!;
[Resolved]
private OsuConfigManager config { get; set; } = null!;
2024-07-18 18:07:02 +08:00
private Vector2 screenSpacePosition;
[BackgroundDependencyLoader]
private void load()
{
AddInternal(Lighting = new SkinnableLighting
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Blending = BlendingParameters.Additive,
Depth = float.MaxValue,
Alpha = 0
});
}
2024-07-18 18:07:02 +08:00
public override void Apply(JudgementResult result, DrawableHitObject? judgedObject)
{
2024-07-18 18:07:02 +08:00
base.Apply(result, judgedObject);
2024-07-18 18:07:02 +08:00
if (judgedObject is not DrawableOsuHitObject osuObject)
return;
2024-07-18 18:07:02 +08:00
AccentColour = osuObject.AccentColour.Value;
2024-04-24 18:40:23 +08:00
2024-07-18 18:07:02 +08:00
switch (osuObject)
{
2024-07-18 18:07:02 +08:00
case DrawableSlider slider:
screenSpacePosition = slider.TailCircle.ToScreenSpace(slider.TailCircle.OriginPosition);
break;
2024-07-18 18:07:02 +08:00
default:
screenSpacePosition = osuObject.ToScreenSpace(osuObject.OriginPosition);
break;
}
2024-07-18 18:07:02 +08:00
Scale = new Vector2(osuObject.HitObject.Scale);
}
2024-07-18 18:07:02 +08:00
protected override void PrepareForUse()
{
base.PrepareForUse();
Lighting.ResetAnimation();
Lighting.SetColourFrom(this, Result);
Position = Parent!.ToLocalSpace(screenSpacePosition);
}
protected override void ApplyHitAnimations()
{
bool hitLightingEnabled = config.Get<bool>(OsuSetting.HitLighting);
Lighting.Alpha = 0;
2022-11-09 15:45:06 +08:00
if (hitLightingEnabled)
{
2020-11-18 16:15:53 +08:00
// todo: this animation changes slightly based on new/old legacy skin versions.
2020-07-15 04:51:30 +08:00
Lighting.ScaleTo(0.8f).ScaleTo(1.2f, 600, Easing.Out);
Lighting.FadeIn(200).Then().Delay(200).FadeOut(1000);
// extend the lifetime to cover lighting fade
LifetimeEnd = Lighting.LatestTransformEndTime;
}
base.ApplyHitAnimations();
}
2020-11-17 14:43:54 +08:00
protected override Drawable CreateDefaultJudgement(HitResult result) => new OsuJudgementPiece(result);
private partial class OsuJudgementPiece : DefaultJudgementPiece
{
2020-11-17 14:43:54 +08:00
public OsuJudgementPiece(HitResult result)
: base(result)
{
2020-11-17 14:43:54 +08:00
}
public override void PlayAnimation()
{
if (Result != HitResult.Miss)
{
JudgementText
.ScaleTo(new Vector2(0.8f, 1))
.ScaleTo(new Vector2(1.2f, 1), 1800, Easing.OutQuint);
}
base.PlayAnimation();
}
}
}
}