2022-11-02 16:23:45 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
|
// 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;
|
2017-03-21 14:54:57 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-03-14 22:51:38 +08:00
|
|
|
|
using osu.Framework.Graphics.Pooling;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2017-09-06 16:02:13 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2020-04-27 21:22:32 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
2022-11-02 16:04:45 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Default;
|
2020-04-27 21:22:32 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 17:19:50 +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>
|
2021-03-14 22:51:38 +08:00
|
|
|
|
internal partial class HitExplosion : PoolableDrawable
|
2017-03-21 14:54:57 +08:00
|
|
|
|
{
|
2018-06-11 19:42:04 +08:00
|
|
|
|
public override bool RemoveWhenNotAlive => true;
|
2021-03-14 22:51:38 +08:00
|
|
|
|
public override bool RemoveCompletedTransforms => false;
|
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
|
|
|
|
|
2021-03-16 03:48:19 +08:00
|
|
|
|
private double? secondHitTime;
|
|
|
|
|
|
2022-11-02 16:07:19 +08:00
|
|
|
|
public DrawableHitObject? JudgedObject;
|
2020-04-29 16:53:25 +08:00
|
|
|
|
|
2022-11-02 16:07:19 +08:00
|
|
|
|
private SkinnableDrawable skinnable = null!;
|
2020-04-29 16:53:25 +08:00
|
|
|
|
|
2021-03-14 22:51:38 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This constructor only exists to meet the <c>new()</c> type constraint of <see cref="DrawablePool{T}"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public HitExplosion()
|
|
|
|
|
: this(HitResult.Great)
|
|
|
|
|
{
|
|
|
|
|
}
|
2020-04-29 16:53:25 +08:00
|
|
|
|
|
2021-03-14 22:51:38 +08:00
|
|
|
|
public HitExplosion(HitResult result)
|
2017-03-21 14:54:57 +08:00
|
|
|
|
{
|
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;
|
2017-05-24 14:48:47 +08:00
|
|
|
|
Origin = Anchor.Centre;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-08-03 12:06:49 +08:00
|
|
|
|
Size = new Vector2(TaikoHitObject.DEFAULT_SIZE);
|
2021-03-14 22:51:38 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-21 14:54:57 +08:00
|
|
|
|
RelativePositionAxes = Axes.Both;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-21 14:54:57 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2020-04-27 21:22:32 +08:00
|
|
|
|
private void load()
|
2017-03-21 14:54:57 +08:00
|
|
|
|
{
|
2022-11-09 15:04:56 +08:00
|
|
|
|
InternalChild = skinnable = new SkinnableDrawable(new TaikoSkinComponentLookup(getComponentName(result)), _ => new DefaultHitExplosion(result));
|
2021-03-14 22:51:38 +08:00
|
|
|
|
skinnable.OnSkinChanged += runAnimation;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-02 16:07:19 +08:00
|
|
|
|
public void Apply(DrawableHitObject? drawableHitObject)
|
2021-03-14 22:51:38 +08:00
|
|
|
|
{
|
|
|
|
|
JudgedObject = drawableHitObject;
|
2021-03-16 03:48:19 +08:00
|
|
|
|
secondHitTime = null;
|
2021-03-14 22:51:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PrepareForUse()
|
|
|
|
|
{
|
|
|
|
|
base.PrepareForUse();
|
|
|
|
|
runAnimation();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void runAnimation()
|
|
|
|
|
{
|
|
|
|
|
if (JudgedObject?.Result == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
double resultTime = JudgedObject.Result.TimeAbsolute;
|
|
|
|
|
|
|
|
|
|
LifetimeStart = resultTime;
|
|
|
|
|
|
2021-03-16 03:48:19 +08:00
|
|
|
|
ApplyTransformsAt(double.MinValue, true);
|
|
|
|
|
ClearTransforms(true);
|
|
|
|
|
|
2021-03-14 22:51:38 +08:00
|
|
|
|
using (BeginAbsoluteSequence(resultTime))
|
2021-03-16 03:38:11 +08:00
|
|
|
|
(skinnable.Drawable as IAnimatableHitExplosion)?.Animate(JudgedObject);
|
2021-03-14 22:51:38 +08:00
|
|
|
|
|
2021-03-16 03:48:19 +08:00
|
|
|
|
if (secondHitTime != null)
|
|
|
|
|
{
|
|
|
|
|
using (BeginAbsoluteSequence(secondHitTime.Value))
|
|
|
|
|
{
|
|
|
|
|
(skinnable.Drawable as IAnimatableHitExplosion)?.AnimateSecondHit();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-14 22:51:38 +08:00
|
|
|
|
LifetimeEnd = skinnable.Drawable.LatestTransformEndTime;
|
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}");
|
2017-03-21 14:54:57 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-03-14 22:51:38 +08:00
|
|
|
|
public void VisualiseSecondHit(JudgementResult judgementResult)
|
2017-04-03 09:20:20 +08:00
|
|
|
|
{
|
2021-03-16 03:48:19 +08:00
|
|
|
|
secondHitTime = judgementResult.TimeAbsolute;
|
|
|
|
|
runAnimation();
|
2017-04-03 09:20:20 +08:00
|
|
|
|
}
|
2017-03-21 14:54:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|