1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00
osu-lazer/osu.Game/Rulesets/Objects/Legacy/Osu/ConvertHitObjectParser.cs

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 17:19:50 +08:00
using System;
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.Osu
{
/// <summary>
/// A HitObjectParser to parse legacy osu! Beatmaps.
/// </summary>
public class ConvertHitObjectParser : Legacy.ConvertHitObjectParser
{
public ConvertHitObjectParser(double offset, int formatVersion)
: base(offset, formatVersion)
{
}
2018-08-17 08:16:28 +08:00
private bool forceNewCombo;
private int extraComboOffset;
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
{
Position = position,
NewCombo = FirstObject || newCombo,
2018-08-15 10:47:31 +08:00
ComboOffset = comboOffset
2018-04-13 17:19:50 +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
{
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
{
Position = position,
NewCombo = FirstObject || newCombo,
2018-08-15 10:47:31 +08:00
ComboOffset = comboOffset,
Path = new SliderPath(pathType, controlPoints, Math.Max(0, length)),
NodeSamples = nodeSamples,
2018-04-13 17:19:50 +08:00
RepeatCount = repeatCount
};
}
protected override HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double endTime)
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
{
Position = position,
2018-08-17 08:16:28 +08:00
EndTime = endTime
2018-04-13 17:19:50 +08:00
};
}
protected override HitObject CreateHold(Vector2 position, bool newCombo, int comboOffset, double endTime)
2018-04-13 17:19:50 +08:00
{
return null;
}
}
}