2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
2019-09-17 13:33:27 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets;
|
2018-05-26 05:46:05 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Screens.Play;
|
2019-11-21 09:50:54 +00:00
|
|
|
|
using osu.Game.Storyboards;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
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 an autoplay mod.")]
|
2020-01-31 04:54:26 +00:00
|
|
|
|
public class TestSceneAutoplay : TestSceneAllRulesetPlayers
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-09-17 13:33:27 +00:00
|
|
|
|
private ClockBackedTestWorkingBeatmap.TrackVirtualManual track;
|
|
|
|
|
|
2018-06-06 11:21:47 +00:00
|
|
|
|
protected override Player CreatePlayer(Ruleset ruleset)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-12-13 12:45:38 +00:00
|
|
|
|
SelectedMods.Value = SelectedMods.Value.Concat(new[] { ruleset.GetAutoplayMod() }).ToArray();
|
2019-03-26 07:53:44 +00:00
|
|
|
|
return new ScoreAccessiblePlayer();
|
2018-05-26 05:46:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-18 07:39:34 +00:00
|
|
|
|
protected override void AddCheckSteps()
|
2019-01-23 05:43:23 +00:00
|
|
|
|
{
|
2020-02-29 15:37:42 +00:00
|
|
|
|
ScoreAccessiblePlayer scoreAccessiblePlayer = null;
|
|
|
|
|
|
|
|
|
|
AddUntilStep("player loaded", () => (scoreAccessiblePlayer = (ScoreAccessiblePlayer)Player) != null);
|
|
|
|
|
AddUntilStep("score above zero", () => scoreAccessiblePlayer.ScoreProcessor.TotalScore.Value > 0);
|
|
|
|
|
AddUntilStep("key counter counted keys", () => scoreAccessiblePlayer.HUDOverlay.KeyCounter.Children.Any(kc => kc.CountPresses > 2));
|
|
|
|
|
AddStep("seek to break time", () => scoreAccessiblePlayer.GameplayClockContainer.Seek(scoreAccessiblePlayer.BreakOverlay.Breaks.First().StartTime));
|
|
|
|
|
AddUntilStep("wait for seek to complete", () =>
|
|
|
|
|
scoreAccessiblePlayer.HUDOverlay.Progress.ReferenceClock.CurrentTime >= scoreAccessiblePlayer.BreakOverlay.Breaks.First().StartTime);
|
|
|
|
|
AddAssert("test keys not counting", () => !scoreAccessiblePlayer.HUDOverlay.KeyCounter.IsCounting);
|
|
|
|
|
AddStep("rewind", () => scoreAccessiblePlayer.GameplayClockContainer.Seek(-80000));
|
|
|
|
|
AddUntilStep("key counter reset", () => scoreAccessiblePlayer.HUDOverlay.KeyCounter.Children.All(kc => kc.CountPresses == 0));
|
2019-09-17 13:33:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 09:50:54 +00:00
|
|
|
|
protected override WorkingBeatmap CreateWorkingBeatmap(IBeatmap beatmap, Storyboard storyboard = null)
|
2019-09-17 13:33:27 +00:00
|
|
|
|
{
|
2019-11-21 09:50:54 +00:00
|
|
|
|
var working = base.CreateWorkingBeatmap(beatmap, storyboard);
|
2019-09-17 13:33:27 +00:00
|
|
|
|
|
|
|
|
|
track = (ClockBackedTestWorkingBeatmap.TrackVirtualManual)working.Track;
|
|
|
|
|
|
|
|
|
|
return working;
|
2019-01-23 05:43:23 +00:00
|
|
|
|
}
|
2018-05-26 05:46:05 +00:00
|
|
|
|
|
2019-05-10 06:39:25 +00:00
|
|
|
|
private class ScoreAccessiblePlayer : TestPlayer
|
2018-05-26 05:46:05 +00:00
|
|
|
|
{
|
|
|
|
|
public new ScoreProcessor ScoreProcessor => base.ScoreProcessor;
|
2019-01-23 05:43:23 +00:00
|
|
|
|
public new HUDOverlay HUDOverlay => base.HUDOverlay;
|
2020-02-29 15:37:42 +00:00
|
|
|
|
public new BreakOverlay BreakOverlay => base.BreakOverlay;
|
2019-03-26 07:53:44 +00:00
|
|
|
|
|
2019-09-12 09:10:50 +00:00
|
|
|
|
public new GameplayClockContainer GameplayClockContainer => base.GameplayClockContainer;
|
|
|
|
|
|
2019-03-26 07:53:44 +00:00
|
|
|
|
public ScoreAccessiblePlayer()
|
|
|
|
|
: base(false, false)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|