// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osuTK; 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; using osuTK.Graphics; namespace osu.Game.Rulesets.Judgements { /// /// A drawable object which visualises the hit result of a . /// public class DrawableJudgement : CompositeDrawable { private const float judgement_size = 80; private OsuColour colours; protected readonly JudgementResult Result; public readonly DrawableHitObject JudgedObject; protected Container JudgementBody; protected SpriteText JudgementText; protected virtual double FadeInDuration => 100; protected virtual float InitialHitScale => 0.9f; protected virtual float HitScaleDuration => 500; protected virtual double HitFadeOutDuration => 400; /// /// Creates a drawable which visualises a . /// /// The judgement to visualise. /// The object which was judged. public DrawableJudgement(JudgementResult result, DrawableHitObject judgedObject) { Result = result; JudgedObject = judgedObject; Size = new Vector2(judgement_size); } [BackgroundDependencyLoader] private void load(OsuColour colours) { this.colours = colours; InternalChild = JudgementBody = new Container { Anchor = Anchor.Centre, Origin = Anchor.Centre, 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) }; } private const double MISS_ANIMATION_DURATION = 800; protected override void LoadComplete() { base.LoadComplete(); this.FadeInFromZero(FadeInDuration, Easing.OutQuint); switch (Result.Type) { case HitResult.None: break; case HitResult.Miss: JudgementBody.ScaleTo(1.6f); JudgementBody.ScaleTo(1, FadeInDuration, Easing.In); JudgementBody.MoveToOffset(new Vector2(0, 100), MISS_ANIMATION_DURATION, Easing.InQuint); JudgementBody.RotateTo(40, MISS_ANIMATION_DURATION, Easing.InQuint); this.Delay(500).FadeOut(200); break; default: JudgementBody.ScaleTo(InitialHitScale); JudgementBody.ScaleTo(1, HitScaleDuration, Easing.OutElastic); this.Delay(FadeInDuration).FadeOut(HitFadeOutDuration); 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; } } } }