2017-01-27 17:24:49 +08:00
|
|
|
|
using System;
|
2017-01-27 18:19:52 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2017-01-27 19:11:22 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2017-01-27 17:24:49 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Pause;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-01-27 18:19:52 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
|
using osu.Framework.GameModes.Testing;
|
2017-01-27 19:11:22 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
|
2017-01-27 17:24:49 +08:00
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
|
|
|
{
|
|
|
|
|
class TestCasePauseOverlay : TestCase
|
|
|
|
|
{
|
|
|
|
|
public override string Name => @"PauseOverlay";
|
|
|
|
|
|
|
|
|
|
public override string Description => @"Tests the pause overlay";
|
|
|
|
|
|
|
|
|
|
private PauseOverlay pauseOverlay;
|
2017-01-30 16:08:14 +08:00
|
|
|
|
private int retryCount;
|
2017-01-27 17:24:49 +08:00
|
|
|
|
|
|
|
|
|
public override void Reset()
|
|
|
|
|
{
|
|
|
|
|
base.Reset();
|
|
|
|
|
|
2017-02-01 08:51:26 +08:00
|
|
|
|
Add(pauseOverlay = new PauseOverlay
|
|
|
|
|
{
|
|
|
|
|
Depth = -1,
|
|
|
|
|
OnResume = () => Logger.Log(@"Resume"),
|
|
|
|
|
OnRetry = () => Logger.Log(@"Retry"),
|
|
|
|
|
OnQuit = () => Logger.Log(@"Quit")
|
|
|
|
|
});
|
2017-01-31 20:42:14 +08:00
|
|
|
|
AddButton("Pause", pauseOverlay.Show);
|
|
|
|
|
AddButton("Add Retry", delegate
|
|
|
|
|
{
|
|
|
|
|
retryCount++;
|
2017-01-31 21:17:47 +08:00
|
|
|
|
pauseOverlay.Retries = retryCount;
|
2017-01-31 20:42:14 +08:00
|
|
|
|
});
|
2017-01-30 16:43:06 +08:00
|
|
|
|
|
2017-01-31 04:15:56 +08:00
|
|
|
|
retryCount = 0;
|
2017-01-27 19:11:22 +08:00
|
|
|
|
}
|
2017-01-27 17:24:49 +08:00
|
|
|
|
}
|
2017-01-27 17:39:15 +08:00
|
|
|
|
}
|