1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Beatmaps/CatchBeatmapConverter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
2.9 KiB
C#
Raw Normal View History

// 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
2017-03-11 23:34:21 +08:00
using osu.Game.Beatmaps;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Catch.Objects;
2017-03-11 23:34:21 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Threading;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Objects;
2019-11-12 18:16:51 +08:00
using osu.Framework.Extensions.IEnumerableExtensions;
2018-04-13 17:19:50 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Catch.Beatmaps
2017-03-11 23:34:21 +08:00
{
public class CatchBeatmapConverter : BeatmapConverter<CatchHitObject>
2017-03-11 23:34:21 +08:00
{
public CatchBeatmapConverter(IBeatmap beatmap, Ruleset ruleset)
: base(beatmap, ruleset)
{
}
2018-05-07 10:23:29 +08:00
public override bool CanConvert() => Beatmap.HitObjects.All(h => h is IHasXPosition);
2018-04-13 17:19:50 +08:00
protected override IEnumerable<CatchHitObject> ConvertHitObject(HitObject obj, IBeatmap beatmap, CancellationToken cancellationToken)
2017-03-11 23:34:21 +08:00
{
var xPositionData = obj as IHasXPosition;
var yPositionData = obj as IHasYPosition;
2017-10-10 15:34:01 +08:00
var comboData = obj as IHasCombo;
2018-04-13 17:19:50 +08:00
2019-11-12 18:16:51 +08:00
switch (obj)
2017-10-10 15:34:01 +08:00
{
case IHasPathWithRepeats curveData:
2019-11-12 18:16:51 +08:00
return new JuiceStream
{
StartTime = obj.StartTime,
Samples = obj.Samples,
Path = curveData.Path,
NodeSamples = curveData.NodeSamples,
RepeatCount = curveData.RepeatCount,
X = xPositionData?.X ?? 0,
2019-11-12 18:16:51 +08:00
NewCombo = comboData?.NewCombo ?? false,
ComboOffset = comboData?.ComboOffset ?? 0,
LegacyLastTickOffset = (obj as IHasLegacyLastTickOffset)?.LegacyLastTickOffset ?? 0,
LegacyConvertedY = yPositionData?.Y ?? CatchHitObject.DEFAULT_LEGACY_CONVERT_Y
2019-11-12 18:16:51 +08:00
}.Yield();
2020-05-27 11:38:39 +08:00
case IHasDuration endTime:
2019-11-12 18:16:51 +08: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,
X = xPositionData?.X ?? 0,
LegacyConvertedY = yPositionData?.Y ?? CatchHitObject.DEFAULT_LEGACY_CONVERT_Y
2019-11-12 18:16:51 +08:00
}.Yield();
}
2017-03-11 23:34:21 +08:00
}
2018-05-07 10:01:09 +08:00
protected override Beatmap<CatchHitObject> CreateBeatmap() => new CatchBeatmap();
2017-03-11 23:34:21 +08:00
}
}