2022-05-20 13:34:33 +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 System.Linq;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
using osu.Game.Screens.Edit;
|
|
|
|
using osu.Game.Screens.Edit.Timing;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
public class TestSceneTapTimingControl : EditorClockTestScene
|
|
|
|
{
|
|
|
|
[Cached(typeof(EditorBeatmap))]
|
|
|
|
[Cached(typeof(IBeatSnapProvider))]
|
|
|
|
private readonly EditorBeatmap editorBeatmap;
|
|
|
|
|
|
|
|
[Cached]
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
|
|
|
|
[Cached]
|
|
|
|
private Bindable<ControlPointGroup> selectedGroup = new Bindable<ControlPointGroup>();
|
|
|
|
|
|
|
|
private TapTimingControl control;
|
|
|
|
|
|
|
|
public TestSceneTapTimingControl()
|
|
|
|
{
|
2022-05-20 14:56:39 +08:00
|
|
|
var playableBeatmap = CreateBeatmap(new OsuRuleset().RulesetInfo);
|
|
|
|
|
|
|
|
// Ensure time doesn't end while testing
|
|
|
|
playableBeatmap.BeatmapInfo.Length = 1200000;
|
|
|
|
|
|
|
|
editorBeatmap = new EditorBeatmap(playableBeatmap);
|
|
|
|
|
2022-05-20 13:34:33 +08:00
|
|
|
selectedGroup.Value = editorBeatmap.ControlPointInfo.Groups.First();
|
|
|
|
}
|
|
|
|
|
2022-05-20 14:56:39 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
Beatmap.Value = CreateWorkingBeatmap(editorBeatmap.PlayableBeatmap);
|
|
|
|
Beatmap.Disabled = true;
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Width = 400,
|
|
|
|
Scale = new Vector2(1.5f),
|
|
|
|
Child = control = new TapTimingControl(),
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-05-20 13:34:33 +08:00
|
|
|
[Test]
|
|
|
|
public void TestTapThenReset()
|
|
|
|
{
|
|
|
|
AddStep("click tap button", () =>
|
|
|
|
{
|
|
|
|
control.ChildrenOfType<RoundedButton>()
|
|
|
|
.First(b => b.Text == "Tap to beat")
|
|
|
|
.TriggerClick();
|
|
|
|
});
|
|
|
|
|
|
|
|
AddUntilStep("wait for track playing", () => Clock.IsRunning);
|
|
|
|
|
|
|
|
AddStep("click reset button", () =>
|
|
|
|
{
|
|
|
|
control.ChildrenOfType<RoundedButton>()
|
|
|
|
.First(b => b.Text == "Reset")
|
|
|
|
.TriggerClick();
|
|
|
|
});
|
|
|
|
|
|
|
|
AddUntilStep("wait for track stopped", () => !Clock.IsRunning);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestBasic()
|
|
|
|
{
|
2022-05-20 14:56:39 +08:00
|
|
|
AddStep("set low bpm", () =>
|
|
|
|
{
|
|
|
|
editorBeatmap.ControlPointInfo.TimingPoints.First().BeatLength = 1000;
|
|
|
|
});
|
2022-05-20 13:34:33 +08:00
|
|
|
|
2022-05-20 14:56:39 +08:00
|
|
|
AddStep("click tap button", () =>
|
2022-05-20 13:34:33 +08:00
|
|
|
{
|
2022-05-20 14:56:39 +08:00
|
|
|
control.ChildrenOfType<RoundedButton>()
|
|
|
|
.First(b => b.Text == "Tap to beat")
|
|
|
|
.TriggerClick();
|
|
|
|
});
|
|
|
|
|
|
|
|
AddSliderStep("BPM", 30, 400, 60, bpm => editorBeatmap.ControlPointInfo.TimingPoints.First().BeatLength = 60000f / bpm);
|
2022-05-20 13:34:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
Beatmap.Disabled = false;
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|