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.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 17:16:14 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A ring that explodes to indicate a judgement has occurred.
|
|
|
|
|
/// </summary>
|
2017-03-21 14:54:57 +08:00
|
|
|
|
internal class RingExplosion : CircularContainer
|
|
|
|
|
{
|
2017-03-21 17:16:14 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The Judgement to display.
|
|
|
|
|
/// </summary>
|
2017-03-21 16:49:22 +08:00
|
|
|
|
public TaikoJudgementInfo Judgement;
|
2017-03-21 14:54:57 +08:00
|
|
|
|
|
|
|
|
|
private Box innerFill;
|
|
|
|
|
|
|
|
|
|
public RingExplosion()
|
|
|
|
|
{
|
|
|
|
|
Size = new Vector2(TaikoHitObject.CIRCLE_RADIUS * 2);
|
|
|
|
|
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
|
|
|
|
RelativePositionAxes = Axes.Both;
|
|
|
|
|
|
|
|
|
|
BorderColour = Color4.White;
|
|
|
|
|
BorderThickness = 1;
|
|
|
|
|
|
|
|
|
|
Alpha = 0.15f;
|
|
|
|
|
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
innerFill = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
2017-03-21 16:49:22 +08:00
|
|
|
|
if (Judgement.SecondHit)
|
|
|
|
|
Size *= 1.5f;
|
|
|
|
|
|
|
|
|
|
switch (Judgement.Score)
|
2017-03-21 14:54:57 +08:00
|
|
|
|
{
|
|
|
|
|
case TaikoScoreResult.Good:
|
|
|
|
|
innerFill.Colour = colours.Green;
|
|
|
|
|
break;
|
|
|
|
|
case TaikoScoreResult.Great:
|
|
|
|
|
innerFill.Colour = colours.Blue;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
ScaleTo(5f, 1000, EasingTypes.OutQuint);
|
|
|
|
|
FadeOut(500);
|
|
|
|
|
|
|
|
|
|
Expire();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|