2020-08-18 18:51:26 +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;
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Gameplay
|
|
|
|
{
|
|
|
|
[HeadlessTest]
|
|
|
|
public class TestSceneScoreProcessor : OsuTestScene
|
|
|
|
{
|
|
|
|
[Test]
|
|
|
|
public void TestNoScoreIncreaseFromMiss()
|
|
|
|
{
|
2020-09-29 14:25:31 +08:00
|
|
|
var beatmap = new Beatmap<HitObject> { HitObjects = { new HitObject() } };
|
2020-08-18 18:51:26 +08:00
|
|
|
|
|
|
|
var scoreProcessor = new ScoreProcessor();
|
|
|
|
scoreProcessor.ApplyBeatmap(beatmap);
|
|
|
|
|
|
|
|
// Apply a miss judgement
|
2020-09-29 14:25:31 +08:00
|
|
|
scoreProcessor.ApplyResult(new JudgementResult(new HitObject(), new TestJudgement()) { Type = HitResult.Miss });
|
2020-08-18 18:51:26 +08:00
|
|
|
|
|
|
|
Assert.That(scoreProcessor.TotalScore.Value, Is.EqualTo(0.0));
|
|
|
|
}
|
|
|
|
|
2020-09-11 00:13:55 +08:00
|
|
|
[Test]
|
|
|
|
public void TestOnlyBonusScore()
|
|
|
|
{
|
2020-09-29 14:25:31 +08:00
|
|
|
var beatmap = new Beatmap<HitObject> { HitObjects = { new HitObject() } };
|
2020-09-11 00:13:55 +08:00
|
|
|
|
|
|
|
var scoreProcessor = new ScoreProcessor();
|
|
|
|
scoreProcessor.ApplyBeatmap(beatmap);
|
|
|
|
|
|
|
|
// Apply a judgement
|
2020-09-29 14:25:31 +08:00
|
|
|
scoreProcessor.ApplyResult(new JudgementResult(new HitObject(), new TestJudgement(HitResult.LargeBonus)) { Type = HitResult.LargeBonus });
|
2020-09-11 00:13:55 +08:00
|
|
|
|
2020-09-29 14:25:31 +08:00
|
|
|
Assert.That(scoreProcessor.TotalScore.Value, Is.EqualTo(Judgement.LARGE_BONUS_SCORE));
|
2020-08-18 18:51:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private class TestJudgement : Judgement
|
|
|
|
{
|
2020-09-29 14:25:31 +08:00
|
|
|
public override HitResult MaxResult { get; }
|
2020-09-11 00:13:55 +08:00
|
|
|
|
2020-09-29 14:25:31 +08:00
|
|
|
public TestJudgement(HitResult maxResult = HitResult.Perfect)
|
|
|
|
{
|
|
|
|
MaxResult = maxResult;
|
|
|
|
}
|
2020-09-11 00:13:55 +08:00
|
|
|
}
|
2020-08-18 18:51:26 +08:00
|
|
|
}
|
|
|
|
}
|