1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 01:07:25 +08:00
osu-lazer/osu.Game/Rulesets/Objects/Legacy/Osu/ConvertHitObjectParser.cs

63 lines
2.0 KiB
C#
Raw Normal View History

2018-04-13 17:19:50 +08:00
// 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
{
public ConvertHitObjectParser(double offset, int formatVersion)
: base(offset, formatVersion)
{
}
protected override HitObject CreateHit(Vector2 position, bool newCombo, int comboOffset)
2018-04-13 17:19:50 +08:00
{
return new ConvertHit
{
Position = position,
NewCombo = 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, List<Vector2> controlPoints, double length, CurveType curveType, int repeatCount, List<List<SampleInfo>> repeatSamples)
2018-04-13 17:19:50 +08:00
{
return new ConvertSlider
{
Position = position,
NewCombo = newCombo,
2018-08-15 10:47:31 +08:00
ComboOffset = comboOffset,
2018-04-13 17:19:50 +08:00
ControlPoints = controlPoints,
Distance = Math.Max(0, length),
CurveType = curveType,
RepeatSamples = repeatSamples,
RepeatCount = repeatCount
};
}
protected override HitObject CreateSpinner(Vector2 position, bool newCombo, int comboOffset, double endTime)
2018-04-13 17:19:50 +08:00
{
return new ConvertSpinner
{
Position = position,
2018-08-15 10:47:31 +08:00
EndTime = endTime,
ComboOffset = comboOffset
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;
}
}
}