1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 02:07:24 +08:00
osu-lazer/osu.Game/Rulesets/UI/Scrolling/Algorithms/IScrollAlgorithm.cs

55 lines
2.8 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2018-11-02 18:52:40 +08:00
namespace osu.Game.Rulesets.UI.Scrolling.Algorithms
2018-04-13 17:19:50 +08:00
{
public interface IScrollAlgorithm
2018-04-13 17:19:50 +08:00
{
2018-10-30 17:14:11 +08:00
/// <summary>
/// Given a point in time, computes the time at which it enters the time range.
2018-10-30 17:14:11 +08:00
/// </summary>
/// <remarks>
/// E.g. For a constant time range of 5000ms, the time at which t=7000ms enters the time range is 2000ms.
2018-10-30 17:14:11 +08:00
/// </remarks>
/// <param name="time">The point in time.</param>
/// <param name="timeRange">The amount of visible time.</param>
2019-11-17 20:49:36 +08:00
/// <returns>The time at which <paramref name="time"/> enters <paramref name="timeRange"/>.</returns>
double GetDisplayStartTime(double time, double timeRange);
2018-10-30 17:14:11 +08:00
/// <summary>
/// Computes the spatial length within a start and end time.
/// </summary>
/// <param name="startTime">The start time.</param>
/// <param name="endTime">The end time.</param>
/// <param name="timeRange">The amount of visible time.</param>
2019-11-17 20:49:36 +08:00
/// <param name="scrollLength">The absolute spatial length through <paramref name="timeRange"/>.</param>
2018-10-30 17:14:11 +08:00
/// <returns>The absolute spatial length.</returns>
float GetLength(double startTime, double endTime, double timeRange, float scrollLength);
2018-10-30 17:14:11 +08:00
/// <summary>
/// Given the current time, computes the spatial position of a point in time.
/// </summary>
/// <param name="time">The time to compute the spatial position of.</param>
/// <param name="currentTime">The current time.</param>
/// <param name="timeRange">The amount of visible time.</param>
2019-11-17 20:49:36 +08:00
/// <param name="scrollLength">The absolute spatial length through <paramref name="timeRange"/>.</param>
2018-10-30 17:14:11 +08:00
/// <returns>The absolute spatial position.</returns>
float PositionAt(double time, double currentTime, double timeRange, float scrollLength);
2018-11-09 18:55:48 +08:00
/// <summary>
/// Computes the time which brings a point to a provided spatial position given the current time.
/// </summary>
/// <param name="position">The absolute spatial position.</param>
/// <param name="currentTime">The current time.</param>
/// <param name="timeRange">The amount of visible time.</param>
2019-11-17 20:49:36 +08:00
/// <param name="scrollLength">The absolute spatial length through <paramref name="timeRange"/>.</param>
2019-04-25 16:36:17 +08:00
/// <returns>The time at which <see cref="PositionAt(double,double,double,float)"/> == <paramref name="position"/>.</returns>
2018-11-09 18:55:48 +08:00
double TimeAt(float position, double currentTime, double timeRange, float scrollLength);
/// <summary>
/// Resets this <see cref="IScrollAlgorithm"/> to a default state.
/// </summary>
void Reset();
2018-04-13 17:19:50 +08:00
}
}