1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 23:47:25 +08:00
osu-lazer/osu.Game/Rulesets/Objects/Legacy/Catch/ConvertHitObjectParser.cs

64 lines
2.2 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 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;
2018-04-13 17:19:50 +08:00
using osu.Game.Audio;
using System.Collections.Generic;
namespace osu.Game.Rulesets.Objects.Legacy.Catch
{
/// <summary>
/// A HitObjectParser to parse legacy osu!catch Beatmaps.
/// </summary>
public class ConvertHitObjectParser : Legacy.ConvertHitObjectParser
{
private ConvertHitObject lastObject;
public ConvertHitObjectParser(double offset, int formatVersion)
: base(offset, formatVersion)
{
}
protected override HitObject CreateHit(Vector2 position, bool newCombo, int comboOffset)
2018-04-13 17:19:50 +08:00
{
return lastObject = new ConvertHit
2018-04-13 17:19:50 +08:00
{
Position = position,
NewCombo = FirstObject || lastObject is ConvertSpinner || newCombo,
ComboOffset = newCombo ? comboOffset : 0
2018-04-13 17:19:50 +08:00
};
}
protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, PathControlPoint[] controlPoints, double? length, int repeatCount,
IList<IList<HitSampleInfo>> nodeSamples)
2018-04-13 17:19:50 +08:00
{
return lastObject = new ConvertSlider
2018-04-13 17:19:50 +08:00
{
Position = position,
NewCombo = FirstObject || lastObject is ConvertSpinner || newCombo,
ComboOffset = newCombo ? comboOffset : 0,
Path = new SliderPath(controlPoints, length),
NodeSamples = nodeSamples,
2018-04-13 17:19:50 +08:00
RepeatCount = repeatCount
};
}
2020-05-27 11:37:44 +08:00
protected override HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double duration)
2018-04-13 17:19:50 +08:00
{
return lastObject = new ConvertSpinner
2018-04-13 17:19:50 +08:00
{
Duration = duration,
NewCombo = newCombo
// Spinners cannot have combo offset.
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)
2018-04-13 17:19:50 +08:00
{
return lastObject = null;
2018-04-13 17:19:50 +08:00
}
}
}