2021-04-05 10:41:40 +08:00
|
|
|
|
// 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.Rulesets.Pippidon.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Replays;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Pippidon.Replays
|
|
|
|
|
{
|
2021-05-06 23:31:12 +08:00
|
|
|
|
public class PippidonAutoGenerator : AutoGenerator<PippidonReplayFrame>
|
2021-04-05 10:41:40 +08:00
|
|
|
|
{
|
|
|
|
|
public new Beatmap<PippidonHitObject> Beatmap => (Beatmap<PippidonHitObject>)base.Beatmap;
|
|
|
|
|
|
|
|
|
|
public PippidonAutoGenerator(IBeatmap beatmap)
|
|
|
|
|
: base(beatmap)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-06 20:57:03 +08:00
|
|
|
|
protected override void GenerateFrames()
|
2021-04-05 10:41:40 +08:00
|
|
|
|
{
|
|
|
|
|
Frames.Add(new PippidonReplayFrame());
|
|
|
|
|
|
|
|
|
|
foreach (PippidonHitObject hitObject in Beatmap.HitObjects)
|
|
|
|
|
{
|
|
|
|
|
Frames.Add(new PippidonReplayFrame
|
|
|
|
|
{
|
|
|
|
|
Time = hitObject.StartTime,
|
|
|
|
|
Position = hitObject.Position,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|