2019-10-09 15:06:16 +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
|
|
|
|
|
2022-05-31 14:00:30 +08:00
|
|
|
using System.Linq;
|
2019-10-09 15:06:16 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
2021-08-29 01:09:35 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2022-05-31 14:00:30 +08:00
|
|
|
using osu.Framework.Testing;
|
2021-11-12 03:42:33 +08:00
|
|
|
using osu.Game.Overlays;
|
2020-07-17 13:38:28 +08:00
|
|
|
using osu.Game.Rulesets.Edit;
|
2020-09-30 15:06:58 +08:00
|
|
|
using osu.Game.Rulesets.Osu;
|
2020-01-02 00:23:21 +08:00
|
|
|
using osu.Game.Screens.Edit;
|
2019-10-09 15:06:16 +08:00
|
|
|
using osu.Game.Screens.Edit.Timing;
|
2022-05-31 14:00:30 +08:00
|
|
|
using osu.Game.Screens.Edit.Timing.RowAttributes;
|
|
|
|
using osuTK.Input;
|
2019-10-09 15:06:16 +08:00
|
|
|
|
2020-04-23 16:07:55 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
2019-10-09 15:06:16 +08:00
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
public class TestSceneTimingScreen : EditorClockTestScene
|
|
|
|
{
|
2020-01-02 00:23:21 +08:00
|
|
|
[Cached(typeof(EditorBeatmap))]
|
2020-07-17 13:38:28 +08:00
|
|
|
[Cached(typeof(IBeatSnapProvider))]
|
2020-02-04 11:23:02 +08:00
|
|
|
private readonly EditorBeatmap editorBeatmap;
|
|
|
|
|
2021-11-12 03:42:33 +08:00
|
|
|
[Cached]
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
|
2022-05-31 14:00:30 +08:00
|
|
|
private TimingScreen timingScreen;
|
|
|
|
|
2020-09-30 15:39:02 +08:00
|
|
|
protected override bool ScrollUsingMouseWheel => false;
|
|
|
|
|
2020-02-04 11:23:02 +08:00
|
|
|
public TestSceneTimingScreen()
|
|
|
|
{
|
2020-09-30 15:06:58 +08:00
|
|
|
editorBeatmap = new EditorBeatmap(CreateBeatmap(new OsuRuleset().RulesetInfo));
|
2020-02-04 11:23:02 +08:00
|
|
|
}
|
2020-01-02 00:23:21 +08:00
|
|
|
|
2022-01-18 12:22:55 +08:00
|
|
|
protected override void LoadComplete()
|
2019-10-09 15:06:16 +08:00
|
|
|
{
|
2022-01-18 12:22:55 +08:00
|
|
|
base.LoadComplete();
|
|
|
|
|
2020-01-02 00:23:21 +08:00
|
|
|
Beatmap.Value = CreateWorkingBeatmap(editorBeatmap.PlayableBeatmap);
|
2020-09-30 15:16:14 +08:00
|
|
|
Beatmap.Disabled = true;
|
|
|
|
|
2022-05-31 14:00:30 +08:00
|
|
|
Child = timingScreen = new TimingScreen
|
2021-08-29 01:09:35 +08:00
|
|
|
{
|
|
|
|
State = { Value = Visibility.Visible },
|
|
|
|
};
|
2019-10-09 15:06:16 +08:00
|
|
|
}
|
2020-09-30 15:16:14 +08:00
|
|
|
|
2022-05-31 14:00:30 +08:00
|
|
|
[SetUpSteps]
|
|
|
|
public void SetUpSteps()
|
|
|
|
{
|
|
|
|
AddStep("Stop clock", () => Clock.Stop());
|
2022-05-31 14:54:07 +08:00
|
|
|
|
|
|
|
AddUntilStep("wait for rows to load", () => Child.ChildrenOfType<EffectRowAttribute>().Any());
|
2022-05-31 14:00:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestTrackingCurrentTimeWhileRunning()
|
|
|
|
{
|
|
|
|
AddStep("Select first effect point", () =>
|
|
|
|
{
|
|
|
|
InputManager.MoveMouseTo(Child.ChildrenOfType<EffectRowAttribute>().First());
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddUntilStep("Selection changed", () => timingScreen.SelectedGroup.Value.Time == 54670);
|
|
|
|
AddUntilStep("Ensure seeked to correct time", () => Clock.CurrentTimeAccurate == 54670);
|
|
|
|
|
|
|
|
AddStep("Seek to just before next point", () => Clock.Seek(69000));
|
|
|
|
AddStep("Start clock", () => Clock.Start());
|
|
|
|
|
|
|
|
AddUntilStep("Selection changed", () => timingScreen.SelectedGroup.Value.Time == 69670);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestTrackingCurrentTimeWhilePaused()
|
|
|
|
{
|
|
|
|
AddStep("Select first effect point", () =>
|
|
|
|
{
|
|
|
|
InputManager.MoveMouseTo(Child.ChildrenOfType<EffectRowAttribute>().First());
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddUntilStep("Selection changed", () => timingScreen.SelectedGroup.Value.Time == 54670);
|
|
|
|
AddUntilStep("Ensure seeked to correct time", () => Clock.CurrentTimeAccurate == 54670);
|
|
|
|
|
|
|
|
AddStep("Seek to later", () => Clock.Seek(80000));
|
|
|
|
AddUntilStep("Selection changed", () => timingScreen.SelectedGroup.Value.Time == 69670);
|
|
|
|
}
|
|
|
|
|
2020-09-30 15:16:14 +08:00
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
Beatmap.Disabled = false;
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
}
|
2019-10-09 15:06:16 +08:00
|
|
|
}
|
|
|
|
}
|