2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
|
2019-03-25 01:02:36 +09:00
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
[Description("Player instantiated with an autoplay mod.")]
|
2020-01-31 13:54:26 +09:00
|
|
|
|
public class TestSceneAutoplay : TestSceneAllRulesetPlayers
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2020-03-05 11:25:07 +09:00
|
|
|
|
protected new TestPlayer Player => (TestPlayer)base.Player;
|
|
|
|
|
|
2018-06-06 20:21:47 +09:00
|
|
|
|
protected override Player CreatePlayer(Ruleset ruleset)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2019-12-13 21:45:38 +09:00
|
|
|
|
SelectedMods.Value = SelectedMods.Value.Concat(new[] { ruleset.GetAutoplayMod() }).ToArray();
|
2020-03-05 11:25:07 +09:00
|
|
|
|
return new TestPlayer(false, false);
|
2018-05-26 14:46:05 +09:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-18 16:39:34 +09:00
|
|
|
|
protected override void AddCheckSteps()
|
2019-01-23 14:43:23 +09:00
|
|
|
|
{
|
2020-03-05 11:25:07 +09:00
|
|
|
|
AddUntilStep("score above zero", () => Player.ScoreProcessor.TotalScore.Value > 0);
|
|
|
|
|
AddUntilStep("key counter counted keys", () => Player.HUDOverlay.KeyCounter.Children.Any(kc => kc.CountPresses > 2));
|
2020-03-06 17:48:24 +09:00
|
|
|
|
AddStep("seek to break time", () => Player.GameplayClockContainer.Seek(Player.BreakOverlay.Breaks.First().StartTime));
|
2020-02-29 21:07:42 +05:30
|
|
|
|
AddUntilStep("wait for seek to complete", () =>
|
2020-03-06 17:48:24 +09:00
|
|
|
|
Player.HUDOverlay.Progress.ReferenceClock.CurrentTime >= Player.BreakOverlay.Breaks.First().StartTime);
|
|
|
|
|
AddAssert("test keys not counting", () => !Player.HUDOverlay.KeyCounter.IsCounting);
|
|
|
|
|
AddStep("rewind", () => Player.GameplayClockContainer.Seek(-80000));
|
2020-03-05 11:25:07 +09:00
|
|
|
|
AddUntilStep("key counter reset", () => Player.HUDOverlay.KeyCounter.Children.All(kc => kc.CountPresses == 0));
|
2019-09-17 22:33:27 +09:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|