1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:47:26 +08:00
osu-lazer/osu.Game/Rulesets/Objects/Legacy/ConvertHitObjectParser.cs

429 lines
16 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
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Objects.Types;
using System;
using System.Collections.Generic;
2018-07-02 13:20:35 +08:00
using System.IO;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps.Formats;
using osu.Game.Audio;
using System.Linq;
using JetBrains.Annotations;
using osu.Framework.Logging;
2018-04-13 17:19:50 +08:00
using osu.Framework.MathUtils;
namespace osu.Game.Rulesets.Objects.Legacy
{
/// <summary>
/// A HitObjectParser to parse legacy Beatmaps.
/// </summary>
public abstract class ConvertHitObjectParser : HitObjectParser
{
/// <summary>
/// The offset to apply to all time values.
/// </summary>
2018-08-15 10:47:31 +08:00
protected readonly double Offset;
/// <summary>
/// The beatmap version.
/// </summary>
2018-08-15 10:47:31 +08:00
protected readonly int FormatVersion;
protected bool FirstObject { get; private set; } = true;
protected ConvertHitObjectParser(double offset, int formatVersion)
{
Offset = offset;
2018-08-15 09:53:25 +08:00
FormatVersion = formatVersion;
}
[CanBeNull]
public override HitObject Parse(string text)
2018-04-13 17:19:50 +08:00
{
try
{
string[] split = text.Split(',');
Vector2 pos = new Vector2((int)Parsing.ParseFloat(split[0], Parsing.MAX_COORDINATE_VALUE), (int)Parsing.ParseFloat(split[1], Parsing.MAX_COORDINATE_VALUE));
double startTime = Parsing.ParseDouble(split[2]) + Offset;
ConvertHitObjectType type = (ConvertHitObjectType)Parsing.ParseInt(split[3]);
int comboOffset = (int)(type & ConvertHitObjectType.ComboOffset) >> 4;
2018-08-15 10:47:31 +08:00
type &= ~ConvertHitObjectType.ComboOffset;
2018-08-15 10:47:31 +08:00
bool combo = type.HasFlag(ConvertHitObjectType.NewCombo);
2018-04-13 17:19:50 +08:00
type &= ~ConvertHitObjectType.NewCombo;
var soundType = (LegacySoundType)Parsing.ParseInt(split[4]);
2018-04-13 17:19:50 +08:00
var bankInfo = new SampleBankInfo();
HitObject result = null;
if (type.HasFlag(ConvertHitObjectType.Circle))
2018-04-13 17:19:50 +08:00
{
result = CreateHit(pos, combo, comboOffset);
2018-04-13 17:19:50 +08:00
if (split.Length > 5)
readCustomSampleBanks(split[5], bankInfo);
}
else if (type.HasFlag(ConvertHitObjectType.Slider))
2018-04-13 17:19:50 +08:00
{
PathType pathType = PathType.Catmull;
double? length = null;
2018-04-13 17:19:50 +08:00
2018-10-11 16:44:25 +08:00
string[] pointSplit = split[5].Split('|');
int pointCount = 1;
foreach (var t in pointSplit)
if (t.Length > 1)
pointCount++;
var points = new Vector2[pointCount];
int pointIndex = 1;
2019-04-01 11:16:05 +08:00
2018-10-11 16:44:25 +08:00
foreach (string t in pointSplit)
2018-04-13 17:19:50 +08:00
{
if (t.Length == 1)
{
switch (t)
{
case @"C":
pathType = PathType.Catmull;
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 @"B":
pathType = PathType.Bezier;
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 @"L":
pathType = PathType.Linear;
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 @"P":
pathType = PathType.PerfectCurve;
2018-04-13 17:19:50 +08:00
break;
}
2018-10-11 16:44:25 +08:00
2018-04-13 17:19:50 +08:00
continue;
}
string[] temp = t.Split(':');
points[pointIndex++] = new Vector2((int)Parsing.ParseDouble(temp[0], Parsing.MAX_COORDINATE_VALUE), (int)Parsing.ParseDouble(temp[1], Parsing.MAX_COORDINATE_VALUE)) - pos;
2018-04-13 17:19:50 +08:00
}
// osu-stable special-cased colinear perfect curves to a CurveType.Linear
2018-10-11 16:44:25 +08:00
bool isLinear(Vector2[] p) => Precision.AlmostEquals(0, (p[1].Y - p[0].Y) * (p[2].X - p[0].X) - (p[1].X - p[0].X) * (p[2].Y - p[0].Y));
if (points.Length == 3 && pathType == PathType.PerfectCurve && isLinear(points))
pathType = PathType.Linear;
2018-04-13 17:19:50 +08:00
int repeatCount = Parsing.ParseInt(split[6]);
2018-04-13 17:19:50 +08:00
if (repeatCount > 9000)
throw new ArgumentOutOfRangeException(nameof(repeatCount), @"Repeat count is way too high");
// osu-stable treated the first span of the slider as a repeat, but no repeats are happening
repeatCount = Math.Max(0, repeatCount - 1);
if (split.Length > 7)
{
length = Math.Max(0, Parsing.ParseDouble(split[7]));
if (length == 0)
length = null;
}
2018-04-13 17:19:50 +08:00
if (split.Length > 10)
readCustomSampleBanks(split[10], bankInfo);
// One node for each repeat + the start and end nodes
int nodes = repeatCount + 2;
// Populate node sample bank infos with the default hit object sample bank
var nodeBankInfos = new List<SampleBankInfo>();
for (int i = 0; i < nodes; i++)
nodeBankInfos.Add(bankInfo.Clone());
// Read any per-node sample banks
if (split.Length > 9 && split[9].Length > 0)
{
string[] sets = split[9].Split('|');
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
for (int i = 0; i < nodes; i++)
{
if (i >= sets.Length)
break;
SampleBankInfo info = nodeBankInfos[i];
readCustomSampleBanks(sets[i], info);
}
}
// Populate node sound types with the default hit object sound type
var nodeSoundTypes = new List<LegacySoundType>();
for (int i = 0; i < nodes; i++)
nodeSoundTypes.Add(soundType);
// Read any per-node sound types
if (split.Length > 8 && split[8].Length > 0)
{
string[] adds = split[8].Split('|');
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
for (int i = 0; i < nodes; i++)
{
if (i >= adds.Length)
break;
int sound;
int.TryParse(adds[i], out sound);
nodeSoundTypes[i] = (LegacySoundType)sound;
}
}
// Generate the final per-node samples
2019-06-30 20:58:30 +08:00
var nodeSamples = new List<List<HitSampleInfo>>(nodes);
2018-04-13 17:19:50 +08:00
for (int i = 0; i < nodes; i++)
nodeSamples.Add(convertSoundType(nodeSoundTypes[i], nodeBankInfos[i]));
result = CreateSlider(pos, combo, comboOffset, points, length, pathType, repeatCount, nodeSamples);
// The samples are played when the slider ends, which is the last node
result.Samples = nodeSamples[nodeSamples.Count - 1];
2018-04-13 17:19:50 +08:00
}
else if (type.HasFlag(ConvertHitObjectType.Spinner))
2018-04-13 17:19:50 +08:00
{
double endTime = Math.Max(startTime, Parsing.ParseDouble(split[5]) + Offset);
result = CreateSpinner(new Vector2(512, 384) / 2, combo, comboOffset, endTime);
2018-04-13 17:19:50 +08:00
if (split.Length > 6)
readCustomSampleBanks(split[6], bankInfo);
}
else if (type.HasFlag(ConvertHitObjectType.Hold))
2018-04-13 17:19:50 +08:00
{
// Note: Hold is generated by BMS converts
double endTime = Math.Max(startTime, Parsing.ParseDouble(split[2]));
2018-04-13 17:19:50 +08:00
if (split.Length > 5 && !string.IsNullOrEmpty(split[5]))
{
string[] ss = split[5].Split(':');
endTime = Math.Max(startTime, Parsing.ParseDouble(ss[0]));
2018-04-13 17:19:50 +08:00
readCustomSampleBanks(string.Join(":", ss.Skip(1)), bankInfo);
}
result = CreateHold(pos, combo, comboOffset, endTime + Offset);
2018-04-13 17:19:50 +08:00
}
if (result == null)
{
Logger.Log($"Unknown hit object type: {type}. Skipped.", level: LogLevel.Error);
return null;
}
2018-04-13 17:19:50 +08:00
result.StartTime = startTime;
if (result.Samples.Count == 0)
result.Samples = convertSoundType(soundType, bankInfo);
2018-04-13 17:19:50 +08:00
FirstObject = false;
2018-04-13 17:19:50 +08:00
return result;
}
catch (FormatException)
{
2019-03-13 13:56:41 +08:00
Logger.Log("A hitobject could not be parsed correctly and will be ignored", LoggingTarget.Runtime, LogLevel.Important);
2018-04-13 17:19:50 +08:00
}
2019-03-13 10:30:33 +08:00
catch (OverflowException)
{
2019-03-13 13:56:41 +08:00
Logger.Log("A hitobject could not be parsed correctly and will be ignored", LoggingTarget.Runtime, LogLevel.Important);
2019-03-13 10:30:33 +08:00
}
return null;
2018-04-13 17:19:50 +08:00
}
private void readCustomSampleBanks(string str, SampleBankInfo bankInfo)
{
if (string.IsNullOrEmpty(str))
return;
string[] split = str.Split(':');
var bank = (LegacyBeatmapDecoder.LegacySampleBank)Parsing.ParseInt(split[0]);
var addbank = (LegacyBeatmapDecoder.LegacySampleBank)Parsing.ParseInt(split[1]);
2018-04-13 17:19:50 +08:00
2018-07-25 13:37:05 +08:00
string stringBank = bank.ToString().ToLowerInvariant();
2018-04-13 17:19:50 +08:00
if (stringBank == @"none")
stringBank = null;
2018-07-25 13:37:05 +08:00
string stringAddBank = addbank.ToString().ToLowerInvariant();
2018-04-13 17:19:50 +08:00
if (stringAddBank == @"none")
stringAddBank = null;
bankInfo.Normal = stringBank;
bankInfo.Add = string.IsNullOrEmpty(stringAddBank) ? stringBank : stringAddBank;
2018-04-13 17:19:50 +08:00
if (split.Length > 2)
bankInfo.CustomSampleBank = Parsing.ParseInt(split[2]);
2018-04-13 17:19:50 +08:00
if (split.Length > 3)
bankInfo.Volume = Math.Max(0, Parsing.ParseInt(split[3]));
2018-07-02 13:29:18 +08:00
bankInfo.Filename = split.Length > 4 ? split[4] : null;
2018-04-13 17:19:50 +08:00
}
/// <summary>
/// Creates a legacy Hit-type hit object.
/// </summary>
/// <param name="position">The position of the hit object.</param>
/// <param name="newCombo">Whether the hit object creates a new combo.</param>
/// <param name="comboOffset">When starting a new combo, the offset of the new combo relative to the current one.</param>
2018-04-13 17:19:50 +08:00
/// <returns>The hit object.</returns>
protected abstract HitObject CreateHit(Vector2 position, bool newCombo, int comboOffset);
2018-04-13 17:19:50 +08:00
/// <summary>
/// Creats a legacy Slider-type hit object.
/// </summary>
/// <param name="position">The position of the hit object.</param>
/// <param name="newCombo">Whether the hit object creates a new combo.</param>
/// <param name="comboOffset">When starting a new combo, the offset of the new combo relative to the current one.</param>
2018-04-13 17:19:50 +08:00
/// <param name="controlPoints">The slider control points.</param>
/// <param name="length">The slider length.</param>
/// <param name="pathType">The slider curve type.</param>
2018-04-13 17:19:50 +08:00
/// <param name="repeatCount">The slider repeat count.</param>
/// <param name="nodeSamples">The samples to be played when the slider nodes are hit. This includes the head and tail of the slider.</param>
2018-04-13 17:19:50 +08:00
/// <returns>The hit object.</returns>
protected abstract HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, Vector2[] controlPoints, double? length, PathType pathType, int repeatCount,
List<List<HitSampleInfo>> nodeSamples);
2018-04-13 17:19:50 +08:00
/// <summary>
/// Creates a legacy Spinner-type hit object.
/// </summary>
/// <param name="position">The position of the hit object.</param>
/// <param name="newCombo">Whether the hit object creates a new combo.</param>
/// <param name="comboOffset">When starting a new combo, the offset of the new combo relative to the current one.</param>
2018-04-13 17:19:50 +08:00
/// <param name="endTime">The spinner end time.</param>
/// <returns>The hit object.</returns>
protected abstract HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double endTime);
2018-04-13 17:19:50 +08:00
/// <summary>
/// Creates a legacy Hold-type hit object.
/// </summary>
/// <param name="position">The position of the hit object.</param>
/// <param name="newCombo">Whether the hit object creates a new combo.</param>
/// <param name="comboOffset">When starting a new combo, the offset of the new combo relative to the current one.</param>
2018-04-13 17:19:50 +08:00
/// <param name="endTime">The hold end time.</param>
protected abstract HitObject CreateHold(Vector2 position, bool newCombo, int comboOffset, double endTime);
2018-04-13 17:19:50 +08:00
2019-06-30 20:58:30 +08:00
private List<HitSampleInfo> convertSoundType(LegacySoundType type, SampleBankInfo bankInfo)
2018-04-13 17:19:50 +08:00
{
2018-07-02 13:20:35 +08:00
// Todo: This should return the normal SampleInfos if the specified sample file isn't found, but that's a pretty edge-case scenario
if (!string.IsNullOrEmpty(bankInfo.Filename))
{
2019-06-30 20:58:30 +08:00
return new List<HitSampleInfo>
{
2019-06-30 20:58:30 +08:00
new FileHitSampleInfo
{
Filename = bankInfo.Filename,
Volume = bankInfo.Volume
}
};
}
2018-07-02 13:20:35 +08:00
2019-06-30 20:58:30 +08:00
var soundTypes = new List<HitSampleInfo>
2018-04-13 17:19:50 +08:00
{
2019-06-30 20:58:30 +08:00
new LegacyHitSampleInfo
2018-04-13 17:19:50 +08:00
{
Bank = bankInfo.Normal,
2019-06-30 20:58:30 +08:00
Name = HitSampleInfo.HIT_NORMAL,
Volume = bankInfo.Volume,
CustomSampleBank = bankInfo.CustomSampleBank
2018-04-13 17:19:50 +08:00
}
};
if (type.HasFlag(LegacySoundType.Finish))
2018-04-13 17:19:50 +08:00
{
2019-06-30 20:58:30 +08:00
soundTypes.Add(new LegacyHitSampleInfo
2018-04-13 17:19:50 +08:00
{
Bank = bankInfo.Add,
2019-06-30 20:58:30 +08:00
Name = HitSampleInfo.HIT_FINISH,
Volume = bankInfo.Volume,
CustomSampleBank = bankInfo.CustomSampleBank
2018-04-13 17:19:50 +08:00
});
}
if (type.HasFlag(LegacySoundType.Whistle))
2018-04-13 17:19:50 +08:00
{
2019-06-30 20:58:30 +08:00
soundTypes.Add(new LegacyHitSampleInfo
2018-04-13 17:19:50 +08:00
{
Bank = bankInfo.Add,
2019-06-30 20:58:30 +08:00
Name = HitSampleInfo.HIT_WHISTLE,
Volume = bankInfo.Volume,
CustomSampleBank = bankInfo.CustomSampleBank
2018-04-13 17:19:50 +08:00
});
}
if (type.HasFlag(LegacySoundType.Clap))
2018-04-13 17:19:50 +08:00
{
2019-06-30 20:58:30 +08:00
soundTypes.Add(new LegacyHitSampleInfo
2018-04-13 17:19:50 +08:00
{
Bank = bankInfo.Add,
2019-06-30 20:58:30 +08:00
Name = HitSampleInfo.HIT_CLAP,
Volume = bankInfo.Volume,
CustomSampleBank = bankInfo.CustomSampleBank
2018-04-13 17:19:50 +08:00
});
}
return soundTypes;
}
private class SampleBankInfo
{
2018-07-02 13:20:35 +08:00
public string Filename;
2018-04-13 17:19:50 +08:00
public string Normal;
public string Add;
public int Volume;
public int CustomSampleBank;
2018-07-02 13:20:35 +08:00
public SampleBankInfo Clone() => (SampleBankInfo)MemberwiseClone();
}
2019-06-30 20:58:30 +08:00
private class LegacyHitSampleInfo : HitSampleInfo
{
public int CustomSampleBank
{
set
{
if (value > 1)
Suffix = value.ToString();
}
}
}
2019-06-30 20:58:30 +08:00
private class FileHitSampleInfo : HitSampleInfo
2018-07-02 13:20:35 +08:00
{
public string Filename;
public override IEnumerable<string> LookupNames => new[]
2018-04-13 17:19:50 +08:00
{
2018-07-02 13:20:35 +08:00
Filename,
Path.ChangeExtension(Filename, null)
};
2018-04-13 17:19:50 +08:00
}
[Flags]
private enum LegacySoundType
{
None = 0,
Normal = 1,
Whistle = 2,
Finish = 4,
Clap = 8
}
}
}