mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
119 lines
3.6 KiB
C#
119 lines
3.6 KiB
C#
|
// 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 System.Linq;
|
||
|
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 class TestSceneSwellJudgements : JudgementTest
|
||
|
{
|
||
|
[Test]
|
||
|
public void TestHitAllSwell()
|
||
|
{
|
||
|
const double hit_time = 1000;
|
||
|
|
||
|
Swell swell = new Swell
|
||
|
{
|
||
|
StartTime = hit_time,
|
||
|
Duration = 1000,
|
||
|
RequiredHits = 10
|
||
|
};
|
||
|
|
||
|
List<ReplayFrame> frames = new List<ReplayFrame>
|
||
|
{
|
||
|
new TaikoReplayFrame(0),
|
||
|
new TaikoReplayFrame(2001),
|
||
|
};
|
||
|
|
||
|
for (int i = 0; i < swell.RequiredHits; i++)
|
||
|
{
|
||
|
double frameTime = 1000 + i * 50;
|
||
|
frames.Add(new TaikoReplayFrame(frameTime, i % 2 == 0 ? TaikoAction.LeftCentre : TaikoAction.LeftRim));
|
||
|
frames.Add(new TaikoReplayFrame(frameTime + 10));
|
||
|
}
|
||
|
|
||
|
PerformTest(frames, CreateBeatmap(swell));
|
||
|
|
||
|
AssertJudgementCount(11);
|
||
|
|
||
|
for (int i = 0; i < swell.RequiredHits; i++)
|
||
|
AssertResult<SwellTick>(i, HitResult.IgnoreHit);
|
||
|
|
||
|
AssertResult<Swell>(0, HitResult.LargeBonus);
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void TestHitSomeSwell()
|
||
|
{
|
||
|
const double hit_time = 1000;
|
||
|
|
||
|
Swell swell = new Swell
|
||
|
{
|
||
|
StartTime = hit_time,
|
||
|
Duration = 1000,
|
||
|
RequiredHits = 10
|
||
|
};
|
||
|
|
||
|
List<ReplayFrame> frames = new List<ReplayFrame>
|
||
|
{
|
||
|
new TaikoReplayFrame(0),
|
||
|
new TaikoReplayFrame(2001),
|
||
|
};
|
||
|
|
||
|
for (int i = 0; i < swell.RequiredHits / 2; i++)
|
||
|
{
|
||
|
double frameTime = 1000 + i * 50;
|
||
|
frames.Add(new TaikoReplayFrame(frameTime, i % 2 == 0 ? TaikoAction.LeftCentre : TaikoAction.LeftRim));
|
||
|
frames.Add(new TaikoReplayFrame(frameTime + 10));
|
||
|
}
|
||
|
|
||
|
PerformTest(frames, CreateBeatmap(swell));
|
||
|
|
||
|
AssertJudgementCount(11);
|
||
|
|
||
|
for (int i = 0; i < swell.RequiredHits / 2; i++)
|
||
|
AssertResult<SwellTick>(i, HitResult.IgnoreHit);
|
||
|
for (int i = swell.RequiredHits / 2; i < swell.RequiredHits; i++)
|
||
|
AssertResult<SwellTick>(i, HitResult.IgnoreMiss);
|
||
|
|
||
|
AssertResult<Swell>(0, HitResult.IgnoreMiss);
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void TestHitNoneSwell()
|
||
|
{
|
||
|
const double hit_time = 1000;
|
||
|
|
||
|
Swell swell = new Swell
|
||
|
{
|
||
|
StartTime = hit_time,
|
||
|
Duration = 1000,
|
||
|
RequiredHits = 10
|
||
|
};
|
||
|
|
||
|
List<ReplayFrame> frames = new List<ReplayFrame>
|
||
|
{
|
||
|
new TaikoReplayFrame(0),
|
||
|
new TaikoReplayFrame(2001),
|
||
|
};
|
||
|
|
||
|
PerformTest(frames, CreateBeatmap(swell));
|
||
|
|
||
|
AssertJudgementCount(11);
|
||
|
|
||
|
for (int i = 0; i < swell.RequiredHits; i++)
|
||
|
AssertResult<SwellTick>(i, HitResult.IgnoreMiss);
|
||
|
|
||
|
AssertResult<Swell>(0, HitResult.IgnoreMiss);
|
||
|
|
||
|
AddAssert("all tick offsets are 0", () => JudgementResults.Where(r => r.HitObject is SwellTick).All(r => r.TimeOffset == 0));
|
||
|
}
|
||
|
}
|
||
|
}
|