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.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Beatmaps
|
|
|
|
|
{
|
2018-08-17 09:04:00 +08:00
|
|
|
|
public class OsuBeatmapConverter : BeatmapConverter<OsuHitObject>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-04-19 21:04:12 +08:00
|
|
|
|
public OsuBeatmapConverter(IBeatmap beatmap)
|
|
|
|
|
: base(beatmap)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected override IEnumerable<Type> ValidConversionTypes { get; } = new[] { typeof(IHasPosition) };
|
|
|
|
|
|
2018-04-19 19:44:38 +08:00
|
|
|
|
protected override IEnumerable<OsuHitObject> ConvertHitObject(HitObject original, IBeatmap beatmap)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
var curveData = original as IHasCurve;
|
|
|
|
|
var endTimeData = original as IHasEndTime;
|
|
|
|
|
var positionData = original as IHasPosition;
|
|
|
|
|
var comboData = original as IHasCombo;
|
2018-06-13 21:20:34 +08:00
|
|
|
|
var legacyOffset = original as IHasLegacyLastTickOffset;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
if (curveData != null)
|
|
|
|
|
{
|
|
|
|
|
yield return new Slider
|
|
|
|
|
{
|
|
|
|
|
StartTime = original.StartTime,
|
|
|
|
|
Samples = original.Samples,
|
2018-11-01 14:38:19 +08:00
|
|
|
|
Path = curveData.Path,
|
2018-10-16 16:10:24 +08:00
|
|
|
|
NodeSamples = curveData.NodeSamples,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
RepeatCount = curveData.RepeatCount,
|
|
|
|
|
Position = positionData?.Position ?? Vector2.Zero,
|
2018-06-13 21:20:34 +08:00
|
|
|
|
NewCombo = comboData?.NewCombo ?? false,
|
2018-08-15 10:47:31 +08:00
|
|
|
|
ComboOffset = comboData?.ComboOffset ?? 0,
|
2018-10-15 11:25:42 +08:00
|
|
|
|
LegacyLastTickOffset = legacyOffset?.LegacyLastTickOffset,
|
2018-10-20 22:06:48 +08:00
|
|
|
|
// prior to v8, speed multipliers don't adjust for how many ticks are generated over the same distance.
|
2018-10-20 22:10:33 +08:00
|
|
|
|
// this results in more (or less) ticks being generated in <v8 maps for the same time duration.
|
2018-10-15 11:25:42 +08:00
|
|
|
|
TickDistanceMultiplier = beatmap.BeatmapInfo.BeatmapVersion < 8 ? 1f / beatmap.ControlPointInfo.DifficultyPointAt(original.StartTime).SpeedMultiplier : 1
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
else if (endTimeData != null)
|
|
|
|
|
{
|
|
|
|
|
yield return new Spinner
|
|
|
|
|
{
|
|
|
|
|
StartTime = original.StartTime,
|
|
|
|
|
Samples = original.Samples,
|
|
|
|
|
EndTime = endTimeData.EndTime,
|
2018-08-15 10:04:31 +08:00
|
|
|
|
Position = positionData?.Position ?? OsuPlayfield.BASE_SIZE / 2,
|
|
|
|
|
NewCombo = comboData?.NewCombo ?? false,
|
2018-08-15 10:47:31 +08:00
|
|
|
|
ComboOffset = comboData?.ComboOffset ?? 0,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
yield return new HitCircle
|
|
|
|
|
{
|
|
|
|
|
StartTime = original.StartTime,
|
|
|
|
|
Samples = original.Samples,
|
|
|
|
|
Position = positionData?.Position ?? Vector2.Zero,
|
2018-08-15 10:04:31 +08:00
|
|
|
|
NewCombo = comboData?.NewCombo ?? false,
|
2018-08-15 10:47:31 +08:00
|
|
|
|
ComboOffset = comboData?.ComboOffset ?? 0,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-05-07 09:51:17 +08:00
|
|
|
|
|
|
|
|
|
protected override Beatmap<OsuHitObject> CreateBeatmap() => new OsuBeatmap();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|