osu/osu.Game/Rulesets/Objects/Legacy/Taiko/ConvertHitObjectParser.cs

50 lines
1.6 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 09:19:50 +00:00
2018-11-20 07:51:59 +00:00
using osuTK;
2018-04-13 09:19:50 +00:00
using System.Collections.Generic;
using osu.Game.Audio;
namespace osu.Game.Rulesets.Objects.Legacy.Taiko
{
/// <summary>
/// A HitObjectParser to parse legacy osu!taiko Beatmaps.
/// </summary>
public class ConvertHitObjectParser : Legacy.ConvertHitObjectParser
{
public ConvertHitObjectParser(double offset, int formatVersion)
: base(offset, formatVersion)
{
}
protected override HitObject CreateHit(Vector2 position, bool newCombo, int comboOffset)
2018-04-13 09:19:50 +00:00
{
return new ConvertHit();
2018-04-13 09:19:50 +00:00
}
protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, PathControlPoint[] controlPoints, double? length, int repeatCount,
2019-11-08 05:04:57 +00:00
List<IList<HitSampleInfo>> nodeSamples)
2018-04-13 09:19:50 +00:00
{
return new ConvertSlider
{
Path = new SliderPath(controlPoints, length),
NodeSamples = nodeSamples,
2018-04-13 09:19:50 +00:00
RepeatCount = repeatCount
};
}
2020-05-27 03:37:44 +00:00
protected override HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double duration)
2018-04-13 09:19:50 +00:00
{
return new ConvertSpinner
{
2020-05-27 03:37:44 +00:00
Duration = duration
2018-04-13 09:19:50 +00:00
};
}
2020-05-27 03:37:44 +00:00
protected override HitObject CreateHold(Vector2 position, bool newCombo, int comboOffset, double duration)
2018-04-13 09:19:50 +00:00
{
return null;
}
}
}