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-05-31 16:29:59 +08:00
|
|
|
|
|
2019-03-29 13:15:57 +08:00
|
|
|
|
using System.Threading;
|
2018-05-31 16:29:59 +08:00
|
|
|
|
using NUnit.Framework;
|
2019-03-27 21:27:53 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-05-31 16:29:59 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2019-01-23 19:52:00 +08:00
|
|
|
|
using osu.Framework.Screens;
|
2018-05-31 16:29:59 +08:00
|
|
|
|
using osu.Game.Screens;
|
|
|
|
|
using osu.Game.Screens.Menu;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-05-31 16:29:59 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.Menus
|
2018-05-31 16:29:59 +08:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public class TestSceneLoaderAnimation : ScreenTestScene
|
2018-05-31 16:29:59 +08:00
|
|
|
|
{
|
|
|
|
|
private TestLoader loader;
|
|
|
|
|
|
2019-03-27 21:27:53 +08:00
|
|
|
|
[Cached]
|
|
|
|
|
private OsuLogo logo;
|
|
|
|
|
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public TestSceneLoaderAnimation()
|
2019-03-27 21:27:53 +08:00
|
|
|
|
{
|
2019-04-19 11:44:57 +08:00
|
|
|
|
Child = logo = new OsuLogo
|
|
|
|
|
{
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Depth = float.MinValue
|
|
|
|
|
};
|
2019-03-27 21:27:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-29 13:15:57 +08:00
|
|
|
|
[Test]
|
|
|
|
|
public void TestInstantLoad()
|
2018-05-31 16:29:59 +08:00
|
|
|
|
{
|
2019-10-29 16:03:52 +08:00
|
|
|
|
// visual only, very impossible to test this using asserts.
|
2019-03-29 13:15:57 +08:00
|
|
|
|
|
2019-10-29 16:03:52 +08:00
|
|
|
|
AddStep("load immediately", () =>
|
2019-03-29 13:15:57 +08:00
|
|
|
|
{
|
|
|
|
|
loader = new TestLoader();
|
|
|
|
|
loader.AllowLoad.Set();
|
|
|
|
|
|
|
|
|
|
LoadScreen(loader);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2019-05-21 13:48:14 +08:00
|
|
|
|
public void TestDelayedLoad()
|
2019-03-29 13:15:57 +08:00
|
|
|
|
{
|
|
|
|
|
AddStep("begin loading", () => LoadScreen(loader = new TestLoader()));
|
2019-05-21 13:48:14 +08:00
|
|
|
|
AddUntilStep("wait for logo visible", () => loader.Logo?.Alpha > 0);
|
|
|
|
|
AddStep("finish loading", () => loader.AllowLoad.Set());
|
2019-10-29 16:03:52 +08:00
|
|
|
|
AddUntilStep("loaded", () => loader.Logo != null && loader.ScreenLoaded);
|
2019-03-19 16:24:26 +08:00
|
|
|
|
AddUntilStep("logo gone", () => loader.Logo?.Alpha == 0);
|
2018-05-31 16:29:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class TestLoader : Loader
|
|
|
|
|
{
|
2019-03-29 13:15:57 +08:00
|
|
|
|
public readonly ManualResetEventSlim AllowLoad = new ManualResetEventSlim();
|
2018-05-31 16:29:59 +08:00
|
|
|
|
|
|
|
|
|
public OsuLogo Logo;
|
2018-05-31 19:07:55 +08:00
|
|
|
|
private TestScreen screen;
|
2018-05-31 16:29:59 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
public bool ScreenLoaded => screen.IsCurrentScreen();
|
2018-05-31 19:07:55 +08:00
|
|
|
|
|
2018-05-31 16:29:59 +08:00
|
|
|
|
protected override void LogoArriving(OsuLogo logo, bool resuming)
|
|
|
|
|
{
|
|
|
|
|
Logo = logo;
|
|
|
|
|
base.LogoArriving(logo, resuming);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-31 19:07:55 +08:00
|
|
|
|
protected override OsuScreen CreateLoadableScreen() => screen = new TestScreen();
|
2019-03-29 13:15:57 +08:00
|
|
|
|
protected override ShaderPrecompiler CreateShaderPrecompiler() => new TestShaderPrecompiler(AllowLoad);
|
2018-05-31 16:29:59 +08:00
|
|
|
|
|
2018-05-31 19:07:55 +08:00
|
|
|
|
private class TestShaderPrecompiler : ShaderPrecompiler
|
2018-05-31 16:29:59 +08:00
|
|
|
|
{
|
2019-03-29 13:15:57 +08:00
|
|
|
|
private readonly ManualResetEventSlim allowLoad;
|
2018-05-31 19:07:55 +08:00
|
|
|
|
|
2019-03-29 13:15:57 +08:00
|
|
|
|
public TestShaderPrecompiler(ManualResetEventSlim allowLoad)
|
2018-05-31 19:07:55 +08:00
|
|
|
|
{
|
2019-03-29 13:15:57 +08:00
|
|
|
|
this.allowLoad = allowLoad;
|
2018-05-31 19:07:55 +08:00
|
|
|
|
}
|
2018-05-31 16:29:59 +08:00
|
|
|
|
|
2019-03-29 13:15:57 +08:00
|
|
|
|
protected override bool AllLoaded => allowLoad.IsSet;
|
2018-05-31 19:07:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class TestScreen : OsuScreen
|
|
|
|
|
{
|
|
|
|
|
public TestScreen()
|
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
|
InternalChild = new Box
|
2018-05-31 16:29:59 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.DarkSlateGray,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LogoArriving(OsuLogo logo, bool resuming)
|
|
|
|
|
{
|
|
|
|
|
base.LogoArriving(logo, resuming);
|
2019-01-23 19:52:00 +08:00
|
|
|
|
InternalChild.FadeInFromZero(200);
|
2018-05-31 16:29:59 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|