2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2017-03-11 15:34:21 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
2017-03-11 15:34:21 +00:00
|
|
|
|
using System.Collections.Generic;
|
2019-12-23 08:44:18 +00:00
|
|
|
|
using System.Linq;
|
2020-09-17 08:40:05 +00:00
|
|
|
|
using System.Threading;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2019-11-12 10:16:51 +00:00
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
2023-12-05 06:09:55 +00:00
|
|
|
|
using osu.Game.Beatmaps.Legacy;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Beatmaps
|
2017-03-11 15:34:21 +00:00
|
|
|
|
{
|
2018-01-10 06:38:12 +00:00
|
|
|
|
public class CatchBeatmapConverter : BeatmapConverter<CatchHitObject>
|
2017-03-11 15:34:21 +00:00
|
|
|
|
{
|
2019-12-24 07:02:16 +00:00
|
|
|
|
public CatchBeatmapConverter(IBeatmap beatmap, Ruleset ruleset)
|
|
|
|
|
: base(beatmap, ruleset)
|
2018-04-19 13:04:12 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2018-05-07 02:23:29 +00:00
|
|
|
|
|
2019-12-23 08:44:18 +00:00
|
|
|
|
public override bool CanConvert() => Beatmap.HitObjects.All(h => h is IHasXPosition);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-09-17 08:40:05 +00:00
|
|
|
|
protected override IEnumerable<CatchHitObject> ConvertHitObject(HitObject obj, IBeatmap beatmap, CancellationToken cancellationToken)
|
2017-03-11 15:34:21 +00:00
|
|
|
|
{
|
2021-07-14 05:38:38 +00:00
|
|
|
|
var xPositionData = obj as IHasXPosition;
|
|
|
|
|
var yPositionData = obj as IHasYPosition;
|
2017-10-10 07:34:01 +00:00
|
|
|
|
var comboData = obj as IHasCombo;
|
2023-04-30 17:20:42 +00:00
|
|
|
|
var sliderVelocityData = obj as IHasSliderVelocity;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-11-12 10:16:51 +00:00
|
|
|
|
switch (obj)
|
2017-10-10 07:34:01 +00:00
|
|
|
|
{
|
2020-05-26 08:44:47 +00:00
|
|
|
|
case IHasPathWithRepeats curveData:
|
2019-11-12 10:16:51 +00:00
|
|
|
|
return new JuiceStream
|
|
|
|
|
{
|
|
|
|
|
StartTime = obj.StartTime,
|
|
|
|
|
Samples = obj.Samples,
|
|
|
|
|
Path = curveData.Path,
|
|
|
|
|
NodeSamples = curveData.NodeSamples,
|
|
|
|
|
RepeatCount = curveData.RepeatCount,
|
2021-07-14 05:38:38 +00:00
|
|
|
|
X = xPositionData?.X ?? 0,
|
2019-11-12 10:16:51 +00:00
|
|
|
|
NewCombo = comboData?.NewCombo ?? false,
|
|
|
|
|
ComboOffset = comboData?.ComboOffset ?? 0,
|
2023-04-30 17:20:42 +00:00
|
|
|
|
LegacyConvertedY = yPositionData?.Y ?? CatchHitObject.DEFAULT_LEGACY_CONVERT_Y,
|
2023-12-05 06:09:55 +00:00
|
|
|
|
// 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 ? 1 : ((LegacyControlPointInfo)beatmap.ControlPointInfo).DifficultyPointAt(obj.StartTime).SliderVelocity,
|
2023-09-06 09:59:15 +00:00
|
|
|
|
SliderVelocityMultiplier = sliderVelocityData?.SliderVelocityMultiplier ?? 1
|
2019-11-12 10:16:51 +00:00
|
|
|
|
}.Yield();
|
|
|
|
|
|
2020-05-27 03:38:39 +00:00
|
|
|
|
case IHasDuration endTime:
|
2019-11-12 10:16:51 +00:00
|
|
|
|
return new BananaShower
|
|
|
|
|
{
|
|
|
|
|
StartTime = obj.StartTime,
|
|
|
|
|
Samples = obj.Samples,
|
|
|
|
|
Duration = endTime.Duration,
|
|
|
|
|
NewCombo = comboData?.NewCombo ?? false,
|
|
|
|
|
ComboOffset = comboData?.ComboOffset ?? 0,
|
|
|
|
|
}.Yield();
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return new Fruit
|
|
|
|
|
{
|
|
|
|
|
StartTime = obj.StartTime,
|
|
|
|
|
Samples = obj.Samples,
|
|
|
|
|
NewCombo = comboData?.NewCombo ?? false,
|
|
|
|
|
ComboOffset = comboData?.ComboOffset ?? 0,
|
2021-07-14 05:38:38 +00:00
|
|
|
|
X = xPositionData?.X ?? 0,
|
|
|
|
|
LegacyConvertedY = yPositionData?.Y ?? CatchHitObject.DEFAULT_LEGACY_CONVERT_Y
|
2019-11-12 10:16:51 +00:00
|
|
|
|
}.Yield();
|
2018-06-13 10:56:00 +00:00
|
|
|
|
}
|
2017-03-11 15:34:21 +00:00
|
|
|
|
}
|
2018-05-07 02:01:09 +00:00
|
|
|
|
|
|
|
|
|
protected override Beatmap<CatchHitObject> CreateBeatmap() => new CatchBeatmap();
|
2017-03-11 15:34:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|