mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
177 lines
7.5 KiB
C#
177 lines
7.5 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.IO;
|
|
using System.Linq;
|
|
using DeepEqual.Syntax;
|
|
using NUnit.Framework;
|
|
using osu.Game.Audio;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.Formats;
|
|
using osu.Game.IO.Serialization;
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
using osu.Game.Tests.Resources;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace osu.Game.Tests.Beatmaps.Formats
|
|
{
|
|
[TestFixture]
|
|
public class OsuJsonDecoderTest
|
|
{
|
|
private const string normal = "Soleily - Renatus (Gamu) [Insane].osu";
|
|
private const string marathon = "Within Temptation - The Unforgiving (Armin) [Marathon].osu";
|
|
private const string with_sb = "Kozato snow - Rengetsu Ouka (_Kiva) [Yuki YukI].osu";
|
|
|
|
[Test]
|
|
public void TestDecodeMetadata()
|
|
{
|
|
var beatmap = decodeAsJson(normal);
|
|
var meta = beatmap.BeatmapInfo.Metadata;
|
|
Assert.AreEqual(241526, meta.OnlineBeatmapSetID);
|
|
Assert.AreEqual("Soleily", meta.Artist);
|
|
Assert.AreEqual("Soleily", meta.ArtistUnicode);
|
|
Assert.AreEqual("03. Renatus - Soleily 192kbps.mp3", meta.AudioFile);
|
|
Assert.AreEqual("Gamu", meta.AuthorString);
|
|
Assert.AreEqual("machinetop_background.jpg", meta.BackgroundFile);
|
|
Assert.AreEqual(164471, meta.PreviewTime);
|
|
Assert.AreEqual(string.Empty, meta.Source);
|
|
Assert.AreEqual("MBC7 Unisphere 地球ヤバイEP Chikyu Yabai", meta.Tags);
|
|
Assert.AreEqual("Renatus", meta.Title);
|
|
Assert.AreEqual("Renatus", meta.TitleUnicode);
|
|
}
|
|
|
|
[Test]
|
|
public void TestDecodeGeneral()
|
|
{
|
|
var beatmap = decodeAsJson(normal);
|
|
var beatmapInfo = beatmap.BeatmapInfo;
|
|
Assert.AreEqual(0, beatmapInfo.AudioLeadIn);
|
|
Assert.AreEqual(false, beatmapInfo.Countdown);
|
|
Assert.AreEqual(0.7f, beatmapInfo.StackLeniency);
|
|
Assert.AreEqual(false, beatmapInfo.SpecialStyle);
|
|
Assert.IsTrue(beatmapInfo.RulesetID == 0);
|
|
Assert.AreEqual(false, beatmapInfo.LetterboxInBreaks);
|
|
Assert.AreEqual(false, beatmapInfo.WidescreenStoryboard);
|
|
}
|
|
|
|
[Test]
|
|
public void TestDecodeEditor()
|
|
{
|
|
var beatmap = decodeAsJson(normal);
|
|
var beatmapInfo = beatmap.BeatmapInfo;
|
|
|
|
int[] expectedBookmarks =
|
|
{
|
|
11505, 22054, 32604, 43153, 53703, 64252, 74802, 85351,
|
|
95901, 106450, 116999, 119637, 130186, 140735, 151285,
|
|
161834, 164471, 175020, 185570, 196119, 206669, 209306
|
|
};
|
|
Assert.AreEqual(expectedBookmarks.Length, beatmapInfo.Bookmarks.Length);
|
|
for (int i = 0; i < expectedBookmarks.Length; i++)
|
|
Assert.AreEqual(expectedBookmarks[i], beatmapInfo.Bookmarks[i]);
|
|
Assert.AreEqual(1.8, beatmapInfo.DistanceSpacing);
|
|
Assert.AreEqual(4, beatmapInfo.BeatDivisor);
|
|
Assert.AreEqual(4, beatmapInfo.GridSize);
|
|
Assert.AreEqual(2, beatmapInfo.TimelineZoom);
|
|
}
|
|
|
|
[Test]
|
|
public void TestDecodeDifficulty()
|
|
{
|
|
var beatmap = decodeAsJson(normal);
|
|
var difficulty = beatmap.BeatmapInfo.BaseDifficulty;
|
|
Assert.AreEqual(6.5f, difficulty.DrainRate);
|
|
Assert.AreEqual(4, difficulty.CircleSize);
|
|
Assert.AreEqual(8, difficulty.OverallDifficulty);
|
|
Assert.AreEqual(9, difficulty.ApproachRate);
|
|
Assert.AreEqual(1.8f, difficulty.SliderMultiplier);
|
|
Assert.AreEqual(2, difficulty.SliderTickRate);
|
|
}
|
|
|
|
[Test]
|
|
public void TestDecodeColors()
|
|
{
|
|
var beatmap = decodeAsJson(normal);
|
|
Color4[] expected =
|
|
{
|
|
new Color4(142, 199, 255, 255),
|
|
new Color4(255, 128, 128, 255),
|
|
new Color4(128, 255, 255, 255),
|
|
new Color4(128, 255, 128, 255),
|
|
new Color4(255, 187, 255, 255),
|
|
new Color4(255, 177, 140, 255),
|
|
};
|
|
Assert.AreEqual(expected.Length, beatmap.ComboColors.Count);
|
|
for (int i = 0; i < expected.Length; i++)
|
|
Assert.AreEqual(expected[i], beatmap.ComboColors[i]);
|
|
}
|
|
|
|
[Test]
|
|
public void TestDecodeHitObjects()
|
|
{
|
|
var beatmap = decodeAsJson(normal);
|
|
|
|
var curveData = beatmap.HitObjects[0] as IHasCurve;
|
|
var positionData = beatmap.HitObjects[0] as IHasPosition;
|
|
|
|
Assert.IsNotNull(positionData);
|
|
Assert.IsNotNull(curveData);
|
|
Assert.AreEqual(new Vector2(192, 168), positionData.Position);
|
|
Assert.AreEqual(956, beatmap.HitObjects[0].StartTime);
|
|
Assert.IsTrue(beatmap.HitObjects[0].Samples.Any(s => s.Name == SampleInfo.HIT_NORMAL));
|
|
|
|
positionData = beatmap.HitObjects[1] as IHasPosition;
|
|
|
|
Assert.IsNotNull(positionData);
|
|
Assert.AreEqual(new Vector2(304, 56), positionData.Position);
|
|
Assert.AreEqual(1285, beatmap.HitObjects[1].StartTime);
|
|
Assert.IsTrue(beatmap.HitObjects[1].Samples.Any(s => s.Name == SampleInfo.HIT_CLAP));
|
|
}
|
|
|
|
[TestCase(normal)]
|
|
[TestCase(marathon)]
|
|
// Currently fails:
|
|
// [TestCase(with_sb)]
|
|
public void TestParity(string beatmap)
|
|
{
|
|
var beatmaps = decode(beatmap);
|
|
beatmaps.jsonDecoded.ShouldDeepEqual(beatmaps.legacyDecoded);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a .osu file first with a <see cref="LegacyBeatmapDecoder"/>, serializes the resulting <see cref="Beatmap"/> to JSON
|
|
/// and then deserializes the result back into a <see cref="Beatmap"/> through an <see cref="JsonBeatmapDecoder"/>.
|
|
/// </summary>
|
|
/// <param name="filename">The .osu file to decode.</param>
|
|
/// <returns>The <see cref="Beatmap"/> after being decoded by an <see cref="LegacyBeatmapDecoder"/>.</returns>
|
|
private Beatmap decodeAsJson(string filename) => decode(filename).jsonDecoded;
|
|
|
|
/// <summary>
|
|
/// Reads a .osu file first with a <see cref="LegacyBeatmapDecoder"/>, serializes the resulting <see cref="Beatmap"/> to JSON
|
|
/// and then deserializes the result back into a <see cref="Beatmap"/> through an <see cref="JsonBeatmapDecoder"/>.
|
|
/// </summary>
|
|
/// <param name="filename">The .osu file to decode.</param>
|
|
/// <returns>The <see cref="Beatmap"/> after being decoded by an <see cref="LegacyBeatmapDecoder"/>.</returns>
|
|
private (Beatmap legacyDecoded, Beatmap jsonDecoded) decode(string filename)
|
|
{
|
|
using (var stream = Resource.OpenResource(filename))
|
|
using (var sr = new StreamReader(stream))
|
|
{
|
|
|
|
var legacyDecoded = new LegacyBeatmapDecoder().DecodeBeatmap(sr);
|
|
using (var ms = new MemoryStream())
|
|
using (var sw = new StreamWriter(ms))
|
|
using (var sr2 = new StreamReader(ms))
|
|
{
|
|
sw.Write(legacyDecoded.Serialize());
|
|
sw.Flush();
|
|
|
|
ms.Position = 0;
|
|
return (legacyDecoded, new JsonBeatmapDecoder().DecodeBeatmap(sr2));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|