2018-09-19 02:23:25 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.UI.Scrolling.Visualisers
|
|
|
|
|
{
|
2018-10-30 17:33:24 +08:00
|
|
|
|
public class ConstantSpeedChangeVisualiser : ISpeedChangeVisualiser
|
2018-09-19 02:23:25 +08:00
|
|
|
|
{
|
2018-10-30 17:33:24 +08:00
|
|
|
|
public double GetDisplayStartTime(double time, double timeRange) => time - timeRange;
|
2018-09-19 02:23:25 +08:00
|
|
|
|
|
2018-10-30 17:33:24 +08:00
|
|
|
|
public float GetLength(double startTime, double endTime, double timeRange, float scrollLength)
|
2018-09-19 02:23:25 +08:00
|
|
|
|
{
|
2018-10-30 17:33:24 +08: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-19 02:23:25 +08:00
|
|
|
|
}
|
2018-10-30 16:31:43 +08:00
|
|
|
|
|
2018-10-30 17:33:24 +08:00
|
|
|
|
public float PositionAt(double time, double currentTime, double timeRange, float scrollLength)
|
|
|
|
|
=> (float)((time - currentTime) / timeRange * scrollLength);
|
2018-10-30 16:31:43 +08:00
|
|
|
|
|
2018-10-30 17:33:24 +08:00
|
|
|
|
public void Reset()
|
2018-10-30 16:31:43 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2018-09-19 02:23:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|