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.Rulesets.Mania.Replays;
|
|
|
|
using osu.Game.Rulesets.Replays;
|
|
|
|
using osu.Game.Rulesets.UI;
|
2020-12-14 15:52:14 +08:00
|
|
|
using osu.Game.Scoring;
|
2020-03-24 13:55:49 +08:00
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
|
|
{
|
|
|
|
public class ManiaReplayRecorder : ReplayRecorder<ManiaAction>
|
|
|
|
{
|
2020-12-14 15:52:14 +08:00
|
|
|
public ManiaReplayRecorder(Score score)
|
|
|
|
: base(score)
|
2020-03-24 13:55:49 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-03-24 14:38:54 +08:00
|
|
|
protected override ReplayFrame HandleFrame(Vector2 mousePosition, List<ManiaAction> actions, ReplayFrame previousFrame)
|
2020-03-24 13:55:49 +08:00
|
|
|
=> new ManiaReplayFrame(Time.Current, actions.ToArray());
|
|
|
|
}
|
|
|
|
}
|