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;
|
2017-06-20 13:54:23 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2017-03-21 14:54:57 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-09-06 16:02:13 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
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>
|
2017-03-23 12:02:01 +08:00
|
|
|
|
/// A circle explodes from the hit target to indicate a hitobject has been hit.
|
2017-03-21 17:16:14 +08:00
|
|
|
|
/// </summary>
|
2017-05-24 14:48:47 +08:00
|
|
|
|
internal class HitExplosion : CircularContainer
|
2017-03-21 14:54:57 +08:00
|
|
|
|
{
|
2017-09-06 16:02:13 +08:00
|
|
|
|
public readonly DrawableHitObject JudgedObject;
|
2017-04-03 09:20:20 +08:00
|
|
|
|
|
2017-03-23 13:37:00 +08:00
|
|
|
|
private readonly Box innerFill;
|
2017-03-21 14:54:57 +08:00
|
|
|
|
|
2017-05-23 16:58:12 +08:00
|
|
|
|
private readonly bool isRim;
|
2017-05-23 16:57:34 +08:00
|
|
|
|
|
2017-09-06 16:02:13 +08:00
|
|
|
|
public HitExplosion(DrawableHitObject judgedObject, bool isRim)
|
2017-03-21 14:54:57 +08:00
|
|
|
|
{
|
2017-05-23 16:57:34 +08:00
|
|
|
|
this.isRim = isRim;
|
|
|
|
|
|
2017-09-06 16:02:13 +08:00
|
|
|
|
JudgedObject = judgedObject;
|
2017-03-23 12:02:01 +08:00
|
|
|
|
|
2017-08-03 12:06:49 +08:00
|
|
|
|
Anchor = Anchor.CentreLeft;
|
2017-05-24 14:48:47 +08:00
|
|
|
|
Origin = Anchor.Centre;
|
2017-03-21 14:54:57 +08:00
|
|
|
|
|
2017-08-03 12:06:49 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
Size = new Vector2(TaikoHitObject.DEFAULT_SIZE);
|
2017-03-21 14:54:57 +08:00
|
|
|
|
|
|
|
|
|
RelativePositionAxes = Axes.Both;
|
|
|
|
|
|
|
|
|
|
BorderColour = Color4.White;
|
|
|
|
|
BorderThickness = 1;
|
|
|
|
|
|
|
|
|
|
Alpha = 0.15f;
|
2017-03-23 08:12:51 +08:00
|
|
|
|
Masking = true;
|
2017-03-21 14:54:57 +08:00
|
|
|
|
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
innerFill = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
2017-05-23 16:58:12 +08:00
|
|
|
|
innerFill.Colour = isRim ? colours.BlueDarker : colours.PinkDarker;
|
2017-03-21 14:54:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2017-07-23 02:50:25 +08:00
|
|
|
|
this.ScaleTo(3f, 1000, Easing.OutQuint);
|
2017-07-15 00:18:12 +08:00
|
|
|
|
this.FadeOut(500);
|
2017-03-21 14:54:57 +08:00
|
|
|
|
|
|
|
|
|
Expire();
|
|
|
|
|
}
|
2017-04-03 09:20:20 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Transforms this hit explosion to visualise a secondary hit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void VisualiseSecondHit()
|
|
|
|
|
{
|
2017-08-03 12:06:49 +08:00
|
|
|
|
this.ResizeTo(new Vector2(TaikoHitObject.DEFAULT_STRONG_SIZE), 50);
|
2017-04-03 09:20:20 +08:00
|
|
|
|
}
|
2017-03-21 14:54:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|