2020-09-27 02:37:23 +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-27 02:37:23 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.UI;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestSceneFlyingHits : DrawableTaikoRulesetTestScene
|
|
|
|
|
{
|
|
|
|
|
[TestCase(HitType.Centre)]
|
|
|
|
|
[TestCase(HitType.Rim)]
|
|
|
|
|
public void TestFlyingHits(HitType hitType)
|
|
|
|
|
{
|
|
|
|
|
DrawableFlyingHit flyingHit = null;
|
|
|
|
|
|
|
|
|
|
AddStep("add flying hit", () =>
|
|
|
|
|
{
|
|
|
|
|
addFlyingHit(hitType);
|
|
|
|
|
|
|
|
|
|
// flying hits all land in one common scrolling container (and stay there for rewind purposes),
|
|
|
|
|
// so we need to manually get the latest one.
|
2022-04-14 12:11:11 +08:00
|
|
|
|
flyingHit = this.ChildrenOfType<DrawableFlyingHit>().MaxBy(h => h.HitObject.StartTime);
|
2020-09-27 02:37:23 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddAssert("hit type is correct", () => flyingHit.HitObject.Type == hitType);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void addFlyingHit(HitType hitType)
|
|
|
|
|
{
|
|
|
|
|
var tick = new DrumRollTick { HitWindows = HitWindows.Empty, StartTime = DrawableRuleset.Playfield.Time.Current };
|
|
|
|
|
|
|
|
|
|
DrawableDrumRollTick h;
|
|
|
|
|
DrawableRuleset.Playfield.Add(h = new DrawableDrumRollTick(tick) { JudgementType = hitType });
|
2020-09-29 16:16:55 +08:00
|
|
|
|
((TaikoPlayfield)DrawableRuleset.Playfield).OnNewResult(h, new JudgementResult(tick, new TaikoDrumRollTickJudgement()) { Type = HitResult.Great });
|
2020-09-27 02:37:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|