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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2022-05-20 13:34:33 +08:00
|
|
|
using System.Linq;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
2022-05-23 16:56:32 +08:00
|
|
|
using osu.Framework.Audio;
|
2022-05-20 13:34:33 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2022-05-23 16:56:32 +08:00
|
|
|
using osu.Game.Graphics.Sprites;
|
2022-06-02 16:29:39 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2022-05-20 13:34:33 +08:00
|
|
|
using osu.Game.Overlays;
|
|
|
|
using osu.Game.Screens.Edit;
|
|
|
|
using osu.Game.Screens.Edit.Timing;
|
|
|
|
using osuTK;
|
2022-11-23 23:03:54 +08:00
|
|
|
using osuTK.Input;
|
2022-05-20 13:34:33 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
|
|
|
{
|
|
|
|
[TestFixture]
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class TestSceneTapTimingControl : EditorClockTestScene
|
2022-05-20 13:34:33 +08:00
|
|
|
{
|
2022-05-23 16:56:32 +08:00
|
|
|
private EditorBeatmap editorBeatmap => editorBeatmapContainer?.EditorBeatmap;
|
|
|
|
|
|
|
|
private TestSceneHitObjectComposer.EditorBeatmapContainer editorBeatmapContainer;
|
2022-05-20 13:34:33 +08:00
|
|
|
|
|
|
|
[Cached]
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
|
|
|
|
[Cached]
|
|
|
|
private Bindable<ControlPointGroup> selectedGroup = new Bindable<ControlPointGroup>();
|
|
|
|
|
|
|
|
private TapTimingControl control;
|
2022-05-23 16:56:32 +08:00
|
|
|
private OsuSpriteText timingInfo;
|
2022-05-20 13:34:33 +08:00
|
|
|
|
2022-05-23 16:56:32 +08:00
|
|
|
[Resolved]
|
|
|
|
private AudioManager audio { get; set; }
|
2022-05-20 14:56:39 +08:00
|
|
|
|
2022-05-23 16:56:32 +08:00
|
|
|
[SetUpSteps]
|
|
|
|
public void SetUpSteps()
|
|
|
|
{
|
|
|
|
AddStep("create beatmap", () =>
|
|
|
|
{
|
|
|
|
Beatmap.Value = new WaveformTestBeatmap(audio);
|
|
|
|
});
|
2022-05-20 14:56:39 +08:00
|
|
|
|
2022-05-23 16:56:32 +08:00
|
|
|
AddStep("Create component", () =>
|
|
|
|
{
|
|
|
|
Child = editorBeatmapContainer = new TestSceneHitObjectComposer.EditorBeatmapContainer(Beatmap.Value)
|
|
|
|
{
|
|
|
|
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(),
|
|
|
|
},
|
|
|
|
timingInfo = new OsuSpriteText(),
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
selectedGroup.Value = editorBeatmap.ControlPointInfo.Groups.First();
|
|
|
|
});
|
2022-05-20 13:34:33 +08:00
|
|
|
}
|
|
|
|
|
2022-05-23 16:56:32 +08:00
|
|
|
protected override void Update()
|
2022-05-20 14:56:39 +08:00
|
|
|
{
|
2022-05-23 16:56:32 +08:00
|
|
|
base.Update();
|
2022-05-20 14:56:39 +08:00
|
|
|
|
2022-05-23 16:56:32 +08:00
|
|
|
if (selectedGroup.Value != null)
|
|
|
|
timingInfo.Text = $"offset: {selectedGroup.Value.Time:N2} bpm: {selectedGroup.Value.ControlPoints.OfType<TimingControlPoint>().First().BPM:N2}";
|
2022-05-20 14:56:39 +08:00
|
|
|
}
|
|
|
|
|
2022-05-31 20:10:02 +08:00
|
|
|
[Test]
|
2022-06-02 16:29:39 +08:00
|
|
|
public void TestBasic()
|
2022-05-31 20:10:02 +08:00
|
|
|
{
|
2022-06-02 16:29:39 +08:00
|
|
|
AddStep("set low bpm", () =>
|
|
|
|
{
|
|
|
|
editorBeatmap.ControlPointInfo.TimingPoints.First().BeatLength = 1000;
|
|
|
|
});
|
2022-05-31 20:10:02 +08:00
|
|
|
|
2022-05-20 13:34:33 +08:00
|
|
|
AddStep("click tap button", () =>
|
|
|
|
{
|
2022-06-02 16:29:39 +08:00
|
|
|
control.ChildrenOfType<OsuButton>()
|
2022-05-20 16:12:35 +08:00
|
|
|
.Last()
|
2022-05-20 13:34:33 +08:00
|
|
|
.TriggerClick();
|
|
|
|
});
|
|
|
|
|
2022-06-02 16:29:39 +08:00
|
|
|
AddSliderStep("BPM", 30, 400, 128, bpm =>
|
2022-05-20 13:34:33 +08:00
|
|
|
{
|
2022-06-02 16:29:39 +08:00
|
|
|
if (editorBeatmap == null)
|
|
|
|
return;
|
2022-05-20 13:34:33 +08:00
|
|
|
|
2022-06-02 16:29:39 +08:00
|
|
|
editorBeatmap.ControlPointInfo.TimingPoints.First().BeatLength = 60000f / bpm;
|
|
|
|
});
|
2022-05-20 13:34:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
2022-06-02 16:29:39 +08:00
|
|
|
public void TestTapThenReset()
|
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-06-02 16:29:39 +08:00
|
|
|
control.ChildrenOfType<OsuButton>()
|
2022-05-20 16:12:35 +08:00
|
|
|
.Last()
|
2022-05-20 14:56:39 +08:00
|
|
|
.TriggerClick();
|
|
|
|
});
|
|
|
|
|
2022-08-17 14:40:01 +08:00
|
|
|
AddUntilStep("wait for track playing", () => EditorClock.IsRunning);
|
2022-05-23 16:56:32 +08:00
|
|
|
|
2022-06-02 16:29:39 +08:00
|
|
|
AddStep("click reset button", () =>
|
|
|
|
{
|
|
|
|
control.ChildrenOfType<OsuButton>()
|
|
|
|
.First()
|
|
|
|
.TriggerClick();
|
2022-05-23 16:56:32 +08:00
|
|
|
});
|
2022-06-02 16:29:39 +08:00
|
|
|
|
2022-08-17 14:40:01 +08:00
|
|
|
AddUntilStep("wait for track stopped", () => !EditorClock.IsRunning);
|
2022-05-20 13:34:33 +08:00
|
|
|
}
|
|
|
|
|
2022-11-23 23:03:54 +08:00
|
|
|
[Test]
|
2022-11-24 00:19:58 +08:00
|
|
|
public void TestNoCrashesWhenNoGroupSelected()
|
2022-11-23 23:03:54 +08:00
|
|
|
{
|
|
|
|
AddStep("unset selected group", () => selectedGroup.Value = null);
|
|
|
|
AddStep("press T to tap", () => InputManager.Key(Key.T));
|
2022-11-24 00:19:58 +08:00
|
|
|
|
|
|
|
AddStep("click tap button", () =>
|
|
|
|
{
|
|
|
|
control.ChildrenOfType<OsuButton>()
|
|
|
|
.Last()
|
|
|
|
.TriggerClick();
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("click reset button", () =>
|
|
|
|
{
|
|
|
|
control.ChildrenOfType<OsuButton>()
|
|
|
|
.First()
|
|
|
|
.TriggerClick();
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("adjust offset", () =>
|
|
|
|
{
|
|
|
|
var adjustOffsetButton = control.ChildrenOfType<TimingAdjustButton>().First();
|
|
|
|
InputManager.MoveMouseTo(adjustOffsetButton);
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("adjust BPM", () =>
|
|
|
|
{
|
|
|
|
var adjustBPMButton = control.ChildrenOfType<TimingAdjustButton>().Last();
|
|
|
|
InputManager.MoveMouseTo(adjustBPMButton);
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
2022-11-23 23:03:54 +08:00
|
|
|
}
|
|
|
|
|
2022-05-20 13:34:33 +08:00
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
Beatmap.Disabled = false;
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|