mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 20:17:27 +08:00
50 lines
1.6 KiB
C#
50 lines
1.6 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osuTK;
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
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)
|
|
{
|
|
return new ConvertHit();
|
|
}
|
|
|
|
protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, Vector2[] controlPoints, double length, PathType pathType, int repeatCount, List<List<SampleInfo>> nodeSamples)
|
|
{
|
|
return new ConvertSlider
|
|
{
|
|
Path = new SliderPath(pathType, controlPoints, length),
|
|
NodeSamples = nodeSamples,
|
|
RepeatCount = repeatCount
|
|
};
|
|
}
|
|
|
|
protected override HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double endTime)
|
|
{
|
|
return new ConvertSpinner
|
|
{
|
|
EndTime = endTime
|
|
};
|
|
}
|
|
|
|
protected override HitObject CreateHold(Vector2 position, bool newCombo, int comboOffset, double endTime)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|