1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:47:18 +08:00
osu-lazer/osu.Game/Rulesets/Objects/Legacy/Catch/ConvertHitObjectParser.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
2.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 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
2018-11-20 16:51:59 +09:00
using osuTK;
using osu.Game.Audio;
2017-04-18 09:13:36 +09:00
using System.Collections.Generic;
2018-04-13 18:19:50 +09:00
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Objects.Legacy.Catch
{
2017-04-18 09:13:36 +09:00
/// <summary>
/// A HitObjectParser to parse legacy osu!catch Beatmaps.
/// </summary>
public class ConvertHitObjectParser : Legacy.ConvertHitObjectParser
{
public ConvertHitObjectParser(double offset, int formatVersion)
: base(offset, formatVersion)
{
}
2018-08-17 09:16:28 +09:00
private bool forceNewCombo;
private int extraComboOffset;
protected override HitObject CreateHit(Vector2 position, bool newCombo, int comboOffset)
{
2018-08-17 09:16:28 +09:00
newCombo |= forceNewCombo;
comboOffset += extraComboOffset;
forceNewCombo = false;
extraComboOffset = 0;
return new ConvertHit
{
Position = position,
NewCombo = newCombo,
2018-08-15 11:47:31 +09:00
ComboOffset = comboOffset
};
}
2018-04-13 18:19:50 +09:00
protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, PathControlPoint[] controlPoints, double? length, int repeatCount,
IList<IList<HitSampleInfo>> nodeSamples)
{
2018-08-17 09:16:28 +09:00
newCombo |= forceNewCombo;
comboOffset += extraComboOffset;
forceNewCombo = false;
extraComboOffset = 0;
return new ConvertSlider
{
Position = position,
NewCombo = FirstObject || newCombo,
2018-08-15 11:47:31 +09:00
ComboOffset = comboOffset,
Path = new SliderPath(controlPoints, length),
NodeSamples = nodeSamples,
RepeatCount = repeatCount
};
}
2018-04-13 18:19:50 +09:00
2020-05-27 12:37:44 +09:00
protected override HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double duration)
{
2018-08-17 13:31:12 +09:00
// Convert spinners don't create the new combo themselves, but force the next non-spinner hitobject to create a new combo
// Their combo offset is still added to that next hitobject's combo index
2018-08-17 09:16:28 +09:00
forceNewCombo |= FormatVersion <= 8 || newCombo;
extraComboOffset += comboOffset;
return new ConvertSpinner
{
2020-05-27 12:37:44 +09:00
Duration = duration
};
}
2018-04-13 18:19:50 +09:00
2020-05-27 12:37:44 +09:00
protected override HitObject CreateHold(Vector2 position, bool newCombo, int comboOffset, double duration)
2017-05-12 16:35:57 +09:00
{
return null;
}
}
}