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
|
|
|
|
|
2020-07-04 15:45:46 +08:00
|
|
|
|
using System.Diagnostics;
|
2020-07-10 17:34:31 +08:00
|
|
|
|
using JetBrains.Annotations;
|
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;
|
2020-07-04 15:45:46 +08:00
|
|
|
|
using osu.Framework.Graphics.Pooling;
|
2018-04-13 17:19:50 +08: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 15:45:46 +08:00
|
|
|
|
public class DrawableJudgement : PoolableDrawable
|
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
|
|
|
|
|
2020-02-14 21:14:00 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuColour colours { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-07-10 17:34:31 +08:00
|
|
|
|
public JudgementResult Result { get; private set; }
|
|
|
|
|
public DrawableHitObject JudgedObject { get; private set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-07-13 19:12:50 +08:00
|
|
|
|
protected Container JudgementBody { get; private set; }
|
|
|
|
|
protected SpriteText JudgementText { get; private set; }
|
|
|
|
|
|
|
|
|
|
private SkinnableDrawable bodyDrawable;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
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)
|
2020-07-04 15:45:46 +08:00
|
|
|
|
: this()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-07-10 17:34:31 +08:00
|
|
|
|
Apply(result, judgedObject);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-04 15:45:46 +08:00
|
|
|
|
public DrawableJudgement()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-07-04 15:45:46 +08:00
|
|
|
|
Size = new Vector2(judgement_size);
|
2020-07-06 11:54:39 +08:00
|
|
|
|
Origin = Anchor.Centre;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-10 17:34:31 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
prepareDrawables();
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
2020-07-10 17:35:20 +08:00
|
|
|
|
public virtual void Apply([NotNull] JudgementResult result, [CanBeNull] DrawableHitObject judgedObject)
|
2020-07-04 15:45:46 +08:00
|
|
|
|
{
|
2020-07-10 17:34:31 +08:00
|
|
|
|
Result = result;
|
|
|
|
|
JudgedObject = judgedObject;
|
2020-07-04 15:45:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PrepareForUse()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-07-04 15:45:46 +08:00
|
|
|
|
base.PrepareForUse();
|
|
|
|
|
|
|
|
|
|
Debug.Assert(Result != null);
|
|
|
|
|
|
2020-07-10 17:34:31 +08:00
|
|
|
|
prepareDrawables();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-07-13 19:12:50 +08:00
|
|
|
|
bodyDrawable.ResetAnimation();
|
|
|
|
|
|
2019-03-12 18:23:24 +08:00
|
|
|
|
this.FadeInFromZero(FadeInDuration, Easing.OutQuint);
|
2020-07-04 15:45:46 +08:00
|
|
|
|
JudgementBody.ScaleTo(1);
|
|
|
|
|
JudgementBody.RotateTo(0);
|
|
|
|
|
JudgementBody.MoveTo(Vector2.Zero);
|
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);
|
|
|
|
|
}
|
2020-07-04 15:45:46 +08:00
|
|
|
|
|
2020-07-10 17:34:31 +08:00
|
|
|
|
private HitResult? currentDrawableType;
|
|
|
|
|
|
2020-07-04 15:45:46 +08:00
|
|
|
|
private void prepareDrawables()
|
|
|
|
|
{
|
|
|
|
|
var type = Result?.Type ?? HitResult.Perfect; //TODO: better default type from ruleset
|
|
|
|
|
|
2020-07-10 17:34:31 +08:00
|
|
|
|
if (type == currentDrawableType)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-07-27 05:22:31 +08:00
|
|
|
|
// sub-classes might have added their own children that would be removed here if .InternalChild was used.
|
|
|
|
|
if (JudgementBody != null)
|
|
|
|
|
RemoveInternal(JudgementBody);
|
|
|
|
|
|
|
|
|
|
AddInternal(JudgementBody = new Container
|
2020-07-04 15:45:46 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-07-13 19:12:50 +08:00
|
|
|
|
Child = bodyDrawable = new SkinnableDrawable(new GameplaySkinComponent<HitResult>(type), _ => JudgementText = new OsuSpriteText
|
2020-07-04 15:45:46 +08:00
|
|
|
|
{
|
|
|
|
|
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-27 05:22:31 +08:00
|
|
|
|
});
|
2020-07-04 15:45:46 +08:00
|
|
|
|
|
2020-07-10 17:34:31 +08:00
|
|
|
|
currentDrawableType = type;
|
2020-07-04 15:45:46 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|