mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Screens.Testing;
|
|
using osu.Game;
|
|
|
|
namespace osu.Desktop.VisualTests
|
|
{
|
|
public class Benchmark : OsuGameBase
|
|
{
|
|
private double timePerTest = 200;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Host.MaximumDrawHz = int.MaxValue;
|
|
Host.MaximumUpdateHz = int.MaxValue;
|
|
Host.MaximumInactiveHz = int.MaxValue;
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
TestBrowser f = new TestBrowser();
|
|
Add(f);
|
|
|
|
Console.WriteLine($@"{Time}: Running {f.TestCount} tests for {timePerTest}ms each...");
|
|
|
|
for (int i = 1; i < f.TestCount; i++)
|
|
{
|
|
int loadableCase = i;
|
|
Scheduler.AddDelayed(delegate
|
|
{
|
|
f.LoadTest(loadableCase);
|
|
Console.WriteLine($@"{Time}: Switching to test #{loadableCase}");
|
|
}, loadableCase * timePerTest);
|
|
}
|
|
|
|
Scheduler.AddDelayed(Host.Exit, f.TestCount * timePerTest);
|
|
}
|
|
}
|
|
}
|