2020-10-04 20:50:25 +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.
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
2022-09-07 16:38:00 +08:00
|
|
|
using osu.Framework.Audio;
|
|
|
|
using osu.Framework.Bindables;
|
2020-10-04 20:50:25 +08:00
|
|
|
using osu.Framework.Timing;
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.NonVisual
|
|
|
|
{
|
|
|
|
[TestFixture]
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class GameplayClockContainerTest
|
2020-10-04 20:50:25 +08:00
|
|
|
{
|
|
|
|
[TestCase(0)]
|
|
|
|
[TestCase(1)]
|
2022-09-06 19:06:30 +08:00
|
|
|
public void TestTrueGameplayRateWithGameplayAdjustment(double underlyingClockRate)
|
2020-10-04 20:50:25 +08:00
|
|
|
{
|
|
|
|
var framedClock = new FramedClock(new ManualClock { Rate = underlyingClockRate });
|
2022-08-15 18:46:29 +08:00
|
|
|
var gameplayClock = new TestGameplayClockContainer(framedClock);
|
2020-10-04 20:50:25 +08:00
|
|
|
|
2022-09-06 19:06:30 +08:00
|
|
|
Assert.That(gameplayClock.GetTrueGameplayRate(), Is.EqualTo(2));
|
2020-10-04 20:50:25 +08:00
|
|
|
}
|
|
|
|
|
2022-11-24 13:32:20 +08:00
|
|
|
private partial class TestGameplayClockContainer : GameplayClockContainer
|
2020-10-04 20:50:25 +08:00
|
|
|
{
|
2022-08-15 18:46:29 +08:00
|
|
|
public TestGameplayClockContainer(IFrameBasedClock underlyingClock)
|
2020-10-04 20:50:25 +08:00
|
|
|
: base(underlyingClock)
|
|
|
|
{
|
2022-09-08 16:14:06 +08:00
|
|
|
AdjustmentsFromMods.AddAdjustment(AdjustableProperty.Frequency, new BindableDouble(2.0));
|
2020-10-04 20:50:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|