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;
|
2019-12-23 16:44:18 +08:00
|
|
|
|
using System.Linq;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
2019-11-12 18:16:51 +08:00
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2019-12-24 15:02:16 +08:00
|
|
|
|
public OsuBeatmapConverter(IBeatmap beatmap, Ruleset ruleset)
|
|
|
|
|
: base(beatmap, ruleset)
|
2018-04-19 21:04:12 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-23 16:44:18 +08:00
|
|
|
|
public override bool CanConvert() => Beatmap.HitObjects.All(h => h is IHasPosition);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
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 positionData = original as IHasPosition;
|
|
|
|
|
var comboData = original as IHasCombo;
|
|
|
|
|
|
2019-11-12 18:16:51 +08:00
|
|
|
|
switch (original)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
|
case IHasCurve curveData:
|
|
|
|
|
return new Slider
|
|
|
|
|
{
|
|
|
|
|
StartTime = original.StartTime,
|
|
|
|
|
Samples = original.Samples,
|
|
|
|
|
Path = curveData.Path,
|
|
|
|
|
NodeSamples = curveData.NodeSamples,
|
|
|
|
|
RepeatCount = curveData.RepeatCount,
|
|
|
|
|
Position = positionData?.Position ?? Vector2.Zero,
|
|
|
|
|
NewCombo = comboData?.NewCombo ?? false,
|
|
|
|
|
ComboOffset = comboData?.ComboOffset ?? 0,
|
|
|
|
|
LegacyLastTickOffset = (original as IHasLegacyLastTickOffset)?.LegacyLastTickOffset,
|
|
|
|
|
// prior to v8, speed multipliers don't adjust for how many ticks are generated over the same distance.
|
|
|
|
|
// this results in more (or less) ticks being generated in <v8 maps for the same time duration.
|
|
|
|
|
TickDistanceMultiplier = beatmap.BeatmapInfo.BeatmapVersion < 8 ? 1f / beatmap.ControlPointInfo.DifficultyPointAt(original.StartTime).SpeedMultiplier : 1
|
|
|
|
|
}.Yield();
|
|
|
|
|
|
|
|
|
|
case IHasEndTime endTimeData:
|
|
|
|
|
return new Spinner
|
|
|
|
|
{
|
|
|
|
|
StartTime = original.StartTime,
|
|
|
|
|
Samples = original.Samples,
|
|
|
|
|
EndTime = endTimeData.EndTime,
|
|
|
|
|
Position = positionData?.Position ?? OsuPlayfield.BASE_SIZE / 2,
|
|
|
|
|
NewCombo = comboData?.NewCombo ?? false,
|
|
|
|
|
ComboOffset = comboData?.ComboOffset ?? 0,
|
|
|
|
|
}.Yield();
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return new HitCircle
|
|
|
|
|
{
|
|
|
|
|
StartTime = original.StartTime,
|
|
|
|
|
Samples = original.Samples,
|
|
|
|
|
Position = positionData?.Position ?? Vector2.Zero,
|
|
|
|
|
NewCombo = comboData?.NewCombo ?? false,
|
|
|
|
|
ComboOffset = comboData?.ComboOffset ?? 0,
|
|
|
|
|
}.Yield();
|
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
|
|
|
|
}
|
|
|
|
|
}
|