1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 18:27:18 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.5 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-07-06 17:38:58 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
using System.Collections.Generic;
using System.Diagnostics;
using osu.Framework.Threading;
2020-01-09 13:43:44 +09:00
using osu.Framework.Utils;
using osu.Game.Beatmaps;
2019-07-29 17:05:13 +09:00
using osu.Game.Rulesets.Osu.Objects;
2018-07-06 17:38:58 +09:00
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Osu.Tests
{
public partial class TestSceneShaking : TestSceneHitCircle
2018-07-06 17:38:58 +09: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 15:06:56 +09:00
protected override TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto, double hitOffset = 0)
2018-07-06 17:38:58 +09:00
{
2021-06-17 15:06:56 +09:00
var drawableHitObject = base.CreateDrawableHitCircle(circle, auto, hitOffset);
2018-07-06 17:38:58 +09:00
Debug.Assert(drawableHitObject.HitObject.HitWindows != null);
2019-09-06 15:24:00 +09:00
double delay = drawableHitObject.HitObject.StartTime - (drawableHitObject.HitObject.HitWindows.WindowFor(HitResult.Miss) + RNG.Next(0, 300)) - Time.Current;
scheduledTasks.Add(Scheduler.AddDelayed(() => drawableHitObject.TriggerJudgement(), delay));
2019-07-29 17:05:13 +09:00
return drawableHitObject;
2018-07-06 17:38:58 +09:00
}
}
}