mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:47:29 +08:00
38 lines
1.4 KiB
C#
38 lines
1.4 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.Linq;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
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)
|
|
{
|
|
ApplyOffsets = false;
|
|
}
|
|
|
|
public new static void Register()
|
|
{
|
|
AddDecoder<Beatmap>(@"osu file format v", m => new LegacyDifficultyCalculatorBeatmapDecoder(int.Parse(m.Split('v').Last())));
|
|
}
|
|
|
|
protected override TimingControlPoint CreateTimingControlPoint()
|
|
=> new LegacyDifficultyCalculatorControlPoint();
|
|
|
|
private class LegacyDifficultyCalculatorControlPoint : TimingControlPoint
|
|
{
|
|
public override double BeatLength { get; set; } = DEFAULT_BEAT_LENGTH;
|
|
}
|
|
}
|
|
}
|