mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 01:07:24 +08:00
5b4fef0180
Resolves ppy/osu#1988.
55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// 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
|
|
{
|
|
/// <summary>
|
|
/// A HitObjectParser to parse legacy osu! Beatmaps.
|
|
/// </summary>
|
|
public class ConvertHitObjectParser : Legacy.ConvertHitObjectParser
|
|
{
|
|
protected override HitObject CreateHit(Vector2 position, bool newCombo)
|
|
{
|
|
return new ConvertHit
|
|
{
|
|
Position = position,
|
|
NewCombo = newCombo,
|
|
};
|
|
}
|
|
|
|
protected override HitObject CreateSlider(Vector2 position, bool newCombo, List<Vector2> controlPoints, double length, CurveType curveType, int repeatCount, List<List<SampleInfo>> repeatSamples)
|
|
{
|
|
return new ConvertSlider
|
|
{
|
|
Position = position,
|
|
NewCombo = newCombo,
|
|
ControlPoints = controlPoints,
|
|
Distance = Math.Max(0, length),
|
|
CurveType = curveType,
|
|
RepeatSamples = repeatSamples,
|
|
RepeatCount = repeatCount
|
|
};
|
|
}
|
|
|
|
protected override HitObject CreateSpinner(Vector2 position, double endTime)
|
|
{
|
|
return new ConvertSpinner
|
|
{
|
|
Position = position,
|
|
EndTime = endTime
|
|
};
|
|
}
|
|
|
|
protected override HitObject CreateHold(Vector2 position, bool newCombo, double endTime)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|