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
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2020-11-17 13:59:34 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
|
|
{
|
2018-05-22 04:24:10 +08:00
|
|
|
public class DrawableManiaJudgement : DrawableJudgement
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2018-08-02 19:36:54 +08:00
|
|
|
public DrawableManiaJudgement(JudgementResult result, DrawableHitObject judgedObject)
|
|
|
|
: base(result, judgedObject)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-07-29 15:41:10 +08:00
|
|
|
public DrawableManiaJudgement()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-11-18 18:34:00 +08:00
|
|
|
protected override Drawable CreateDefaultJudgement(HitResult result) => new DefaultManiaJudgementPiece(result);
|
2020-11-17 13:59:34 +08:00
|
|
|
|
2020-11-18 18:34:00 +08:00
|
|
|
private class DefaultManiaJudgementPiece : DefaultJudgementPiece
|
2020-11-17 13:59:34 +08:00
|
|
|
{
|
2020-11-18 18:34:00 +08:00
|
|
|
public DefaultManiaJudgementPiece(HitResult result)
|
2020-11-17 14:43:54 +08:00
|
|
|
: base(result)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-11-17 13:59:34 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2020-11-17 14:43:54 +08:00
|
|
|
|
2020-11-17 13:59:34 +08:00
|
|
|
JudgementText.Font = JudgementText.Font.With(size: 25);
|
|
|
|
}
|
2020-12-14 12:07:55 +08:00
|
|
|
|
|
|
|
public override void PlayAnimation()
|
|
|
|
{
|
|
|
|
base.PlayAnimation();
|
|
|
|
|
|
|
|
switch (Result)
|
|
|
|
{
|
|
|
|
case HitResult.None:
|
|
|
|
case HitResult.Miss:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
this.ScaleTo(0.8f);
|
|
|
|
this.ScaleTo(1, 250, Easing.OutElastic);
|
|
|
|
|
|
|
|
this.Delay(50)
|
|
|
|
.ScaleTo(0.75f, 250)
|
|
|
|
.FadeOut(200);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-11-17 13:59:34 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|