2017-03-14 12:02:42 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK;
|
2017-03-13 18:15:25 +08:00
|
|
|
|
using osu.Game.Beatmaps.Samples;
|
|
|
|
|
using osu.Game.Modes.Objects.Types;
|
2016-12-06 17:56:20 +08:00
|
|
|
|
using System;
|
2016-11-14 21:03:39 +08:00
|
|
|
|
using System.Collections.Generic;
|
2016-11-17 20:29:35 +08:00
|
|
|
|
using System.Globalization;
|
2017-03-14 17:06:32 +08:00
|
|
|
|
using osu.Game.Modes.Objects.Legacy;
|
2016-11-14 21:03:39 +08:00
|
|
|
|
|
2017-03-13 18:15:25 +08:00
|
|
|
|
namespace osu.Game.Modes.Objects
|
2016-11-14 21:03:39 +08:00
|
|
|
|
{
|
2017-03-13 18:15:25 +08:00
|
|
|
|
internal class LegacyHitObjectParser : HitObjectParser
|
2016-11-14 21:03:39 +08:00
|
|
|
|
{
|
|
|
|
|
public override HitObject Parse(string text)
|
|
|
|
|
{
|
|
|
|
|
string[] split = text.Split(',');
|
2017-03-15 18:39:40 +08:00
|
|
|
|
var type = (LegacyHitObjectType)int.Parse(split[3]) & ~LegacyHitObjectType.ColourHax;
|
|
|
|
|
bool combo = type.HasFlag(LegacyHitObjectType.NewCombo);
|
|
|
|
|
type &= ~LegacyHitObjectType.NewCombo;
|
2017-03-13 18:15:25 +08:00
|
|
|
|
|
|
|
|
|
HitObject result;
|
2017-03-14 18:25:04 +08:00
|
|
|
|
|
2017-03-15 18:39:40 +08:00
|
|
|
|
if ((type & LegacyHitObjectType.Circle) > 0)
|
2016-11-14 21:03:39 +08:00
|
|
|
|
{
|
2017-03-14 18:25:04 +08:00
|
|
|
|
result = new LegacyHit
|
|
|
|
|
{
|
|
|
|
|
Position = new Vector2(int.Parse(split[0]), int.Parse(split[1])),
|
|
|
|
|
NewCombo = combo
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-03-15 18:39:40 +08:00
|
|
|
|
else if ((type & LegacyHitObjectType.Slider) > 0)
|
2017-03-14 18:25:04 +08:00
|
|
|
|
{
|
|
|
|
|
CurveType curveType = CurveType.Catmull;
|
|
|
|
|
double length = 0;
|
|
|
|
|
List<Vector2> points = new List<Vector2> { new Vector2(int.Parse(split[0]), int.Parse(split[1])) };
|
2016-11-17 20:29:35 +08:00
|
|
|
|
|
2017-03-14 18:25:04 +08:00
|
|
|
|
string[] pointsplit = split[5].Split('|');
|
|
|
|
|
foreach (string t in pointsplit)
|
|
|
|
|
{
|
|
|
|
|
if (t.Length == 1)
|
2016-11-17 20:29:35 +08:00
|
|
|
|
{
|
2017-03-14 18:25:04 +08:00
|
|
|
|
switch (t)
|
2016-11-17 20:29:35 +08:00
|
|
|
|
{
|
2017-03-14 18:25:04 +08:00
|
|
|
|
case @"C":
|
|
|
|
|
curveType = CurveType.Catmull;
|
|
|
|
|
break;
|
|
|
|
|
case @"B":
|
|
|
|
|
curveType = CurveType.Bezier;
|
|
|
|
|
break;
|
|
|
|
|
case @"L":
|
|
|
|
|
curveType = CurveType.Linear;
|
|
|
|
|
break;
|
|
|
|
|
case @"P":
|
|
|
|
|
curveType = CurveType.PerfectCurve;
|
|
|
|
|
break;
|
2016-11-17 20:29:35 +08:00
|
|
|
|
}
|
2017-03-14 18:25:04 +08:00
|
|
|
|
continue;
|
2016-11-17 20:29:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-14 18:25:04 +08:00
|
|
|
|
string[] temp = t.Split(':');
|
|
|
|
|
Vector2 v = new Vector2(
|
|
|
|
|
(int)Convert.ToDouble(temp[0], CultureInfo.InvariantCulture),
|
|
|
|
|
(int)Convert.ToDouble(temp[1], CultureInfo.InvariantCulture)
|
|
|
|
|
);
|
|
|
|
|
points.Add(v);
|
|
|
|
|
}
|
2016-11-17 20:29:35 +08:00
|
|
|
|
|
2017-03-14 18:25:04 +08:00
|
|
|
|
int repeatCount = Convert.ToInt32(split[6], CultureInfo.InvariantCulture);
|
2016-11-17 20:29:35 +08:00
|
|
|
|
|
2017-03-14 18:25:04 +08:00
|
|
|
|
if (repeatCount > 9000)
|
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(repeatCount), @"Repeat count is way too high");
|
2016-11-17 20:29:35 +08:00
|
|
|
|
|
2017-03-14 18:25:04 +08:00
|
|
|
|
if (split.Length > 7)
|
|
|
|
|
length = Convert.ToDouble(split[7], CultureInfo.InvariantCulture);
|
|
|
|
|
|
|
|
|
|
result = new LegacySlider
|
|
|
|
|
{
|
|
|
|
|
ControlPoints = points,
|
|
|
|
|
Distance = length,
|
|
|
|
|
CurveType = curveType,
|
|
|
|
|
RepeatCount = repeatCount,
|
|
|
|
|
Position = new Vector2(int.Parse(split[0]), int.Parse(split[1])),
|
|
|
|
|
NewCombo = combo
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-03-15 18:39:40 +08:00
|
|
|
|
else if ((type & LegacyHitObjectType.Spinner) > 0)
|
2017-03-14 18:25:04 +08:00
|
|
|
|
{
|
|
|
|
|
result = new LegacySpinner
|
|
|
|
|
{
|
|
|
|
|
EndTime = Convert.ToDouble(split[5], CultureInfo.InvariantCulture)
|
|
|
|
|
};
|
2016-11-14 21:03:39 +08:00
|
|
|
|
}
|
2017-03-15 18:39:40 +08:00
|
|
|
|
else if ((type & LegacyHitObjectType.Hold) > 0)
|
2017-03-14 18:25:04 +08:00
|
|
|
|
{
|
|
|
|
|
// Note: Hold is generated by BMS converts
|
|
|
|
|
result = new LegacyHold
|
|
|
|
|
{
|
|
|
|
|
Position = new Vector2(int.Parse(split[0]), int.Parse(split[1])),
|
|
|
|
|
NewCombo = combo
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
throw new InvalidOperationException($@"Unknown hit object type {type}");
|
|
|
|
|
|
2017-02-14 17:55:54 +08:00
|
|
|
|
result.StartTime = Convert.ToDouble(split[2], CultureInfo.InvariantCulture);
|
2017-02-14 17:40:37 +08:00
|
|
|
|
result.Sample = new HitSampleInfo
|
|
|
|
|
{
|
2016-12-08 19:00:24 +08:00
|
|
|
|
Type = (SampleType)int.Parse(split[4]),
|
2016-12-08 18:54:22 +08:00
|
|
|
|
Set = SampleSet.Soft,
|
|
|
|
|
};
|
2017-03-13 18:15:25 +08:00
|
|
|
|
|
2016-11-14 21:03:39 +08:00
|
|
|
|
// TODO: "addition" field
|
2017-03-13 18:15:25 +08:00
|
|
|
|
|
2016-11-14 21:03:39 +08:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|