1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 09:27:23 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/UI/HitExplosion.cs

87 lines
2.4 KiB
C#
Raw Normal View History

2017-03-21 15:40:37 +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;
2017-03-21 14:54:57 +08:00
using OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Taiko.Judgements;
using osu.Game.Rulesets.Taiko.Objects;
2017-03-21 14:54:57 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Taiko.UI
2017-03-21 14:54:57 +08:00
{
2017-03-21 17:16:14 +08:00
/// <summary>
/// A circle explodes from the hit target to indicate a hitobject has been hit.
2017-03-21 17:16:14 +08:00
/// </summary>
internal class HitExplosion : CircularContainer
2017-03-21 14:54:57 +08:00
{
/// <summary>
/// The judgement this hit explosion visualises.
/// </summary>
public readonly TaikoJudgement Judgement;
2017-03-23 13:37:00 +08:00
private readonly Box innerFill;
2017-03-21 14:54:57 +08:00
public HitExplosion(TaikoJudgement judgement)
2017-03-21 14:54:57 +08:00
{
Judgement = judgement;
Size = new Vector2(TaikoHitObject.DEFAULT_CIRCLE_DIAMETER);
2017-03-21 14:54:57 +08:00
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
RelativePositionAxes = Axes.Both;
BorderColour = Color4.White;
BorderThickness = 1;
Alpha = 0.15f;
Masking = true;
2017-03-21 14:54:57 +08:00
Children = new[]
{
innerFill = new Box
{
RelativeSizeAxes = Axes.Both,
}
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
switch (Judgement.TaikoResult)
2017-03-21 14:54:57 +08:00
{
2017-03-22 00:42:40 +08:00
case TaikoHitResult.Good:
2017-03-21 14:54:57 +08:00
innerFill.Colour = colours.Green;
break;
2017-03-22 00:42:40 +08:00
case TaikoHitResult.Great:
2017-03-21 14:54:57 +08:00
innerFill.Colour = colours.Blue;
break;
}
}
protected override void LoadComplete()
{
base.LoadComplete();
ScaleTo(5f, 1000, EasingTypes.OutQuint);
FadeOut(500);
Expire();
}
/// <summary>
/// Transforms this hit explosion to visualise a secondary hit.
/// </summary>
public void VisualiseSecondHit()
{
ResizeTo(Size * TaikoHitObject.STRONG_CIRCLE_DIAMETER_SCALE, 50);
}
2017-03-21 14:54:57 +08:00
}
}