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

92 lines
2.6 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;
using osu.Game.Modes.Taiko.Judgements;
using osu.Game.Modes.Taiko.Objects;
namespace osu.Game.Modes.Taiko.UI
{
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>
2017-04-03 10:05:15 +08:00
/// The size multiplier of a hit explosion if a hit object has been hit with the second key.
/// </summary>
2017-04-03 10:05:15 +08:00
private const float secondhit_size_multiplier = 1.5f;
/// <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;
2017-03-21 14:54:57 +08:00
Size = new Vector2(TaikoHitObject.CIRCLE_RADIUS * 2);
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()
{
2017-04-03 10:05:15 +08:00
ResizeTo(Size * secondhit_size_multiplier, 50);
}
2017-03-21 14:54:57 +08:00
}
}