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-01-30 16:43:06 +08:00
|
|
|
|
Children = new Drawable[]
|
2017-01-27 18:19:52 +08:00
|
|
|
|
{
|
2017-01-30 16:43:06 +08:00
|
|
|
|
new Box
|
2017-01-30 16:08:14 +08:00
|
|
|
|
{
|
2017-01-30 16:43:06 +08:00
|
|
|
|
ColourInfo = ColourInfo.GradientVertical(Color4.Gray, Color4.WhiteSmoke),
|
|
|
|
|
RelativeSizeAxes = Framework.Graphics.Axes.Both
|
|
|
|
|
},
|
|
|
|
|
pauseOverlay = new PauseOverlay
|
|
|
|
|
{
|
|
|
|
|
Depth = -1
|
|
|
|
|
},
|
|
|
|
|
new FlowContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
Direction = FlowDirection.VerticalOnly,
|
|
|
|
|
Children = new Drawable[]
|
2017-01-30 16:08:14 +08:00
|
|
|
|
{
|
2017-01-30 16:43:06 +08:00
|
|
|
|
new Button
|
|
|
|
|
{
|
|
|
|
|
Text = @"Pause",
|
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
Width = 100,
|
|
|
|
|
Height = 50,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
Action = (() => pauseOverlay.Show())
|
|
|
|
|
},
|
|
|
|
|
new Button
|
|
|
|
|
{
|
|
|
|
|
Text = @"Add Retry",
|
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
Width = 100,
|
|
|
|
|
Height = 50,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
Action = (delegate {
|
|
|
|
|
retryCount++;
|
|
|
|
|
pauseOverlay.SetRetries(retryCount);
|
|
|
|
|
}),
|
|
|
|
|
}
|
2017-01-30 16:08:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-30 16:43:06 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pauseOverlay.OnResume += (() => Logger.Log(@"Resume"));
|
|
|
|
|
pauseOverlay.OnRetry += (() => Logger.Log(@"Retry"));
|
|
|
|
|
pauseOverlay.OnQuit += (() => Logger.Log(@"Quit"));
|
2017-01-27 19:11:22 +08:00
|
|
|
|
}
|
2017-01-27 17:24:49 +08:00
|
|
|
|
}
|
2017-01-27 17:39:15 +08:00
|
|
|
|
}
|