mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 07:07:45 +08:00
241 lines
7.4 KiB
C#
241 lines
7.4 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 NUnit.Framework;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Replays;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Rulesets.Taiko.Mods;
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables;
|
|
using osu.Game.Rulesets.Taiko.Replays;
|
|
using osu.Game.Rulesets.Taiko.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests.Judgements
|
|
{
|
|
public partial class TestSceneHitJudgements : JudgementTest
|
|
{
|
|
[Test]
|
|
public void TestHitCentreHit()
|
|
{
|
|
const double hit_time = 1000;
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0),
|
|
new TaikoReplayFrame(hit_time, TaikoAction.LeftCentre),
|
|
}, CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = hit_time
|
|
}));
|
|
|
|
AssertJudgementCount(1);
|
|
AssertResult<Hit>(0, HitResult.Great);
|
|
}
|
|
|
|
[Test]
|
|
public void TestHitWithBothKeysOnSameFrameDoesNotFallThroughToNextObject()
|
|
{
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0),
|
|
new TaikoReplayFrame(1000, TaikoAction.LeftCentre, TaikoAction.RightCentre),
|
|
}, CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = 1000,
|
|
}, new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = 1020
|
|
}));
|
|
|
|
AssertJudgementCount(2);
|
|
AssertResult<Hit>(0, HitResult.Great);
|
|
AssertResult<Hit>(1, HitResult.Miss);
|
|
}
|
|
|
|
[Test]
|
|
public void TestHitRimHit()
|
|
{
|
|
const double hit_time = 1000;
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0),
|
|
new TaikoReplayFrame(hit_time, TaikoAction.LeftRim),
|
|
}, CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Rim,
|
|
StartTime = hit_time
|
|
}));
|
|
|
|
AssertJudgementCount(1);
|
|
AssertResult<Hit>(0, HitResult.Great);
|
|
}
|
|
|
|
[Test]
|
|
public void TestMissHit()
|
|
{
|
|
const double hit_time = 1000;
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0)
|
|
}, CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = hit_time
|
|
}));
|
|
|
|
AssertJudgementCount(1);
|
|
AssertResult<Hit>(0, HitResult.Miss);
|
|
}
|
|
|
|
[Test]
|
|
public void TestHitStrongHitWithOneKey()
|
|
{
|
|
const double hit_time = 1000;
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0),
|
|
new TaikoReplayFrame(hit_time, TaikoAction.LeftCentre),
|
|
}, CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = hit_time,
|
|
IsStrong = true
|
|
}));
|
|
|
|
AssertJudgementCount(2);
|
|
AssertResult<Hit>(0, HitResult.Great);
|
|
AssertResult<StrongNestedHitObject>(0, HitResult.IgnoreMiss);
|
|
}
|
|
|
|
[Test]
|
|
public void TestHitStrongHitWithBothKeys()
|
|
{
|
|
const double hit_time = 1000;
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0),
|
|
new TaikoReplayFrame(hit_time, TaikoAction.LeftCentre, TaikoAction.RightCentre),
|
|
}, CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = hit_time,
|
|
IsStrong = true
|
|
}));
|
|
|
|
AssertJudgementCount(2);
|
|
AssertResult<Hit>(0, HitResult.Great);
|
|
AssertResult<StrongNestedHitObject>(0, HitResult.LargeBonus);
|
|
}
|
|
|
|
[Test]
|
|
public void TestMissStrongHit()
|
|
{
|
|
const double hit_time = 1000;
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0),
|
|
}, CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = hit_time,
|
|
IsStrong = true
|
|
}));
|
|
|
|
AssertJudgementCount(2);
|
|
AssertResult<Hit>(0, HitResult.Miss);
|
|
AssertResult<StrongNestedHitObject>(0, HitResult.IgnoreMiss);
|
|
}
|
|
|
|
[Test]
|
|
public void TestHighVelocityHit()
|
|
{
|
|
const double hit_time = 1000;
|
|
|
|
var beatmap = CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = hit_time,
|
|
});
|
|
|
|
beatmap.ControlPointInfo.Add(0, new TimingControlPoint { BeatLength = 6 });
|
|
beatmap.ControlPointInfo.Add(0, new EffectControlPoint { ScrollSpeed = 10 });
|
|
|
|
var hitWindows = new HitWindows();
|
|
hitWindows.SetDifficulty(beatmap.Difficulty.OverallDifficulty);
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0),
|
|
new TaikoReplayFrame(hit_time - hitWindows.WindowFor(HitResult.Great), TaikoAction.LeftCentre),
|
|
}, beatmap);
|
|
|
|
AssertJudgementCount(1);
|
|
AssertResult<Hit>(0, HitResult.Ok);
|
|
}
|
|
|
|
[Test]
|
|
public void TestStrongHitOneKeyWithHidden()
|
|
{
|
|
const double hit_time = 1000;
|
|
|
|
var beatmap = CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = hit_time,
|
|
IsStrong = true
|
|
});
|
|
|
|
var hitWindows = new TaikoHitWindows();
|
|
hitWindows.SetDifficulty(beatmap.Difficulty.OverallDifficulty);
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0),
|
|
new TaikoReplayFrame(hit_time + hitWindows.WindowFor(HitResult.Ok) - 1, TaikoAction.LeftCentre),
|
|
}, beatmap, new Mod[] { new TaikoModHidden() });
|
|
|
|
AssertJudgementCount(2);
|
|
AssertResult<Hit>(0, HitResult.Ok);
|
|
AssertResult<Hit.StrongNestedHit>(0, HitResult.IgnoreMiss);
|
|
}
|
|
|
|
[Test]
|
|
public void TestStrongHitTwoKeysWithHidden()
|
|
{
|
|
const double hit_time = 1000;
|
|
|
|
var beatmap = CreateBeatmap(new Hit
|
|
{
|
|
Type = HitType.Centre,
|
|
StartTime = hit_time,
|
|
IsStrong = true
|
|
});
|
|
|
|
var hitWindows = new TaikoHitWindows();
|
|
hitWindows.SetDifficulty(beatmap.Difficulty.OverallDifficulty);
|
|
|
|
PerformTest(new List<ReplayFrame>
|
|
{
|
|
new TaikoReplayFrame(0),
|
|
new TaikoReplayFrame(hit_time + hitWindows.WindowFor(HitResult.Ok) - 1, TaikoAction.LeftCentre),
|
|
new TaikoReplayFrame(hit_time + hitWindows.WindowFor(HitResult.Ok) + DrawableHit.StrongNestedHit.SECOND_HIT_WINDOW - 2, TaikoAction.LeftCentre, TaikoAction.RightCentre),
|
|
}, beatmap, new Mod[] { new TaikoModHidden() });
|
|
|
|
AssertJudgementCount(2);
|
|
AssertResult<Hit>(0, HitResult.Ok);
|
|
AssertResult<Hit.StrongNestedHit>(0, HitResult.LargeBonus);
|
|
}
|
|
}
|
|
}
|