mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:47:29 +08:00
71 lines
2.5 KiB
C#
71 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.Taiko.Objects;
|
|
using osu.Game.Tests.Beatmaps;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests
|
|
{
|
|
[TestFixture]
|
|
[Timeout(10000)]
|
|
public class TaikoBeatmapConversionTest : BeatmapConversionTest<ConvertValue>
|
|
{
|
|
protected override string ResourceAssembly => "osu.Game.Rulesets.Taiko";
|
|
|
|
[NonParallelizable]
|
|
[TestCase("basic")]
|
|
[TestCase("slider-generating-drumroll")]
|
|
[TestCase("sample-to-type-conversions")]
|
|
[TestCase("slider-conversion-v6")]
|
|
[TestCase("slider-conversion-v14")]
|
|
[TestCase("slider-generating-drumroll-2")]
|
|
public void Test(string name) => base.Test(name);
|
|
|
|
protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)
|
|
{
|
|
yield return new ConvertValue
|
|
{
|
|
StartTime = hitObject.StartTime,
|
|
EndTime = hitObject.GetEndTime(),
|
|
IsRim = (hitObject as Hit)?.Type == HitType.Rim,
|
|
IsCentre = (hitObject as Hit)?.Type == HitType.Centre,
|
|
IsDrumRoll = hitObject is DrumRoll,
|
|
IsSwell = hitObject is Swell,
|
|
IsStrong = (hitObject as TaikoStrongableHitObject)?.IsStrong == true
|
|
};
|
|
}
|
|
|
|
protected override Ruleset CreateRuleset() => new TaikoRuleset();
|
|
}
|
|
|
|
public struct ConvertValue : IEquatable<ConvertValue>
|
|
{
|
|
/// <summary>
|
|
/// A sane value to account for osu!stable using ints everywhere.
|
|
/// </summary>
|
|
private const float conversion_lenience = 2;
|
|
|
|
public double StartTime;
|
|
public double EndTime;
|
|
public bool IsRim;
|
|
public bool IsCentre;
|
|
public bool IsDrumRoll;
|
|
public bool IsSwell;
|
|
public bool IsStrong;
|
|
|
|
public bool Equals(ConvertValue other)
|
|
=> Precision.AlmostEquals(StartTime, other.StartTime, conversion_lenience)
|
|
&& Precision.AlmostEquals(EndTime, other.EndTime, conversion_lenience)
|
|
&& IsRim == other.IsRim
|
|
&& IsCentre == other.IsCentre
|
|
&& IsDrumRoll == other.IsDrumRoll
|
|
&& IsSwell == other.IsSwell
|
|
&& IsStrong == other.IsStrong;
|
|
}
|
|
}
|