2019-01-24 16:43:03 +08: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 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>
|
2018-09-29 11:27:25 +08:00
|
|
|
|
public class DrawableJudgement : CompositeDrawable
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-09-18 01:56:03 +08:00
|
|
|
|
private const float judgement_size = 128;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
private OsuColour colours;
|
|
|
|
|
|
2018-08-02 19:35:54 +08:00
|
|
|
|
protected readonly JudgementResult Result;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public readonly DrawableHitObject JudgedObject;
|
|
|
|
|
|
2018-09-29 11:27:25 +08:00
|
|
|
|
protected Container JudgementBody;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected SpriteText JudgementText;
|
|
|
|
|
|
2019-03-12 18:41:33 +08:00
|
|
|
|
/// <summary>
|
2019-03-13 17:27:54 +08:00
|
|
|
|
/// Duration of initial fade in.
|
2019-03-12 18:41:33 +08:00
|
|
|
|
/// </summary>
|
2019-03-12 18:23:24 +08:00
|
|
|
|
protected virtual double FadeInDuration => 100;
|
|
|
|
|
|
2019-09-18 01:49:54 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Duration to wait until fade out begins. Defaults to <see cref="FadeInDuration"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected virtual double FadeOutDelay => FadeInDuration;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a drawable which visualises a <see cref="Judgements.Judgement"/>.
|
|
|
|
|
/// </summary>
|
2018-08-02 19:35:54 +08:00
|
|
|
|
/// <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>
|
2018-08-02 19:35:54 +08:00
|
|
|
|
public DrawableJudgement(JudgementResult result, DrawableHitObject judgedObject)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-08-02 19:35:54 +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;
|
|
|
|
|
|
2018-09-29 11:27:25 +08:00
|
|
|
|
InternalChild = JudgementBody = new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-29 11:27:25 +08:00
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
2018-10-02 08:33:31 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-08-30 14:10:11 +08:00
|
|
|
|
Child = new SkinnableDrawable(new GameplaySkinComponent<HitResult>(Result.Type), _ => JudgementText = new OsuSpriteText
|
2018-09-29 11:27:25 +08:00
|
|
|
|
{
|
|
|
|
|
Text = Result.Type.GetDescription().ToUpperInvariant(),
|
2019-09-18 01:56:03 +08:00
|
|
|
|
Font = OsuFont.Numeric.With(size: 20),
|
2018-09-29 11:27:25 +08:00
|
|
|
|
Colour = judgementColour(Result.Type),
|
|
|
|
|
Scale = new Vector2(0.85f, 1),
|
2019-09-19 16:27:54 +08:00
|
|
|
|
}, confineMode: ConfineMode.NoScaling)
|
2018-09-29 11:27:25 +08:00
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-12 18:41:33 +08:00
|
|
|
|
protected virtual void ApplyHitAnimations()
|
|
|
|
|
{
|
|
|
|
|
JudgementBody.ScaleTo(0.9f);
|
|
|
|
|
JudgementBody.ScaleTo(1, 500, Easing.OutElastic);
|
|
|
|
|
|
2019-09-18 01:49:54 +08:00
|
|
|
|
this.Delay(FadeOutDelay).FadeOut(400);
|
2019-03-12 18:41:33 +08:00
|
|
|
|
}
|
2019-03-12 18:23:24 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2019-03-12 18:23:24 +08:00
|
|
|
|
this.FadeInFromZero(FadeInDuration, Easing.OutQuint);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-08-02 19:35:54 +08:00
|
|
|
|
switch (Result.Type)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
case HitResult.None:
|
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case HitResult.Miss:
|
2018-09-29 11:27:25 +08:00
|
|
|
|
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
|
|
|
|
|
2019-03-12 18:41:33 +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;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
default:
|
2019-03-12 18:41:33 +08:00
|
|
|
|
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;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case HitResult.Ok:
|
|
|
|
|
case HitResult.Good:
|
|
|
|
|
return colours.Green;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case HitResult.Meh:
|
|
|
|
|
return colours.Yellow;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case HitResult.Miss:
|
|
|
|
|
return colours.Red;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-09-29 11:27:25 +08:00
|
|
|
|
default:
|
|
|
|
|
return Color4.White;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|