2017-04-17 16:23:11 +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-04-21 15:18:00 +08:00
|
|
|
|
using osu.Game.Audio;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-04-17 16:23:11 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Objects.Legacy.Osu
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
2017-04-18 08:13:36 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A HitObjectParser to parse legacy osu! Beatmaps.
|
|
|
|
|
/// </summary>
|
2017-04-17 16:23:11 +08:00
|
|
|
|
internal class HitObjectParser : Legacy.HitObjectParser
|
|
|
|
|
{
|
|
|
|
|
protected override HitObject CreateHit(Vector2 position, bool newCombo)
|
|
|
|
|
{
|
|
|
|
|
return new Hit
|
|
|
|
|
{
|
|
|
|
|
Position = position,
|
|
|
|
|
NewCombo = newCombo,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-21 17:49:49 +08:00
|
|
|
|
protected override HitObject CreateSlider(Vector2 position, bool newCombo, List<Vector2> controlPoints, double length, CurveType curveType,
|
|
|
|
|
int repeatCount, List<SampleInfo> headSamples, List<SampleInfo> tailSamples, List<List<SampleInfo>> repeatSamples)
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
|
|
|
|
return new Slider
|
|
|
|
|
{
|
|
|
|
|
Position = position,
|
|
|
|
|
NewCombo = newCombo,
|
|
|
|
|
ControlPoints = controlPoints,
|
|
|
|
|
Distance = length,
|
|
|
|
|
CurveType = curveType,
|
2017-04-21 15:18:00 +08:00
|
|
|
|
RepeatCount = repeatCount,
|
2017-04-21 17:49:49 +08:00
|
|
|
|
HeadSamples = headSamples,
|
|
|
|
|
TailSamples = tailSamples,
|
2017-04-21 15:18:00 +08:00
|
|
|
|
RepeatSamples = repeatSamples
|
2017-04-17 16:23:11 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override HitObject CreateSpinner(Vector2 position, double endTime)
|
|
|
|
|
{
|
|
|
|
|
return new Spinner
|
|
|
|
|
{
|
|
|
|
|
Position = position,
|
|
|
|
|
EndTime = endTime
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|