2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-27 21:22:32 +08:00
|
|
|
|
using System;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2020-04-27 21:22:32 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
2020-04-27 21:22:32 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.UI
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A circle explodes from the hit target to indicate a hitobject has been hit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal class HitExplosion : CircularContainer
|
|
|
|
|
{
|
2018-06-11 19:42:04 +08:00
|
|
|
|
public override bool RemoveWhenNotAlive => true;
|
|
|
|
|
|
2020-09-25 18:37:34 +08:00
|
|
|
|
[Cached(typeof(DrawableHitObject))]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public readonly DrawableHitObject JudgedObject;
|
2020-09-25 18:37:34 +08:00
|
|
|
|
|
2020-09-25 18:25:58 +08:00
|
|
|
|
private readonly HitResult result;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-29 16:53:25 +08:00
|
|
|
|
private SkinnableDrawable skinnable;
|
|
|
|
|
|
|
|
|
|
public override double LifetimeStart => skinnable.Drawable.LifetimeStart;
|
|
|
|
|
|
|
|
|
|
public override double LifetimeEnd => skinnable.Drawable.LifetimeEnd;
|
|
|
|
|
|
2020-09-25 18:25:58 +08:00
|
|
|
|
public HitExplosion(DrawableHitObject judgedObject, HitResult result)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
JudgedObject = judgedObject;
|
2020-09-25 18:25:58 +08:00
|
|
|
|
this.result = result;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-23 11:33:34 +08:00
|
|
|
|
Anchor = Anchor.Centre;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
Size = new Vector2(TaikoHitObject.DEFAULT_SIZE);
|
|
|
|
|
|
|
|
|
|
RelativePositionAxes = Axes.Both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-04-27 21:22:32 +08:00
|
|
|
|
private void load()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-09-27 21:33:18 +08:00
|
|
|
|
Child = skinnable = new SkinnableDrawable(new TaikoSkinComponent(getComponentName(result)), _ => new DefaultHitExplosion(JudgedObject, result));
|
2020-04-27 21:22:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-27 21:33:18 +08:00
|
|
|
|
private static TaikoSkinComponents getComponentName(HitResult result)
|
2020-04-27 21:22:32 +08:00
|
|
|
|
{
|
2020-09-25 18:25:58 +08:00
|
|
|
|
switch (result)
|
2020-04-27 21:22:32 +08:00
|
|
|
|
{
|
|
|
|
|
case HitResult.Miss:
|
|
|
|
|
return TaikoSkinComponents.TaikoExplosionMiss;
|
|
|
|
|
|
2020-09-29 16:16:55 +08:00
|
|
|
|
case HitResult.Ok:
|
2020-10-01 15:19:07 +08:00
|
|
|
|
return TaikoSkinComponents.TaikoExplosionOk;
|
2020-04-27 21:22:32 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Great:
|
2020-09-27 21:33:18 +08:00
|
|
|
|
return TaikoSkinComponents.TaikoExplosionGreat;
|
2020-04-27 21:22:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-27 21:33:18 +08:00
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(result), $"Invalid result type: {result}");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Transforms this hit explosion to visualise a secondary hit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void VisualiseSecondHit()
|
|
|
|
|
{
|
2020-12-15 04:46:02 +08:00
|
|
|
|
this.ResizeTo(new Vector2(TaikoStrongableHitObject.DEFAULT_STRONG_SIZE), 50);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|