2019-01-24 16:43:03 +08:00
|
|
|
|
// 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
|
|
|
|
|
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
|
|
|
|
|
{
|
2018-08-15 09:24:56 +08:00
|
|
|
|
public ConvertHitObjectParser(double offset, int formatVersion)
|
|
|
|
|
: base(offset, formatVersion)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-17 08:16:28 +08:00
|
|
|
|
private bool forceNewCombo;
|
|
|
|
|
private int extraComboOffset;
|
|
|
|
|
|
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-17 08:16:28 +08:00
|
|
|
|
newCombo |= forceNewCombo;
|
|
|
|
|
comboOffset += extraComboOffset;
|
|
|
|
|
|
|
|
|
|
forceNewCombo = false;
|
|
|
|
|
extraComboOffset = 0;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return new ConvertHit
|
|
|
|
|
{
|
|
|
|
|
X = position.X,
|
|
|
|
|
NewCombo = newCombo,
|
2018-08-15 10:47:31 +08:00
|
|
|
|
ComboOffset = comboOffset
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 18:53:31 +08:00
|
|
|
|
protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, PathControlPoint[] controlPoints, double? length, int repeatCount,
|
2019-11-08 13:04:57 +08:00
|
|
|
|
List<IList<HitSampleInfo>> nodeSamples)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-08-17 08:16:28 +08:00
|
|
|
|
newCombo |= forceNewCombo;
|
|
|
|
|
comboOffset += extraComboOffset;
|
|
|
|
|
|
|
|
|
|
forceNewCombo = false;
|
|
|
|
|
extraComboOffset = 0;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return new ConvertSlider
|
|
|
|
|
{
|
|
|
|
|
X = position.X,
|
2018-08-15 10:47:54 +08:00
|
|
|
|
NewCombo = FirstObject || newCombo,
|
2018-08-15 10:47:31 +08:00
|
|
|
|
ComboOffset = comboOffset,
|
2019-12-05 18:53:31 +08:00
|
|
|
|
Path = new SliderPath(controlPoints, length),
|
2018-10-16 16:10:24 +08:00
|
|
|
|
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
|
|
|
|
{
|
2018-08-17 12:31:12 +08: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 08:16:28 +08:00
|
|
|
|
forceNewCombo |= FormatVersion <= 8 || newCombo;
|
|
|
|
|
extraComboOffset += comboOffset;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return new ConvertSpinner
|
|
|
|
|
{
|
2020-05-27 11:37:44 +08:00
|
|
|
|
Duration = duration
|
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 null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|