1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game.Tests/NonVisual/DifficultyAdjustmentModCombinationsTest.cs

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

244 lines
8.7 KiB
C#
Raw Normal View History

// 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-06-06 15:20:17 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2018-06-06 15:20:17 +08:00
using System;
2019-02-21 12:12:37 +08:00
using System.Collections.Generic;
using System.Linq;
2018-06-06 15:20:17 +08:00
using NUnit.Framework;
2022-08-11 04:09:11 +08:00
using osu.Framework.Localisation;
2018-06-14 15:04:48 +08:00
using osu.Game.Beatmaps;
2018-06-06 15:20:17 +08:00
using osu.Game.Rulesets.Difficulty;
2019-02-21 12:12:37 +08:00
using osu.Game.Rulesets.Difficulty.Preprocessing;
using osu.Game.Rulesets.Difficulty.Skills;
2018-06-06 15:20:17 +08:00
using osu.Game.Rulesets.Mods;
using osu.Game.Utils;
2018-06-06 15:20:17 +08:00
namespace osu.Game.Tests.NonVisual
{
[TestFixture]
public class DifficultyAdjustmentModCombinationsTest
{
[Test]
public void TestNoMods()
{
var combinations = new TestLegacyDifficultyCalculator().CreateDifficultyAdjustmentModCombinations();
2018-06-06 15:20:17 +08:00
assertCombinations(new[]
{
new[] { typeof(ModNoMod) }
}, combinations);
2018-06-06 15:20:17 +08:00
}
[Test]
public void TestSingleMod()
{
var combinations = new TestLegacyDifficultyCalculator(new ModA()).CreateDifficultyAdjustmentModCombinations();
2018-06-06 15:20:17 +08:00
assertCombinations(new[]
{
new[] { typeof(ModNoMod) },
new[] { typeof(ModA) }
}, combinations);
2018-06-06 15:20:17 +08:00
}
[Test]
public void TestDoubleMod()
{
var combinations = new TestLegacyDifficultyCalculator(new ModA(), new ModB()).CreateDifficultyAdjustmentModCombinations();
2018-06-06 15:20:17 +08:00
assertCombinations(new[]
{
new[] { typeof(ModNoMod) },
new[] { typeof(ModA) },
new[] { typeof(ModA), typeof(ModB) },
new[] { typeof(ModB) }
}, combinations);
2018-06-06 15:20:17 +08:00
}
[Test]
public void TestIncompatibleMods()
{
var combinations = new TestLegacyDifficultyCalculator(new ModA(), new ModIncompatibleWithA()).CreateDifficultyAdjustmentModCombinations();
2018-06-06 15:20:17 +08:00
assertCombinations(new[]
{
new[] { typeof(ModNoMod) },
new[] { typeof(ModA) },
new[] { typeof(ModIncompatibleWithA) }
}, combinations);
2018-06-06 15:20:17 +08:00
}
[Test]
public void TestDoubleIncompatibleMods()
{
var combinations = new TestLegacyDifficultyCalculator(new ModA(), new ModB(), new ModIncompatibleWithA(), new ModIncompatibleWithAAndB()).CreateDifficultyAdjustmentModCombinations();
2018-06-06 15:20:17 +08:00
assertCombinations(new[]
{
new[] { typeof(ModNoMod) },
new[] { typeof(ModA) },
new[] { typeof(ModA), typeof(ModB) },
new[] { typeof(ModB) },
new[] { typeof(ModB), typeof(ModIncompatibleWithA) },
new[] { typeof(ModIncompatibleWithA) },
new[] { typeof(ModIncompatibleWithA), typeof(ModIncompatibleWithAAndB) },
new[] { typeof(ModIncompatibleWithAAndB) },
}, combinations);
2018-06-06 15:20:17 +08:00
}
[Test]
public void TestIncompatibleThroughBaseType()
{
var combinations = new TestLegacyDifficultyCalculator(new ModAofA(), new ModIncompatibleWithAofA()).CreateDifficultyAdjustmentModCombinations();
2018-06-06 15:20:17 +08:00
assertCombinations(new[]
{
new[] { typeof(ModNoMod) },
new[] { typeof(ModAofA) },
new[] { typeof(ModIncompatibleWithAofA) }
}, combinations);
2018-06-06 15:20:17 +08:00
}
[Test]
2020-10-14 18:18:04 +08:00
public void TestMultiModFlattening()
{
var combinations = new TestLegacyDifficultyCalculator(new ModA(), new MultiMod(new ModB(), new ModC())).CreateDifficultyAdjustmentModCombinations();
assertCombinations(new[]
{
new[] { typeof(ModNoMod) },
new[] { typeof(ModA) },
new[] { typeof(ModA), typeof(ModB), typeof(ModC) },
new[] { typeof(ModB), typeof(ModC) }
}, combinations);
}
[Test]
2020-10-14 18:18:04 +08:00
public void TestIncompatibleThroughMultiMod()
{
var combinations = new TestLegacyDifficultyCalculator(new ModA(), new MultiMod(new ModB(), new ModIncompatibleWithA())).CreateDifficultyAdjustmentModCombinations();
assertCombinations(new[]
{
new[] { typeof(ModNoMod) },
new[] { typeof(ModA) },
new[] { typeof(ModB), typeof(ModIncompatibleWithA) }
}, combinations);
}
[Test]
public void TestIncompatibleWithSameInstanceViaMultiMod()
{
var combinations = new TestLegacyDifficultyCalculator(new ModA(), new MultiMod(new ModA(), new ModB())).CreateDifficultyAdjustmentModCombinations();
assertCombinations(new[]
{
new[] { typeof(ModNoMod) },
new[] { typeof(ModA) },
new[] { typeof(ModA), typeof(ModB) }
}, combinations);
}
private void assertCombinations(Type[][] expectedCombinations, Mod[] actualCombinations)
{
Assert.AreEqual(expectedCombinations.Length, actualCombinations.Length);
2021-12-01 10:29:02 +08:00
Assert.Multiple(() =>
{
2021-12-01 10:29:02 +08:00
for (int i = 0; i < expectedCombinations.Length; ++i)
{
2021-12-01 10:29:02 +08:00
Type[] expectedTypes = expectedCombinations[i];
Type[] actualTypes = ModUtils.FlattenMod(actualCombinations[i]).Select(m => m.GetType()).ToArray();
Assert.That(expectedTypes, Is.EquivalentTo(actualTypes));
}
});
}
2018-06-06 15:20:17 +08:00
private class ModA : Mod
{
public override string Name => nameof(ModA);
public override string Acronym => nameof(ModA);
2022-08-11 04:09:11 +08:00
public override LocalisableString Description => string.Empty;
2018-06-06 15:20:17 +08:00
public override double ScoreMultiplier => 1;
public override Type[] IncompatibleMods => new[] { typeof(ModIncompatibleWithA), typeof(ModIncompatibleWithAAndB) };
}
private class ModB : Mod
{
public override string Name => nameof(ModB);
2022-08-11 04:09:11 +08:00
public override LocalisableString Description => string.Empty;
public override string Acronym => nameof(ModB);
2018-06-06 15:20:17 +08:00
public override double ScoreMultiplier => 1;
public override Type[] IncompatibleMods => new[] { typeof(ModIncompatibleWithAAndB) };
}
private class ModC : Mod
{
public override string Name => nameof(ModC);
public override string Acronym => nameof(ModC);
2022-08-11 04:09:11 +08:00
public override LocalisableString Description => string.Empty;
public override double ScoreMultiplier => 1;
}
2018-06-06 15:20:17 +08:00
private class ModIncompatibleWithA : Mod
{
public override string Name => $"Incompatible With {nameof(ModA)}";
public override string Acronym => $"Incompatible With {nameof(ModA)}";
2022-08-11 04:09:11 +08:00
public override LocalisableString Description => string.Empty;
2018-06-06 15:20:17 +08:00
public override double ScoreMultiplier => 1;
public override Type[] IncompatibleMods => new[] { typeof(ModA) };
}
private class ModAofA : ModA
{
}
private class ModIncompatibleWithAofA : ModIncompatibleWithA
{
// Incompatible through base type
}
private class ModIncompatibleWithAAndB : Mod
{
public override string Name => $"Incompatible With {nameof(ModA)} and {nameof(ModB)}";
public override string Acronym => $"Incompatible With {nameof(ModA)} and {nameof(ModB)}";
2022-08-11 04:09:11 +08:00
public override LocalisableString Description => string.Empty;
2018-06-06 15:20:17 +08:00
public override double ScoreMultiplier => 1;
public override Type[] IncompatibleMods => new[] { typeof(ModA), typeof(ModB) };
}
2019-02-21 12:12:37 +08:00
private class TestLegacyDifficultyCalculator : DifficultyCalculator
2018-06-06 15:20:17 +08:00
{
public TestLegacyDifficultyCalculator(params Mod[] mods)
2018-06-14 15:04:48 +08:00
: base(null, null)
2018-06-06 15:20:17 +08:00
{
DifficultyAdjustmentMods = mods;
}
protected override Mod[] DifficultyAdjustmentMods { get; }
2018-06-14 15:04:48 +08:00
2019-02-21 12:12:37 +08:00
protected override DifficultyAttributes CreateDifficultyAttributes(IBeatmap beatmap, Mod[] mods, Skill[] skills, double clockRate)
{
throw new NotImplementedException();
}
protected override IEnumerable<DifficultyHitObject> CreateDifficultyHitObjects(IBeatmap beatmap, double clockRate)
{
throw new NotImplementedException();
}
protected override Skill[] CreateSkills(IBeatmap beatmap, Mod[] mods, double clockRate)
2019-02-21 12:12:37 +08:00
{
throw new NotImplementedException();
}
2018-06-06 15:20:17 +08:00
}
}
}