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;
|
2018-05-26 13:46:05 +08:00
|
|
|
|
using osu.Game.Rulesets.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 an autoplay mod.")]
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public class TestSceneAutoplay : AllPlayersTestScene
|
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-04-10 16:13:12 +08:00
|
|
|
|
Mods.Value = Mods.Value.Concat(new[] { ruleset.GetAutoplayMod() }).ToArray();
|
2019-03-26 15:53:44 +08:00
|
|
|
|
return new ScoreAccessiblePlayer();
|
2018-05-26 13:46:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-18 15:39:34 +08:00
|
|
|
|
protected override void AddCheckSteps()
|
2019-01-23 13:43:23 +08:00
|
|
|
|
{
|
2019-03-19 19:33:39 +08:00
|
|
|
|
AddUntilStep("score above zero", () => ((ScoreAccessiblePlayer)Player).ScoreProcessor.TotalScore.Value > 0);
|
|
|
|
|
AddUntilStep("key counter counted keys", () => ((ScoreAccessiblePlayer)Player).HUDOverlay.KeyCounter.Children.Any(kc => kc.CountPresses > 0));
|
2019-01-23 13:43:23 +08:00
|
|
|
|
}
|
2018-05-26 13:46:05 +08:00
|
|
|
|
|
2019-05-10 14:39:25 +08:00
|
|
|
|
private class ScoreAccessiblePlayer : TestPlayer
|
2018-05-26 13:46:05 +08:00
|
|
|
|
{
|
|
|
|
|
public new ScoreProcessor ScoreProcessor => base.ScoreProcessor;
|
2019-01-23 13:43:23 +08:00
|
|
|
|
public new HUDOverlay HUDOverlay => base.HUDOverlay;
|
2019-03-26 15:53:44 +08:00
|
|
|
|
|
|
|
|
|
public ScoreAccessiblePlayer()
|
|
|
|
|
: base(false, false)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|