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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2020-01-23 23:23:53 +08:00
|
|
|
|
using osu.Framework.Extensions;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2018-06-28 17:20:43 +08:00
|
|
|
|
using osu.Game.Audio;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2019-09-10 06:43:30 +08:00
|
|
|
|
using osu.Game.IO;
|
2020-04-14 20:05:07 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Legacy;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 06:43:30 +08:00
|
|
|
|
protected override void ParseStreamInto(LineBufferedReader stream, T output)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Section section = Section.None;
|
|
|
|
|
|
|
|
|
|
string line;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
while ((line = stream.ReadLine()) != null)
|
|
|
|
|
{
|
|
|
|
|
if (ShouldSkipLine(line))
|
|
|
|
|
continue;
|
|
|
|
|
|
2020-02-09 01:05:27 +08:00
|
|
|
|
if (line.StartsWith('[') && line.EndsWith(']'))
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-12-14 20:54:22 +08:00
|
|
|
|
if (!Enum.TryParse(line[1..^1], out section))
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-08-12 00:42:05 +08:00
|
|
|
|
Logger.Log($"Unknown section \"{line}\" in \"{output}\"");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
section = Section.None;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-30 16:18:09 +08:00
|
|
|
|
OnBeginNewSection(section);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-07 18:33:54 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ParseLine(output, section, line);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2019-08-12 00:42:05 +08:00
|
|
|
|
Logger.Log($"Failed to process line \"{line}\" into \"{output}\": {e.Message}", LoggingTarget.Runtime, LogLevel.Important);
|
2019-08-07 18:33:54 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-14 15:16:55 +08:00
|
|
|
|
protected virtual bool ShouldSkipLine(string line) => string.IsNullOrWhiteSpace(line) || line.AsSpan().TrimStart().StartsWith("//".AsSpan(), StringComparison.Ordinal);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-03-30 16:18:09 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Invoked when a new <see cref="Section"/> has been entered.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="section">The entered <see cref="Section"/>.</param>
|
|
|
|
|
protected virtual void OnBeginNewSection(Section section)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected virtual void ParseLine(T output, Section section, string line)
|
|
|
|
|
{
|
2018-07-16 07:04:41 +08:00
|
|
|
|
line = StripComments(line);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
switch (section)
|
|
|
|
|
{
|
|
|
|
|
case Section.Colours:
|
2020-04-02 16:56:12 +08:00
|
|
|
|
HandleColours(output, line);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-16 22:35:55 +08:00
|
|
|
|
|
|
|
|
|
protected string StripComments(string line)
|
2018-07-16 07:04:41 +08:00
|
|
|
|
{
|
2018-10-17 09:53:21 +08:00
|
|
|
|
var index = line.AsSpan().IndexOf("//".AsSpan());
|
2018-07-16 07:04:41 +08:00
|
|
|
|
if (index > 0)
|
|
|
|
|
return line.Substring(0, index);
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-07-16 07:04:41 +08:00
|
|
|
|
return line;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-02 16:56:12 +08:00
|
|
|
|
protected void HandleColours<TModel>(TModel output, string line)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
var pair = SplitKeyVal(line);
|
|
|
|
|
|
|
|
|
|
bool isCombo = pair.Key.StartsWith(@"Combo");
|
|
|
|
|
|
2018-07-16 07:04:41 +08:00
|
|
|
|
string[] split = pair.Value.Split(',');
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-10-05 10:19:01 +08:00
|
|
|
|
if (split.Length != 3 && split.Length != 4)
|
|
|
|
|
throw new InvalidOperationException($@"Color specified in incorrect format (should be R,G,B or R,G,B,A): {pair.Value}");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-10-05 10:55:59 +08:00
|
|
|
|
Color4 colour;
|
2018-10-05 10:19:01 +08:00
|
|
|
|
|
2018-10-05 10:55:59 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
2020-06-25 13:15:26 +08:00
|
|
|
|
byte alpha = split.Length == 4 ? byte.Parse(split[3]) : (byte)255;
|
|
|
|
|
colour = new Color4(byte.Parse(split[0]), byte.Parse(split[1]), byte.Parse(split[2]), alpha);
|
2018-10-05 10:55:59 +08:00
|
|
|
|
}
|
2019-04-25 16:36:17 +08:00
|
|
|
|
catch
|
2018-10-05 10:19:01 +08:00
|
|
|
|
{
|
2018-04-13 17:19:50 +08:00
|
|
|
|
throw new InvalidOperationException(@"Color must be specified with 8-bit integer components");
|
2018-10-05 10:19:01 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
if (isCombo)
|
|
|
|
|
{
|
|
|
|
|
if (!(output is IHasComboColours tHasComboColours)) return;
|
|
|
|
|
|
2019-11-07 20:54:30 +08:00
|
|
|
|
tHasComboColours.AddComboColours(colour);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!(output is IHasCustomColours tHasCustomColours)) return;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
tHasCustomColours.CustomColours[pair.Key] = colour;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected KeyValuePair<string, string> SplitKeyVal(string line, char separator = ':')
|
|
|
|
|
{
|
2020-01-23 23:23:53 +08:00
|
|
|
|
var split = line.Split(separator, 2);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
return new KeyValuePair<string, string>
|
|
|
|
|
(
|
|
|
|
|
split[0].Trim(),
|
|
|
|
|
split.Length > 1 ? split[1].Trim() : string.Empty
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-23 23:23:53 +08:00
|
|
|
|
protected string CleanFilename(string path) => path.Trim('"').ToStandardisedPath();
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected enum Section
|
|
|
|
|
{
|
|
|
|
|
None,
|
|
|
|
|
General,
|
|
|
|
|
Editor,
|
|
|
|
|
Metadata,
|
|
|
|
|
Difficulty,
|
|
|
|
|
Events,
|
|
|
|
|
TimingPoints,
|
|
|
|
|
Colours,
|
|
|
|
|
HitObjects,
|
|
|
|
|
Variables,
|
2020-03-30 16:18:09 +08:00
|
|
|
|
Fonts,
|
2020-04-05 05:10:12 +08:00
|
|
|
|
CatchTheBeat,
|
|
|
|
|
Mania,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-13 16:06:00 +08:00
|
|
|
|
[Obsolete("Do not use unless you're a legacy ruleset and 100% sure.")]
|
|
|
|
|
public class LegacyDifficultyControlPoint : DifficultyControlPoint
|
2019-10-28 18:10:39 +08:00
|
|
|
|
{
|
2020-07-13 16:06:00 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Legacy BPM multiplier that introduces floating-point errors for rulesets that depend on it.
|
|
|
|
|
/// DO NOT USE THIS UNLESS 100% SURE.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public readonly float BpmMultiplier;
|
|
|
|
|
|
|
|
|
|
public LegacyDifficultyControlPoint(double beatLength)
|
2019-10-28 18:10:39 +08:00
|
|
|
|
{
|
2019-10-30 14:51:09 +08:00
|
|
|
|
SpeedMultiplierBindable.Precision = double.Epsilon;
|
2020-07-13 16:06:00 +08:00
|
|
|
|
|
|
|
|
|
BpmMultiplier = beatLength < 0 ? Math.Clamp((float)-beatLength, 10, 10000) / 100f : 1;
|
2019-10-28 18:10:39 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-25 16:00:56 +08:00
|
|
|
|
internal class LegacySampleControlPoint : SampleControlPoint
|
2018-06-28 17:20:43 +08:00
|
|
|
|
{
|
|
|
|
|
public int CustomSampleBank;
|
|
|
|
|
|
2019-06-30 20:58:30 +08:00
|
|
|
|
public override HitSampleInfo ApplyTo(HitSampleInfo hitSampleInfo)
|
2018-06-28 17:20:43 +08:00
|
|
|
|
{
|
2019-06-30 20:58:30 +08:00
|
|
|
|
var baseInfo = base.ApplyTo(hitSampleInfo);
|
2018-06-28 17:20:43 +08:00
|
|
|
|
|
2020-04-14 20:05:07 +08:00
|
|
|
|
if (baseInfo is ConvertHitObjectParser.LegacyHitSampleInfo legacy
|
|
|
|
|
&& legacy.CustomSampleBank == 0)
|
|
|
|
|
{
|
|
|
|
|
legacy.CustomSampleBank = CustomSampleBank;
|
|
|
|
|
}
|
2018-06-28 17:20:43 +08:00
|
|
|
|
|
|
|
|
|
return baseInfo;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 16:06:12 +08:00
|
|
|
|
public override bool IsRedundant(ControlPoint existing)
|
|
|
|
|
=> base.IsRedundant(existing)
|
2020-04-17 16:04:09 +08:00
|
|
|
|
&& existing is LegacySampleControlPoint existingSample
|
|
|
|
|
&& CustomSampleBank == existingSample.CustomSampleBank;
|
2018-06-28 17:20:43 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|