mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:09:34 +08:00
76 lines
2.5 KiB
C#
76 lines
2.5 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 System;
|
|
using System.Collections.Generic;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Utils;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Tests.Beatmaps;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
{
|
|
[TestFixture]
|
|
[Timeout(10000)]
|
|
public class OsuBeatmapConversionTest : BeatmapConversionTest<ConvertValue>
|
|
{
|
|
protected override string ResourceAssembly => "osu.Game.Rulesets.Osu";
|
|
|
|
[TestCase("basic")]
|
|
[TestCase("colinear-perfect-curve")]
|
|
[TestCase("slider-ticks")]
|
|
[TestCase("repeat-slider")]
|
|
[TestCase("uneven-repeat-slider")]
|
|
[TestCase("old-stacking")]
|
|
[TestCase("multi-segment-slider")]
|
|
public void Test(string name) => base.Test(name);
|
|
|
|
protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)
|
|
{
|
|
switch (hitObject)
|
|
{
|
|
case Slider slider:
|
|
foreach (var nested in slider.NestedHitObjects)
|
|
yield return createConvertValue((OsuHitObject)nested);
|
|
|
|
break;
|
|
|
|
default:
|
|
yield return createConvertValue((OsuHitObject)hitObject);
|
|
|
|
break;
|
|
}
|
|
|
|
static ConvertValue createConvertValue(OsuHitObject obj) => new ConvertValue
|
|
{
|
|
StartTime = obj.StartTime,
|
|
EndTime = obj.GetEndTime(),
|
|
X = obj.StackedPosition.X,
|
|
Y = obj.StackedPosition.Y
|
|
};
|
|
}
|
|
|
|
protected override Ruleset CreateRuleset() => new OsuRuleset();
|
|
}
|
|
|
|
public struct ConvertValue : IEquatable<ConvertValue>
|
|
{
|
|
/// <summary>
|
|
/// A sane value to account for osu!stable using <see cref="int"/>s everywhere.
|
|
/// </summary>
|
|
private const double conversion_lenience = 2;
|
|
|
|
public double StartTime;
|
|
public double EndTime;
|
|
public float X;
|
|
public float Y;
|
|
|
|
public bool Equals(ConvertValue other)
|
|
=> Precision.AlmostEquals(StartTime, other.StartTime, conversion_lenience)
|
|
&& Precision.AlmostEquals(EndTime, other.EndTime, conversion_lenience)
|
|
&& Precision.AlmostEquals(X, other.X, conversion_lenience)
|
|
&& Precision.AlmostEquals(Y, other.Y, conversion_lenience);
|
|
}
|
|
}
|