2019-03-17 23:46:15 +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.
|
|
|
|
|
2019-03-26 12:18:33 +08:00
|
|
|
using System.Linq;
|
2019-03-18 18:44:21 +08:00
|
|
|
using NUnit.Framework;
|
2019-03-26 12:18:33 +08:00
|
|
|
using osu.Framework.Graphics;
|
2019-03-18 10:48:11 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-03-18 13:57:06 +08:00
|
|
|
using osu.Framework.Screens;
|
2019-05-10 17:10:07 +08:00
|
|
|
using osu.Framework.Testing;
|
2019-03-26 12:18:33 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics.Cursor;
|
2019-03-17 23:46:15 +08:00
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Screens.Play;
|
2020-07-17 18:17:48 +08:00
|
|
|
using osu.Game.Skinning;
|
2019-03-26 12:18:33 +08:00
|
|
|
using osuTK;
|
|
|
|
using osuTK.Input;
|
2019-03-17 23:46:15 +08:00
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
2019-03-17 23:46:15 +08:00
|
|
|
{
|
2020-06-12 18:40:54 +08:00
|
|
|
public class TestScenePause : OsuPlayerTestScene
|
2019-03-17 23:46:15 +08:00
|
|
|
{
|
2019-03-18 18:44:21 +08:00
|
|
|
protected new PausePlayer Player => (PausePlayer)base.Player;
|
|
|
|
|
2019-03-26 12:18:33 +08:00
|
|
|
private readonly Container content;
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
2019-05-15 03:37:25 +08:00
|
|
|
public TestScenePause()
|
2019-03-17 23:46:15 +08:00
|
|
|
{
|
2019-03-26 12:18:33 +08:00
|
|
|
base.Content.Add(content = new MenuCursorContainer { RelativeSizeAxes = Axes.Both });
|
2019-03-17 23:46:15 +08:00
|
|
|
}
|
|
|
|
|
2019-05-10 17:10:07 +08:00
|
|
|
[SetUpSteps]
|
|
|
|
public override void SetUpSteps()
|
|
|
|
{
|
|
|
|
base.SetUpSteps();
|
2020-01-31 12:54:26 +08:00
|
|
|
|
2019-05-10 17:10:07 +08:00
|
|
|
AddStep("resume player", () => Player.GameplayClockContainer.Start());
|
|
|
|
confirmClockRunning(true);
|
|
|
|
}
|
|
|
|
|
2019-03-18 18:44:21 +08:00
|
|
|
[Test]
|
|
|
|
public void TestPauseResume()
|
2019-03-17 23:46:15 +08:00
|
|
|
{
|
2019-03-26 12:18:33 +08:00
|
|
|
AddStep("move cursor outside", () => InputManager.MoveMouseTo(Player.ScreenSpaceDrawQuad.TopLeft - new Vector2(10)));
|
|
|
|
pauseAndConfirm();
|
|
|
|
resumeAndConfirm();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestResumeWithResumeOverlay()
|
|
|
|
{
|
|
|
|
AddStep("move cursor to center", () => InputManager.MoveMouseTo(Player.ScreenSpaceDrawQuad.Centre));
|
2019-12-19 19:03:14 +08:00
|
|
|
AddUntilStep("wait for hitobjects", () => Player.HealthProcessor.Health.Value < 1);
|
2019-03-26 12:18:33 +08:00
|
|
|
|
|
|
|
pauseAndConfirm();
|
|
|
|
resume();
|
|
|
|
|
2021-02-15 13:23:59 +08:00
|
|
|
confirmPausedWithNoOverlay();
|
2020-11-05 22:41:56 +08:00
|
|
|
AddStep("click to resume", () => InputManager.Click(MouseButton.Left));
|
2019-03-26 12:18:33 +08:00
|
|
|
|
|
|
|
confirmClockRunning(true);
|
|
|
|
}
|
|
|
|
|
2019-10-27 03:29:52 +08:00
|
|
|
[Test]
|
|
|
|
public void TestPauseWithResumeOverlay()
|
|
|
|
{
|
|
|
|
AddStep("move cursor to center", () => InputManager.MoveMouseTo(Player.ScreenSpaceDrawQuad.Centre));
|
2019-12-19 19:03:14 +08:00
|
|
|
AddUntilStep("wait for hitobjects", () => Player.HealthProcessor.Health.Value < 1);
|
2019-10-27 03:29:52 +08:00
|
|
|
|
|
|
|
pauseAndConfirm();
|
|
|
|
resume();
|
2021-02-15 14:57:34 +08:00
|
|
|
|
2021-02-15 13:23:59 +08:00
|
|
|
confirmPausedWithNoOverlay();
|
2019-10-27 03:29:52 +08:00
|
|
|
pauseAndConfirm();
|
|
|
|
|
|
|
|
AddUntilStep("resume overlay is not active", () => Player.DrawableRuleset.ResumeOverlay.State.Value == Visibility.Hidden);
|
|
|
|
confirmPaused();
|
2021-02-15 14:57:34 +08:00
|
|
|
confirmNotExited();
|
2019-10-27 03:29:52 +08:00
|
|
|
}
|
|
|
|
|
2019-03-26 12:18:33 +08:00
|
|
|
[Test]
|
|
|
|
public void TestResumeWithResumeOverlaySkipped()
|
|
|
|
{
|
|
|
|
AddStep("move cursor to button", () =>
|
|
|
|
InputManager.MoveMouseTo(Player.HUDOverlay.HoldToQuit.Children.OfType<HoldToConfirmContainer>().First().ScreenSpaceDrawQuad.Centre));
|
2019-12-19 19:03:14 +08:00
|
|
|
AddUntilStep("wait for hitobjects", () => Player.HealthProcessor.Health.Value < 1);
|
2019-03-26 12:18:33 +08:00
|
|
|
|
2019-03-21 15:33:34 +08:00
|
|
|
pauseAndConfirm();
|
|
|
|
resumeAndConfirm();
|
2019-03-18 18:44:21 +08:00
|
|
|
}
|
2019-03-18 10:48:11 +08:00
|
|
|
|
2021-02-20 13:19:44 +08:00
|
|
|
[Test]
|
|
|
|
public void TestUserPauseWhenPauseNotAllowed()
|
|
|
|
{
|
|
|
|
AddStep("disable pause support", () => Player.Configuration.AllowPause = false);
|
|
|
|
|
|
|
|
pauseFromUserExitKey();
|
|
|
|
confirmExited();
|
|
|
|
}
|
|
|
|
|
2021-02-15 13:36:14 +08:00
|
|
|
[Test]
|
|
|
|
public void TestUserPauseDuringCooldownTooSoon()
|
|
|
|
{
|
|
|
|
AddStep("move cursor outside", () => InputManager.MoveMouseTo(Player.ScreenSpaceDrawQuad.TopLeft - new Vector2(10)));
|
|
|
|
|
|
|
|
pauseAndConfirm();
|
|
|
|
|
|
|
|
resume();
|
2021-02-15 15:11:17 +08:00
|
|
|
pauseFromUserExitKey();
|
2021-02-15 13:36:14 +08:00
|
|
|
|
|
|
|
confirmResumed();
|
2021-02-15 14:57:34 +08:00
|
|
|
confirmNotExited();
|
2021-02-15 13:36:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestQuickExitDuringCooldownTooSoon()
|
|
|
|
{
|
|
|
|
AddStep("move cursor outside", () => InputManager.MoveMouseTo(Player.ScreenSpaceDrawQuad.TopLeft - new Vector2(10)));
|
|
|
|
|
|
|
|
pauseAndConfirm();
|
|
|
|
|
|
|
|
resume();
|
|
|
|
AddStep("pause via exit key", () => Player.ExitViaQuickExit());
|
|
|
|
|
|
|
|
confirmResumed();
|
|
|
|
AddAssert("exited", () => !Player.IsCurrentScreen());
|
|
|
|
}
|
|
|
|
|
2019-03-21 15:11:44 +08:00
|
|
|
[Test]
|
2021-02-09 16:29:27 +08:00
|
|
|
public void TestExitSoonAfterResumeSucceeds()
|
2019-03-21 15:11:44 +08:00
|
|
|
{
|
2019-11-28 14:58:26 +08:00
|
|
|
AddStep("seek before gameplay", () => Player.GameplayClockContainer.Seek(-5000));
|
2019-03-21 15:33:34 +08:00
|
|
|
|
2019-11-28 14:58:26 +08:00
|
|
|
pauseAndConfirm();
|
2019-03-21 15:33:34 +08:00
|
|
|
resume();
|
|
|
|
|
2021-02-09 16:29:27 +08:00
|
|
|
AddStep("exit quick", () => Player.Exit());
|
2019-03-21 15:33:34 +08:00
|
|
|
|
2021-02-15 13:23:59 +08:00
|
|
|
confirmResumed();
|
2021-02-09 16:29:27 +08:00
|
|
|
AddAssert("exited", () => !Player.IsCurrentScreen());
|
2019-03-21 15:11:44 +08:00
|
|
|
}
|
|
|
|
|
2019-03-18 18:44:21 +08:00
|
|
|
[Test]
|
|
|
|
public void TestPauseAfterFail()
|
|
|
|
{
|
2019-03-20 09:30:17 +08:00
|
|
|
AddUntilStep("wait for fail", () => Player.HasFailed);
|
2019-06-04 15:13:16 +08:00
|
|
|
AddUntilStep("fail overlay shown", () => Player.FailOverlayVisible);
|
2019-03-18 10:48:11 +08:00
|
|
|
|
2019-03-21 15:33:34 +08:00
|
|
|
confirmClockRunning(false);
|
|
|
|
|
2021-02-19 16:15:38 +08:00
|
|
|
AddStep("pause via forced pause", () => Player.Pause());
|
2019-03-21 15:33:34 +08:00
|
|
|
|
2021-02-15 13:23:59 +08:00
|
|
|
confirmPausedWithNoOverlay();
|
2019-03-18 18:44:21 +08:00
|
|
|
AddAssert("fail overlay still shown", () => Player.FailOverlayVisible);
|
2019-03-21 15:11:44 +08:00
|
|
|
|
2019-03-21 15:33:34 +08:00
|
|
|
exitAndConfirm();
|
2019-03-21 15:11:44 +08:00
|
|
|
}
|
|
|
|
|
2019-10-04 11:25:23 +08:00
|
|
|
[Test]
|
2021-02-19 16:15:38 +08:00
|
|
|
public void TestExitFromFailedGameplayAfterFailAnimation()
|
2019-10-04 11:25:23 +08:00
|
|
|
{
|
|
|
|
AddUntilStep("wait for fail", () => Player.HasFailed);
|
2021-02-19 16:15:38 +08:00
|
|
|
AddUntilStep("wait for fail overlay shown", () => Player.FailOverlayVisible);
|
|
|
|
|
|
|
|
confirmClockRunning(false);
|
|
|
|
|
|
|
|
AddStep("exit via user pause", () => Player.ExitViaPause());
|
|
|
|
confirmExited();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestExitFromFailedGameplayDuringFailAnimation()
|
|
|
|
{
|
|
|
|
AddUntilStep("wait for fail", () => Player.HasFailed);
|
|
|
|
|
|
|
|
// will finish the fail animation and show the fail/pause screen.
|
|
|
|
AddStep("attempt exit via pause key", () => Player.ExitViaPause());
|
|
|
|
AddAssert("fail overlay shown", () => Player.FailOverlayVisible);
|
2019-10-04 11:25:23 +08:00
|
|
|
|
2021-02-19 16:15:38 +08:00
|
|
|
// will actually exit.
|
|
|
|
AddStep("exit via pause key", () => Player.ExitViaPause());
|
2019-10-04 11:25:23 +08:00
|
|
|
confirmExited();
|
|
|
|
}
|
|
|
|
|
2019-10-04 12:23:01 +08:00
|
|
|
[Test]
|
|
|
|
public void TestQuickRetryFromFailedGameplay()
|
|
|
|
{
|
|
|
|
AddUntilStep("wait for fail", () => Player.HasFailed);
|
2020-09-29 13:18:54 +08:00
|
|
|
AddStep("quick retry", () => Player.GameplayClockContainer.ChildrenOfType<HotkeyRetryOverlay>().First().Action?.Invoke());
|
2019-10-04 12:23:01 +08:00
|
|
|
|
|
|
|
confirmExited();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestQuickExitFromFailedGameplay()
|
|
|
|
{
|
|
|
|
AddUntilStep("wait for fail", () => Player.HasFailed);
|
2020-09-29 13:18:54 +08:00
|
|
|
AddStep("quick exit", () => Player.GameplayClockContainer.ChildrenOfType<HotkeyExitOverlay>().First().Action?.Invoke());
|
2019-10-04 12:23:01 +08:00
|
|
|
|
|
|
|
confirmExited();
|
|
|
|
}
|
|
|
|
|
2019-03-21 15:11:44 +08:00
|
|
|
[Test]
|
|
|
|
public void TestExitFromGameplay()
|
|
|
|
{
|
2020-06-23 16:38:30 +08:00
|
|
|
// an externally triggered exit should immediately exit, skipping all pause logic.
|
2019-11-28 14:58:26 +08:00
|
|
|
AddStep("exit", () => Player.Exit());
|
2019-10-03 03:07:07 +08:00
|
|
|
confirmExited();
|
2019-03-18 18:44:21 +08:00
|
|
|
}
|
2019-03-18 13:57:06 +08:00
|
|
|
|
2019-10-04 12:23:01 +08:00
|
|
|
[Test]
|
|
|
|
public void TestQuickExitFromGameplay()
|
|
|
|
{
|
2020-09-29 13:18:54 +08:00
|
|
|
AddStep("quick exit", () => Player.GameplayClockContainer.ChildrenOfType<HotkeyExitOverlay>().First().Action?.Invoke());
|
2019-10-04 12:23:01 +08:00
|
|
|
|
|
|
|
confirmExited();
|
|
|
|
}
|
|
|
|
|
2019-06-25 22:48:42 +08:00
|
|
|
[Test]
|
|
|
|
public void TestExitViaHoldToExit()
|
|
|
|
{
|
|
|
|
AddStep("exit", () =>
|
|
|
|
{
|
|
|
|
InputManager.MoveMouseTo(Player.HUDOverlay.HoldToQuit.First(c => c is HoldToConfirmContainer));
|
|
|
|
InputManager.PressButton(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
confirmPaused();
|
|
|
|
|
|
|
|
AddStep("release", () => InputManager.ReleaseButton(MouseButton.Left));
|
|
|
|
|
|
|
|
exitAndConfirm();
|
|
|
|
}
|
|
|
|
|
2019-03-18 18:44:21 +08:00
|
|
|
[Test]
|
|
|
|
public void TestExitFromPause()
|
|
|
|
{
|
2019-03-21 15:33:34 +08:00
|
|
|
pauseAndConfirm();
|
|
|
|
exitAndConfirm();
|
|
|
|
}
|
2019-03-18 13:57:06 +08:00
|
|
|
|
2019-09-13 14:41:53 +08:00
|
|
|
[Test]
|
|
|
|
public void TestRestartAfterResume()
|
|
|
|
{
|
2019-11-28 14:58:26 +08:00
|
|
|
AddStep("seek before gameplay", () => Player.GameplayClockContainer.Seek(-5000));
|
|
|
|
|
2019-09-13 14:41:53 +08:00
|
|
|
pauseAndConfirm();
|
|
|
|
resumeAndConfirm();
|
|
|
|
restart();
|
|
|
|
confirmExited();
|
|
|
|
}
|
|
|
|
|
2020-07-17 18:17:48 +08:00
|
|
|
[Test]
|
|
|
|
public void TestPauseSoundLoop()
|
|
|
|
{
|
|
|
|
AddStep("seek before gameplay", () => Player.GameplayClockContainer.Seek(-5000));
|
|
|
|
|
|
|
|
SkinnableSound getLoop() => Player.ChildrenOfType<PauseOverlay>().FirstOrDefault()?.ChildrenOfType<SkinnableSound>().FirstOrDefault();
|
|
|
|
|
|
|
|
pauseAndConfirm();
|
|
|
|
AddAssert("loop is playing", () => getLoop().IsPlaying);
|
|
|
|
|
|
|
|
resumeAndConfirm();
|
|
|
|
AddUntilStep("loop is stopped", () => !getLoop().IsPlaying);
|
|
|
|
|
|
|
|
AddUntilStep("pause again", () =>
|
|
|
|
{
|
|
|
|
Player.Pause();
|
|
|
|
return !Player.GameplayClockContainer.GameplayClock.IsRunning;
|
|
|
|
});
|
|
|
|
|
|
|
|
AddAssert("loop is playing", () => getLoop().IsPlaying);
|
|
|
|
|
|
|
|
resumeAndConfirm();
|
|
|
|
AddUntilStep("loop is stopped", () => !getLoop().IsPlaying);
|
|
|
|
}
|
|
|
|
|
2019-03-21 15:33:34 +08:00
|
|
|
private void pauseAndConfirm()
|
|
|
|
{
|
2021-02-15 15:11:17 +08:00
|
|
|
pauseFromUserExitKey();
|
2019-03-21 15:33:34 +08:00
|
|
|
confirmPaused();
|
2019-03-21 15:11:44 +08:00
|
|
|
}
|
|
|
|
|
2019-03-21 15:33:34 +08:00
|
|
|
private void resumeAndConfirm()
|
|
|
|
{
|
|
|
|
resume();
|
|
|
|
confirmResumed();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void exitAndConfirm()
|
2019-03-21 15:11:44 +08:00
|
|
|
{
|
2021-02-15 14:57:34 +08:00
|
|
|
confirmNotExited();
|
2019-03-18 18:44:21 +08:00
|
|
|
AddStep("exit", () => Player.Exit());
|
2019-03-21 15:33:34 +08:00
|
|
|
confirmExited();
|
2019-11-06 09:32:09 +08:00
|
|
|
confirmNoTrackAdjustments();
|
2019-03-21 15:33:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void confirmPaused()
|
|
|
|
{
|
|
|
|
confirmClockRunning(false);
|
2021-02-15 14:57:34 +08:00
|
|
|
confirmNotExited();
|
2019-05-09 10:31:40 +08:00
|
|
|
AddAssert("player not failed", () => !Player.HasFailed);
|
2019-03-21 15:33:34 +08:00
|
|
|
AddAssert("pause overlay shown", () => Player.PauseOverlayVisible);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void confirmResumed()
|
|
|
|
{
|
|
|
|
confirmClockRunning(true);
|
|
|
|
confirmPauseOverlayShown(false);
|
|
|
|
}
|
|
|
|
|
2021-02-15 13:23:59 +08:00
|
|
|
private void confirmPausedWithNoOverlay()
|
|
|
|
{
|
|
|
|
confirmClockRunning(false);
|
|
|
|
confirmPauseOverlayShown(false);
|
|
|
|
}
|
|
|
|
|
2021-02-15 14:57:34 +08:00
|
|
|
private void confirmExited() => AddUntilStep("player exited", () => !Player.IsCurrentScreen());
|
|
|
|
private void confirmNotExited() => AddAssert("player not exited", () => Player.IsCurrentScreen());
|
2019-03-17 23:46:15 +08:00
|
|
|
|
2019-11-06 09:32:09 +08:00
|
|
|
private void confirmNoTrackAdjustments()
|
|
|
|
{
|
|
|
|
AddAssert("track has no adjustments", () => Beatmap.Value.Track.AggregateFrequency.Value == 1);
|
|
|
|
}
|
|
|
|
|
2019-09-13 14:41:53 +08:00
|
|
|
private void restart() => AddStep("restart", () => Player.Restart());
|
2021-02-15 15:11:17 +08:00
|
|
|
private void pauseFromUserExitKey() => AddStep("user pause", () => Player.ExitViaPause());
|
2019-03-21 15:33:34 +08:00
|
|
|
private void resume() => AddStep("resume", () => Player.Resume());
|
|
|
|
|
|
|
|
private void confirmPauseOverlayShown(bool isShown) =>
|
|
|
|
AddAssert("pause overlay " + (isShown ? "shown" : "hidden"), () => Player.PauseOverlayVisible == isShown);
|
|
|
|
|
|
|
|
private void confirmClockRunning(bool isRunning) =>
|
2019-06-10 00:08:39 +08:00
|
|
|
AddUntilStep("clock " + (isRunning ? "running" : "stopped"), () => Player.GameplayClockContainer.GameplayClock.IsRunning == isRunning);
|
2019-03-21 15:33:34 +08:00
|
|
|
|
2019-03-18 18:44:21 +08:00
|
|
|
protected override bool AllowFail => true;
|
|
|
|
|
2020-03-05 10:25:07 +08:00
|
|
|
protected override TestPlayer CreatePlayer(Ruleset ruleset) => new PausePlayer();
|
2019-03-18 18:44:21 +08:00
|
|
|
|
2019-05-10 14:39:25 +08:00
|
|
|
protected class PausePlayer : TestPlayer
|
2019-03-17 23:46:15 +08:00
|
|
|
{
|
2019-06-11 13:28:52 +08:00
|
|
|
public bool FailOverlayVisible => FailOverlay.State.Value == Visibility.Visible;
|
2019-03-18 10:48:11 +08:00
|
|
|
|
2019-06-11 13:28:52 +08:00
|
|
|
public bool PauseOverlayVisible => PauseOverlay.State.Value == Visibility.Visible;
|
2019-03-26 12:18:33 +08:00
|
|
|
|
2021-02-15 13:36:14 +08:00
|
|
|
public void ExitViaPause() => PerformExit(true);
|
|
|
|
|
|
|
|
public void ExitViaQuickExit() => PerformExit(false);
|
|
|
|
|
2019-05-10 17:10:07 +08:00
|
|
|
public override void OnEntering(IScreen last)
|
|
|
|
{
|
|
|
|
base.OnEntering(last);
|
|
|
|
GameplayClockContainer.Stop();
|
|
|
|
}
|
2019-03-17 23:46:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|