2020-09-21 00:10:44 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-09-21 00:10:44 +08:00
|
|
|
using System.Linq;
|
2021-09-16 17:26:12 +08:00
|
|
|
using osu.Framework.Input.Events;
|
2020-09-21 00:10:44 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests
|
|
|
|
{
|
2020-09-25 18:25:58 +08:00
|
|
|
public class DrawableTestStrongHit : DrawableTestHit
|
2020-09-21 00:10:44 +08:00
|
|
|
{
|
|
|
|
private readonly bool hitBoth;
|
|
|
|
|
|
|
|
public DrawableTestStrongHit(double startTime, HitResult type = HitResult.Great, bool hitBoth = true)
|
|
|
|
: base(new Hit
|
|
|
|
{
|
|
|
|
IsStrong = true,
|
|
|
|
StartTime = startTime,
|
2020-09-25 18:25:58 +08:00
|
|
|
}, type)
|
2020-09-21 00:10:44 +08:00
|
|
|
{
|
|
|
|
this.hitBoth = hitBoth;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadAsyncComplete()
|
|
|
|
{
|
|
|
|
base.LoadAsyncComplete();
|
|
|
|
|
|
|
|
var nestedStrongHit = (DrawableStrongNestedHit)NestedHitObjects.Single();
|
2020-09-25 18:25:58 +08:00
|
|
|
nestedStrongHit.Result.Type = hitBoth ? Type : HitResult.Miss;
|
2020-09-21 00:10:44 +08:00
|
|
|
}
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e) => false;
|
2020-09-21 00:10:44 +08:00
|
|
|
}
|
|
|
|
}
|