2017-03-23 11:49:28 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK;
|
|
|
|
|
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;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2017-03-23 11:49:28 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Judgements
|
2017-03-23 11:49:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-03-23 18:00:18 +08:00
|
|
|
|
/// A drawable object which visualises the hit result of a <see cref="Judgements.Judgement"/>.
|
2017-03-23 11:49:28 +08:00
|
|
|
|
/// </summary>
|
2017-09-06 17:05:51 +08:00
|
|
|
|
public class DrawableJudgement : Container
|
2017-03-23 11:49:28 +08:00
|
|
|
|
{
|
2017-09-06 16:02:13 +08:00
|
|
|
|
protected readonly Judgement Judgement;
|
2017-03-23 11:49:28 +08:00
|
|
|
|
|
|
|
|
|
protected readonly SpriteText JudgementText;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-03-23 18:00:18 +08:00
|
|
|
|
/// Creates a drawable which visualises a <see cref="Judgements.Judgement"/>.
|
2017-03-23 11:49:28 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="judgement">The judgement to visualise.</param>
|
2017-09-06 16:02:13 +08:00
|
|
|
|
public DrawableJudgement(Judgement judgement)
|
2017-03-23 11:49:28 +08:00
|
|
|
|
{
|
|
|
|
|
Judgement = judgement;
|
|
|
|
|
|
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
JudgementText = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
2017-09-05 18:44:59 +08:00
|
|
|
|
Text = judgement.Result.GetDescription().ToUpper(),
|
2017-03-23 11:49:28 +08:00
|
|
|
|
Font = @"Venera",
|
|
|
|
|
TextSize = 16
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
switch (Judgement.Result)
|
|
|
|
|
{
|
|
|
|
|
case HitResult.Miss:
|
|
|
|
|
Colour = colours.Red;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2017-07-23 02:50:25 +08:00
|
|
|
|
this.FadeInFromZero(100, Easing.OutQuint);
|
2017-03-23 14:07:45 +08:00
|
|
|
|
|
|
|
|
|
switch (Judgement.Result)
|
2017-03-23 11:49:28 +08:00
|
|
|
|
{
|
2017-09-05 18:44:59 +08:00
|
|
|
|
case HitResult.None:
|
|
|
|
|
break;
|
2017-03-23 14:07:45 +08:00
|
|
|
|
case HitResult.Miss:
|
2017-07-15 00:18:12 +08:00
|
|
|
|
this.ScaleTo(1.6f);
|
2017-07-23 02:50:25 +08:00
|
|
|
|
this.ScaleTo(1, 100, Easing.In);
|
2017-03-23 11:49:28 +08:00
|
|
|
|
|
2017-07-23 02:50:25 +08:00
|
|
|
|
this.MoveToOffset(new Vector2(0, 100), 800, Easing.InQuint);
|
|
|
|
|
this.RotateTo(40, 800, Easing.InQuint);
|
2017-03-23 11:49:28 +08:00
|
|
|
|
|
2017-07-17 21:51:21 +08:00
|
|
|
|
this.Delay(600).FadeOut(200);
|
2017-03-23 14:07:45 +08:00
|
|
|
|
break;
|
2017-09-05 18:44:59 +08:00
|
|
|
|
default:
|
2017-07-15 00:18:12 +08:00
|
|
|
|
this.ScaleTo(0.9f);
|
2017-07-23 02:50:25 +08:00
|
|
|
|
this.ScaleTo(1, 500, Easing.OutElastic);
|
2017-03-23 11:49:28 +08:00
|
|
|
|
|
2017-07-17 21:51:21 +08:00
|
|
|
|
this.Delay(100).FadeOut(400);
|
2017-03-23 14:07:45 +08:00
|
|
|
|
break;
|
2017-03-23 11:49:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-02 20:21:07 +08:00
|
|
|
|
Expire(true);
|
2017-03-23 11:49:28 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|