osu/osu.Game/Rulesets/UI/Scrolling/Algorithms/ConstantScrollAlgorithm.cs

28 lines
1.2 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-09-18 18:23:25 +00:00
2018-11-02 10:52:40 +00:00
namespace osu.Game.Rulesets.UI.Scrolling.Algorithms
2018-09-18 18:23:25 +00:00
{
public class ConstantScrollAlgorithm : IScrollAlgorithm
2018-09-18 18:23:25 +00:00
{
public double GetDisplayStartTime(double time, double timeRange) => time - timeRange;
2018-09-18 18:23:25 +00:00
public float GetLength(double startTime, double endTime, double timeRange, float scrollLength)
2018-09-18 18:23:25 +00:00
{
// At the hitobject's end time, the hitobject will be positioned such that its end rests at the origin.
// This results in a negative-position value, and the absolute of it indicates the length of the hitobject.
return -PositionAt(startTime, endTime, timeRange, scrollLength);
2018-09-18 18:23:25 +00:00
}
public float PositionAt(double time, double currentTime, double timeRange, float scrollLength)
=> (float)((time - currentTime) / timeRange * scrollLength);
2018-11-09 10:55:48 +00:00
public double TimeAt(float position, double currentTime, double timeRange, float scrollLength)
=> position * timeRange / scrollLength + currentTime;
public void Reset()
{
}
2018-09-18 18:23:25 +00:00
}
}