2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-01-31 10:00:44 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Screens;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A test case which can be used to test a screen (that relies on OnEntering being called to execute startup instructions).
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract class ScreenTestCase : OsuTestCase
|
|
|
|
|
{
|
2019-03-12 15:33:35 +08:00
|
|
|
|
private readonly OsuScreenStack stack;
|
2019-01-31 13:55:48 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected ScreenTestCase()
|
|
|
|
|
{
|
2019-01-31 13:55:48 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-03-12 15:33:35 +08:00
|
|
|
|
stack = new OsuScreenStack { RelativeSizeAxes = Axes.Both }
|
2019-01-31 13:55:48 +08:00
|
|
|
|
};
|
2019-01-31 10:00:44 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-01-31 10:00:44 +08:00
|
|
|
|
protected void LoadScreen(OsuScreen screen)
|
|
|
|
|
{
|
|
|
|
|
if (stack.CurrentScreen != null)
|
|
|
|
|
stack.Exit();
|
|
|
|
|
stack.Push(screen);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|