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.
|
2022-06-17 15:37:17 +08:00
|
|
|
|
|
|
|
#nullable disable
|
2018-10-09 10:49:24 +08:00
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps.Formats
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A <see cref="LegacyBeatmapDecoder"/> built for difficulty calculation of legacy <see cref="Beatmap"/>s
|
|
|
|
/// <remarks>
|
|
|
|
/// To use this, the decoder must be registered by the application through <see cref="LegacyDifficultyCalculatorBeatmapDecoder.Register"/>.
|
|
|
|
/// Doing so will override any existing <see cref="Beatmap"/> decoders.
|
|
|
|
/// </remarks>
|
|
|
|
/// </summary>
|
|
|
|
public class LegacyDifficultyCalculatorBeatmapDecoder : LegacyBeatmapDecoder
|
|
|
|
{
|
|
|
|
public LegacyDifficultyCalculatorBeatmapDecoder(int version = LATEST_VERSION)
|
|
|
|
: base(version)
|
|
|
|
{
|
2018-10-11 12:53:49 +08:00
|
|
|
ApplyOffsets = false;
|
2018-10-09 10:49:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public new static void Register()
|
|
|
|
{
|
|
|
|
AddDecoder<Beatmap>(@"osu file format v", m => new LegacyDifficultyCalculatorBeatmapDecoder(int.Parse(m.Split('v').Last())));
|
2019-10-04 12:28:32 +08:00
|
|
|
SetFallbackDecoder<Beatmap>(() => new LegacyDifficultyCalculatorBeatmapDecoder());
|
2018-10-09 10:49:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|