// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Linq; using osu.Game.Rulesets.Objects.Types; using osuTK; #nullable enable namespace osu.Game.Rulesets.Objects { public static class SliderPathExtensions { /// /// Reverse the direction of this path. /// /// The . /// The positional offset of the resulting path. It should be added to the start position of this path. public static void Reverse(this SliderPath sliderPath, out Vector2 positionalOffset) { var points = sliderPath.ControlPoints.ToArray(); positionalOffset = points.Last().Position; sliderPath.ControlPoints.Clear(); PathType? lastType = null; for (var i = 0; i < points.Length; i++) { var p = points[i]; p.Position -= positionalOffset; // propagate types forwards to last null type if (i == points.Length - 1) p.Type = lastType; else if (p.Type != null) (p.Type, lastType) = (lastType, p.Type); sliderPath.ControlPoints.Insert(0, p); } } } }