1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-10 10:47:19 +08:00

81 lines
2.2 KiB
C#
Raw Normal View History

2018-01-05 20:21:19 +09:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-03-21 16:40:37 +09:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
2017-03-21 15:54:57 +09:00
using OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2017-03-21 15:54:57 +09:00
using osu.Game.Graphics;
using osu.Game.Rulesets.Objects.Drawables;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Taiko.Objects;
2017-03-21 15:54:57 +09:00
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Taiko.UI
2017-03-21 15:54:57 +09:00
{
2017-03-21 18:16:14 +09:00
/// <summary>
/// A circle explodes from the hit target to indicate a hitobject has been hit.
2017-03-21 18:16:14 +09:00
/// </summary>
internal class HitExplosion : CircularContainer
2017-03-21 15:54:57 +09:00
{
public readonly DrawableHitObject JudgedObject;
2017-03-23 14:37:00 +09:00
private readonly Box innerFill;
2017-03-21 15:54:57 +09:00
2017-05-23 17:58:12 +09:00
private readonly bool isRim;
2017-05-23 17:57:34 +09:00
public HitExplosion(DrawableHitObject judgedObject, bool isRim)
2017-03-21 15:54:57 +09:00
{
2017-05-23 17:57:34 +09:00
this.isRim = isRim;
JudgedObject = judgedObject;
2017-08-03 13:36:49 +09:30
Anchor = Anchor.CentreLeft;
Origin = Anchor.Centre;
2017-03-21 15:54:57 +09:00
2017-08-03 13:36:49 +09:30
RelativeSizeAxes = Axes.Both;
Size = new Vector2(TaikoHitObject.DEFAULT_SIZE);
2017-03-21 15:54:57 +09:00
RelativePositionAxes = Axes.Both;
BorderColour = Color4.White;
BorderThickness = 1;
Alpha = 0.15f;
Masking = true;
2017-03-21 15:54:57 +09:00
Children = new[]
{
innerFill = new Box
{
RelativeSizeAxes = Axes.Both,
}
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2017-05-23 17:58:12 +09:00
innerFill.Colour = isRim ? colours.BlueDarker : colours.PinkDarker;
2017-03-21 15:54:57 +09:00
}
protected override void LoadComplete()
{
base.LoadComplete();
2017-07-22 20:50:25 +02:00
this.ScaleTo(3f, 1000, Easing.OutQuint);
this.FadeOut(500);
2017-03-21 15:54:57 +09:00
Expire();
}
/// <summary>
/// Transforms this hit explosion to visualise a secondary hit.
/// </summary>
public void VisualiseSecondHit()
{
2017-08-03 13:36:49 +09:30
this.ResizeTo(new Vector2(TaikoHitObject.DEFAULT_STRONG_SIZE), 50);
}
2017-03-21 15:54:57 +09:00
}
}