Skip to content

Flipping a slider can change curve type of PerfectCurve control points to Bezier #19824

Closed
@OliBomby

Description

@OliBomby

Type

Game behaviour

Bug description

When editing a beatmap, flipping a PerfectCurve slider may change the curve type of that slider to Bezier. It's not just flipping a slider that can produce this behaviour, rotating, reversing, and possibly more operations can do this. I've done some investigation as to why this happens.

The code which flips the position of the slider control points moves the control points one by one.

foreach (var point in slider.Path.ControlPoints)
{
point.Position = new Vector2(
(direction == Direction.Horizontal ? -1 : 1) * point.Position.X,
(direction == Direction.Vertical ? -1 : 1) * point.Position.Y
);
}

Each time an anchor is moved, the path is invalidated and the PathControlPointPiece gets notified and calls updatePathType

RectangleF boundingBox = PathApproximator.CircularArcBoundingBox(points);
if (boundingBox.Width >= 640 || boundingBox.Height >= 480)
ControlPoint.Type = PathType.Bezier;

If not all control points have been moved yet and they happen to be in an unfortunate position, then we can get an invalid perfect curve which gets corrected to a bezier.

Screenshots or videos

osu._hVcl7UwaMT.mp4

Version

latest master branch 18/8/2022

Logs

runtime.log

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions