1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 12:07:23 +08:00
osu-lazer/osu.Game/Tests/Beatmaps/DifficultyCalculatorTest.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
2.3 KiB
C#
Raw Normal View History

2019-02-14 15:22:14 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
2019-02-14 15:22:14 +08:00
using System;
using System.IO;
using System.Reflection;
using NUnit.Framework;
using osu.Framework.Extensions.ObjectExtensions;
2019-02-14 15:22:14 +08:00
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.Formats;
using osu.Game.IO;
2019-02-15 13:42:42 +08:00
using osu.Game.Rulesets;
2019-02-14 15:22:14 +08:00
using osu.Game.Rulesets.Difficulty;
using osu.Game.Rulesets.Mods;
namespace osu.Game.Tests.Beatmaps
{
[TestFixture]
public abstract class DifficultyCalculatorTest
{
private const string resource_namespace = "Testing.Beatmaps";
protected abstract string ResourceAssembly { get; }
2022-01-23 11:25:22 +08:00
protected void Test(double expectedStarRating, int expectedMaxCombo, string name, params Mod[] mods)
{
2022-01-23 11:25:22 +08:00
var attributes = CreateDifficultyCalculator(getBeatmap(name)).Calculate(mods);
// Platform-dependent math functions (Pow, Cbrt, Exp, etc) may result in minute differences.
2022-01-23 11:25:22 +08:00
Assert.That(attributes.StarRating, Is.EqualTo(expectedStarRating).Within(0.00001));
Assert.That(attributes.MaxCombo, Is.EqualTo(expectedMaxCombo));
}
2019-02-14 15:22:14 +08:00
private IWorkingBeatmap getBeatmap(string name)
2019-02-14 15:22:14 +08:00
{
using (var resStream = openResource($"{resource_namespace}.{name}.osu"))
using (var stream = new LineBufferedReader(resStream))
2019-02-14 15:22:14 +08:00
{
var decoder = Decoder.GetDecoder<Beatmap>(stream);
2019-02-15 13:42:42 +08:00
((LegacyBeatmapDecoder)decoder).ApplyOffsets = false;
2019-02-15 13:42:42 +08:00
return new TestWorkingBeatmap(decoder.Decode(stream))
{
BeatmapInfo =
{
Ruleset = CreateRuleset().RulesetInfo
}
};
2019-02-14 15:22:14 +08:00
}
}
private Stream openResource(string name)
{
string localPath = Path.GetDirectoryName(Uri.UnescapeDataString(new UriBuilder(Assembly.GetExecutingAssembly().CodeBase).Path)).AsNonNull();
2019-02-14 15:22:14 +08:00
return Assembly.LoadFrom(Path.Combine(localPath, $"{ResourceAssembly}.dll")).GetManifestResourceStream($@"{ResourceAssembly}.Resources.{name}");
}
protected abstract DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap);
2019-02-15 13:42:42 +08:00
protected abstract Ruleset CreateRuleset();
2019-02-14 15:22:14 +08:00
}
}