1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 22:07:27 +08:00
osu-lazer/osu.Game/Beatmaps/Formats/OsuLegacyDecoder.cs

688 lines
31 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 17:56:20 +08:00
using System;
2017-05-27 12:55:34 +08:00
using System.Collections.Generic;
2016-10-13 01:26:09 +08:00
using System.Globalization;
using System.IO;
2016-10-11 01:00:16 +08:00
using OpenTK.Graphics;
2016-10-08 03:09:52 +08:00
using osu.Game.Beatmaps.Timing;
2017-03-17 13:24:46 +08:00
using osu.Game.Beatmaps.Legacy;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Legacy;
using osu.Game.Beatmaps.ControlPoints;
2017-09-08 05:55:05 +08:00
using osu.Game.Storyboards;
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.IO.File;
namespace osu.Game.Beatmaps.Formats
{
public class OsuLegacyDecoder : BeatmapDecoder
{
public static void Register()
{
2016-10-13 01:36:10 +08:00
AddDecoder<OsuLegacyDecoder>(@"osu file format v14");
AddDecoder<OsuLegacyDecoder>(@"osu file format v13");
AddDecoder<OsuLegacyDecoder>(@"osu file format v12");
AddDecoder<OsuLegacyDecoder>(@"osu file format v11");
AddDecoder<OsuLegacyDecoder>(@"osu file format v10");
AddDecoder<OsuLegacyDecoder>(@"osu file format v9");
2016-12-21 16:29:57 +08:00
AddDecoder<OsuLegacyDecoder>(@"osu file format v8");
AddDecoder<OsuLegacyDecoder>(@"osu file format v7");
AddDecoder<OsuLegacyDecoder>(@"osu file format v6");
AddDecoder<OsuLegacyDecoder>(@"osu file format v5");
2017-08-10 10:21:43 +08:00
AddDecoder<OsuLegacyDecoder>(@"osu file format v4");
AddDecoder<OsuLegacyDecoder>(@"osu file format v3");
// TODO: differences between versions
}
private ConvertHitObjectParser parser;
private readonly Dictionary<string, string> variables = new Dictionary<string, string>();
2017-05-27 12:55:34 +08:00
2017-04-05 20:59:40 +08:00
private LegacySampleBank defaultSampleBank;
2017-04-04 13:31:50 +08:00
private int defaultSampleVolume = 100;
2017-04-04 12:11:04 +08:00
private readonly int beatmapVersion;
public OsuLegacyDecoder()
{
}
public OsuLegacyDecoder(string header)
{
beatmapVersion = int.Parse(header.Substring(17));
}
private enum Section
{
None,
General,
Editor,
Metadata,
Difficulty,
Events,
TimingPoints,
Colours,
HitObjects,
2017-05-27 12:55:34 +08:00
Variables,
}
private void handleGeneral(Beatmap beatmap, string line)
{
var pair = splitKeyVal(line, ':');
2016-10-19 01:35:01 +08:00
var metadata = beatmap.BeatmapInfo.Metadata;
switch (pair.Key)
{
2016-10-13 01:36:10 +08:00
case @"AudioFilename":
metadata.AudioFile = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"AudioLeadIn":
beatmap.BeatmapInfo.AudioLeadIn = int.Parse(pair.Value);
break;
2016-10-13 01:36:10 +08:00
case @"PreviewTime":
metadata.PreviewTime = int.Parse(pair.Value);
break;
2016-10-13 01:36:10 +08:00
case @"Countdown":
beatmap.BeatmapInfo.Countdown = int.Parse(pair.Value) == 1;
break;
2016-10-13 01:36:10 +08:00
case @"SampleSet":
defaultSampleBank = (LegacySampleBank)Enum.Parse(typeof(LegacySampleBank), pair.Value);
2017-04-04 12:11:04 +08:00
break;
case @"SampleVolume":
defaultSampleVolume = int.Parse(pair.Value);
2017-04-04 12:11:04 +08:00
break;
2016-10-13 01:36:10 +08:00
case @"StackLeniency":
beatmap.BeatmapInfo.StackLeniency = float.Parse(pair.Value, NumberFormatInfo.InvariantInfo);
break;
2016-10-13 01:36:10 +08:00
case @"Mode":
beatmap.BeatmapInfo.RulesetID = int.Parse(pair.Value);
2017-04-18 08:00:53 +08:00
switch (beatmap.BeatmapInfo.RulesetID)
{
case 0:
parser = new Rulesets.Objects.Legacy.Osu.ConvertHitObjectParser();
break;
case 1:
parser = new Rulesets.Objects.Legacy.Taiko.ConvertHitObjectParser();
break;
case 2:
parser = new Rulesets.Objects.Legacy.Catch.ConvertHitObjectParser();
break;
case 3:
parser = new Rulesets.Objects.Legacy.Mania.ConvertHitObjectParser();
break;
}
break;
2016-10-13 01:36:10 +08:00
case @"LetterboxInBreaks":
beatmap.BeatmapInfo.LetterboxInBreaks = int.Parse(pair.Value) == 1;
break;
2016-10-13 01:36:10 +08:00
case @"SpecialStyle":
beatmap.BeatmapInfo.SpecialStyle = int.Parse(pair.Value) == 1;
break;
2016-10-13 01:36:10 +08:00
case @"WidescreenStoryboard":
beatmap.BeatmapInfo.WidescreenStoryboard = int.Parse(pair.Value) == 1;
break;
}
}
private void handleEditor(Beatmap beatmap, string line)
{
var pair = splitKeyVal(line, ':');
switch (pair.Key)
{
2016-10-13 01:36:10 +08:00
case @"Bookmarks":
beatmap.BeatmapInfo.StoredBookmarks = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"DistanceSpacing":
beatmap.BeatmapInfo.DistanceSpacing = double.Parse(pair.Value, NumberFormatInfo.InvariantInfo);
break;
2016-10-13 01:36:10 +08:00
case @"BeatDivisor":
beatmap.BeatmapInfo.BeatDivisor = int.Parse(pair.Value);
break;
2016-10-13 01:36:10 +08:00
case @"GridSize":
beatmap.BeatmapInfo.GridSize = int.Parse(pair.Value);
break;
2016-10-13 01:36:10 +08:00
case @"TimelineZoom":
beatmap.BeatmapInfo.TimelineZoom = double.Parse(pair.Value, NumberFormatInfo.InvariantInfo);
break;
}
}
private void handleMetadata(Beatmap beatmap, string line)
{
var pair = splitKeyVal(line, ':');
2016-10-19 01:35:01 +08:00
var metadata = beatmap.BeatmapInfo.Metadata;
switch (pair.Key)
{
2016-10-13 01:36:10 +08:00
case @"Title":
metadata.Title = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"TitleUnicode":
metadata.TitleUnicode = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"Artist":
metadata.Artist = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"ArtistUnicode":
metadata.ArtistUnicode = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"Creator":
metadata.Author = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"Version":
beatmap.BeatmapInfo.Version = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"Source":
beatmap.BeatmapInfo.Metadata.Source = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"Tags":
beatmap.BeatmapInfo.Metadata.Tags = pair.Value;
break;
2016-10-13 01:36:10 +08:00
case @"BeatmapID":
beatmap.BeatmapInfo.OnlineBeatmapID = int.Parse(pair.Value);
break;
2016-10-13 01:36:10 +08:00
case @"BeatmapSetID":
beatmap.BeatmapInfo.OnlineBeatmapSetID = int.Parse(pair.Value);
metadata.OnlineBeatmapSetID = int.Parse(pair.Value);
break;
}
}
private void handleDifficulty(Beatmap beatmap, string line)
{
var pair = splitKeyVal(line, ':');
var difficulty = beatmap.BeatmapInfo.Difficulty;
switch (pair.Key)
{
2016-10-13 01:36:10 +08:00
case @"HPDrainRate":
difficulty.DrainRate = float.Parse(pair.Value, NumberFormatInfo.InvariantInfo);
break;
2016-10-13 01:36:10 +08:00
case @"CircleSize":
difficulty.CircleSize = float.Parse(pair.Value, NumberFormatInfo.InvariantInfo);
break;
2016-10-13 01:36:10 +08:00
case @"OverallDifficulty":
difficulty.OverallDifficulty = float.Parse(pair.Value, NumberFormatInfo.InvariantInfo);
break;
2016-10-13 01:36:10 +08:00
case @"ApproachRate":
difficulty.ApproachRate = float.Parse(pair.Value, NumberFormatInfo.InvariantInfo);
break;
2016-10-13 01:36:10 +08:00
case @"SliderMultiplier":
difficulty.SliderMultiplier = float.Parse(pair.Value, NumberFormatInfo.InvariantInfo);
break;
2016-10-13 01:36:10 +08:00
case @"SliderTickRate":
difficulty.SliderTickRate = float.Parse(pair.Value, NumberFormatInfo.InvariantInfo);
break;
}
}
2017-05-30 18:52:21 +08:00
/// <summary>
/// Decodes any beatmap variables present in a line into their real values.
2017-05-30 18:52:21 +08:00
/// </summary>
/// <param name="line">The line which may contains variables.</param>
private void decodeVariables(ref string line)
{
while (line.IndexOf('$') >= 0)
2017-05-27 13:20:19 +08:00
{
string origLine = line;
string[] split = line.Split(',');
2017-05-30 18:52:21 +08:00
for (int i = 0; i < split.Length; i++)
2017-05-27 13:20:19 +08:00
{
2017-05-30 18:52:21 +08:00
var item = split[i];
if (item.StartsWith("$") && variables.ContainsKey(item))
2017-05-30 19:26:39 +08:00
split[i] = variables[item];
2017-05-27 13:20:19 +08:00
}
2017-05-30 18:52:21 +08:00
line = string.Join(",", split);
if (line == origLine) break;
2017-05-30 18:52:21 +08:00
}
}
2017-09-08 05:55:05 +08:00
private void handleEvents(Beatmap beatmap, string line, ref SpriteDefinition spriteDefinition, ref CommandTimelineGroup timelineGroup)
2017-05-30 18:52:21 +08:00
{
2017-09-08 05:55:05 +08:00
var depth = 0;
while (line.StartsWith(" ") || line.StartsWith("_"))
{
++depth;
line = line.Substring(1);
2017-09-08 05:55:05 +08:00
}
decodeVariables(ref line);
2017-05-27 13:20:19 +08:00
string[] split = line.Split(',');
2017-05-17 17:42:48 +08:00
2017-09-08 05:55:05 +08:00
if (depth == 0)
{
2017-09-08 05:55:05 +08:00
spriteDefinition = null;
2017-05-17 17:42:48 +08:00
2017-09-08 05:55:05 +08:00
EventType type;
if (!Enum.TryParse(split[0], out type))
throw new InvalidDataException($@"Unknown event type {split[0]}");
2017-05-17 17:42:48 +08:00
2017-09-08 05:55:05 +08:00
switch (type)
{
case EventType.Video:
case EventType.Background:
string filename = split[2].Trim('"');
2017-05-17 17:42:48 +08:00
2017-09-08 05:55:05 +08:00
if (type == EventType.Background)
beatmap.BeatmapInfo.Metadata.BackgroundFile = filename;
2017-05-17 17:42:48 +08:00
2017-09-08 05:55:05 +08:00
break;
case EventType.Break:
var breakEvent = new BreakPeriod
{
StartTime = double.Parse(split[1], NumberFormatInfo.InvariantInfo),
EndTime = double.Parse(split[2], NumberFormatInfo.InvariantInfo)
};
if (!breakEvent.HasEffect)
return;
beatmap.Breaks.Add(breakEvent);
break;
case EventType.Sprite:
{
var layer = split[1];
var origin = (Anchor)Enum.Parse(typeof(Anchor), split[2]);
var path = cleanFilename(split[3]);
var x = float.Parse(split[4], NumberFormatInfo.InvariantInfo);
var y = float.Parse(split[5], NumberFormatInfo.InvariantInfo);
spriteDefinition = new SpriteDefinition(path, origin, new Vector2(x, y));
beatmap.Storyboard.GetLayer(layer).Add(spriteDefinition);
}
break;
case EventType.Animation:
{
var layer = split[1];
var origin = (Anchor)Enum.Parse(typeof(Anchor), split[2]);
var path = cleanFilename(split[3]);
var x = float.Parse(split[4], NumberFormatInfo.InvariantInfo);
var y = float.Parse(split[5], NumberFormatInfo.InvariantInfo);
var frameCount = int.Parse(split[6]);
var frameDelay = double.Parse(split[7], NumberFormatInfo.InvariantInfo);
var loopType = split.Length > 8 ? (AnimationLoopType)Enum.Parse(typeof(AnimationLoopType), split[8]) : AnimationLoopType.LoopForever;
2017-09-08 05:55:05 +08:00
spriteDefinition = new AnimationDefinition(path, origin, new Vector2(x, y), frameCount, frameDelay, loopType);
beatmap.Storyboard.GetLayer(layer).Add(spriteDefinition);
}
break;
case EventType.Sample:
{
var time = double.Parse(split[1], CultureInfo.InvariantCulture);
var layer = split[2];
var path = cleanFilename(split[3]);
var volume = split.Length > 4 ? float.Parse(split[4], CultureInfo.InvariantCulture) : 100;
2017-09-08 05:55:05 +08:00
beatmap.Storyboard.GetLayer(layer).Add(new SampleDefinition(path, time, volume));
}
break;
}
}
else
{
if (depth < 2)
timelineGroup = spriteDefinition?.TimelineGroup;
2017-09-08 05:55:05 +08:00
var commandType = split[0];
switch (commandType)
2017-09-08 05:55:05 +08:00
{
case "T":
{
var triggerName = split[1];
var startTime = split.Length > 2 ? double.Parse(split[2], CultureInfo.InvariantCulture) : double.MinValue;
var endTime = split.Length > 3 ? double.Parse(split[3], CultureInfo.InvariantCulture) : double.MaxValue;
2017-09-08 05:55:05 +08:00
var groupNumber = split.Length > 4 ? int.Parse(split[4]) : 0;
timelineGroup = spriteDefinition?.AddTrigger(triggerName, startTime, endTime, groupNumber);
}
break;
case "L":
{
var startTime = double.Parse(split[1], CultureInfo.InvariantCulture);
var loopCount = int.Parse(split[2]);
timelineGroup = spriteDefinition?.AddLoop(startTime, loopCount);
}
break;
default:
{
if (string.IsNullOrEmpty(split[3]))
split[3] = split[2];
var easing = (Easing)int.Parse(split[1]);
var startTime = double.Parse(split[2], CultureInfo.InvariantCulture);
var endTime = double.Parse(split[3], CultureInfo.InvariantCulture);
switch (commandType)
{
case "F":
{
var startValue = float.Parse(split[4], CultureInfo.InvariantCulture);
var endValue = split.Length > 5 ? float.Parse(split[5], CultureInfo.InvariantCulture) : startValue;
timelineGroup?.Alpha.Add(easing, startTime, endTime, startValue, endValue);
}
break;
case "S":
{
var startValue = float.Parse(split[4], CultureInfo.InvariantCulture);
var endValue = split.Length > 5 ? float.Parse(split[5], CultureInfo.InvariantCulture) : startValue;
timelineGroup?.Scale.Add(easing, startTime, endTime, new Vector2(startValue), new Vector2(endValue));
}
break;
case "V":
{
var startX = float.Parse(split[4], CultureInfo.InvariantCulture);
var startY = float.Parse(split[5], CultureInfo.InvariantCulture);
var endX = split.Length > 6 ? float.Parse(split[6], CultureInfo.InvariantCulture) : startX;
var endY = split.Length > 7 ? float.Parse(split[7], CultureInfo.InvariantCulture) : startY;
2017-09-08 18:36:13 +08:00
timelineGroup?.Scale.Add(easing, startTime, endTime, new Vector2(startX, startY), new Vector2(endX, endY));
2017-09-08 05:55:05 +08:00
}
break;
case "R":
{
var startValue = float.Parse(split[4], CultureInfo.InvariantCulture);
var endValue = split.Length > 5 ? float.Parse(split[5], CultureInfo.InvariantCulture) : startValue;
timelineGroup?.Rotation.Add(easing, startTime, endTime, MathHelper.RadiansToDegrees(startValue), MathHelper.RadiansToDegrees(endValue));
}
break;
case "M":
{
var startX = float.Parse(split[4], CultureInfo.InvariantCulture);
var startY = float.Parse(split[5], CultureInfo.InvariantCulture);
var endX = split.Length > 6 ? float.Parse(split[6], CultureInfo.InvariantCulture) : startX;
var endY = split.Length > 7 ? float.Parse(split[7], CultureInfo.InvariantCulture) : startY;
timelineGroup?.X.Add(easing, startTime, endTime, startX, endX);
timelineGroup?.Y.Add(easing, startTime, endTime, startY, endY);
}
break;
case "MX":
{
var startValue = float.Parse(split[4], CultureInfo.InvariantCulture);
var endValue = split.Length > 5 ? float.Parse(split[5], CultureInfo.InvariantCulture) : startValue;
timelineGroup?.X.Add(easing, startTime, endTime, startValue, endValue);
}
break;
case "MY":
{
var startValue = float.Parse(split[4], CultureInfo.InvariantCulture);
var endValue = split.Length > 5 ? float.Parse(split[5], CultureInfo.InvariantCulture) : startValue;
timelineGroup?.Y.Add(easing, startTime, endTime, startValue, endValue);
}
break;
case "C":
{
var startRed = float.Parse(split[4], CultureInfo.InvariantCulture);
var startGreen = float.Parse(split[5], CultureInfo.InvariantCulture);
var startBlue = float.Parse(split[6], CultureInfo.InvariantCulture);
var endRed = split.Length > 7 ? float.Parse(split[7], CultureInfo.InvariantCulture) : startRed;
var endGreen = split.Length > 8 ? float.Parse(split[8], CultureInfo.InvariantCulture) : startGreen;
var endBlue = split.Length > 9 ? float.Parse(split[9], CultureInfo.InvariantCulture) : startBlue;
timelineGroup?.Colour.Add(easing, startTime, endTime,
new Color4(startRed / 255f, startGreen / 255f, startBlue / 255f, 1),
new Color4(endRed / 255f, endGreen / 255f, endBlue / 255f, 1));
}
break;
case "P":
{
var type = split[4];
switch (type)
{
2017-09-09 21:34:26 +08:00
case "A": timelineGroup?.BlendingMode.Add(easing, startTime, endTime, BlendingMode.Additive, startTime == endTime ? BlendingMode.Additive : BlendingMode.Inherit); break;
case "H": timelineGroup?.FlipH.Add(easing, startTime, endTime, true, startTime == endTime); break;
case "V": timelineGroup?.FlipV.Add(easing, startTime, endTime, true, startTime == endTime); break;
2017-09-08 05:55:05 +08:00
}
}
break;
default:
throw new InvalidDataException($@"Unknown command type: {commandType}");
2017-09-08 05:55:05 +08:00
}
}
break;
}
}
2016-10-08 03:09:52 +08:00
}
2017-09-08 05:55:05 +08:00
private static string cleanFilename(string path)
=> FileSafety.PathStandardise(path.Trim('\"'));
private void handleTimingPoints(Beatmap beatmap, string line)
{
string[] split = line.Split(',');
2016-11-28 14:12:11 +08:00
2017-04-04 12:11:04 +08:00
double time = double.Parse(split[0].Trim(), NumberFormatInfo.InvariantInfo);
double beatLength = double.Parse(split[1].Trim(), NumberFormatInfo.InvariantInfo);
double speedMultiplier = beatLength < 0 ? 100.0 / -beatLength : 1;
2017-04-04 12:11:04 +08:00
TimeSignatures timeSignature = TimeSignatures.SimpleQuadruple;
if (split.Length >= 3)
timeSignature = split[2][0] == '0' ? TimeSignatures.SimpleQuadruple : (TimeSignatures)int.Parse(split[2]);
2017-04-05 20:59:40 +08:00
LegacySampleBank sampleSet = defaultSampleBank;
2017-04-04 12:11:04 +08:00
if (split.Length >= 4)
2017-04-05 20:59:40 +08:00
sampleSet = (LegacySampleBank)int.Parse(split[3]);
2017-04-04 12:11:04 +08:00
2017-04-05 20:59:40 +08:00
//SampleBank sampleBank = SampleBank.Default;
//if (split.Length >= 5)
// sampleBank = (SampleBank)int.Parse(split[4]);
2017-04-04 12:11:04 +08:00
int sampleVolume = defaultSampleVolume;
if (split.Length >= 6)
sampleVolume = int.Parse(split[5]);
bool timingChange = true;
if (split.Length >= 7)
timingChange = split[6][0] == '1';
bool kiaiMode = false;
bool omitFirstBarSignature = false;
if (split.Length >= 8)
2016-11-28 14:12:11 +08:00
{
2017-04-04 12:11:04 +08:00
int effectFlags = int.Parse(split[7]);
kiaiMode = (effectFlags & 1) > 0;
omitFirstBarSignature = (effectFlags & 8) > 0;
2016-11-28 14:12:11 +08:00
}
string stringSampleSet = sampleSet.ToString().ToLower();
2017-04-06 10:54:11 +08:00
if (stringSampleSet == @"none")
stringSampleSet = @"normal";
DifficultyControlPoint difficultyPoint = beatmap.ControlPointInfo.DifficultyPointAt(time);
SoundControlPoint soundPoint = beatmap.ControlPointInfo.SoundPointAt(time);
EffectControlPoint effectPoint = beatmap.ControlPointInfo.EffectPointAt(time);
if (timingChange)
{
beatmap.ControlPointInfo.TimingPoints.Add(new TimingControlPoint
{
Time = time,
BeatLength = beatLength,
TimeSignature = timeSignature
});
}
if (speedMultiplier != difficultyPoint.SpeedMultiplier)
2017-04-04 12:11:04 +08:00
{
beatmap.ControlPointInfo.DifficultyPoints.RemoveAll(x => x.Time == time);
beatmap.ControlPointInfo.DifficultyPoints.Add(new DifficultyControlPoint
{
Time = time,
SpeedMultiplier = speedMultiplier
});
}
if (stringSampleSet != soundPoint.SampleBank || sampleVolume != soundPoint.SampleVolume)
{
beatmap.ControlPointInfo.SoundPoints.Add(new SoundControlPoint
{
Time = time,
SampleBank = stringSampleSet,
SampleVolume = sampleVolume
});
}
if (kiaiMode != effectPoint.KiaiMode || omitFirstBarSignature != effectPoint.OmitFirstBarLine)
{
beatmap.ControlPointInfo.EffectPoints.Add(new EffectControlPoint
{
Time = time,
KiaiMode = kiaiMode,
OmitFirstBarLine = omitFirstBarSignature
});
}
}
private void handleColours(Beatmap beatmap, string line, ref bool hasCustomColours)
2016-10-11 01:00:16 +08:00
{
var pair = splitKeyVal(line, ':');
string[] split = pair.Value.Split(',');
2017-03-14 13:48:32 +08:00
2016-10-11 01:00:16 +08:00
if (split.Length != 3)
throw new InvalidOperationException($@"Color specified in incorrect format (should be R,G,B): {pair.Value}");
2017-03-14 13:48:32 +08:00
2016-10-11 01:00:16 +08:00
byte r, g, b;
if (!byte.TryParse(split[0], out r) || !byte.TryParse(split[1], out g) || !byte.TryParse(split[2], out b))
2017-03-07 09:59:19 +08:00
throw new InvalidOperationException(@"Color must be specified with 8-bit integer components");
2017-03-14 13:48:32 +08:00
if (!hasCustomColours)
{
beatmap.ComboColors.Clear();
hasCustomColours = true;
}
2016-10-11 01:00:16 +08:00
// Note: the combo index specified in the beatmap is discarded
if (pair.Key.StartsWith(@"Combo"))
2016-10-11 01:00:16 +08:00
{
2017-03-07 09:59:19 +08:00
beatmap.ComboColors.Add(new Color4
{
R = r / 255f,
G = g / 255f,
B = b / 255f,
A = 1f,
});
}
2016-10-11 01:00:16 +08:00
}
private void handleVariables(string line)
{
var pair = splitKeyVal(line, '=');
variables[pair.Key] = pair.Value;
}
protected override Beatmap ParseFile(StreamReader stream)
2017-03-17 13:24:46 +08:00
{
return new LegacyBeatmap(base.ParseFile(stream));
}
public override Beatmap Decode(StreamReader stream)
2017-03-17 13:24:46 +08:00
{
return new LegacyBeatmap(base.Decode(stream));
}
protected override void ParseFile(StreamReader stream, Beatmap beatmap)
{
beatmap.BeatmapInfo.BeatmapVersion = beatmapVersion;
2017-04-03 19:33:10 +08:00
Section section = Section.None;
2017-03-14 13:48:32 +08:00
bool hasCustomColours = false;
2017-09-08 05:55:05 +08:00
SpriteDefinition spriteDefinition = null;
CommandTimelineGroup timelineGroup = null;
2017-03-14 13:48:32 +08:00
2017-04-03 19:33:10 +08:00
string line;
while ((line = stream.ReadLine()) != null)
{
if (string.IsNullOrEmpty(line))
continue;
2017-09-08 05:55:05 +08:00
if (line.StartsWith("//"))
2017-05-17 17:42:48 +08:00
continue;
2016-10-13 01:36:10 +08:00
if (line.StartsWith(@"osu file format v"))
{
beatmap.BeatmapInfo.BeatmapVersion = int.Parse(line.Substring(17));
2016-10-10 22:17:18 +08:00
continue;
}
2016-10-13 01:36:10 +08:00
if (line.StartsWith(@"[") && line.EndsWith(@"]"))
{
if (!Enum.TryParse(line.Substring(1, line.Length - 2), out section))
throw new InvalidDataException($@"Unknown osu section {line}");
continue;
}
switch (section)
{
case Section.General:
handleGeneral(beatmap, line);
break;
case Section.Editor:
handleEditor(beatmap, line);
break;
case Section.Metadata:
handleMetadata(beatmap, line);
break;
case Section.Difficulty:
handleDifficulty(beatmap, line);
break;
case Section.Events:
2017-09-08 05:55:05 +08:00
handleEvents(beatmap, line, ref spriteDefinition, ref timelineGroup);
break;
case Section.TimingPoints:
2017-05-30 18:52:21 +08:00
handleTimingPoints(beatmap, line);
break;
2016-10-11 01:00:16 +08:00
case Section.Colours:
handleColours(beatmap, line, ref hasCustomColours);
2016-10-11 01:00:16 +08:00
break;
case Section.HitObjects:
// If the ruleset wasn't specified, assume the osu!standard ruleset.
2017-08-02 22:17:33 +08:00
if (parser == null)
parser = new Rulesets.Objects.Legacy.Osu.ConvertHitObjectParser();
2017-05-30 18:52:21 +08:00
var obj = parser.Parse(line);
if (obj != null)
beatmap.HitObjects.Add(obj);
2017-03-14 13:48:32 +08:00
break;
2017-05-27 12:55:34 +08:00
case Section.Variables:
handleVariables(line);
2017-05-27 12:55:34 +08:00
break;
}
}
foreach (var hitObject in beatmap.HitObjects)
hitObject.ApplyDefaults(beatmap.ControlPointInfo, beatmap.BeatmapInfo.Difficulty);
}
2017-04-05 20:59:40 +08:00
private KeyValuePair<string, string> splitKeyVal(string line, char separator)
{
return new KeyValuePair<string, string>
(
line.Remove(line.IndexOf(separator)).Trim(),
line.Substring(line.IndexOf(separator) + 1).Trim()
);
}
internal enum LegacySampleBank
2017-04-05 20:59:40 +08:00
{
None = 0,
Normal = 1,
Soft = 2,
Drum = 3
}
2017-05-17 17:42:48 +08:00
internal enum EventType
{
Background = 0,
Video = 1,
Break = 2,
Colour = 3,
Sprite = 4,
Sample = 5,
Animation = 6
}
}
}