2019-10-25 07:50:21 +00:00
// 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 osuTK ;
namespace osu.Game.Rulesets.Edit
{
2020-05-20 08:48:43 +00:00
public interface IPositionSnapProvider
2019-10-25 07:50:21 +00:00
{
2020-05-20 08:48:43 +00:00
/// <summary>
2020-11-24 08:14:39 +00:00
/// Given a position, find a valid time and position snap.
2020-05-20 08:48:43 +00:00
/// </summary>
2020-11-24 08:14:39 +00:00
/// <remarks>
/// This call should be equivalent to running <see cref="SnapScreenSpacePositionToValidPosition"/> with any additional logic that can be performed without the time immutability restriction.
/// </remarks>
2020-05-20 09:19:21 +00:00
/// <param name="screenSpacePosition">The screen-space position to be snapped.</param>
2020-05-20 08:48:43 +00:00
/// <returns>The time and position post-snapping.</returns>
2020-05-20 09:19:21 +00:00
SnapResult SnapScreenSpacePositionToValidTime ( Vector2 screenSpacePosition ) ;
2019-10-25 07:50:21 +00:00
2020-11-24 08:14:39 +00:00
/// <summary>
/// Given a position, find a value position snap, restricting time to its input value.
/// </summary>
/// <param name="screenSpacePosition">The screen-space position to be snapped.</param>
/// <returns>The position post-snapping. Time will always be null.</returns>
SnapResult SnapScreenSpacePositionToValidPosition ( Vector2 screenSpacePosition ) ;
2019-10-25 07:50:21 +00:00
}
}