2020-03-02 11:42:48 +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 NUnit.Framework;
|
2020-03-02 12:25:16 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2020-03-02 11:42:48 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Mods;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
2020-03-02 12:25:16 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Scoring;
|
2020-03-02 11:42:48 +08:00
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests
|
|
|
|
{
|
|
|
|
public class TestSceneTaikoModPerfect : ModPerfectTestScene
|
|
|
|
{
|
|
|
|
public TestSceneTaikoModPerfect()
|
2020-03-02 12:25:16 +08:00
|
|
|
: base(new TestTaikoRuleset(), new TaikoModPerfect())
|
2020-03-02 11:42:48 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[TestCase(false)]
|
|
|
|
[TestCase(true)]
|
|
|
|
public void TestHit(bool shouldMiss) => CreateHitObjectTest(new HitObjectTestCase(new CentreHit { StartTime = 1000 }), shouldMiss);
|
|
|
|
|
|
|
|
[TestCase(false)]
|
|
|
|
[TestCase(true)]
|
|
|
|
public void TestDrumRoll(bool shouldMiss) => CreateHitObjectTest(new HitObjectTestCase(new DrumRoll { StartTime = 1000, EndTime = 3000 }), shouldMiss);
|
|
|
|
|
|
|
|
[TestCase(false)]
|
|
|
|
[TestCase(true)]
|
|
|
|
public void TestSwell(bool shouldMiss) => CreateHitObjectTest(new HitObjectTestCase(new Swell { StartTime = 1000, EndTime = 3000 }), shouldMiss);
|
2020-03-02 12:25:16 +08:00
|
|
|
|
|
|
|
private class TestTaikoRuleset : TaikoRuleset
|
|
|
|
{
|
|
|
|
public override HealthProcessor CreateHealthProcessor(double drainStartTime) => new TestTaikoHealthProcessor();
|
|
|
|
|
|
|
|
private class TestTaikoHealthProcessor : TaikoHealthProcessor
|
|
|
|
{
|
|
|
|
protected override void Reset(bool storeResults)
|
|
|
|
{
|
|
|
|
base.Reset(storeResults);
|
|
|
|
|
|
|
|
Health.Value = 1; // Don't care about the health condition (only the mod condition)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-02 11:42:48 +08:00
|
|
|
}
|
|
|
|
}
|