2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
2017-03-19 01:32:21 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2017-03-28 20:03:34 +08:00
|
|
|
|
using osu.Framework.Testing;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
using osu.Game;
|
2017-02-14 12:34:57 +08:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
2016-10-26 16:26:26 +08:00
|
|
|
|
namespace osu.Desktop.VisualTests
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
internal class VisualTestGame : OsuGameBase
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2016-11-13 01:34:36 +08:00
|
|
|
|
protected override void LoadComplete()
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2016-11-13 01:34:36 +08:00
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2017-04-02 14:56:12 +08:00
|
|
|
|
LoadComponentAsync(new BackgroundScreenDefault { Depth = 10 }, AddInternal);
|
2017-02-14 12:34:57 +08:00
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
|
// Have to construct this here, rather than in the constructor, because
|
|
|
|
|
// we depend on some dependencies to be loaded within OsuGameBase.load().
|
2016-09-23 23:39:20 +08:00
|
|
|
|
Add(new TestBrowser());
|
|
|
|
|
}
|
2017-03-19 01:32:21 +08:00
|
|
|
|
|
|
|
|
|
public override void SetHost(GameHost host)
|
|
|
|
|
{
|
|
|
|
|
base.SetHost(host);
|
2017-03-29 11:20:55 +08:00
|
|
|
|
|
|
|
|
|
host.UpdateThread.InactiveHz = host.UpdateThread.ActiveHz;
|
|
|
|
|
host.DrawThread.InactiveHz = host.DrawThread.ActiveHz;
|
|
|
|
|
host.InputThread.InactiveHz = host.InputThread.ActiveHz;
|
|
|
|
|
|
2017-03-19 01:32:21 +08:00
|
|
|
|
host.Window.CursorState = CursorState.Hidden;
|
|
|
|
|
}
|
2016-09-23 23:39:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|