osu/osu.Game.Modes.Taiko/UI/HitExplosion.cs

79 lines
2.1 KiB
C#
Raw Normal View History

2017-03-21 07:40:37 +00: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 06:54:57 +00:00
using OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Transforms;
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 09:16:14 +00:00
/// <summary>
/// A circle explodes from the hit target to indicate a hitobject has been hit.
2017-03-21 09:16:14 +00:00
/// </summary>
internal class HitExplosion : CircularContainer
2017-03-21 06:54:57 +00:00
{
2017-03-23 05:37:00 +00:00
private readonly TaikoJudgementInfo judgement;
private readonly Box innerFill;
2017-03-21 06:54:57 +00:00
public HitExplosion(TaikoJudgementInfo judgement)
2017-03-21 06:54:57 +00:00
{
this.judgement = judgement;
2017-03-21 06:54:57 +00: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 06:54:57 +00:00
Children = new[]
{
innerFill = new Box
{
RelativeSizeAxes = Axes.Both,
}
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
if (judgement.SecondHit)
Size *= 1.5f;
switch (judgement.TaikoResult)
2017-03-21 06:54:57 +00:00
{
2017-03-21 16:42:40 +00:00
case TaikoHitResult.Good:
2017-03-21 06:54:57 +00:00
innerFill.Colour = colours.Green;
break;
2017-03-21 16:42:40 +00:00
case TaikoHitResult.Great:
2017-03-21 06:54:57 +00:00
innerFill.Colour = colours.Blue;
break;
}
}
protected override void LoadComplete()
{
base.LoadComplete();
ScaleTo(5f, 1000, EasingTypes.OutQuint);
FadeOut(500);
Expire();
}
}
}