1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 02:07:24 +08:00
osu-lazer/osu.Game/Rulesets/Judgements/DrawableJudgement.cs

129 lines
4.1 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
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Scoring;
using osu.Game.Skinning;
2018-11-20 15:51:59 +08:00
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Judgements
{
/// <summary>
/// A drawable object which visualises the hit result of a <see cref="Judgements.Judgement"/>.
/// </summary>
public class DrawableJudgement : CompositeDrawable
2018-04-13 17:19:50 +08:00
{
private const float judgement_size = 80;
private OsuColour colours;
protected readonly JudgementResult Result;
2018-04-13 17:19:50 +08:00
public readonly DrawableHitObject JudgedObject;
protected Container JudgementBody;
2018-04-13 17:19:50 +08:00
protected SpriteText JudgementText;
/// <summary>
2019-03-13 17:27:54 +08:00
/// Duration of initial fade in.
/// Default fade out will start immediately after this duration.
/// </summary>
protected virtual double FadeInDuration => 100;
2018-04-13 17:19:50 +08:00
/// <summary>
/// Creates a drawable which visualises a <see cref="Judgements.Judgement"/>.
/// </summary>
/// <param name="result">The judgement to visualise.</param>
2018-04-13 17:19:50 +08:00
/// <param name="judgedObject">The object which was judged.</param>
public DrawableJudgement(JudgementResult result, DrawableHitObject judgedObject)
2018-04-13 17:19:50 +08:00
{
Result = result;
2018-04-13 17:19:50 +08:00
JudgedObject = judgedObject;
Size = new Vector2(judgement_size);
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
this.colours = colours;
InternalChild = JudgementBody = new Container
2018-04-13 17:19:50 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2018-10-02 08:33:31 +08:00
RelativeSizeAxes = Axes.Both,
Child = new SkinnableDrawable($"Play/{Result.Type}", _ => JudgementText = new OsuSpriteText
{
Text = Result.Type.GetDescription().ToUpperInvariant(),
Font = OsuFont.Numeric.With(size: 12),
Colour = judgementColour(Result.Type),
Scale = new Vector2(0.85f, 1),
}, restrictSize: false)
};
2018-04-13 17:19:50 +08:00
}
protected virtual void ApplyHitAnimations()
{
JudgementBody.ScaleTo(0.9f);
JudgementBody.ScaleTo(1, 500, Easing.OutElastic);
this.Delay(FadeInDuration).FadeOut(400);
}
2018-04-13 17:19:50 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
this.FadeInFromZero(FadeInDuration, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
switch (Result.Type)
2018-04-13 17:19:50 +08:00
{
case HitResult.None:
break;
case HitResult.Miss:
JudgementBody.ScaleTo(1.6f);
2019-03-12 18:44:53 +08:00
JudgementBody.ScaleTo(1, 100, Easing.In);
2018-04-13 17:19:50 +08:00
JudgementBody.MoveToOffset(new Vector2(0, 100), 800, Easing.InQuint);
JudgementBody.RotateTo(40, 800, Easing.InQuint);
2018-04-13 17:19:50 +08:00
2019-03-12 18:24:46 +08:00
this.Delay(600).FadeOut(200);
2018-04-13 17:19:50 +08:00
break;
default:
ApplyHitAnimations();
2018-04-13 17:19:50 +08:00
break;
}
Expire(true);
}
private Color4 judgementColour(HitResult judgement)
{
switch (judgement)
{
case HitResult.Perfect:
case HitResult.Great:
return colours.Blue;
case HitResult.Ok:
case HitResult.Good:
return colours.Green;
case HitResult.Meh:
return colours.Yellow;
case HitResult.Miss:
return colours.Red;
default:
return Color4.White;
2018-04-13 17:19:50 +08:00
}
}
}
}