mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 02:27:51 +08:00
77 lines
2.4 KiB
C#
77 lines
2.4 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using osuTK;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
using osu.Game.Skinning;
|
|
|
|
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
|
|
{
|
|
public override bool RemoveWhenNotAlive => true;
|
|
|
|
[Cached(typeof(DrawableHitObject))]
|
|
public readonly DrawableHitObject JudgedObject;
|
|
|
|
private SkinnableDrawable skinnable;
|
|
|
|
public override double LifetimeStart => skinnable.Drawable.LifetimeStart;
|
|
|
|
public override double LifetimeEnd => skinnable.Drawable.LifetimeEnd;
|
|
|
|
public HitExplosion(DrawableHitObject judgedObject)
|
|
{
|
|
JudgedObject = judgedObject;
|
|
|
|
Anchor = Anchor.Centre;
|
|
Origin = Anchor.Centre;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
Size = new Vector2(TaikoHitObject.DEFAULT_SIZE);
|
|
|
|
RelativePositionAxes = Axes.Both;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Child = skinnable = new SkinnableDrawable(new TaikoSkinComponent(getComponentName(JudgedObject.Result?.Type ?? HitResult.Great)), _ => new DefaultHitExplosion());
|
|
}
|
|
|
|
private TaikoSkinComponents getComponentName(HitResult resultType)
|
|
{
|
|
switch (resultType)
|
|
{
|
|
case HitResult.Miss:
|
|
return TaikoSkinComponents.TaikoExplosionMiss;
|
|
|
|
case HitResult.Good:
|
|
return TaikoSkinComponents.TaikoExplosionGood;
|
|
|
|
case HitResult.Great:
|
|
return TaikoSkinComponents.TaikoExplosionGreat;
|
|
}
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(resultType), "Invalid result type");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Transforms this hit explosion to visualise a secondary hit.
|
|
/// </summary>
|
|
public void VisualiseSecondHit()
|
|
{
|
|
this.ResizeTo(new Vector2(TaikoHitObject.DEFAULT_STRONG_SIZE), 50);
|
|
}
|
|
}
|
|
}
|