mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
63 lines
1.6 KiB
C#
63 lines
1.6 KiB
C#
// 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.
|
|
|
|
using BenchmarkDotNet.Attributes;
|
|
using BenchmarkDotNet.Engines;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
namespace osu.Game.Benchmarks
|
|
{
|
|
public class BenchmarkRuleset : BenchmarkTest
|
|
{
|
|
private OsuRuleset ruleset = null!;
|
|
private APIMod apiModDoubleTime = null!;
|
|
private APIMod apiModDifficultyAdjust = null!;
|
|
|
|
public override void SetUp()
|
|
{
|
|
base.SetUp();
|
|
ruleset = new OsuRuleset();
|
|
apiModDoubleTime = new APIMod { Acronym = "DT" };
|
|
apiModDifficultyAdjust = new APIMod { Acronym = "DA" };
|
|
}
|
|
|
|
[Benchmark]
|
|
public void BenchmarkToModDoubleTime()
|
|
{
|
|
apiModDoubleTime.ToMod(ruleset);
|
|
}
|
|
|
|
[Benchmark]
|
|
public void BenchmarkToModDifficultyAdjust()
|
|
{
|
|
apiModDifficultyAdjust.ToMod(ruleset);
|
|
}
|
|
|
|
[Benchmark]
|
|
public void BenchmarkGetAllMods()
|
|
{
|
|
ruleset.CreateAllMods().Consume(new Consumer());
|
|
}
|
|
|
|
[Benchmark]
|
|
public void BenchmarkGetAllModsForReference()
|
|
{
|
|
ruleset.AllMods.Consume(new Consumer());
|
|
}
|
|
|
|
[Benchmark]
|
|
public void BenchmarkGetForAcronym()
|
|
{
|
|
ruleset.CreateModFromAcronym("DT");
|
|
}
|
|
|
|
[Benchmark]
|
|
public void BenchmarkGetForType()
|
|
{
|
|
ruleset.CreateMod<ModDoubleTime>();
|
|
}
|
|
}
|
|
}
|