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-11-27 13:34:12 +08:00
|
|
|
|
using System;
|
2021-03-06 22:06:16 +08:00
|
|
|
|
using System.Collections.Generic;
|
2018-09-20 00:30:25 +08:00
|
|
|
|
using System.Linq;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2022-04-03 06:31:51 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2016-09-02 18:58:57 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-09-20 00:30:25 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2022-06-07 17:35:10 +08:00
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
2017-03-21 14:09:54 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2018-09-20 00:30:25 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2017-09-06 16:02:13 +08:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2020-12-14 02:29:41 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2020-09-25 18:25:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-03-07 18:14:42 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-01-04 18:22:15 +08:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2018-09-20 00:30:25 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Judgements;
|
2020-03-23 11:08:15 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
2021-03-06 22:06:16 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Scoring;
|
2020-04-21 18:00:34 +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
|
2016-09-02 18:58:57 +08:00
|
|
|
|
{
|
2017-12-26 13:18:23 +08:00
|
|
|
|
public partial class TaikoPlayfield : ScrollingPlayfield
|
2016-09-02 18:58:57 +08:00
|
|
|
|
{
|
2017-03-21 14:09:54 +08:00
|
|
|
|
/// <summary>
|
2024-01-20 04:48:05 +08:00
|
|
|
|
/// Base height of a <see cref="TaikoPlayfield"/> when inside a <see cref="DrawableTaikoRuleset"/>.
|
2017-03-21 14:09:54 +08:00
|
|
|
|
/// </summary>
|
2024-01-20 04:48:05 +08:00
|
|
|
|
public const float BASE_HEIGHT = 200;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2024-01-20 04:26:35 +08:00
|
|
|
|
public const float INPUT_DRUM_WIDTH = 180f;
|
|
|
|
|
|
2022-04-03 06:31:51 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the hit target should be nudged further towards the left area, matching the stable "classic" position.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Bindable<bool> ClassicHitTargetPosition = new BindableBool();
|
|
|
|
|
|
2023-10-17 15:54:59 +08:00
|
|
|
|
public Container UnderlayElements { get; private set; } = null!;
|
|
|
|
|
|
2024-01-15 19:49:00 +08:00
|
|
|
|
private Container<HitExplosion> hitExplosionContainer = null!;
|
|
|
|
|
private Container<KiaiHitExplosion> kiaiExplosionContainer = null!;
|
|
|
|
|
private JudgementContainer<DrawableTaikoJudgement> judgementContainer = null!;
|
|
|
|
|
private ScrollingHitObjectContainer drumRollHitContainer = null!;
|
|
|
|
|
internal Drawable HitTarget = null!;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2024-01-15 19:49:00 +08:00
|
|
|
|
private JudgementPooler<DrawableTaikoJudgement> judgementPooler = null!;
|
2021-03-14 22:51:38 +08:00
|
|
|
|
private readonly IDictionary<HitResult, HitExplosionPool> explosionPools = new Dictionary<HitResult, HitExplosionPool>();
|
2021-03-06 22:06:16 +08:00
|
|
|
|
|
2024-01-15 19:49:00 +08:00
|
|
|
|
private ProxyContainer topLevelHitContainer = null!;
|
|
|
|
|
private InputDrum inputDrum = null!;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-12-14 02:29:41 +08:00
|
|
|
|
/// <remarks>
|
|
|
|
|
/// <see cref="Playfield.AddNested"/> is purposefully not called on this to prevent i.e. being able to interact
|
|
|
|
|
/// with bar lines in the editor.
|
|
|
|
|
/// </remarks>
|
2024-01-15 19:49:00 +08:00
|
|
|
|
private BarLinePlayfield barLinePlayfield = null!;
|
2020-12-14 02:29:41 +08:00
|
|
|
|
|
2020-04-23 11:33:34 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
2016-09-02 18:58:57 +08:00
|
|
|
|
{
|
2024-01-20 04:58:55 +08:00
|
|
|
|
const float hit_target_width = BASE_HEIGHT;
|
|
|
|
|
|
2022-07-22 15:18:22 +08:00
|
|
|
|
inputDrum = new InputDrum
|
2022-04-13 09:38:07 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2024-01-20 04:26:35 +08:00
|
|
|
|
Width = INPUT_DRUM_WIDTH,
|
2022-04-13 09:38:07 +08:00
|
|
|
|
};
|
2022-04-06 07:37:51 +08:00
|
|
|
|
|
2020-04-25 13:47:20 +08:00
|
|
|
|
InternalChildren = new[]
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2022-11-09 15:04:56 +08:00
|
|
|
|
new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.PlayfieldBackgroundRight), _ => new PlayfieldBackgroundRight()),
|
2022-04-13 09:38:07 +08:00
|
|
|
|
new Container
|
2022-04-06 07:37:51 +08:00
|
|
|
|
{
|
|
|
|
|
Name = "Left overlay",
|
2024-01-20 04:26:35 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
Width = INPUT_DRUM_WIDTH,
|
2022-04-06 07:37:51 +08:00
|
|
|
|
BorderColour = colours.Gray0,
|
2022-04-13 09:38:07 +08:00
|
|
|
|
Children = new[]
|
2022-04-06 07:37:51 +08:00
|
|
|
|
{
|
2022-11-09 15:04:56 +08:00
|
|
|
|
new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.PlayfieldBackgroundLeft), _ => new PlayfieldBackgroundLeft()),
|
2022-04-13 09:38:07 +08:00
|
|
|
|
inputDrum.CreateProxy(),
|
2022-04-06 07:37:51 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2024-01-20 04:58:55 +08:00
|
|
|
|
new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.Mascot), _ => Empty())
|
2022-04-06 07:37:51 +08:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
RelativePositionAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
|
Y = 0.2f
|
|
|
|
|
},
|
2024-01-20 04:26:35 +08:00
|
|
|
|
new Container
|
2019-03-26 12:31:49 +08:00
|
|
|
|
{
|
|
|
|
|
Name = "Right area",
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2024-01-20 04:26:35 +08:00
|
|
|
|
Padding = new MarginPadding { Left = INPUT_DRUM_WIDTH },
|
2019-03-26 12:31:49 +08:00
|
|
|
|
Children = new Drawable[]
|
2017-08-03 06:46:19 +08:00
|
|
|
|
{
|
2019-03-26 12:31:49 +08:00
|
|
|
|
new Container
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2024-01-20 04:58:55 +08:00
|
|
|
|
Name = "Elements behind hit objects",
|
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
Width = hit_target_width,
|
2020-04-21 18:00:34 +08:00
|
|
|
|
Children = new[]
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2022-11-30 07:44:20 +08:00
|
|
|
|
new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.KiaiGlow), _ => Empty())
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
2019-03-26 12:31:49 +08:00
|
|
|
|
hitExplosionContainer = new Container<HitExplosion>
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
2022-11-09 15:04:56 +08:00
|
|
|
|
HitTarget = new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.HitTarget), _ => new TaikoHitTarget())
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2019-03-26 12:31:49 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-08-21 14:36:01 +08:00
|
|
|
|
}
|
2019-03-26 12:31:49 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2024-01-20 04:58:55 +08:00
|
|
|
|
new Container
|
2022-11-08 09:05:06 +08:00
|
|
|
|
{
|
|
|
|
|
Name = "Bar line content",
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2024-01-20 04:58:55 +08:00
|
|
|
|
Padding = new MarginPadding { Left = hit_target_width / 2 },
|
2023-10-17 15:54:59 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
UnderlayElements = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
barLinePlayfield = new BarLinePlayfield(),
|
|
|
|
|
}
|
2022-11-08 09:05:06 +08:00
|
|
|
|
},
|
2024-01-20 04:58:55 +08:00
|
|
|
|
new Container
|
2019-03-26 12:31:49 +08:00
|
|
|
|
{
|
2022-04-06 07:37:51 +08:00
|
|
|
|
Name = "Masked hit objects content",
|
2019-03-26 12:31:49 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2024-01-20 04:58:55 +08:00
|
|
|
|
Padding = new MarginPadding { Left = hit_target_width / 2 },
|
2022-04-06 07:37:51 +08:00
|
|
|
|
Masking = true,
|
2022-11-08 09:05:06 +08:00
|
|
|
|
Child = HitObjectContainer,
|
2022-04-06 07:37:51 +08:00
|
|
|
|
},
|
2024-01-20 04:58:55 +08:00
|
|
|
|
new Container
|
2022-04-06 07:37:51 +08:00
|
|
|
|
{
|
2024-01-20 04:58:55 +08:00
|
|
|
|
Name = "Overlay content",
|
2022-04-06 07:37:51 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2024-01-20 04:58:55 +08:00
|
|
|
|
Padding = new MarginPadding { Left = hit_target_width / 2 },
|
2022-04-06 07:37:51 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
drumRollHitContainer = new DrumRollHitContainer(),
|
2020-04-23 11:33:34 +08:00
|
|
|
|
kiaiExplosionContainer = new Container<KiaiHitExplosion>
|
|
|
|
|
{
|
|
|
|
|
Name = "Kiai hit explosions",
|
2022-11-07 16:12:58 +08:00
|
|
|
|
Origin = Anchor.TopCentre,
|
2020-04-23 11:33:34 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
|
},
|
|
|
|
|
judgementContainer = new JudgementContainer<DrawableTaikoJudgement>
|
|
|
|
|
{
|
|
|
|
|
Name = "Judgements",
|
2022-11-07 16:12:58 +08:00
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
FillMode = FillMode.Fit,
|
2020-04-23 11:33:34 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
2019-03-26 12:31:49 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
2019-08-28 12:20:28 +08:00
|
|
|
|
topLevelHitContainer = new ProxyContainer
|
2019-03-26 12:31:49 +08:00
|
|
|
|
{
|
|
|
|
|
Name = "Top level hit objects",
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-04-22 21:19:29 +08:00
|
|
|
|
},
|
2020-04-27 18:43:51 +08:00
|
|
|
|
drumRollHitContainer.CreateProxy(),
|
2023-06-30 14:07:07 +08:00
|
|
|
|
new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.DrumSamplePlayer), _ => new DrumSamplePlayer())
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
2022-04-13 09:38:07 +08:00
|
|
|
|
// this is added at the end of the hierarchy to receive input before taiko objects.
|
|
|
|
|
// but is proxied below everything to not cover visual effects such as hit explosions.
|
|
|
|
|
inputDrum,
|
2018-09-21 14:08:43 +08:00
|
|
|
|
};
|
2020-12-21 01:16:05 +08:00
|
|
|
|
|
|
|
|
|
RegisterPool<Hit, DrawableHit>(50);
|
|
|
|
|
RegisterPool<Hit.StrongNestedHit, DrawableHit.StrongNestedHit>(50);
|
|
|
|
|
|
|
|
|
|
RegisterPool<DrumRoll, DrawableDrumRoll>(5);
|
|
|
|
|
RegisterPool<DrumRoll.StrongNestedHit, DrawableDrumRoll.StrongNestedHit>(5);
|
|
|
|
|
|
|
|
|
|
RegisterPool<DrumRollTick, DrawableDrumRollTick>(100);
|
|
|
|
|
RegisterPool<DrumRollTick.StrongNestedHit, DrawableDrumRollTick.StrongNestedHit>(100);
|
|
|
|
|
|
|
|
|
|
RegisterPool<Swell, DrawableSwell>(5);
|
|
|
|
|
RegisterPool<SwellTick, DrawableSwellTick>(100);
|
2021-03-06 22:06:16 +08:00
|
|
|
|
|
|
|
|
|
var hitWindows = new TaikoHitWindows();
|
2021-03-14 22:51:38 +08:00
|
|
|
|
|
2024-01-15 19:49:00 +08:00
|
|
|
|
HitResult[] usableHitResults = Enum.GetValues<HitResult>().Where(r => hitWindows.IsHitResultAllowed(r)).ToArray();
|
2021-03-06 22:06:16 +08:00
|
|
|
|
|
2024-01-15 19:49:00 +08:00
|
|
|
|
AddInternal(judgementPooler = new JudgementPooler<DrawableTaikoJudgement>(usableHitResults));
|
|
|
|
|
|
|
|
|
|
foreach (var result in usableHitResults)
|
|
|
|
|
explosionPools.Add(result, new HitExplosionPool(result));
|
2021-03-14 22:51:38 +08:00
|
|
|
|
AddRangeInternal(explosionPools.Values);
|
2016-09-02 18:58:57 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-12-21 01:07:59 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
NewResult += OnNewResult;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 01:11:29 +08:00
|
|
|
|
protected override void OnNewDrawableHitObject(DrawableHitObject drawableHitObject)
|
|
|
|
|
{
|
|
|
|
|
base.OnNewDrawableHitObject(drawableHitObject);
|
|
|
|
|
|
|
|
|
|
var taikoObject = (DrawableTaikoHitObject)drawableHitObject;
|
|
|
|
|
topLevelHitContainer.Add(taikoObject.CreateProxiedContent());
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-14 02:29:41 +08:00
|
|
|
|
#region Pooling support
|
|
|
|
|
|
|
|
|
|
public override void Add(HitObject h)
|
|
|
|
|
{
|
|
|
|
|
switch (h)
|
|
|
|
|
{
|
|
|
|
|
case BarLine barLine:
|
|
|
|
|
barLinePlayfield.Add(barLine);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TaikoHitObject taikoHitObject:
|
|
|
|
|
base.Add(taikoHitObject);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
throw new ArgumentException($"Unsupported {nameof(HitObject)} type: {h.GetType()}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Remove(HitObject h)
|
|
|
|
|
{
|
|
|
|
|
switch (h)
|
|
|
|
|
{
|
|
|
|
|
case BarLine barLine:
|
|
|
|
|
return barLinePlayfield.Remove(barLine);
|
|
|
|
|
|
|
|
|
|
case TaikoHitObject taikoHitObject:
|
|
|
|
|
return base.Remove(taikoHitObject);
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
throw new ArgumentException($"Unsupported {nameof(HitObject)} type: {h.GetType()}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Non-pooling support
|
|
|
|
|
|
2017-09-12 17:19:28 +08:00
|
|
|
|
public override void Add(DrawableHitObject h)
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2018-07-17 13:35:09 +08:00
|
|
|
|
switch (h)
|
|
|
|
|
{
|
2020-12-14 02:29:41 +08:00
|
|
|
|
case DrawableBarLine barLine:
|
|
|
|
|
barLinePlayfield.Add(barLine);
|
2018-07-17 13:35:09 +08:00
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2022-06-24 20:25:23 +08:00
|
|
|
|
case DrawableTaikoHitObject:
|
2020-11-27 13:34:12 +08:00
|
|
|
|
base.Add(h);
|
2018-07-17 13:35:09 +08:00
|
|
|
|
break;
|
2020-11-27 13:34:12 +08:00
|
|
|
|
|
|
|
|
|
default:
|
2020-12-14 02:29:41 +08:00
|
|
|
|
throw new ArgumentException($"Unsupported {nameof(DrawableHitObject)} type: {h.GetType()}");
|
2020-11-27 13:34:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Remove(DrawableHitObject h)
|
|
|
|
|
{
|
|
|
|
|
switch (h)
|
|
|
|
|
{
|
2020-12-14 02:29:41 +08:00
|
|
|
|
case DrawableBarLine barLine:
|
|
|
|
|
return barLinePlayfield.Remove(barLine);
|
2020-11-27 13:34:12 +08:00
|
|
|
|
|
2022-06-24 20:25:23 +08:00
|
|
|
|
case DrawableTaikoHitObject:
|
2020-11-27 13:34:12 +08:00
|
|
|
|
return base.Remove(h);
|
|
|
|
|
|
|
|
|
|
default:
|
2020-12-14 02:29:41 +08:00
|
|
|
|
throw new ArgumentException($"Unsupported {nameof(DrawableHitObject)} type: {h.GetType()}");
|
2018-07-17 13:35:09 +08:00
|
|
|
|
}
|
2017-03-21 14:09:54 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-12-14 02:29:41 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
2018-08-06 09:54:16 +08:00
|
|
|
|
internal void OnNewResult(DrawableHitObject judgedObject, JudgementResult result)
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
|
if (!DisplayJudgements.Value)
|
2018-07-20 16:04:33 +08:00
|
|
|
|
return;
|
2018-08-06 10:31:46 +08:00
|
|
|
|
if (!judgedObject.DisplayResult)
|
2018-08-02 20:08:06 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2018-08-03 15:46:03 +08:00
|
|
|
|
switch (result.Judgement)
|
2017-03-21 15:33:25 +08:00
|
|
|
|
{
|
2022-06-24 20:25:23 +08:00
|
|
|
|
case TaikoStrongJudgement:
|
2018-08-03 15:46:03 +08:00
|
|
|
|
if (result.IsHit)
|
2021-03-14 22:51:38 +08:00
|
|
|
|
hitExplosionContainer.Children.FirstOrDefault(e => e.JudgedObject == ((DrawableStrongNestedHit)judgedObject).ParentHitObject)?.VisualiseSecondHit(result);
|
2018-08-03 15:46:03 +08:00
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2022-06-24 20:25:23 +08:00
|
|
|
|
case TaikoDrumRollTickJudgement:
|
2020-04-27 11:23:53 +08:00
|
|
|
|
if (!result.IsHit)
|
2020-04-27 11:27:43 +08:00
|
|
|
|
break;
|
2020-04-27 11:23:53 +08:00
|
|
|
|
|
|
|
|
|
var drawableTick = (DrawableDrumRollTick)judgedObject;
|
|
|
|
|
|
|
|
|
|
addDrumRollHit(drawableTick);
|
2020-04-27 11:01:31 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2018-08-03 15:46:03 +08:00
|
|
|
|
default:
|
2022-09-06 16:27:29 +08:00
|
|
|
|
if (!result.Type.IsScorable())
|
|
|
|
|
break;
|
|
|
|
|
|
2024-01-15 19:49:00 +08:00
|
|
|
|
var judgement = judgementPooler.Get(result.Type, j => j.Apply(result, judgedObject));
|
|
|
|
|
|
|
|
|
|
if (judgement == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
judgementContainer.Add(judgement);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-27 21:22:32 +08:00
|
|
|
|
var type = (judgedObject.HitObject as Hit)?.Type ?? HitType.Centre;
|
2020-09-25 18:25:58 +08:00
|
|
|
|
addExplosion(judgedObject, result.Type, type);
|
2018-08-03 15:46:03 +08:00
|
|
|
|
break;
|
2017-04-03 09:20:20 +08:00
|
|
|
|
}
|
2020-04-22 21:19:29 +08:00
|
|
|
|
}
|
2019-08-28 12:20:28 +08:00
|
|
|
|
|
2020-04-27 15:48:17 +08:00
|
|
|
|
private void addDrumRollHit(DrawableDrumRollTick drawableTick) =>
|
|
|
|
|
drumRollHitContainer.Add(new DrawableFlyingHit(drawableTick));
|
2020-04-27 11:01:31 +08:00
|
|
|
|
|
2020-09-27 21:23:34 +08:00
|
|
|
|
private void addExplosion(DrawableHitObject drawableObject, HitResult result, HitType type)
|
2020-04-27 11:23:53 +08:00
|
|
|
|
{
|
2021-03-14 22:51:38 +08:00
|
|
|
|
hitExplosionContainer.Add(explosionPools[result]
|
|
|
|
|
.Get(explosion => explosion.Apply(drawableObject)));
|
2020-04-27 11:23:53 +08:00
|
|
|
|
if (drawableObject.HitObject.Kiai)
|
|
|
|
|
kiaiExplosionContainer.Add(new KiaiHitExplosion(drawableObject, type));
|
2020-09-27 21:23:34 +08:00
|
|
|
|
}
|
2020-04-27 11:23:53 +08:00
|
|
|
|
|
2020-04-27 07:40:57 +08:00
|
|
|
|
private partial class ProxyContainer : LifetimeManagementContainer
|
2020-04-22 21:19:29 +08:00
|
|
|
|
{
|
2022-06-07 17:35:10 +08:00
|
|
|
|
public void Add(Drawable proxy) => AddInternal(proxy);
|
|
|
|
|
|
|
|
|
|
public override bool UpdateSubTreeMasking(Drawable source, RectangleF maskingBounds)
|
2020-04-27 07:40:57 +08:00
|
|
|
|
{
|
2022-06-07 17:35:10 +08:00
|
|
|
|
// DrawableHitObject disables masking.
|
|
|
|
|
// Hitobject content is proxied and unproxied based on hit status and the IsMaskedAway value could get stuck because of this.
|
|
|
|
|
return false;
|
2020-04-27 07:40:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-02 18:58:57 +08:00
|
|
|
|
}
|
2017-08-21 14:36:01 +08:00
|
|
|
|
}
|