2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-04-17 16:23:11 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK;
|
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-12-25 14:35:28 +08:00
|
|
|
|
using osu.Game.Audio;
|
2017-04-17 16:23:11 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Objects.Legacy.Taiko
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
2017-04-18 08:13:36 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A HitObjectParser to parse legacy osu!taiko Beatmaps.
|
|
|
|
|
/// </summary>
|
2017-11-21 10:49:42 +08:00
|
|
|
|
public class ConvertHitObjectParser : Legacy.ConvertHitObjectParser
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
|
|
|
|
protected override HitObject CreateHit(Vector2 position, bool newCombo)
|
|
|
|
|
{
|
2017-04-22 20:33:11 +08:00
|
|
|
|
return new ConvertHit
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
|
|
|
|
NewCombo = newCombo,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-25 14:35:28 +08:00
|
|
|
|
protected override HitObject CreateSlider(Vector2 position, bool newCombo, List<Vector2> controlPoints, double length, CurveType curveType, int repeatCount, List<List<SampleInfo>> repeatSamples)
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
2017-04-22 20:33:11 +08:00
|
|
|
|
return new ConvertSlider
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
|
|
|
|
NewCombo = newCombo,
|
|
|
|
|
ControlPoints = controlPoints,
|
|
|
|
|
Distance = length,
|
|
|
|
|
CurveType = curveType,
|
2017-04-21 19:29:27 +08:00
|
|
|
|
RepeatSamples = repeatSamples,
|
|
|
|
|
RepeatCount = repeatCount
|
2017-04-17 16:23:11 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override HitObject CreateSpinner(Vector2 position, double endTime)
|
|
|
|
|
{
|
2017-04-22 20:33:11 +08:00
|
|
|
|
return new ConvertSpinner
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
|
|
|
|
EndTime = endTime
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-05-12 15:35:57 +08:00
|
|
|
|
|
|
|
|
|
protected override HitObject CreateHold(Vector2 position, bool newCombo, double endTime)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-04-17 16:23:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|