osu/osu.Game.Tests/Visual/Gameplay/TestCaseReplay.cs

42 lines
1.5 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 09:19:50 +00:00
using System.ComponentModel;
using System.Linq;
using osu.Game.Rulesets;
2019-04-08 09:32:05 +00:00
using osu.Game.Rulesets.Mods;
2019-03-07 09:30:31 +00:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Scoring;
2018-04-13 09:19:50 +00:00
using osu.Game.Screens.Play;
2019-03-24 16:02:36 +00:00
namespace osu.Game.Tests.Visual.Gameplay
2018-04-13 09:19:50 +00:00
{
[Description("Player instantiated with a replay.")]
public class TestCaseReplay : AllPlayersTestCase
2018-04-13 09:19:50 +00:00
{
protected override Player CreatePlayer(Ruleset ruleset)
2018-04-13 09:19:50 +00:00
{
2019-04-08 09:32:05 +00:00
var beatmap = Beatmap.Value.GetPlayableBeatmap(ruleset.RulesetInfo, Enumerable.Empty<Mod>());
2018-04-13 09:19:50 +00:00
2019-03-07 09:30:31 +00:00
return new ScoreAccessibleReplayPlayer(ruleset.GetAutoplayMod().CreateReplayScore(beatmap));
}
protected override void AddCheckSteps()
2019-03-07 09:30:31 +00: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-03-07 09:30:31 +00:00
}
private class ScoreAccessibleReplayPlayer : ReplayPlayer
{
public new ScoreProcessor ScoreProcessor => base.ScoreProcessor;
public new HUDOverlay HUDOverlay => base.HUDOverlay;
2018-04-13 09:19:50 +00:00
2019-03-07 09:30:31 +00:00
public ScoreAccessibleReplayPlayer(Score score)
: base(score)
{
}
2018-04-13 09:19:50 +00:00
}
}
}