mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
113 lines
2.9 KiB
C#
113 lines
2.9 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace osu.Game.Beatmaps.Formats
|
|
{
|
|
public abstract class LegacyDecoder<T> : Decoder<T>
|
|
where T : new()
|
|
{
|
|
protected readonly int FormatVersion;
|
|
|
|
protected LegacyDecoder(int version)
|
|
{
|
|
FormatVersion = version;
|
|
}
|
|
|
|
protected override void ParseStreamInto(StreamReader stream, T beatmap)
|
|
{
|
|
Section section = Section.None;
|
|
|
|
string line;
|
|
while ((line = stream.ReadLine()) != null)
|
|
{
|
|
if (ShouldSkipLine(line))
|
|
continue;
|
|
|
|
if (line.StartsWith(@"[") && line.EndsWith(@"]"))
|
|
{
|
|
if (!Enum.TryParse(line.Substring(1, line.Length - 2), out section))
|
|
throw new InvalidDataException($@"Unknown osu section {line}");
|
|
continue;
|
|
}
|
|
|
|
ParseLine(beatmap, section, line);
|
|
}
|
|
}
|
|
|
|
protected virtual bool ShouldSkipLine(string line) => string.IsNullOrWhiteSpace(line) || line.StartsWith("//");
|
|
|
|
protected abstract void ParseLine(T output, Section section, string line);
|
|
|
|
protected KeyValuePair<string, string> SplitKeyVal(string line, char separator)
|
|
{
|
|
var split = line.Trim().Split(new[] { separator }, 2);
|
|
|
|
return new KeyValuePair<string, string>
|
|
(
|
|
split[0].Trim(),
|
|
split.Length > 1 ? split[1].Trim() : string.Empty
|
|
);
|
|
}
|
|
|
|
protected enum Section
|
|
{
|
|
None,
|
|
General,
|
|
Editor,
|
|
Metadata,
|
|
Difficulty,
|
|
Events,
|
|
TimingPoints,
|
|
Colours,
|
|
HitObjects,
|
|
Variables,
|
|
Fonts
|
|
}
|
|
|
|
internal enum LegacySampleBank
|
|
{
|
|
None = 0,
|
|
Normal = 1,
|
|
Soft = 2,
|
|
Drum = 3
|
|
}
|
|
|
|
internal enum EventType
|
|
{
|
|
Background = 0,
|
|
Video = 1,
|
|
Break = 2,
|
|
Colour = 3,
|
|
Sprite = 4,
|
|
Sample = 5,
|
|
Animation = 6
|
|
}
|
|
|
|
internal enum LegacyOrigins
|
|
{
|
|
TopLeft,
|
|
Centre,
|
|
CentreLeft,
|
|
TopRight,
|
|
BottomCentre,
|
|
TopCentre,
|
|
Custom,
|
|
CentreRight,
|
|
BottomLeft,
|
|
BottomRight
|
|
}
|
|
|
|
internal enum StoryLayer
|
|
{
|
|
Background = 0,
|
|
Fail = 1,
|
|
Pass = 2,
|
|
Foreground = 3
|
|
}
|
|
}
|
|
}
|