1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 04:07:26 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCasePauseOverlay.cs

79 lines
2.6 KiB
C#
Raw Normal View History

2017-01-27 17:24:49 +08:00
using System;
using OpenTK.Graphics;
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;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Colour;
using osu.Framework.GameModes.Testing;
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;
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-30 16:43:06 +08:00
new Box
{
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:43:06 +08:00
new Button
{
Text = @"Pause",
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft,
Width = 100,
Height = 50,
Colour = Color4.Black,
2017-01-30 20:07:37 +08:00
Action = () => pauseOverlay.Show()
2017-01-30 16:43:06 +08:00
},
new Button
{
Text = @"Add Retry",
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft,
Width = 100,
Height = 50,
Colour = Color4.Black,
2017-01-30 20:08:38 +08:00
Action = delegate {
2017-01-30 16:43:06 +08:00
retryCount++;
pauseOverlay.SetRetries(retryCount);
2017-01-30 20:08:38 +08:00
},
2017-01-30 16:43:06 +08:00
}
}
}
2017-01-30 16:43:06 +08:00
};
2017-01-30 20:07:37 +08:00
pauseOverlay.OnResume += () => Logger.Log(@"Resume");
pauseOverlay.OnRetry += () => Logger.Log(@"Retry");
pauseOverlay.OnQuit += () => Logger.Log(@"Quit");
}
2017-01-27 17:24:49 +08:00
}
2017-01-27 17:39:15 +08:00
}