2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2020-07-04 07:45:46 +00:00
|
|
|
|
using System.Diagnostics;
|
2020-07-10 09:34:31 +00:00
|
|
|
|
using JetBrains.Annotations;
|
2018-11-20 07:51:59 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-07-04 07:45:46 +00:00
|
|
|
|
using osu.Framework.Graphics.Pooling;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Judgements
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A drawable object which visualises the hit result of a <see cref="Judgements.Judgement"/>.
|
|
|
|
|
/// </summary>
|
2020-07-04 07:45:46 +00:00
|
|
|
|
public class DrawableJudgement : PoolableDrawable
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-09-17 17:56:03 +00:00
|
|
|
|
private const float judgement_size = 128;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-02-14 13:14:00 +00:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuColour colours { get; set; }
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-07-10 09:34:31 +00:00
|
|
|
|
public JudgementResult Result { get; private set; }
|
|
|
|
|
public DrawableHitObject JudgedObject { get; private set; }
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-09-29 03:27:25 +00:00
|
|
|
|
protected Container JudgementBody;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
protected SpriteText JudgementText;
|
|
|
|
|
|
2019-03-12 10:41:33 +00:00
|
|
|
|
/// <summary>
|
2019-03-13 09:27:54 +00:00
|
|
|
|
/// Duration of initial fade in.
|
2019-03-12 10:41:33 +00:00
|
|
|
|
/// </summary>
|
2019-03-12 10:23:24 +00:00
|
|
|
|
protected virtual double FadeInDuration => 100;
|
|
|
|
|
|
2019-09-17 17:49:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Duration to wait until fade out begins. Defaults to <see cref="FadeInDuration"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected virtual double FadeOutDelay => FadeInDuration;
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a drawable which visualises a <see cref="Judgements.Judgement"/>.
|
|
|
|
|
/// </summary>
|
2018-08-02 11:35:54 +00:00
|
|
|
|
/// <param name="result">The judgement to visualise.</param>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
/// <param name="judgedObject">The object which was judged.</param>
|
2018-08-02 11:35:54 +00:00
|
|
|
|
public DrawableJudgement(JudgementResult result, DrawableHitObject judgedObject)
|
2020-07-04 07:45:46 +00:00
|
|
|
|
: this()
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-07-10 09:34:31 +00:00
|
|
|
|
Apply(result, judgedObject);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-04 07:45:46 +00:00
|
|
|
|
public DrawableJudgement()
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-07-04 07:45:46 +00:00
|
|
|
|
Size = new Vector2(judgement_size);
|
2020-07-06 03:54:39 +00:00
|
|
|
|
Origin = Anchor.Centre;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-10 09:34:31 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
prepareDrawables();
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-12 10:41:33 +00:00
|
|
|
|
protected virtual void ApplyHitAnimations()
|
|
|
|
|
{
|
|
|
|
|
JudgementBody.ScaleTo(0.9f);
|
|
|
|
|
JudgementBody.ScaleTo(1, 500, Easing.OutElastic);
|
|
|
|
|
|
2019-09-17 17:49:54 +00:00
|
|
|
|
this.Delay(FadeOutDelay).FadeOut(400);
|
2019-03-12 10:41:33 +00:00
|
|
|
|
}
|
2019-03-12 10:23:24 +00:00
|
|
|
|
|
2020-07-10 09:35:20 +00:00
|
|
|
|
public virtual void Apply([NotNull] JudgementResult result, [CanBeNull] DrawableHitObject judgedObject)
|
2020-07-04 07:45:46 +00:00
|
|
|
|
{
|
2020-07-10 09:34:31 +00:00
|
|
|
|
Result = result;
|
|
|
|
|
JudgedObject = judgedObject;
|
2020-07-04 07:45:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PrepareForUse()
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-07-04 07:45:46 +00:00
|
|
|
|
base.PrepareForUse();
|
|
|
|
|
|
|
|
|
|
Debug.Assert(Result != null);
|
|
|
|
|
|
2020-07-10 09:34:31 +00:00
|
|
|
|
prepareDrawables();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-12 10:23:24 +00:00
|
|
|
|
this.FadeInFromZero(FadeInDuration, Easing.OutQuint);
|
2020-07-04 07:45:46 +00:00
|
|
|
|
JudgementBody.ScaleTo(1);
|
|
|
|
|
JudgementBody.RotateTo(0);
|
|
|
|
|
JudgementBody.MoveTo(Vector2.Zero);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-08-02 11:35:54 +00:00
|
|
|
|
switch (Result.Type)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
case HitResult.None:
|
|
|
|
|
break;
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
case HitResult.Miss:
|
2018-09-29 03:27:25 +00:00
|
|
|
|
JudgementBody.ScaleTo(1.6f);
|
2019-03-12 10:44:53 +00:00
|
|
|
|
JudgementBody.ScaleTo(1, 100, Easing.In);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-12 10:41:33 +00:00
|
|
|
|
JudgementBody.MoveToOffset(new Vector2(0, 100), 800, Easing.InQuint);
|
|
|
|
|
JudgementBody.RotateTo(40, 800, Easing.InQuint);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-12 10:24:46 +00:00
|
|
|
|
this.Delay(600).FadeOut(200);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
break;
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
default:
|
2019-03-12 10:41:33 +00:00
|
|
|
|
ApplyHitAnimations();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Expire(true);
|
|
|
|
|
}
|
2020-07-04 07:45:46 +00:00
|
|
|
|
|
2020-07-10 09:34:31 +00:00
|
|
|
|
private HitResult? currentDrawableType;
|
|
|
|
|
|
2020-07-04 07:45:46 +00:00
|
|
|
|
private void prepareDrawables()
|
|
|
|
|
{
|
|
|
|
|
var type = Result?.Type ?? HitResult.Perfect; //TODO: better default type from ruleset
|
|
|
|
|
|
2020-07-10 09:34:31 +00:00
|
|
|
|
if (type == currentDrawableType)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-07-04 07:45:46 +00:00
|
|
|
|
InternalChild = JudgementBody = new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Child = new SkinnableDrawable(new GameplaySkinComponent<HitResult>(type), _ => JudgementText = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = type.GetDescription().ToUpperInvariant(),
|
|
|
|
|
Font = OsuFont.Numeric.With(size: 20),
|
|
|
|
|
Colour = colours.ForHitResult(type),
|
|
|
|
|
Scale = new Vector2(0.85f, 1),
|
|
|
|
|
}, confineMode: ConfineMode.NoScaling)
|
|
|
|
|
};
|
|
|
|
|
|
2020-07-10 09:34:31 +00:00
|
|
|
|
currentDrawableType = type;
|
2020-07-04 07:45:46 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|