2020-06-14 10:34:07 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-06-14 10:34:07 +08:00
|
|
|
using NUnit.Framework;
|
2022-01-30 04:39:45 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
using osu.Framework.Bindables;
|
2020-06-19 21:43:25 +08:00
|
|
|
using osu.Framework.Testing;
|
2022-01-30 04:39:45 +08:00
|
|
|
using osu.Framework.Timing;
|
|
|
|
using osu.Game.Configuration;
|
2020-06-14 10:34:07 +08:00
|
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Gameplay
|
|
|
|
{
|
2020-06-19 21:43:25 +08:00
|
|
|
[HeadlessTest]
|
2021-04-16 19:51:42 +08:00
|
|
|
public class TestSceneMasterGameplayClockContainer : OsuTestScene
|
2020-06-14 10:34:07 +08:00
|
|
|
{
|
2022-01-30 04:39:45 +08:00
|
|
|
private OsuConfigManager localConfig;
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
Dependencies.Cache(localConfig = new OsuConfigManager(LocalStorage));
|
|
|
|
}
|
|
|
|
|
2022-04-14 17:09:23 +08:00
|
|
|
[SetUpSteps]
|
|
|
|
public void SetUpSteps()
|
|
|
|
{
|
|
|
|
AddStep("reset audio offset", () => localConfig.SetValue(OsuSetting.AudioOffset, 0.0));
|
|
|
|
}
|
|
|
|
|
2020-06-14 10:34:07 +08:00
|
|
|
[Test]
|
|
|
|
public void TestStartThenElapsedTime()
|
|
|
|
{
|
2022-01-31 14:23:31 +08:00
|
|
|
GameplayClockContainer gameplayClockContainer = null;
|
2020-06-14 10:34:07 +08:00
|
|
|
|
2020-08-06 17:31:08 +08:00
|
|
|
AddStep("create container", () =>
|
|
|
|
{
|
|
|
|
var working = CreateWorkingBeatmap(new OsuRuleset().RulesetInfo);
|
2022-03-18 17:16:45 +08:00
|
|
|
Child = gameplayClockContainer = new MasterGameplayClockContainer(working, 0);
|
2020-08-06 17:31:08 +08:00
|
|
|
});
|
|
|
|
|
2022-01-31 14:23:31 +08:00
|
|
|
AddStep("start clock", () => gameplayClockContainer.Start());
|
2022-08-15 16:06:24 +08:00
|
|
|
AddUntilStep("elapsed greater than zero", () => gameplayClockContainer.ElapsedFrameTime > 0);
|
2020-06-14 10:34:07 +08:00
|
|
|
}
|
2021-04-20 12:56:13 +08:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestElapseThenReset()
|
|
|
|
{
|
2022-01-31 14:23:31 +08:00
|
|
|
GameplayClockContainer gameplayClockContainer = null;
|
2021-04-20 12:56:13 +08:00
|
|
|
|
|
|
|
AddStep("create container", () =>
|
|
|
|
{
|
|
|
|
var working = CreateWorkingBeatmap(new OsuRuleset().RulesetInfo);
|
2022-03-18 17:16:45 +08:00
|
|
|
Child = gameplayClockContainer = new MasterGameplayClockContainer(working, 0);
|
2021-04-20 12:56:13 +08:00
|
|
|
});
|
|
|
|
|
2022-01-31 14:23:31 +08:00
|
|
|
AddStep("start clock", () => gameplayClockContainer.Start());
|
2022-08-15 16:06:24 +08:00
|
|
|
AddUntilStep("current time greater 2000", () => gameplayClockContainer.CurrentTime > 2000);
|
2021-04-20 12:56:13 +08:00
|
|
|
|
|
|
|
double timeAtReset = 0;
|
|
|
|
AddStep("reset clock", () =>
|
|
|
|
{
|
2022-08-15 16:06:24 +08:00
|
|
|
timeAtReset = gameplayClockContainer.CurrentTime;
|
2022-01-31 14:23:31 +08:00
|
|
|
gameplayClockContainer.Reset();
|
2021-04-20 12:56:13 +08:00
|
|
|
});
|
|
|
|
|
2022-08-15 16:06:24 +08:00
|
|
|
AddAssert("current time < time at reset", () => gameplayClockContainer.CurrentTime < timeAtReset);
|
2021-04-20 12:56:13 +08:00
|
|
|
}
|
2022-01-30 04:39:45 +08:00
|
|
|
|
|
|
|
[Test]
|
2022-07-01 15:17:40 +08:00
|
|
|
[FlakyTest]
|
|
|
|
/*
|
|
|
|
* Fail rate around 0.15%
|
|
|
|
*
|
|
|
|
* TearDown : osu.Framework.Testing.Drawables.Steps.AssertButton+TracedException : gameplay clock time = 2500
|
|
|
|
* --TearDown
|
|
|
|
* at osu.Framework.Threading.ScheduledDelegate.RunTaskInternal()
|
|
|
|
* at osu.Framework.Threading.Scheduler.Update()
|
|
|
|
* at osu.Framework.Graphics.Drawable.UpdateSubTree()
|
|
|
|
*/
|
2022-01-30 04:39:45 +08:00
|
|
|
public void TestSeekPerformsInGameplayTime(
|
|
|
|
[Values(1.0, 0.5, 2.0)] double clockRate,
|
|
|
|
[Values(0.0, 200.0, -200.0)] double userOffset,
|
2022-03-24 13:55:01 +08:00
|
|
|
[Values(false, true)] bool whileStopped,
|
|
|
|
[Values(false, true)] bool setAudioOffsetBeforeConstruction)
|
2022-01-30 04:39:45 +08:00
|
|
|
{
|
|
|
|
ClockBackedTestWorkingBeatmap working = null;
|
2022-01-31 14:23:31 +08:00
|
|
|
GameplayClockContainer gameplayClockContainer = null;
|
2022-01-30 04:39:45 +08:00
|
|
|
|
2022-03-24 13:55:01 +08:00
|
|
|
if (setAudioOffsetBeforeConstruction)
|
|
|
|
AddStep($"preset audio offset to {userOffset}", () => localConfig.SetValue(OsuSetting.AudioOffset, userOffset));
|
|
|
|
|
2022-01-30 04:39:45 +08:00
|
|
|
AddStep("create container", () =>
|
|
|
|
{
|
|
|
|
working = new ClockBackedTestWorkingBeatmap(new OsuRuleset().RulesetInfo, new FramedClock(new ManualClock()), Audio);
|
2022-03-18 17:16:45 +08:00
|
|
|
Child = gameplayClockContainer = new MasterGameplayClockContainer(working, 0);
|
2022-01-30 04:39:45 +08:00
|
|
|
|
2022-03-18 14:08:25 +08:00
|
|
|
gameplayClockContainer.Reset(startClock: !whileStopped);
|
2022-01-30 04:39:45 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
AddStep($"set clock rate to {clockRate}", () => working.Track.AddAdjustment(AdjustableProperty.Frequency, new BindableDouble(clockRate)));
|
2022-03-24 13:55:01 +08:00
|
|
|
|
|
|
|
if (!setAudioOffsetBeforeConstruction)
|
|
|
|
AddStep($"set audio offset to {userOffset}", () => localConfig.SetValue(OsuSetting.AudioOffset, userOffset));
|
2022-01-30 04:39:45 +08:00
|
|
|
|
2022-01-31 14:23:31 +08:00
|
|
|
AddStep("seek to 2500", () => gameplayClockContainer.Seek(2500));
|
2022-07-07 06:00:42 +08:00
|
|
|
AddStep("gameplay clock time = 2500", () => Assert.AreEqual(gameplayClockContainer.CurrentTime, 2500, 10f));
|
2022-01-30 04:39:45 +08:00
|
|
|
|
2022-01-31 14:23:31 +08:00
|
|
|
AddStep("seek to 10000", () => gameplayClockContainer.Seek(10000));
|
2022-07-07 06:00:42 +08:00
|
|
|
AddStep("gameplay clock time = 10000", () => Assert.AreEqual(gameplayClockContainer.CurrentTime, 10000, 10f));
|
2022-01-30 04:39:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
localConfig?.Dispose();
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
}
|
2020-06-14 10:34:07 +08:00
|
|
|
}
|
|
|
|
}
|