2019-01-24 16:43:03 +08:00
|
|
|
|
// 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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-09-10 06:43:30 +08:00
|
|
|
|
using osu.Game.IO;
|
2017-12-05 23:38:12 +08:00
|
|
|
|
using osu.Game.IO.Serialization;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-12-05 23:38:12 +08:00
|
|
|
|
namespace osu.Game.Beatmaps.Formats
|
|
|
|
|
{
|
2018-03-09 20:23:03 +08:00
|
|
|
|
public class JsonBeatmapDecoder : Decoder<Beatmap>
|
2017-12-05 23:38:12 +08:00
|
|
|
|
{
|
|
|
|
|
public static void Register()
|
|
|
|
|
{
|
2022-06-24 20:25:23 +08:00
|
|
|
|
AddDecoder<Beatmap>("{", _ => new JsonBeatmapDecoder());
|
2017-12-05 23:38:12 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-09-10 06:43:30 +08:00
|
|
|
|
protected override void ParseStreamInto(LineBufferedReader stream, Beatmap output)
|
2017-12-05 23:38:12 +08:00
|
|
|
|
{
|
2018-04-20 17:32:24 +08:00
|
|
|
|
stream.ReadToEnd().DeserializeInto(output);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-04-20 17:32:24 +08:00
|
|
|
|
foreach (var hitObject in output.HitObjects)
|
2021-10-02 11:34:29 +08:00
|
|
|
|
hitObject.ApplyDefaults(output.ControlPointInfo, output.Difficulty);
|
2017-12-05 23:38:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|