2019-01-24 08:43:03 +00: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-07-06 08:38:58 +00:00
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-11-20 11:08:05 +00:00
|
|
|
using System.Collections.Generic;
|
2019-09-02 09:31:33 +00:00
|
|
|
using System.Diagnostics;
|
2020-11-20 11:08:05 +00:00
|
|
|
using osu.Framework.Threading;
|
2020-01-09 04:43:44 +00:00
|
|
|
using osu.Framework.Utils;
|
2020-11-20 11:08:05 +00:00
|
|
|
using osu.Game.Beatmaps;
|
2019-07-29 08:05:13 +00:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2018-07-06 08:38:58 +00:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
{
|
2019-05-14 19:37:25 +00:00
|
|
|
public partial class TestSceneShaking : TestSceneHitCircle
|
2018-07-06 08:38:58 +00:00
|
|
|
{
|
2020-11-20 11:08:05 +00:00
|
|
|
private readonly List<ScheduledDelegate> scheduledTasks = new List<ScheduledDelegate>();
|
|
|
|
|
|
|
|
protected override IBeatmap CreateBeatmapForSkinProvider()
|
|
|
|
{
|
|
|
|
// best way to run cleanup before a new step is run
|
|
|
|
foreach (var task in scheduledTasks)
|
|
|
|
task.Cancel();
|
|
|
|
|
|
|
|
scheduledTasks.Clear();
|
|
|
|
|
|
|
|
return base.CreateBeatmapForSkinProvider();
|
|
|
|
}
|
|
|
|
|
2021-06-17 06:06:56 +00:00
|
|
|
protected override TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto, double hitOffset = 0)
|
2018-07-06 08:38:58 +00:00
|
|
|
{
|
2021-06-17 06:06:56 +00:00
|
|
|
var drawableHitObject = base.CreateDrawableHitCircle(circle, auto, hitOffset);
|
2018-07-06 08:38:58 +00:00
|
|
|
|
2019-09-02 09:31:33 +00:00
|
|
|
Debug.Assert(drawableHitObject.HitObject.HitWindows != null);
|
|
|
|
|
2019-09-06 06:24:00 +00:00
|
|
|
double delay = drawableHitObject.HitObject.StartTime - (drawableHitObject.HitObject.HitWindows.WindowFor(HitResult.Miss) + RNG.Next(0, 300)) - Time.Current;
|
2020-11-20 11:08:05 +00:00
|
|
|
scheduledTasks.Add(Scheduler.AddDelayed(() => drawableHitObject.TriggerJudgement(), delay));
|
2019-07-29 08:05:13 +00:00
|
|
|
|
|
|
|
return drawableHitObject;
|
2018-07-06 08:38:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|