2020-03-24 13:55:49 +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 System.Collections.Generic;
|
|
|
|
using osu.Game.Replays;
|
|
|
|
using osu.Game.Rulesets.Replays;
|
|
|
|
using osu.Game.Rulesets.Taiko.Replays;
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.UI
|
|
|
|
{
|
|
|
|
public class TaikoReplayRecorder : ReplayRecorder<TaikoAction>
|
|
|
|
{
|
|
|
|
public TaikoReplayRecorder(Replay replay)
|
|
|
|
: base(replay)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-03-24 14:38:54 +08:00
|
|
|
protected override ReplayFrame HandleFrame(Vector2 mousePosition, List<TaikoAction> actions, ReplayFrame previousFrame) =>
|
2020-03-24 13:55:49 +08:00
|
|
|
new TaikoReplayFrame(Time.Current, actions.ToArray());
|
|
|
|
}
|
|
|
|
}
|