2022-09-06 17:02:17 +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.
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Game.Rulesets.Replays;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
using osu.Game.Rulesets.Taiko.Replays;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests.Judgements
|
|
|
|
{
|
|
|
|
public partial class TestSceneDrumRollJudgements : JudgementTest
|
|
|
|
{
|
|
|
|
[Test]
|
|
|
|
public void TestHitAllDrumRoll()
|
|
|
|
{
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
|
|
{
|
|
|
|
new TaikoReplayFrame(0),
|
|
|
|
new TaikoReplayFrame(1000, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(1001),
|
2023-06-07 12:44:01 +08:00
|
|
|
new TaikoReplayFrame(1250, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(1251),
|
|
|
|
new TaikoReplayFrame(1500, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(1501),
|
|
|
|
new TaikoReplayFrame(1750, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(1751),
|
2022-09-06 17:02:17 +08:00
|
|
|
new TaikoReplayFrame(2000, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(2001),
|
2023-06-07 12:30:04 +08:00
|
|
|
}, CreateBeatmap(createDrumRoll(false)));
|
2022-09-06 17:02:17 +08:00
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertJudgementCount(6);
|
2022-09-06 17:02:17 +08:00
|
|
|
AssertResult<DrumRollTick>(0, HitResult.SmallBonus);
|
|
|
|
AssertResult<DrumRollTick>(1, HitResult.SmallBonus);
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertResult<DrumRollTick>(2, HitResult.SmallBonus);
|
|
|
|
AssertResult<DrumRollTick>(3, HitResult.SmallBonus);
|
|
|
|
AssertResult<DrumRollTick>(4, HitResult.SmallBonus);
|
2022-09-06 17:02:17 +08:00
|
|
|
AssertResult<DrumRoll>(0, HitResult.IgnoreHit);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestHitSomeDrumRoll()
|
|
|
|
{
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
|
|
{
|
|
|
|
new TaikoReplayFrame(0),
|
|
|
|
new TaikoReplayFrame(2000, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(2001),
|
2023-06-07 12:30:04 +08:00
|
|
|
}, CreateBeatmap(createDrumRoll(false)));
|
2022-09-06 17:02:17 +08:00
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertJudgementCount(6);
|
2022-09-06 17:02:17 +08:00
|
|
|
AssertResult<DrumRollTick>(0, HitResult.IgnoreMiss);
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertResult<DrumRollTick>(1, HitResult.IgnoreMiss);
|
|
|
|
AssertResult<DrumRollTick>(2, HitResult.IgnoreMiss);
|
|
|
|
AssertResult<DrumRollTick>(3, HitResult.IgnoreMiss);
|
|
|
|
AssertResult<DrumRollTick>(4, HitResult.SmallBonus);
|
2022-09-06 17:02:17 +08:00
|
|
|
AssertResult<DrumRoll>(0, HitResult.IgnoreHit);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestHitNoneDrumRoll()
|
|
|
|
{
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
|
|
{
|
|
|
|
new TaikoReplayFrame(0),
|
2023-06-07 12:30:04 +08:00
|
|
|
}, CreateBeatmap(createDrumRoll(false)));
|
2022-09-06 17:02:17 +08:00
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertJudgementCount(6);
|
2022-09-06 17:02:17 +08:00
|
|
|
AssertResult<DrumRollTick>(0, HitResult.IgnoreMiss);
|
|
|
|
AssertResult<DrumRollTick>(1, HitResult.IgnoreMiss);
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertResult<DrumRollTick>(2, HitResult.IgnoreMiss);
|
|
|
|
AssertResult<DrumRollTick>(3, HitResult.IgnoreMiss);
|
|
|
|
AssertResult<DrumRollTick>(4, HitResult.IgnoreMiss);
|
2022-09-06 17:02:17 +08:00
|
|
|
AssertResult<DrumRoll>(0, HitResult.IgnoreHit);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestHitAllStrongDrumRollWithOneKey()
|
|
|
|
{
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
|
|
{
|
|
|
|
new TaikoReplayFrame(0),
|
|
|
|
new TaikoReplayFrame(1000, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(1001),
|
2023-06-07 12:44:01 +08:00
|
|
|
new TaikoReplayFrame(1250, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(1251),
|
|
|
|
new TaikoReplayFrame(1500, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(1501),
|
|
|
|
new TaikoReplayFrame(1750, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(1751),
|
2022-09-06 17:02:17 +08:00
|
|
|
new TaikoReplayFrame(2000, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(2001),
|
2023-06-07 12:30:04 +08:00
|
|
|
}, CreateBeatmap(createDrumRoll(true)));
|
2022-09-06 17:02:17 +08:00
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertJudgementCount(12);
|
2022-09-06 17:02:17 +08:00
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
for (int i = 0; i < 5; i++)
|
|
|
|
{
|
|
|
|
AssertResult<DrumRollTick>(i, HitResult.SmallBonus);
|
|
|
|
AssertResult<StrongNestedHitObject>(i, HitResult.LargeBonus);
|
|
|
|
}
|
2022-09-06 17:02:17 +08:00
|
|
|
|
|
|
|
AssertResult<DrumRoll>(0, HitResult.IgnoreHit);
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertResult<StrongNestedHitObject>(5, HitResult.IgnoreHit);
|
2022-09-06 17:02:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestHitSomeStrongDrumRollWithOneKey()
|
|
|
|
{
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
|
|
{
|
|
|
|
new TaikoReplayFrame(0),
|
|
|
|
new TaikoReplayFrame(2000, TaikoAction.LeftCentre),
|
|
|
|
new TaikoReplayFrame(2001),
|
2023-06-07 12:30:04 +08:00
|
|
|
}, CreateBeatmap(createDrumRoll(true)));
|
2022-09-06 17:02:17 +08:00
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertJudgementCount(12);
|
2022-09-06 17:02:17 +08:00
|
|
|
|
|
|
|
AssertResult<DrumRollTick>(0, HitResult.IgnoreMiss);
|
|
|
|
AssertResult<StrongNestedHitObject>(0, HitResult.IgnoreMiss);
|
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertResult<DrumRollTick>(4, HitResult.SmallBonus);
|
|
|
|
AssertResult<StrongNestedHitObject>(4, HitResult.LargeBonus);
|
2022-09-06 17:02:17 +08:00
|
|
|
|
|
|
|
AssertResult<DrumRoll>(0, HitResult.IgnoreHit);
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertResult<StrongNestedHitObject>(5, HitResult.IgnoreHit);
|
2022-09-06 17:02:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestHitAllStrongDrumRollWithBothKeys()
|
|
|
|
{
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
|
|
{
|
|
|
|
new TaikoReplayFrame(0),
|
|
|
|
new TaikoReplayFrame(1000, TaikoAction.LeftCentre, TaikoAction.RightCentre),
|
|
|
|
new TaikoReplayFrame(1001),
|
2023-06-07 12:44:01 +08:00
|
|
|
new TaikoReplayFrame(1250, TaikoAction.LeftCentre, TaikoAction.RightCentre),
|
|
|
|
new TaikoReplayFrame(1251),
|
|
|
|
new TaikoReplayFrame(1500, TaikoAction.LeftCentre, TaikoAction.RightCentre),
|
|
|
|
new TaikoReplayFrame(1501),
|
|
|
|
new TaikoReplayFrame(1750, TaikoAction.LeftCentre, TaikoAction.RightCentre),
|
|
|
|
new TaikoReplayFrame(1751),
|
2022-09-06 17:02:17 +08:00
|
|
|
new TaikoReplayFrame(2000, TaikoAction.LeftCentre, TaikoAction.RightCentre),
|
|
|
|
new TaikoReplayFrame(2001),
|
2023-06-07 12:30:04 +08:00
|
|
|
}, CreateBeatmap(createDrumRoll(true)));
|
2022-09-06 17:02:17 +08:00
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertJudgementCount(12);
|
2022-09-06 17:02:17 +08:00
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
for (int i = 0; i < 5; i++)
|
|
|
|
{
|
|
|
|
AssertResult<DrumRollTick>(i, HitResult.SmallBonus);
|
|
|
|
AssertResult<StrongNestedHitObject>(i, HitResult.LargeBonus);
|
|
|
|
}
|
2022-09-06 17:02:17 +08:00
|
|
|
|
|
|
|
AssertResult<DrumRoll>(0, HitResult.IgnoreHit);
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertResult<StrongNestedHitObject>(5, HitResult.IgnoreHit);
|
2022-09-06 17:02:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestHitSomeStrongDrumRollWithBothKeys()
|
|
|
|
{
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
|
|
{
|
|
|
|
new TaikoReplayFrame(0),
|
|
|
|
new TaikoReplayFrame(2000, TaikoAction.LeftCentre, TaikoAction.RightCentre),
|
|
|
|
new TaikoReplayFrame(2001),
|
2023-06-07 12:30:04 +08:00
|
|
|
}, CreateBeatmap(createDrumRoll(true)));
|
2022-09-06 17:02:17 +08:00
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertJudgementCount(12);
|
2022-09-06 17:02:17 +08:00
|
|
|
|
|
|
|
AssertResult<DrumRollTick>(0, HitResult.IgnoreMiss);
|
|
|
|
AssertResult<StrongNestedHitObject>(0, HitResult.IgnoreMiss);
|
|
|
|
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertResult<DrumRollTick>(4, HitResult.SmallBonus);
|
|
|
|
AssertResult<StrongNestedHitObject>(4, HitResult.LargeBonus);
|
2022-09-06 17:02:17 +08:00
|
|
|
|
|
|
|
AssertResult<DrumRoll>(0, HitResult.IgnoreHit);
|
2023-06-07 12:44:01 +08:00
|
|
|
AssertResult<StrongNestedHitObject>(5, HitResult.IgnoreHit);
|
2022-09-06 17:02:17 +08:00
|
|
|
}
|
2023-06-07 12:30:04 +08:00
|
|
|
|
|
|
|
private DrumRoll createDrumRoll(bool strong) => new DrumRoll
|
|
|
|
{
|
|
|
|
StartTime = 1000,
|
|
|
|
Duration = 1000,
|
|
|
|
IsStrong = strong
|
|
|
|
};
|
2022-09-06 17:02:17 +08:00
|
|
|
}
|
|
|
|
}
|