2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Rulesets;
|
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;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
|
|
|
|
[Description("Player instantiated with a replay.")]
|
2019-03-18 15:39:34 +08:00
|
|
|
|
public class TestCaseReplay : AllPlayersTestCase
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-06-06 19:21:47 +08:00
|
|
|
|
protected override Player CreatePlayer(Ruleset ruleset)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-03-07 17:30:31 +08:00
|
|
|
|
var beatmap = Beatmap.Value.GetPlayableBeatmap(ruleset.RulesetInfo);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-07 17:30:31 +08:00
|
|
|
|
return new ScoreAccessibleReplayPlayer(ruleset.GetAutoplayMod().CreateReplayScore(beatmap));
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-18 15:39:34 +08:00
|
|
|
|
protected override void AddCheckSteps()
|
2019-03-07 17:30:31 +08:00
|
|
|
|
{
|
2019-03-18 15:39:34 +08:00
|
|
|
|
AddUntilStep(() => ((ScoreAccessibleReplayPlayer)Player).ScoreProcessor.TotalScore.Value > 0, "score above zero");
|
|
|
|
|
AddUntilStep(() => ((ScoreAccessibleReplayPlayer)Player).HUDOverlay.KeyCounter.Children.Any(kc => kc.CountPresses > 0), "key counter counted keys");
|
2019-03-07 17:30:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class ScoreAccessibleReplayPlayer : ReplayPlayer
|
|
|
|
|
{
|
|
|
|
|
public new ScoreProcessor ScoreProcessor => base.ScoreProcessor;
|
|
|
|
|
public new HUDOverlay HUDOverlay => base.HUDOverlay;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-07 17:30:31 +08:00
|
|
|
|
public ScoreAccessibleReplayPlayer(Score score)
|
|
|
|
|
: base(score)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|