mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Replays.Legacy;
|
|
using osu.Game.Rulesets.Replays;
|
|
using osu.Game.Rulesets.Replays.Types;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Replays
|
|
{
|
|
public class OsuReplayFrame : ReplayFrame, IConvertibleReplayFrame
|
|
{
|
|
public Vector2 Position;
|
|
public List<OsuAction> Actions = new List<OsuAction>();
|
|
|
|
public OsuReplayFrame()
|
|
{
|
|
}
|
|
|
|
public OsuReplayFrame(double time, Vector2 position, params OsuAction[] actions)
|
|
: base(time)
|
|
{
|
|
Position = position;
|
|
Actions.AddRange(actions);
|
|
}
|
|
|
|
public void ConvertFrom(LegacyReplayFrame legacyFrame, IBeatmap beatmap)
|
|
{
|
|
Position = legacyFrame.Position;
|
|
if (legacyFrame.MouseLeft) Actions.Add(OsuAction.LeftButton);
|
|
if (legacyFrame.MouseRight) Actions.Add(OsuAction.RightButton);
|
|
}
|
|
}
|
|
}
|