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
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2017-04-17 16:23:11 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-12-25 14:35:28 +08:00
|
|
|
|
using osu.Game.Audio;
|
2018-04-13 17:19:50 +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
|
|
|
|
{
|
2018-08-15 09:24:56 +08:00
|
|
|
|
public ConvertHitObjectParser(double offset, int formatVersion)
|
|
|
|
|
: base(offset, formatVersion)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-15 09:48:42 +08:00
|
|
|
|
protected override HitObject CreateHit(Vector2 position, bool newCombo, int comboOffset)
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
2018-08-15 09:58:59 +08:00
|
|
|
|
return new ConvertHit();
|
2017-04-17 16:23:11 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-05 18:53:31 +08:00
|
|
|
|
protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, PathControlPoint[] controlPoints, double? length, int repeatCount,
|
2021-10-23 16:59:07 +08:00
|
|
|
|
IList<IList<HitSampleInfo>> nodeSamples)
|
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
|
|
|
|
{
|
2019-12-05 18:53:31 +08:00
|
|
|
|
Path = new SliderPath(controlPoints, length),
|
2018-10-16 16:10:24 +08:00
|
|
|
|
NodeSamples = nodeSamples,
|
2017-04-21 19:29:27 +08:00
|
|
|
|
RepeatCount = repeatCount
|
2017-04-17 16:23:11 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-05-27 11:37:44 +08:00
|
|
|
|
protected override HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double duration)
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
2017-04-22 20:33:11 +08:00
|
|
|
|
return new ConvertSpinner
|
2017-04-17 16:23:11 +08:00
|
|
|
|
{
|
2020-05-27 11:37:44 +08:00
|
|
|
|
Duration = duration
|
2017-04-17 16:23:11 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-05-27 11:37:44 +08:00
|
|
|
|
protected override HitObject CreateHold(Vector2 position, bool newCombo, int comboOffset, double duration)
|
2017-05-12 15:35:57 +08:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-04-17 16:23:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|