1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 22:07:28 +08:00
osu-lazer/osu.Game.Tests/Visual/Gameplay/TestSceneReplay.cs

48 lines
1.7 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using System;
2018-04-13 17:19:50 +08:00
using System.ComponentModel;
using System.Linq;
using osu.Game.Rulesets;
2019-04-08 17:32:05 +08:00
using osu.Game.Rulesets.Mods;
2019-03-07 17:30:31 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Scoring;
2018-04-13 17:19:50 +08:00
using osu.Game.Screens.Play;
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Gameplay
2018-04-13 17:19:50 +08:00
{
[Description("Player instantiated with a replay.")]
public class TestSceneReplay : TestSceneAllRulesetPlayers
2018-04-13 17:19:50 +08:00
{
protected override Player CreatePlayer(Ruleset ruleset)
2018-04-13 17:19:50 +08:00
{
var beatmap = Beatmap.Value.GetPlayableBeatmap(ruleset.RulesetInfo, Array.Empty<Mod>());
2018-04-13 17:19:50 +08:00
return new ScoreAccessibleReplayPlayer(ruleset.GetAutoplayMod()?.CreateReplayScore(beatmap, Array.Empty<Mod>()));
2019-03-07 17:30:31 +08:00
}
protected override void AddCheckSteps()
2019-03-07 17:30:31 +08:00
{
AddUntilStep("score above zero", () => ((ScoreAccessibleReplayPlayer)Player).ScoreProcessor.TotalScore.Value > 0);
AddUntilStep("key counter counted keys", () => ((ScoreAccessibleReplayPlayer)Player).HUDOverlay.KeyCounter.Children.Any(kc => kc.CountPresses > 0));
2019-09-19 13:00:41 +08:00
AddAssert("cannot fail", () => !((ScoreAccessibleReplayPlayer)Player).AllowFail);
2019-03-07 17:30:31 +08:00
}
private class ScoreAccessibleReplayPlayer : ReplayPlayer
{
public new ScoreProcessor ScoreProcessor => base.ScoreProcessor;
public new HUDOverlay HUDOverlay => base.HUDOverlay;
public bool AllowFail => base.CheckModsAllowFailure();
2018-04-13 17:19:50 +08:00
protected override bool PauseOnFocusLost => false;
2019-03-07 17:30:31 +08:00
public ScoreAccessibleReplayPlayer(Score score)
: base(score)
{
}
2018-04-13 17:19:50 +08:00
}
}
}