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.Rulesets.Osu;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
using osu.Game.Screens.Play;
|
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
|
|
|
{
|
2019-05-15 03:37:25 +08:00
|
|
|
public class TestScenePause : PlayerTestScene
|
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
|
|
|
: base(new OsuRuleset())
|
|
|
|
{
|
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();
|
|
|
|
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));
|
|
|
|
AddUntilStep("wait for hitobjects", () => Player.ScoreProcessor.Health.Value < 1);
|
|
|
|
|
|
|
|
pauseAndConfirm();
|
|
|
|
resume();
|
|
|
|
|
|
|
|
confirmClockRunning(false);
|
|
|
|
confirmPauseOverlayShown(false);
|
|
|
|
|
|
|
|
AddStep("click to resume", () =>
|
|
|
|
{
|
|
|
|
InputManager.PressButton(MouseButton.Left);
|
|
|
|
InputManager.ReleaseButton(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
confirmClockRunning(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestResumeWithResumeOverlaySkipped()
|
|
|
|
{
|
|
|
|
AddStep("move cursor to button", () =>
|
|
|
|
InputManager.MoveMouseTo(Player.HUDOverlay.HoldToQuit.Children.OfType<HoldToConfirmContainer>().First().ScreenSpaceDrawQuad.Centre));
|
|
|
|
AddUntilStep("wait for hitobjects", () => Player.ScoreProcessor.Health.Value < 1);
|
|
|
|
|
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
|
|
|
|
2019-03-18 18:44:21 +08:00
|
|
|
[Test]
|
|
|
|
public void TestPauseTooSoon()
|
|
|
|
{
|
2019-03-26 12:18:33 +08:00
|
|
|
AddStep("move cursor outside", () => InputManager.MoveMouseTo(Player.ScreenSpaceDrawQuad.TopLeft - new Vector2(10)));
|
|
|
|
|
2019-03-21 15:33:34 +08:00
|
|
|
pauseAndConfirm();
|
|
|
|
|
2019-05-13 18:23:38 +08:00
|
|
|
resume();
|
2019-03-21 15:33:34 +08:00
|
|
|
pause();
|
|
|
|
|
|
|
|
confirmClockRunning(true);
|
|
|
|
confirmPauseOverlayShown(false);
|
2019-03-18 18:44:21 +08:00
|
|
|
}
|
2019-03-18 10:48:11 +08:00
|
|
|
|
2019-03-21 15:11:44 +08:00
|
|
|
[Test]
|
|
|
|
public void TestExitTooSoon()
|
|
|
|
{
|
2019-03-21 15:33:34 +08:00
|
|
|
pauseAndConfirm();
|
|
|
|
|
|
|
|
resume();
|
|
|
|
|
|
|
|
AddStep("exit too soon", () => Player.Exit());
|
|
|
|
|
|
|
|
confirmClockRunning(true);
|
|
|
|
confirmPauseOverlayShown(false);
|
|
|
|
|
2019-03-21 15:11:44 +08:00
|
|
|
AddAssert("not exited", () => Player.IsCurrentScreen());
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
pause();
|
|
|
|
|
|
|
|
confirmClockRunning(false);
|
|
|
|
confirmPauseOverlayShown(false);
|
2019-03-18 13:57:06 +08:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestExitFromGameplay()
|
|
|
|
{
|
|
|
|
AddStep("exit", () => Player.Exit());
|
|
|
|
|
2019-03-21 15:33:34 +08:00
|
|
|
confirmPaused();
|
|
|
|
|
|
|
|
exitAndConfirm();
|
2019-03-18 18:44:21 +08:00
|
|
|
}
|
2019-03-18 13:57:06 +08:00
|
|
|
|
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-03-21 15:33:34 +08:00
|
|
|
private void pauseAndConfirm()
|
|
|
|
{
|
|
|
|
pause();
|
|
|
|
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
|
|
|
{
|
|
|
|
AddUntilStep("player not exited", () => Player.IsCurrentScreen());
|
2019-03-18 18:44:21 +08:00
|
|
|
AddStep("exit", () => Player.Exit());
|
2019-03-21 15:33:34 +08:00
|
|
|
confirmExited();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void confirmPaused()
|
|
|
|
{
|
|
|
|
confirmClockRunning(false);
|
2019-05-09 10:31:40 +08:00
|
|
|
AddAssert("player not exited", () => Player.IsCurrentScreen());
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void confirmExited()
|
|
|
|
{
|
2019-03-20 09:30:17 +08:00
|
|
|
AddUntilStep("player exited", () => !Player.IsCurrentScreen());
|
2019-03-17 23:46:15 +08:00
|
|
|
}
|
|
|
|
|
2019-03-21 15:33:34 +08:00
|
|
|
private void pause() => AddStep("pause", () => Player.Pause());
|
|
|
|
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;
|
|
|
|
|
|
|
|
protected override Player CreatePlayer(Ruleset ruleset) => new PausePlayer();
|
|
|
|
|
2019-05-10 14:39:25 +08:00
|
|
|
protected class PausePlayer : TestPlayer
|
2019-03-17 23:46:15 +08:00
|
|
|
{
|
|
|
|
public new GameplayClockContainer GameplayClockContainer => base.GameplayClockContainer;
|
|
|
|
|
|
|
|
public new ScoreProcessor ScoreProcessor => base.ScoreProcessor;
|
2019-03-18 10:48:11 +08:00
|
|
|
|
2019-03-26 12:18:33 +08:00
|
|
|
public new HUDOverlay HUDOverlay => base.HUDOverlay;
|
|
|
|
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|