1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 20:07:26 +08:00
osu-lazer/osu.Game/Rulesets/Replays/AutoGenerator.cs

41 lines
1.1 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
using osu.Game.Beatmaps;
2018-11-28 16:20:37 +08:00
using osu.Game.Replays;
2019-08-19 22:18:25 +08:00
using osu.Game.Rulesets.Objects;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Replays
{
public abstract class AutoGenerator
2018-04-13 17:19:50 +08:00
{
/// <summary>
/// The default duration of a key press in milliseconds.
2018-04-13 17:19:50 +08:00
/// </summary>
public const double KEY_UP_DELAY = 50;
2018-04-13 17:19:50 +08:00
/// <summary>
/// The beatmap the autoplay is generated for.
2018-04-13 17:19:50 +08:00
/// </summary>
protected IBeatmap Beatmap { get; }
2018-04-13 17:19:50 +08:00
2019-03-07 17:30:31 +08:00
protected AutoGenerator(IBeatmap beatmap)
2018-04-13 17:19:50 +08:00
{
Beatmap = beatmap;
}
/// <summary>
/// Generate the replay of the autoplay.
/// </summary>
public abstract Replay Generate();
2019-08-19 22:18:25 +08:00
protected virtual HitObject GetNextObject(int currentIndex)
{
if (currentIndex >= Beatmap.HitObjects.Count - 1)
return null;
return Beatmap.HitObjects[currentIndex + 1];
}
2018-04-13 17:19:50 +08:00
}
}