mirror of
https://github.com/osukey/osukey.git
synced 2025-05-01 11:47:18 +09:00
59 lines
1.7 KiB
C#
59 lines
1.7 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
|
|
{
|
|
public class PathControlPointVisualiser : CompositeDrawable
|
|
{
|
|
public Action<Vector2[]> ControlPointsChanged;
|
|
|
|
internal Container<PathControlPointPiece> Pieces { get; }
|
|
|
|
private readonly Slider slider;
|
|
|
|
public PathControlPointVisualiser(Slider slider)
|
|
{
|
|
this.slider = slider;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
InternalChild = Pieces = new Container<PathControlPointPiece> { RelativeSizeAxes = Axes.Both };
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
while (slider.Path.ControlPoints.Length > Pieces.Count)
|
|
Pieces.Add(new PathControlPointPiece(slider, Pieces.Count) { ControlPointsChanged = c => ControlPointsChanged?.Invoke(c) });
|
|
while (slider.Path.ControlPoints.Length < Pieces.Count)
|
|
Pieces.Remove(Pieces[Pieces.Count - 1]);
|
|
}
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
{
|
|
bool anySelected = false;
|
|
|
|
foreach (var piece in Pieces)
|
|
{
|
|
if (piece.IsHovered)
|
|
{
|
|
piece.IsSelected.Value = true;
|
|
anySelected = true;
|
|
}
|
|
else
|
|
piece.IsSelected.Value = false;
|
|
}
|
|
|
|
return anySelected;
|
|
}
|
|
}
|
|
}
|