2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Game.Beatmaps;
|
2018-11-28 16:20:37 +08:00
|
|
|
using osu.Game.Replays;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
using osu.Game.Rulesets.Replays;
|
2019-03-07 17:30:31 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Beatmaps;
|
2019-08-19 22:18:25 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Replays
|
|
|
|
{
|
2019-03-07 17:30:31 +08:00
|
|
|
public class TaikoAutoGenerator : AutoGenerator
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-03-07 17:30:31 +08:00
|
|
|
public new TaikoBeatmap Beatmap => (TaikoBeatmap)base.Beatmap;
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
private const double swell_hit_speed = 50;
|
|
|
|
|
2019-03-07 17:30:31 +08:00
|
|
|
public TaikoAutoGenerator(IBeatmap beatmap)
|
2018-04-13 17:19:50 +08:00
|
|
|
: base(beatmap)
|
|
|
|
{
|
2018-11-29 12:22:45 +08:00
|
|
|
Replay = new Replay();
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected Replay Replay;
|
|
|
|
protected List<ReplayFrame> Frames => Replay.Frames;
|
|
|
|
|
|
|
|
public override Replay Generate()
|
|
|
|
{
|
2020-09-28 13:15:26 +08:00
|
|
|
if (Beatmap.HitObjects.Count == 0)
|
|
|
|
return Replay;
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
bool hitButton = true;
|
|
|
|
|
|
|
|
Frames.Add(new TaikoReplayFrame(-100000));
|
|
|
|
Frames.Add(new TaikoReplayFrame(Beatmap.HitObjects[0].StartTime - 1000));
|
|
|
|
|
|
|
|
for (int i = 0; i < Beatmap.HitObjects.Count; i++)
|
|
|
|
{
|
|
|
|
TaikoHitObject h = Beatmap.HitObjects[i];
|
2019-12-14 18:02:56 +08:00
|
|
|
double endTime = h.GetEndTime();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-11-12 18:16:51 +08:00
|
|
|
switch (h)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
case Swell swell:
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
int d = 0;
|
|
|
|
int count = 0;
|
|
|
|
int req = swell.RequiredHits;
|
|
|
|
double hitRate = Math.Min(swell_hit_speed, swell.Duration / req);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-11-12 18:16:51 +08:00
|
|
|
for (double j = h.StartTime; j < endTime; j += hitRate)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
TaikoAction action;
|
|
|
|
|
|
|
|
switch (d)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0:
|
|
|
|
action = TaikoAction.LeftCentre;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
action = TaikoAction.LeftRim;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
action = TaikoAction.RightCentre;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
action = TaikoAction.RightRim;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Frames.Add(new TaikoReplayFrame(j, action));
|
|
|
|
d = (d + 1) % 4;
|
|
|
|
if (++count == req)
|
2018-04-13 17:19:50 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-11-12 18:16:51 +08:00
|
|
|
break;
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
2019-11-12 18:16:51 +08:00
|
|
|
case DrumRoll drumRoll:
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
foreach (var tick in drumRoll.NestedHitObjects.OfType<DrumRollTick>())
|
|
|
|
{
|
|
|
|
Frames.Add(new TaikoReplayFrame(tick.StartTime, hitButton ? TaikoAction.LeftCentre : TaikoAction.RightCentre));
|
|
|
|
hitButton = !hitButton;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
2019-11-12 18:16:51 +08:00
|
|
|
|
|
|
|
case Hit hit:
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
TaikoAction[] actions;
|
|
|
|
|
2020-03-23 11:08:15 +08:00
|
|
|
if (hit.Type == HitType.Centre)
|
2019-11-12 18:16:51 +08:00
|
|
|
{
|
|
|
|
actions = h.IsStrong
|
|
|
|
? new[] { TaikoAction.LeftCentre, TaikoAction.RightCentre }
|
|
|
|
: new[] { hitButton ? TaikoAction.LeftCentre : TaikoAction.RightCentre };
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
actions = h.IsStrong
|
|
|
|
? new[] { TaikoAction.LeftRim, TaikoAction.RightRim }
|
|
|
|
: new[] { hitButton ? TaikoAction.LeftRim : TaikoAction.RightRim };
|
|
|
|
}
|
|
|
|
|
|
|
|
Frames.Add(new TaikoReplayFrame(h.StartTime, actions));
|
|
|
|
break;
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
2019-11-12 18:16:51 +08:00
|
|
|
default:
|
|
|
|
throw new InvalidOperationException("Unknown hit object type.");
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
2019-08-20 02:45:23 +08:00
|
|
|
var nextHitObject = GetNextObject(i); // Get the next object that requires pressing the same button
|
2019-08-15 01:49:32 +08:00
|
|
|
|
2019-08-16 01:45:10 +08:00
|
|
|
bool canDelayKeyUp = nextHitObject == null || nextHitObject.StartTime > endTime + KEY_UP_DELAY;
|
2019-08-19 23:05:25 +08:00
|
|
|
double calculatedDelay = canDelayKeyUp ? KEY_UP_DELAY : (nextHitObject.StartTime - endTime) * 0.9;
|
2019-08-19 22:18:25 +08:00
|
|
|
Frames.Add(new TaikoReplayFrame(endTime + calculatedDelay));
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
hitButton = !hitButton;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Replay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|