2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
|
private const float judgement_size = 80;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
/// <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,
|
2018-09-29 11:27:25 +08:00
|
|
|
|
Child = new SkinnableDrawable($"Play/{Result.Type}", _ => JudgementText = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = Result.Type.GetDescription().ToUpperInvariant(),
|
|
|
|
|
Font = @"Venera",
|
|
|
|
|
Colour = judgementColour(Result.Type),
|
|
|
|
|
Scale = new Vector2(0.85f, 1),
|
|
|
|
|
TextSize = 12
|
|
|
|
|
}, restrictSize: false)
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
this.FadeInFromZero(100, Easing.OutQuint);
|
|
|
|
|
|
2018-08-02 19:35:54 +08:00
|
|
|
|
switch (Result.Type)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
case HitResult.None:
|
|
|
|
|
break;
|
|
|
|
|
case HitResult.Miss:
|
2018-09-29 11:27:25 +08:00
|
|
|
|
JudgementBody.ScaleTo(1.6f);
|
|
|
|
|
JudgementBody.ScaleTo(1, 100, Easing.In);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-29 11:27:25 +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
|
|
|
|
|
|
|
|
|
this.Delay(600).FadeOut(200);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2018-09-29 11:27:25 +08:00
|
|
|
|
JudgementBody.ScaleTo(0.9f);
|
|
|
|
|
JudgementBody.ScaleTo(1, 500, Easing.OutElastic);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
this.Delay(100).FadeOut(400);
|
|
|
|
|
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;
|
2018-09-29 11:27:25 +08:00
|
|
|
|
default:
|
|
|
|
|
return Color4.White;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|