1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 21:52:55 +08:00
osu-lazer/osu.Game/Rulesets/Replays/AutoGenerator.cs

41 lines
1.1 KiB
C#

// 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.
using osu.Game.Beatmaps;
using osu.Game.Replays;
using osu.Game.Rulesets.Objects;
namespace osu.Game.Rulesets.Replays
{
public abstract class AutoGenerator
{
/// <summary>
/// The default duration of a key press in milliseconds.
/// </summary>
public const double KEY_UP_DELAY = 50;
/// <summary>
/// The beatmap the autoplay is generated for.
/// </summary>
protected IBeatmap Beatmap { get; }
protected AutoGenerator(IBeatmap beatmap)
{
Beatmap = beatmap;
}
/// <summary>
/// Generate the replay of the autoplay.
/// </summary>
public abstract Replay Generate();
protected virtual HitObject GetNextObject(int currentIndex)
{
if (currentIndex >= Beatmap.HitObjects.Count - 1)
return null;
return Beatmap.HitObjects[currentIndex + 1];
}
}
}