mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 20:07:24 +08:00
121 lines
4.4 KiB
C#
121 lines
4.4 KiB
C#
// Copyright (c) 2007-2017 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.Modes.Taiko.Objects;
|
|
using osu.Game.Modes.Objects.Types;
|
|
|
|
namespace osu.Game.Modes.Taiko
|
|
{
|
|
public class TaikoAutoReplay : LegacyTaikoReplay
|
|
{
|
|
private readonly List<TaikoHitObject> hitObjects;
|
|
|
|
public TaikoAutoReplay(List<TaikoHitObject> hitObjects)
|
|
{
|
|
this.hitObjects = hitObjects;
|
|
|
|
createAutoReplay();
|
|
}
|
|
|
|
private void createAutoReplay()
|
|
{
|
|
bool hitButton = true;
|
|
|
|
Frames.Add(new LegacyReplayFrame(-100000, 320, 240, LegacyButtonState.None));
|
|
Frames.Add(new LegacyReplayFrame(hitObjects[0].StartTime - 1000, 320, 240, LegacyButtonState.None));
|
|
|
|
for (int i = 0; i < hitObjects.Count; i++)
|
|
{
|
|
TaikoHitObject h = hitObjects[i];
|
|
|
|
LegacyButtonState button;
|
|
|
|
IHasEndTime endTimeData = h as IHasEndTime;
|
|
double endTime = endTimeData?.EndTime ?? h.StartTime;
|
|
|
|
Swell sp = h as Swell;
|
|
if (sp != null)
|
|
{
|
|
int d = 0;
|
|
int count = 0;
|
|
int req = sp.RequiredHits;
|
|
double hitRate = sp.Duration / req;
|
|
for (double j = h.StartTime; j < endTime; j += hitRate)
|
|
{
|
|
switch (d)
|
|
{
|
|
default:
|
|
button = LegacyButtonState.Left1;
|
|
break;
|
|
case 1:
|
|
button = LegacyButtonState.Right1;
|
|
break;
|
|
case 2:
|
|
button = LegacyButtonState.Left2;
|
|
break;
|
|
case 3:
|
|
button = LegacyButtonState.Right2;
|
|
break;
|
|
}
|
|
|
|
Frames.Add(new LegacyReplayFrame(j, 0, 0, button));
|
|
d = (d + 1) % 4;
|
|
if (++count > req)
|
|
break;
|
|
}
|
|
}
|
|
else if (h is DrumRoll)
|
|
{
|
|
DrumRoll d = h as DrumRoll;
|
|
|
|
double delay = d.TickTimeDistance;
|
|
|
|
double time = d.StartTime;
|
|
|
|
for (int j = 0; j < d.TotalTicks; j++)
|
|
{
|
|
Frames.Add(new LegacyReplayFrame((int)time, 0, 0, hitButton ? LegacyButtonState.Left1 : LegacyButtonState.Left2));
|
|
time += delay;
|
|
hitButton = !hitButton;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Hit hit = h as Hit;
|
|
|
|
if (hit.Type == HitType.Centre)
|
|
{
|
|
if (h.IsStrong)
|
|
button = LegacyButtonState.Right1 | LegacyButtonState.Right2;
|
|
else
|
|
button = hitButton ? LegacyButtonState.Right1 : LegacyButtonState.Right2;
|
|
}
|
|
else
|
|
{
|
|
if (h.IsStrong)
|
|
button = LegacyButtonState.Left1 | LegacyButtonState.Left2;
|
|
else
|
|
button = hitButton ? LegacyButtonState.Left1 : LegacyButtonState.Left2;
|
|
}
|
|
|
|
Frames.Add(new LegacyReplayFrame(h.StartTime, 0, 0, button));
|
|
}
|
|
|
|
Frames.Add(new LegacyReplayFrame(endTime + 1, 0, 0, LegacyButtonState.None));
|
|
|
|
if (i < hitObjects.Count - 1)
|
|
{
|
|
double waitTime = hitObjects[i + 1].StartTime - 1000;
|
|
if (waitTime > endTime)
|
|
Frames.Add(new LegacyReplayFrame(waitTime, 0, 0, LegacyButtonState.None));
|
|
}
|
|
|
|
hitButton = !hitButton;
|
|
}
|
|
|
|
//Player.currentScore.Replay = InputManager.ReplayScore.Replay;
|
|
//Player.currentScore.PlayerName = "mekkadosu!";
|
|
}
|
|
}
|
|
} |