Refactor `OsuAutoGenerator` to allow custom SPM specifications

This commit is contained in:
Dean Herbert 2023-11-17 16:44:11 +09:00
parent dee6a79911
commit a1673160f1
No known key found for this signature in database
1 changed files with 6 additions and 2 deletions

View File

@ -339,6 +339,10 @@ private void addHitObjectClickFrames(OsuHitObject h, Vector2 startPosition, floa
AddFrameToReplay(startFrame);
// ~477 as per stable.
const float spin_rpm = 60000f / 20 * (180 / MathF.PI) / 360;
float radsPerMillisecond = MathUtils.DegreesToRadians(spin_rpm * 360) / 60000;
switch (h)
{
// We add intermediate frames for spinning / following a slider here.
@ -354,7 +358,7 @@ private void addHitObjectClickFrames(OsuHitObject h, Vector2 startPosition, floa
for (double nextFrame = h.StartTime + GetFrameDelay(h.StartTime); nextFrame < spinner.EndTime; nextFrame += GetFrameDelay(nextFrame))
{
t = ApplyModsToTimeDelta(previousFrame, nextFrame) * spinnerDirection;
angle += (float)t / 20;
angle += (float)t * radsPerMillisecond;
Vector2 pos = SPINNER_CENTRE + CirclePosition(angle, SPIN_RADIUS);
AddFrameToReplay(new OsuReplayFrame((int)nextFrame, new Vector2(pos.X, pos.Y), action));
@ -363,7 +367,7 @@ private void addHitObjectClickFrames(OsuHitObject h, Vector2 startPosition, floa
}
t = ApplyModsToTimeDelta(previousFrame, spinner.EndTime) * spinnerDirection;
angle += (float)t / 20;
angle += (float)t * radsPerMillisecond;
Vector2 endPosition = SPINNER_CENTRE + CirclePosition(angle, SPIN_RADIUS);