1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Replays/OsuAutoGenerator.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

407 lines
18 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-20 15:51:59 +08:00
using osuTK;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
using osu.Game.Beatmaps;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Osu.Objects;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
2017-03-28 20:26:20 +08:00
using osu.Framework.Graphics;
2018-11-28 16:20:37 +08:00
using osu.Game.Replays;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects;
2019-03-07 17:30:31 +08:00
using osu.Game.Rulesets.Osu.Beatmaps;
2019-09-06 14:24:00 +08:00
using osu.Game.Rulesets.Osu.Scoring;
using osu.Game.Rulesets.Scoring;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Osu.Replays
{
public class OsuAutoGenerator : OsuAutoGeneratorBase
{
2019-03-07 17:30:31 +08:00
public new OsuBeatmap Beatmap => (OsuBeatmap)base.Beatmap;
#region Parameters
2018-04-13 17:19:50 +08:00
/// <summary>
/// If delayed movements should be used, causing the cursor to stay on each hitobject for as long as possible.
/// Mainly for Autopilot.
/// </summary>
public bool DelayedMovements; // ModManager.CheckActive(Mods.Relax2);
2018-04-13 17:19:50 +08:00
#endregion
2018-04-13 17:19:50 +08:00
#region Constants
2018-04-13 17:19:50 +08:00
private readonly HitWindows defaultHitWindows;
/// <summary>
/// What easing to use when moving between hitobjects
/// </summary>
2017-07-23 02:50:25 +08:00
private Easing preferredEasing => DelayedMovements ? Easing.InOutCubic : Easing.Out;
2018-04-13 17:19:50 +08:00
#endregion
2018-04-13 17:19:50 +08:00
#region Construction / Initialisation
2018-04-13 17:19:50 +08:00
public OsuAutoGenerator(IBeatmap beatmap, IReadOnlyList<Mod> mods)
: base(beatmap, mods)
2017-04-29 00:21:33 +08:00
{
defaultHitWindows = new OsuHitWindows();
defaultHitWindows.SetDifficulty(Beatmap.Difficulty.OverallDifficulty);
}
2018-04-13 17:19:50 +08:00
#endregion
2018-04-13 17:19:50 +08:00
#region Generator
2018-04-13 17:19:50 +08:00
/// <summary>
/// Which button (left or right) to use for the current hitobject.
/// Even means LMB will be used to click, odd means RMB will be used.
/// This keeps track of the button previously used for alt/singletap logic.
/// </summary>
private int buttonIndex;
2018-04-13 17:19:50 +08:00
public override Replay Generate()
{
if (Beatmap.HitObjects.Count == 0)
return Replay;
buttonIndex = 0;
2018-04-13 17:19:50 +08:00
AddFrameToReplay(new OsuReplayFrame(Beatmap.HitObjects[0].StartTime - 1500, new Vector2(256, 500)));
2018-04-13 17:19:50 +08:00
for (int i = 0; i < Beatmap.HitObjects.Count; i++)
{
OsuHitObject h = Beatmap.HitObjects[i];
2018-04-13 17:19:50 +08:00
if (DelayedMovements && i > 0)
{
OsuHitObject prev = Beatmap.HitObjects[i - 1];
addDelayedMovements(h, prev);
}
2018-04-13 17:19:50 +08:00
addHitObjectReplay(h);
}
2018-04-13 17:19:50 +08:00
return Replay;
}
2018-04-13 17:19:50 +08:00
private void addDelayedMovements(OsuHitObject h, OsuHitObject prev)
{
double endTime = prev.GetEndTime();
2018-04-13 17:19:50 +08:00
HitWindows? hitWindows = null;
switch (h)
{
case HitCircle hitCircle:
hitWindows = hitCircle.HitWindows;
break;
case Slider slider:
hitWindows = slider.TailCircle.HitWindows;
break;
2022-06-24 20:25:23 +08:00
case Spinner:
hitWindows = defaultHitWindows;
break;
}
Debug.Assert(hitWindows != null);
// Make the cursor stay at a hitObject as long as possible (mainly for autopilot).
2019-09-06 14:24:00 +08:00
if (h.StartTime - hitWindows.WindowFor(HitResult.Miss) > endTime + hitWindows.WindowFor(HitResult.Meh) + 50)
{
if (!(prev is Spinner) && h.StartTime - endTime < 1000)
2019-09-06 14:24:00 +08:00
AddFrameToReplay(new OsuReplayFrame(endTime + hitWindows.WindowFor(HitResult.Meh), new Vector2(prev.StackedEndPosition.X, prev.StackedEndPosition.Y)));
if (!(h is Spinner))
2019-09-06 14:24:00 +08:00
AddFrameToReplay(new OsuReplayFrame(h.StartTime - hitWindows.WindowFor(HitResult.Miss), new Vector2(h.StackedPosition.X, h.StackedPosition.Y)));
}
2019-09-06 14:24:00 +08:00
else if (h.StartTime - hitWindows.WindowFor(HitResult.Meh) > endTime + hitWindows.WindowFor(HitResult.Meh) + 50)
{
if (!(prev is Spinner) && h.StartTime - endTime < 1000)
2019-09-06 14:24:00 +08:00
AddFrameToReplay(new OsuReplayFrame(endTime + hitWindows.WindowFor(HitResult.Meh), new Vector2(prev.StackedEndPosition.X, prev.StackedEndPosition.Y)));
if (!(h is Spinner))
2019-09-06 14:24:00 +08:00
AddFrameToReplay(new OsuReplayFrame(h.StartTime - hitWindows.WindowFor(HitResult.Meh), new Vector2(h.StackedPosition.X, h.StackedPosition.Y)));
}
2020-09-29 16:16:55 +08:00
else if (h.StartTime - hitWindows.WindowFor(HitResult.Ok) > endTime + hitWindows.WindowFor(HitResult.Ok) + 50)
{
if (!(prev is Spinner) && h.StartTime - endTime < 1000)
2020-09-29 16:16:55 +08:00
AddFrameToReplay(new OsuReplayFrame(endTime + hitWindows.WindowFor(HitResult.Ok), new Vector2(prev.StackedEndPosition.X, prev.StackedEndPosition.Y)));
if (!(h is Spinner))
2020-09-29 16:16:55 +08:00
AddFrameToReplay(new OsuReplayFrame(h.StartTime - hitWindows.WindowFor(HitResult.Ok), new Vector2(h.StackedPosition.X, h.StackedPosition.Y)));
}
}
2018-04-13 17:19:50 +08:00
private void addHitObjectReplay(OsuHitObject h)
{
// Default values for circles/sliders
Vector2 startPosition = h.StackedPosition;
2017-07-23 02:50:25 +08:00
Easing easing = preferredEasing;
float spinnerDirection = -1;
2018-04-13 17:19:50 +08:00
// The startPosition for the slider should not be its .Position, but the point on the circle whose tangent crosses the current cursor position
// We also modify spinnerDirection so it spins in the direction it enters the spin circle, to make a smooth transition.
// TODO: Shouldn't the spinner always spin in the same direction?
if (h is Spinner spinner)
{
// spinners with 0 spins required will auto-complete - don't bother
if (spinner.SpinsRequired == 0)
return;
2019-12-14 20:54:22 +08:00
calcSpinnerStartPosAndDirection(((OsuReplayFrame)Frames[^1]).Position, out startPosition, out spinnerDirection);
2018-04-13 17:19:50 +08:00
2019-12-14 20:54:22 +08:00
Vector2 spinCentreOffset = SPINNER_CENTRE - ((OsuReplayFrame)Frames[^1]).Position;
2018-04-13 17:19:50 +08:00
if (spinCentreOffset.Length > SPIN_RADIUS)
{
// If moving in from the outside, don't ease out (default eases out). This means auto will "start" spinning immediately after moving into position.
2017-07-23 02:50:25 +08:00
easing = Easing.In;
}
}
2018-04-13 17:19:50 +08:00
// Do some nice easing for cursor movements
if (Frames.Count > 0)
{
2018-01-01 00:15:14 +08:00
moveToHitObject(h, startPosition, easing);
}
2018-04-13 17:19:50 +08:00
// Add frames to click the hitobject
addHitObjectClickFrames(h, startPosition, spinnerDirection);
}
2018-04-13 17:19:50 +08:00
#endregion
2018-04-13 17:19:50 +08:00
#region Helper subroutines
2018-04-13 17:19:50 +08:00
private static void calcSpinnerStartPosAndDirection(Vector2 prevPos, out Vector2 startPosition, out float spinnerDirection)
{
Vector2 spinCentreOffset = SPINNER_CENTRE - prevPos;
float distFromCentre = spinCentreOffset.Length;
float distToTangentPoint = MathF.Sqrt(distFromCentre * distFromCentre - SPIN_RADIUS * SPIN_RADIUS);
2018-04-13 17:19:50 +08:00
if (distFromCentre > SPIN_RADIUS)
{
// Previous cursor position was outside spin circle, set startPosition to the tangent point.
2018-04-13 17:19:50 +08:00
// Angle between centre offset and tangent point offset.
float angle = MathF.Asin(SPIN_RADIUS / distFromCentre);
2018-04-13 17:19:50 +08:00
if (angle > 0)
{
spinnerDirection = -1;
}
else
{
spinnerDirection = 1;
}
2018-04-13 17:19:50 +08:00
// Rotate by angle so it's parallel to tangent line
spinCentreOffset.X = spinCentreOffset.X * MathF.Cos(angle) - spinCentreOffset.Y * MathF.Sin(angle);
spinCentreOffset.Y = spinCentreOffset.X * MathF.Sin(angle) + spinCentreOffset.Y * MathF.Cos(angle);
2018-04-13 17:19:50 +08:00
// Set length to distToTangentPoint
spinCentreOffset.Normalize();
spinCentreOffset *= distToTangentPoint;
2018-04-13 17:19:50 +08:00
// Move along the tangent line, now startPosition is at the tangent point.
startPosition = prevPos + spinCentreOffset;
}
else if (spinCentreOffset.Length > 0)
{
// Previous cursor position was inside spin circle, set startPosition to the nearest point on spin circle.
startPosition = SPINNER_CENTRE - spinCentreOffset * (SPIN_RADIUS / spinCentreOffset.Length);
spinnerDirection = 1;
}
else
{
// Degenerate case where cursor position is exactly at the centre of the spin circle.
startPosition = SPINNER_CENTRE + new Vector2(0, -SPIN_RADIUS);
spinnerDirection = 1;
}
}
2018-04-13 17:19:50 +08:00
2018-01-01 00:15:14 +08:00
private void moveToHitObject(OsuHitObject h, Vector2 targetPos, Easing easing)
{
2019-12-14 20:54:22 +08:00
OsuReplayFrame lastFrame = (OsuReplayFrame)Frames[^1];
2018-04-13 17:19:50 +08:00
// Wait until Auto could "see and react" to the next note.
double waitTime = h.StartTime - Math.Max(0.0, h.TimePreempt - getReactionTime(h.StartTime - h.TimePreempt));
2021-07-05 16:24:23 +08:00
bool hasWaited = false;
if (waitTime > lastFrame.Time)
{
lastFrame = new OsuReplayFrame(waitTime, lastFrame.Position) { Actions = lastFrame.Actions };
2021-07-05 16:24:23 +08:00
hasWaited = true;
2017-04-29 02:30:34 +08:00
AddFrameToReplay(lastFrame);
}
2018-04-13 17:19:50 +08:00
double timeDifference = ApplyModsToTimeDelta(lastFrame.Time, h.StartTime);
OsuReplayFrame? lastLastFrame = Frames.Count >= 2 ? (OsuReplayFrame)Frames[^2] : null;
2021-07-05 16:52:10 +08:00
if (timeDifference > 0)
{
2021-07-05 16:52:10 +08:00
// If the last frame is a key-up frame and there has been no wait period, adjust the last frame's position such that it begins eased movement instantaneously.
2021-07-05 17:49:09 +08:00
if (lastLastFrame != null && lastFrame is OsuKeyUpReplayFrame && !hasWaited)
2021-07-05 16:52:10 +08:00
{
// [lastLastFrame] ... [lastFrame] ... [current frame]
// We want to find the cursor position at lastFrame, so interpolate between lastLastFrame and the new target position.
lastFrame.Position = Interpolation.ValueAt(lastFrame.Time, lastFrame.Position, targetPos, lastLastFrame.Time, h.StartTime, easing);
}
2021-07-05 16:52:10 +08:00
Vector2 lastPosition = lastFrame.Position;
2018-04-13 17:19:50 +08:00
2021-07-05 17:51:23 +08:00
// Perform the rest of the eased movement until the target position is reached.
2021-07-05 16:52:10 +08:00
for (double time = lastFrame.Time + GetFrameDelay(lastFrame.Time); time < h.StartTime; time += GetFrameDelay(time))
{
Vector2 currentPosition = Interpolation.ValueAt(time, lastPosition, targetPos, lastFrame.Time, h.StartTime, easing);
AddFrameToReplay(new OsuReplayFrame((int)time, new Vector2(currentPosition.X, currentPosition.Y)) { Actions = lastFrame.Actions });
}
}
// Start alternating once the time separation is too small (faster than ~225BPM).
if (timeDifference > 0 && timeDifference < 266)
buttonIndex++;
else
buttonIndex = 0;
}
2018-04-13 17:19:50 +08:00
/// <summary>
/// Calculates the "reaction time" in ms between "seeing" a new hit object and moving to "react" to it.
/// </summary>
/// <remarks>
/// Already superhuman, but still somewhat realistic.
/// </remarks>
private double getReactionTime(double timeInstant) => ApplyModsToRate(timeInstant, 100);
// Add frames to click the hitobject
private void addHitObjectClickFrames(OsuHitObject h, Vector2 startPosition, float spinnerDirection)
{
// Time to insert the first frame which clicks the object
// Here we mainly need to determine which button to use
var action = buttonIndex % 2 == 0 ? OsuAction.LeftButton : OsuAction.RightButton;
2018-04-13 17:19:50 +08:00
var startFrame = new OsuReplayFrame(h.StartTime, new Vector2(startPosition.X, startPosition.Y), action);
2018-04-13 17:19:50 +08:00
// TODO: Why do we delay 1 ms if the object is a spinner? There already is KEY_UP_DELAY from hEndTime.
double hEndTime = h.GetEndTime() + KEY_UP_DELAY;
int endDelay = h is Spinner ? 1 : 0;
2021-07-05 16:24:23 +08:00
var endFrame = new OsuKeyUpReplayFrame(hEndTime + endDelay, new Vector2(h.StackedEndPosition.X, h.StackedEndPosition.Y));
2018-04-13 17:19:50 +08:00
// Decrement because we want the previous frame, not the next one
2017-04-29 02:30:34 +08:00
int index = FindInsertionIndex(startFrame) - 1;
2018-04-13 17:19:50 +08:00
// If the previous frame has a button pressed, force alternation.
// If there are frames ahead, modify those to use the new button press.
// Do we have a previous frame? No need to check for < replay.Count since we decremented!
if (index >= 0)
{
var previousFrame = (OsuReplayFrame)Frames[index];
var previousActions = previousFrame.Actions;
2018-04-13 17:19:50 +08:00
// If a button is already held, then we simply alternate
if (previousActions.Any())
{
// Force alternation if we have the same button. Otherwise we can just keep the naturally to us assigned button.
if (previousActions.Contains(action))
{
action = action == OsuAction.LeftButton ? OsuAction.RightButton : OsuAction.LeftButton;
startFrame.Actions.Clear();
startFrame.Actions.Add(action);
}
2018-04-13 17:19:50 +08:00
// We always follow the most recent slider / spinner, so remove any other frames that occur while it exists.
2017-04-29 02:30:34 +08:00
int endIndex = FindInsertionIndex(endFrame);
2018-04-13 17:19:50 +08:00
if (index < Frames.Count - 1)
Frames.RemoveRange(index + 1, Math.Max(0, endIndex - (index + 1)));
2018-04-13 17:19:50 +08:00
// After alternating we need to keep holding the other button in the future rather than the previous one.
for (int j = index + 1; j < Frames.Count; ++j)
{
var frame = (OsuReplayFrame)Frames[j];
2018-04-13 17:19:50 +08:00
// Don't affect frames which stop pressing a button!
if (j < Frames.Count - 1 || frame.Actions.SequenceEqual(previousActions))
{
frame.Actions.Clear();
frame.Actions.Add(action);
}
}
}
}
2018-04-13 17:19:50 +08:00
2017-04-29 02:30:34 +08:00
AddFrameToReplay(startFrame);
2018-04-13 17:19:50 +08:00
2023-11-20 10:50:28 +08:00
// 0.05 rad/ms, or ~477 RPM, as per stable.
// the redundant conversion from RPM to rad/ms is here for ease of testing custom SPM specs.
2023-11-17 22:48:48 +08:00
const float spin_rpm = 0.05f / (2 * MathF.PI) * 60000;
2024-03-06 10:42:20 +08:00
float radsPerMillisecond = float.DegreesToRadians(spin_rpm * 360) / 60000;
switch (h)
{
// We add intermediate frames for spinning / following a slider here.
case Spinner spinner:
Vector2 difference = startPosition - SPINNER_CENTRE;
2018-04-13 17:19:50 +08:00
float radius = difference.Length;
float angle = radius == 0 ? 0 : MathF.Atan2(difference.Y, difference.X);
2018-04-13 17:19:50 +08:00
double t;
double previousFrame = h.StartTime;
2018-04-13 17:19:50 +08:00
for (double nextFrame = h.StartTime + GetFrameDelay(h.StartTime); nextFrame < spinner.EndTime; nextFrame += GetFrameDelay(nextFrame))
{
t = ApplyModsToTimeDelta(previousFrame, nextFrame) * spinnerDirection;
angle += (float)t * radsPerMillisecond;
2018-04-13 17:19:50 +08:00
Vector2 pos = SPINNER_CENTRE + CirclePosition(angle, SPIN_RADIUS);
AddFrameToReplay(new OsuReplayFrame((int)nextFrame, new Vector2(pos.X, pos.Y), action));
previousFrame = nextFrame;
}
2018-04-13 17:19:50 +08:00
t = ApplyModsToTimeDelta(previousFrame, spinner.EndTime) * spinnerDirection;
angle += (float)t * radsPerMillisecond;
Vector2 endPosition = SPINNER_CENTRE + CirclePosition(angle, SPIN_RADIUS);
2018-04-13 17:19:50 +08:00
AddFrameToReplay(new OsuReplayFrame(spinner.EndTime, new Vector2(endPosition.X, endPosition.Y), action));
2018-04-13 17:19:50 +08:00
endFrame.Position = endPosition;
break;
case Slider slider:
for (double j = GetFrameDelay(slider.StartTime); j < slider.Duration; j += GetFrameDelay(slider.StartTime + j))
{
Vector2 pos = slider.StackedPositionAt(j / slider.Duration);
AddFrameToReplay(new OsuReplayFrame(h.StartTime + j, new Vector2(pos.X, pos.Y), action));
}
2018-04-13 17:19:50 +08:00
AddFrameToReplay(new OsuReplayFrame(slider.EndTime, new Vector2(slider.StackedEndPosition.X, slider.StackedEndPosition.Y), action));
break;
}
2018-04-13 17:19:50 +08:00
// We only want to let go of our button if we are at the end of the current replay. Otherwise something is still going on after us so we need to keep the button pressed!
2019-12-14 20:54:22 +08:00
if (Frames[^1].Time <= endFrame.Time)
2017-04-29 02:30:34 +08:00
AddFrameToReplay(endFrame);
}
2018-04-13 17:19:50 +08:00
#endregion
2021-07-05 16:24:23 +08:00
private class OsuKeyUpReplayFrame : OsuReplayFrame
{
public OsuKeyUpReplayFrame(double time, Vector2 position)
: base(time, position)
{
}
}
}
}