1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 12:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/OsuBeatmapConversionTest.cs

72 lines
2.4 KiB
C#
Raw Normal View History

2018-04-13 17:19:50 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.MathUtils;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Tests.Beatmaps;
namespace osu.Game.Rulesets.Osu.Tests
{
[TestFixture]
public class OsuBeatmapConversionTest : BeatmapConversionTest<ConvertValue>
2018-04-13 17:19:50 +08:00
{
protected override string ResourceAssembly => "osu.Game.Rulesets.Osu";
[TestCase("basic")]
[TestCase("colinear-perfect-curve")]
2018-06-14 00:28:28 +08:00
[TestCase("slider-ticks")]
2018-04-13 17:19:50 +08:00
public new 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(nested);
break;
default:
yield return createConvertValue(hitObject);
break;
}
2018-04-13 17:19:50 +08:00
ConvertValue createConvertValue(HitObject obj) => new ConvertValue
2018-04-13 17:19:50 +08:00
{
StartTime = obj.StartTime,
EndTime = (obj as IHasEndTime)?.EndTime ?? obj.StartTime,
X = (obj as IHasPosition)?.X ?? 256,
Y = (obj as IHasPosition)?.Y ?? 192,
2018-04-13 17:19:50 +08:00
};
}
protected override Ruleset CreateRuleset() => new OsuRuleset();
2018-04-13 17:19:50 +08:00
}
public struct ConvertValue : IEquatable<ConvertValue>
2018-04-13 17:19:50 +08:00
{
/// <summary>
/// A sane value to account for osu!stable using ints everwhere.
/// </summary>
private const double conversion_lenience = 2;
public double StartTime;
public double EndTime;
public float X;
public float Y;
2018-04-13 17:19:50 +08:00
public bool Equals(ConvertValue other)
=> Precision.AlmostEquals(StartTime, other.StartTime, conversion_lenience)
2018-04-13 17:19:50 +08:00
&& Precision.AlmostEquals(EndTime, other.EndTime, conversion_lenience)
&& Precision.AlmostEquals(X, other.X, conversion_lenience)
&& Precision.AlmostEquals(Y, other.Y, conversion_lenience);
2018-04-13 17:19:50 +08:00
}
}