mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 07:27:25 +08:00
29daabb40a
Now matches timeline colours (based on timing point).
86 lines
3.2 KiB
C#
86 lines
3.2 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.Shapes;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Edit.Compose.Components
|
|
{
|
|
public abstract class CircularDistanceSnapGrid : DistanceSnapGrid
|
|
{
|
|
protected CircularDistanceSnapGrid(Vector2 startPosition, double startTime, double? endTime = null)
|
|
: base(startPosition, startTime, endTime)
|
|
{
|
|
}
|
|
|
|
protected override void CreateContent()
|
|
{
|
|
const float crosshair_thickness = 1;
|
|
const float crosshair_max_size = 10;
|
|
|
|
AddRangeInternal(new[]
|
|
{
|
|
new Box
|
|
{
|
|
Origin = Anchor.Centre,
|
|
Position = StartPosition,
|
|
Width = crosshair_thickness,
|
|
EdgeSmoothness = new Vector2(1),
|
|
Height = Math.Min(crosshair_max_size, DistanceSpacing * 2),
|
|
},
|
|
new Box
|
|
{
|
|
Origin = Anchor.Centre,
|
|
Position = StartPosition,
|
|
EdgeSmoothness = new Vector2(1),
|
|
Width = Math.Min(crosshair_max_size, DistanceSpacing * 2),
|
|
Height = crosshair_thickness,
|
|
}
|
|
});
|
|
|
|
float dx = Math.Max(StartPosition.X, DrawWidth - StartPosition.X);
|
|
float dy = Math.Max(StartPosition.Y, DrawHeight - StartPosition.Y);
|
|
float maxDistance = new Vector2(dx, dy).Length;
|
|
int requiredCircles = Math.Min(MaxIntervals, (int)(maxDistance / DistanceSpacing));
|
|
|
|
for (int i = 0; i < requiredCircles; i++)
|
|
{
|
|
float radius = (i + 1) * DistanceSpacing * 2;
|
|
|
|
AddInternal(new CircularProgress
|
|
{
|
|
Origin = Anchor.Centre,
|
|
Position = StartPosition,
|
|
Current = { Value = 1 },
|
|
Size = new Vector2(radius),
|
|
InnerRadius = 4 * 1f / radius,
|
|
Colour = GetColourForIndexFromPlacement(i)
|
|
});
|
|
}
|
|
}
|
|
|
|
public override (Vector2 position, double time) GetSnappedPosition(Vector2 position)
|
|
{
|
|
if (MaxIntervals == 0)
|
|
return (StartPosition, StartTime);
|
|
|
|
Vector2 direction = position - StartPosition;
|
|
if (direction == Vector2.Zero)
|
|
direction = new Vector2(0.001f, 0.001f);
|
|
|
|
float distance = direction.Length;
|
|
|
|
float radius = DistanceSpacing;
|
|
int radialCount = Math.Clamp((int)MathF.Round(distance / radius), 1, MaxIntervals);
|
|
|
|
Vector2 normalisedDirection = direction * new Vector2(1f / distance);
|
|
Vector2 snappedPosition = StartPosition + normalisedDirection * radialCount * radius;
|
|
|
|
return (snappedPosition, StartTime + SnapProvider.GetSnappedDurationFromDistance(StartTime, (snappedPosition - StartPosition).Length));
|
|
}
|
|
}
|
|
}
|