2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
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)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-08-15 09:58:59 +08:00
|
|
|
|
return new ConvertHit();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-05 15:32:27 +08:00
|
|
|
|
protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, Vector2[] controlPoints, double length, PathType pathType, int repeatCount, List<List<SampleInfo>> nodeSamples)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
return new ConvertSlider
|
|
|
|
|
{
|
2018-11-01 14:38:19 +08:00
|
|
|
|
Path = new SliderPath(pathType, controlPoints, length),
|
2018-10-16 16:10:24 +08:00
|
|
|
|
NodeSamples = nodeSamples,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
RepeatCount = repeatCount
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-15 09:48:42 +08:00
|
|
|
|
protected override HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double endTime)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
return new ConvertSpinner
|
|
|
|
|
{
|
|
|
|
|
EndTime = endTime
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-15 09:48:42 +08:00
|
|
|
|
protected override HitObject CreateHold(Vector2 position, bool newCombo, int comboOffset, double endTime)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|