mirror of
https://github.com/ppy/osu.git
synced 2025-02-26 06:42:54 +08:00
Fix test + cleanup
This commit is contained in:
parent
e34a9a0001
commit
5678db4e70
@ -6,7 +6,6 @@ using NUnit.Framework;
|
|||||||
using osu.Game.Beatmaps;
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Rulesets.Mania.Mods;
|
using osu.Game.Rulesets.Mania.Mods;
|
||||||
using osu.Game.Tests.Visual;
|
using osu.Game.Tests.Visual;
|
||||||
using System.Collections.Generic;
|
|
||||||
using osu.Game.Rulesets.Mania.Objects;
|
using osu.Game.Rulesets.Mania.Objects;
|
||||||
using osu.Game.Beatmaps.ControlPoints;
|
using osu.Game.Beatmaps.ControlPoints;
|
||||||
using osu.Game.Rulesets.Mania.Beatmaps;
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
||||||
@ -24,21 +23,6 @@ namespace osu.Game.Rulesets.Mania.Tests.Mods
|
|||||||
Assert.False(testBeatmap.HitObjects.OfType<HoldNote>().Any());
|
Assert.False(testBeatmap.HitObjects.OfType<HoldNote>().Any());
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestCorrectNoteValues()
|
|
||||||
{
|
|
||||||
var testBeatmap = createRawBeatmap();
|
|
||||||
var noteValues = new List<double>(testBeatmap.HitObjects.OfType<HoldNote>().Count());
|
|
||||||
|
|
||||||
foreach (HoldNote h in testBeatmap.HitObjects.OfType<HoldNote>())
|
|
||||||
{
|
|
||||||
noteValues.Add(ManiaModHoldOff.GetNoteDurationInBeatLength(h, testBeatmap));
|
|
||||||
}
|
|
||||||
|
|
||||||
noteValues.Sort();
|
|
||||||
Assert.AreEqual(noteValues, new List<double> { 0.125, 0.250, 0.500, 1.000, 2.000 });
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestCorrectObjectCount()
|
public void TestCorrectObjectCount()
|
||||||
{
|
{
|
||||||
@ -47,25 +31,8 @@ namespace osu.Game.Rulesets.Mania.Tests.Mods
|
|||||||
var rawBeatmap = createRawBeatmap();
|
var rawBeatmap = createRawBeatmap();
|
||||||
var testBeatmap = createModdedBeatmap();
|
var testBeatmap = createModdedBeatmap();
|
||||||
|
|
||||||
// Calculate expected number of objects
|
// Both notes and hold notes account for at least one object
|
||||||
int expectedObjectCount = 0;
|
int expectedObjectCount = rawBeatmap.HitObjects.Count;
|
||||||
|
|
||||||
foreach (ManiaHitObject h in rawBeatmap.HitObjects)
|
|
||||||
{
|
|
||||||
// Both notes and hold notes account for at least one object
|
|
||||||
expectedObjectCount++;
|
|
||||||
|
|
||||||
if (h.GetType() == typeof(HoldNote))
|
|
||||||
{
|
|
||||||
double noteValue = ManiaModHoldOff.GetNoteDurationInBeatLength((HoldNote)h, rawBeatmap);
|
|
||||||
|
|
||||||
if (noteValue >= ManiaModHoldOff.END_NOTE_ALLOW_THRESHOLD)
|
|
||||||
{
|
|
||||||
// Should generate an end note if it's longer than the minimum note value
|
|
||||||
expectedObjectCount++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Assert.That(testBeatmap.HitObjects.Count == expectedObjectCount);
|
Assert.That(testBeatmap.HitObjects.Count == expectedObjectCount);
|
||||||
}
|
}
|
||||||
|
@ -29,8 +29,6 @@ namespace osu.Game.Rulesets.Mania.Mods
|
|||||||
|
|
||||||
public override Type[] IncompatibleMods => new[] { typeof(ManiaModInvert) };
|
public override Type[] IncompatibleMods => new[] { typeof(ManiaModInvert) };
|
||||||
|
|
||||||
public const double END_NOTE_ALLOW_THRESHOLD = 0.5;
|
|
||||||
|
|
||||||
public void ApplyToBeatmap(IBeatmap beatmap)
|
public void ApplyToBeatmap(IBeatmap beatmap)
|
||||||
{
|
{
|
||||||
var maniaBeatmap = (ManiaBeatmap)beatmap;
|
var maniaBeatmap = (ManiaBeatmap)beatmap;
|
||||||
@ -50,11 +48,5 @@ namespace osu.Game.Rulesets.Mania.Mods
|
|||||||
|
|
||||||
maniaBeatmap.HitObjects = maniaBeatmap.HitObjects.OfType<Note>().Concat(newObjects).OrderBy(h => h.StartTime).ToList();
|
maniaBeatmap.HitObjects = maniaBeatmap.HitObjects.OfType<Note>().Concat(newObjects).OrderBy(h => h.StartTime).ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static double GetNoteDurationInBeatLength(HoldNote holdNote, ManiaBeatmap beatmap)
|
|
||||||
{
|
|
||||||
double beatLength = beatmap.ControlPointInfo.TimingPointAt(holdNote.StartTime).BeatLength;
|
|
||||||
return holdNote.Duration / beatLength;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user