1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:47:25 +08:00
osu-lazer/osu.Game.Tests/Visual/Gameplay/TestSceneFailJudgement.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.7 KiB
C#
Raw Normal View History

2019-08-09 13:04:56 +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 System;
using System.Linq;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Scoring;
2020-11-14 00:49:48 +08:00
using osu.Game.Scoring;
2019-08-09 13:04:56 +08:00
using osu.Game.Screens.Play;
namespace osu.Game.Tests.Visual.Gameplay
{
public class TestSceneFailJudgement : TestSceneAllRulesetPlayers
2019-08-09 13:04:56 +08:00
{
protected override Player CreatePlayer(Ruleset ruleset)
{
2019-12-13 20:45:38 +08:00
SelectedMods.Value = Array.Empty<Mod>();
2019-09-19 04:17:24 +08:00
return new FailPlayer();
2019-08-09 13:04:56 +08:00
}
protected override void AddCheckSteps()
{
AddUntilStep("player is playing", () => Player.LocalUserPlaying.Value);
AddUntilStep("wait for fail", () => Player.GameplayState.HasFailed);
AddAssert("player is not playing", () => !Player.LocalUserPlaying.Value);
2020-11-14 00:49:48 +08:00
AddUntilStep("wait for multiple judgements", () => ((FailPlayer)Player).ScoreProcessor.JudgedHits > 1);
AddAssert("total number of results == 1", () =>
{
var score = new ScoreInfo { Ruleset = Ruleset.Value };
2020-11-14 00:49:48 +08:00
((FailPlayer)Player).ScoreProcessor.PopulateScore(score);
return score.Statistics.Values.Sum() == 1;
});
2019-08-09 13:04:56 +08:00
}
2019-09-19 04:17:24 +08:00
private class FailPlayer : TestPlayer
2019-08-09 13:04:56 +08:00
{
2019-12-26 18:18:39 +08:00
public new HealthProcessor HealthProcessor => base.HealthProcessor;
2019-08-09 13:04:56 +08:00
2019-09-19 04:17:24 +08:00
public FailPlayer()
: base(false, false)
2019-08-09 13:04:56 +08:00
{
}
protected override void LoadComplete()
{
base.LoadComplete();
HealthProcessor.FailConditions += (_, __) => true;
2019-08-09 13:04:56 +08:00
}
}
}
}