mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
56 lines
1.8 KiB
C#
56 lines
1.8 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 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()
|
|
{
|
|
var beatmap = new Beatmap<HitObject> { HitObjects = { new HitObject() } };
|
|
|
|
var scoreProcessor = new ScoreProcessor();
|
|
scoreProcessor.ApplyBeatmap(beatmap);
|
|
|
|
// Apply a miss judgement
|
|
scoreProcessor.ApplyResult(new JudgementResult(new HitObject(), new TestJudgement()) { Type = HitResult.Miss });
|
|
|
|
Assert.That(scoreProcessor.TotalScore.Value, Is.EqualTo(0.0));
|
|
}
|
|
|
|
[Test]
|
|
public void TestOnlyBonusScore()
|
|
{
|
|
var beatmap = new Beatmap<HitObject> { HitObjects = { new HitObject() } };
|
|
|
|
var scoreProcessor = new ScoreProcessor();
|
|
scoreProcessor.ApplyBeatmap(beatmap);
|
|
|
|
// Apply a judgement
|
|
scoreProcessor.ApplyResult(new JudgementResult(new HitObject(), new TestJudgement(HitResult.LargeBonus)) { Type = HitResult.LargeBonus });
|
|
|
|
Assert.That(scoreProcessor.TotalScore.Value, Is.EqualTo(Judgement.LARGE_BONUS_SCORE));
|
|
}
|
|
|
|
private class TestJudgement : Judgement
|
|
{
|
|
public override HitResult MaxResult { get; }
|
|
|
|
public TestJudgement(HitResult maxResult = HitResult.Perfect)
|
|
{
|
|
MaxResult = maxResult;
|
|
}
|
|
}
|
|
}
|
|
}
|