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

343 lines
15 KiB
C#
Raw Normal View History

// 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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.IO.File;
using osu.Game.IO;
2018-04-13 17:19:50 +08:00
using osu.Game.Storyboards;
namespace osu.Game.Beatmaps.Formats
{
public class LegacyStoryboardDecoder : LegacyDecoder<Storyboard>
{
private StoryboardSprite storyboardSprite;
private CommandTimelineGroup timelineGroup;
private Storyboard storyboard;
private readonly Dictionary<string, string> variables = new Dictionary<string, string>();
public LegacyStoryboardDecoder()
: base(0)
{
}
public static void Register()
{
// note that this isn't completely correct
AddDecoder<Storyboard>(@"osu file format v", m => new LegacyStoryboardDecoder());
AddDecoder<Storyboard>(@"[Events]", m => new LegacyStoryboardDecoder());
SetFallbackDecoder<Storyboard>(() => new LegacyStoryboardDecoder());
2018-04-13 17:19:50 +08:00
}
protected override void ParseStreamInto(LineBufferedReader stream, Storyboard storyboard)
2018-04-13 17:19:50 +08:00
{
this.storyboard = storyboard;
base.ParseStreamInto(stream, storyboard);
2019-03-29 13:02:19 +08:00
// OrderBy is used to guarantee that the parsing order of elements with equal start times is maintained (stably-sorted)
foreach (StoryboardLayer layer in storyboard.Layers)
layer.Elements = layer.Elements.OrderBy(h => h.StartTime).ToList();
2018-04-13 17:19:50 +08:00
}
protected override void ParseLine(Storyboard storyboard, Section section, string line)
{
line = StripComments(line);
2018-04-13 17:19:50 +08:00
switch (section)
{
case Section.Events:
handleEvents(line);
return;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case Section.Variables:
handleVariables(line);
return;
}
base.ParseLine(storyboard, section, line);
}
private void handleEvents(string line)
{
var depth = 0;
2019-04-01 11:16:05 +08:00
while (line.StartsWith(" ", StringComparison.Ordinal) || line.StartsWith("_", StringComparison.Ordinal))
2018-04-13 17:19:50 +08:00
{
++depth;
line = line.Substring(1);
}
decodeVariables(ref line);
string[] split = line.Split(',');
if (depth == 0)
{
storyboardSprite = null;
EventType type;
2019-08-07 17:40:58 +08:00
2018-04-13 17:19:50 +08:00
if (!Enum.TryParse(split[0], out type))
throw new InvalidDataException($@"Unknown event type: {split[0]}");
2018-04-13 17:19:50 +08:00
switch (type)
{
case EventType.Sprite:
{
var layer = parseLayer(split[1]);
var origin = parseOrigin(split[2]);
var path = cleanFilename(split[3]);
var x = float.Parse(split[4], NumberFormatInfo.InvariantInfo);
var y = float.Parse(split[5], NumberFormatInfo.InvariantInfo);
storyboardSprite = new StoryboardSprite(path, origin, new Vector2(x, y));
storyboard.GetLayer(layer).Add(storyboardSprite);
break;
2019-04-01 11:16:05 +08:00
}
2018-04-13 17:19:50 +08:00
case EventType.Animation:
{
var layer = parseLayer(split[1]);
var origin = parseOrigin(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;
storyboardSprite = new StoryboardAnimation(path, origin, new Vector2(x, y), frameCount, frameDelay, loopType);
storyboard.GetLayer(layer).Add(storyboardSprite);
break;
2019-04-01 11:16:05 +08:00
}
2018-04-13 17:19:50 +08:00
case EventType.Sample:
{
var time = double.Parse(split[1], CultureInfo.InvariantCulture);
var layer = parseLayer(split[2]);
var path = cleanFilename(split[3]);
var volume = split.Length > 4 ? float.Parse(split[4], CultureInfo.InvariantCulture) : 100;
storyboard.GetLayer(layer).Add(new StoryboardSampleInfo(path, time, (int)volume));
2018-04-13 17:19:50 +08:00
break;
2019-04-01 11:16:05 +08:00
}
2018-04-13 17:19:50 +08:00
}
}
else
{
if (depth < 2)
timelineGroup = storyboardSprite?.TimelineGroup;
var commandType = split[0];
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
switch (commandType)
{
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;
var groupNumber = split.Length > 4 ? int.Parse(split[4]) : 0;
timelineGroup = storyboardSprite?.AddTrigger(triggerName, startTime, endTime, groupNumber);
break;
2019-11-11 19:53:22 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case "L":
{
var startTime = double.Parse(split[1], CultureInfo.InvariantCulture);
var loopCount = int.Parse(split[2]);
timelineGroup = storyboardSprite?.AddLoop(startTime, loopCount);
break;
2019-11-11 19:53:22 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
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);
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
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));
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
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;
timelineGroup?.Scale.Add(easing, startTime, endTime, new Vector2(startX, startY), new Vector2(endX, endY));
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
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));
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
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);
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
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);
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
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);
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
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));
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case "P":
{
var type = split[4];
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
switch (type)
{
case "A":
2019-08-21 12:29:50 +08:00
timelineGroup?.BlendingParameters.Add(easing, startTime, endTime, BlendingParameters.Additive, startTime == endTime ? BlendingParameters.Additive : BlendingParameters.Inherit);
2018-04-13 17:19:50 +08:00
break;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case "H":
timelineGroup?.FlipH.Add(easing, startTime, endTime, true, startTime == endTime);
break;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case "V":
timelineGroup?.FlipV.Add(easing, startTime, endTime, true, startTime == endTime);
break;
}
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
default:
throw new InvalidDataException($@"Unknown command type: {commandType}");
}
2019-11-11 20:05:36 +08:00
break;
2018-04-13 17:19:50 +08:00
}
}
}
}
private string parseLayer(string value) => Enum.Parse(typeof(StoryLayer), value).ToString();
private Anchor parseOrigin(string value)
{
var origin = (LegacyOrigins)Enum.Parse(typeof(LegacyOrigins), value);
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
switch (origin)
{
case LegacyOrigins.TopLeft:
return Anchor.TopLeft;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case LegacyOrigins.TopCentre:
return Anchor.TopCentre;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case LegacyOrigins.TopRight:
return Anchor.TopRight;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case LegacyOrigins.CentreLeft:
return Anchor.CentreLeft;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case LegacyOrigins.Centre:
return Anchor.Centre;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case LegacyOrigins.CentreRight:
return Anchor.CentreRight;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case LegacyOrigins.BottomLeft:
return Anchor.BottomLeft;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case LegacyOrigins.BottomCentre:
return Anchor.BottomCentre;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case LegacyOrigins.BottomRight:
return Anchor.BottomRight;
2019-04-01 11:16:05 +08:00
default:
return Anchor.TopLeft;
2018-04-13 17:19:50 +08:00
}
}
private void handleVariables(string line)
{
var pair = SplitKeyVal(line, '=');
variables[pair.Key] = pair.Value;
}
/// <summary>
/// Decodes any beatmap variables present in a line into their real values.
/// </summary>
/// <param name="line">The line which may contains variables.</param>
private void decodeVariables(ref string line)
{
while (line.IndexOf('$') >= 0)
{
string origLine = line;
2018-08-14 17:15:09 +08:00
foreach (var v in variables)
line = line.Replace(v.Key, v.Value);
2018-04-13 17:19:50 +08:00
if (line == origLine)
break;
}
}
2018-10-12 21:30:24 +08:00
private string cleanFilename(string path) => FileSafety.PathStandardise(path.Trim('"'));
2018-04-13 17:19:50 +08:00
}
}