1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:47:36 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Replays/CatchFramedReplayInputHandler.cs

67 lines
1.9 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using System.Collections.Generic;
using System.Diagnostics;
2018-07-21 10:38:28 +08:00
using osu.Framework.Input.StateChanges;
2018-04-13 17:19:50 +08:00
using osu.Framework.MathUtils;
2018-11-28 16:20:37 +08:00
using osu.Game.Replays;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Replays;
namespace osu.Game.Rulesets.Catch.Replays
{
public class CatchFramedReplayInputHandler : FramedReplayInputHandler<CatchReplayFrame>
{
public CatchFramedReplayInputHandler(Replay replay)
: base(replay)
{
}
protected override bool IsImportant(CatchReplayFrame frame) => frame.Position > 0;
protected float? Position
{
get
{
2019-03-28 14:09:06 +08:00
var frame = CurrentFrame;
if (frame == null)
2018-04-13 17:19:50 +08:00
return null;
Debug.Assert(CurrentTime != null);
2019-03-28 23:35:26 +08:00
return NextFrame != null ? Interpolation.ValueAt(CurrentTime.Value, frame.Position, NextFrame.Position, frame.Time, NextFrame.Time) : frame.Position;
2018-04-13 17:19:50 +08:00
}
}
2018-06-11 22:00:26 +08:00
public override List<IInput> GetPendingInputs()
2018-04-13 17:19:50 +08:00
{
2018-06-11 22:00:26 +08:00
if (!Position.HasValue) return new List<IInput>();
2018-04-13 17:19:50 +08:00
var actions = new List<CatchAction>();
if (CurrentFrame.Dashing)
actions.Add(CatchAction.Dash);
if (Position.Value > CurrentFrame.Position)
actions.Add(CatchAction.MoveRight);
else if (Position.Value < CurrentFrame.Position)
actions.Add(CatchAction.MoveLeft);
2018-06-11 22:00:26 +08:00
return new List<IInput>
2018-04-13 17:19:50 +08:00
{
new CatchReplayState
{
PressedActions = actions,
CatcherX = Position.Value
},
};
}
public class CatchReplayState : ReplayState<CatchAction>
{
public float? CatcherX { get; set; }
}
}
}