2020-03-23 18:03:42 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-03-23 18:03:42 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using osu.Game.Rulesets.Osu.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-23 18:03:42 +08:00
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
|
|
|
{
|
|
|
|
public partial class OsuReplayRecorder : ReplayRecorder<OsuAction>
|
|
|
|
{
|
2020-12-14 15:52:14 +08:00
|
|
|
public OsuReplayRecorder(Score score)
|
|
|
|
: base(score)
|
2020-03-23 18:03:42 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-03-24 14:38:54 +08:00
|
|
|
protected override ReplayFrame HandleFrame(Vector2 mousePosition, List<OsuAction> actions, ReplayFrame previousFrame)
|
|
|
|
=> new OsuReplayFrame(Time.Current, mousePosition, actions.ToArray());
|
2020-03-23 18:03:42 +08:00
|
|
|
}
|
|
|
|
}
|