// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using OpenTK; using osu.Game.Rulesets.Objects.Types; using System.Collections.Generic; using osu.Game.Audio; namespace osu.Game.Rulesets.Objects.Legacy.Osu { /// /// A HitObjectParser to parse legacy osu! Beatmaps. /// public class ConvertHitObjectParser : Legacy.ConvertHitObjectParser { public ConvertHitObjectParser(double offset, int formatVersion) : base(offset, formatVersion) { } private bool forceNewCombo; private int extraComboOffset; protected override HitObject CreateHit(Vector2 position, bool newCombo, int comboOffset) { newCombo |= forceNewCombo; comboOffset += extraComboOffset; forceNewCombo = false; extraComboOffset = 0; return new ConvertHit { Position = position, NewCombo = FirstObject || newCombo, ComboOffset = comboOffset }; } protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, Vector2[] controlPoints, double length, PathType pathType, int repeatCount, List> nodeSamples) { newCombo |= forceNewCombo; comboOffset += extraComboOffset; forceNewCombo = false; extraComboOffset = 0; return new ConvertSlider { Position = position, NewCombo = FirstObject || newCombo, ComboOffset = comboOffset, ControlPoints = controlPoints, Distance = Math.Max(0, length), PathType = pathType, NodeSamples = nodeSamples, RepeatCount = repeatCount }; } protected override HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double endTime) { // 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 forceNewCombo |= FormatVersion <= 8 || newCombo; extraComboOffset += comboOffset; return new ConvertSpinner { Position = position, EndTime = endTime }; } protected override HitObject CreateHold(Vector2 position, bool newCombo, int comboOffset, double endTime) { return null; } } }