// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System.Linq; using NUnit.Framework; using osu.Framework.Testing; using osu.Game.Beatmaps; using osu.Game.Rulesets.Objects; using osu.Game.Rulesets.Objects.Types; using osu.Game.Rulesets.Osu.Objects; using osu.Game.Rulesets.Osu.UI; using osu.Game.Screens.Edit.Compose.Components; using osu.Game.Tests.Beatmaps; using osuTK; using osuTK.Input; namespace osu.Game.Rulesets.Osu.Tests.Editor { [TestFixture] public partial class TestSliderScaling : TestSceneOsuEditor { private OsuPlayfield playfield; protected override IBeatmap CreateBeatmap(RulesetInfo ruleset) => new TestBeatmap(Ruleset.Value, false); public override void SetUpSteps() { base.SetUpSteps(); AddStep("get playfield", () => playfield = Editor.ChildrenOfType().First()); AddStep("seek to first timing point", () => EditorClock.Seek(Beatmap.Value.Beatmap.ControlPointInfo.TimingPoints.First().Time)); } [Test] public void TestScalingLinearSlider() { Slider slider = null; AddStep("Add slider", () => { slider = new Slider { StartTime = EditorClock.CurrentTime, Position = new Vector2(300) }; PathControlPoint[] points = { new PathControlPoint(new Vector2(0), PathType.LINEAR), new PathControlPoint(new Vector2(100, 0)), }; slider.Path = new SliderPath(points); EditorBeatmap.Add(slider); }); AddAssert("ensure object placed", () => EditorBeatmap.HitObjects.Count == 1); moveMouse(new Vector2(300)); AddStep("select slider", () => InputManager.Click(MouseButton.Left)); double distanceBefore = 0; AddStep("store distance", () => distanceBefore = slider.Path.Distance); AddStep("move mouse to handle", () => InputManager.MoveMouseTo(Editor.ChildrenOfType().Skip(1).First())); AddStep("begin drag", () => InputManager.PressButton(MouseButton.Left)); moveMouse(new Vector2(300, 300)); AddStep("end drag", () => InputManager.ReleaseButton(MouseButton.Left)); AddAssert("slider length shrunk", () => slider.Path.Distance < distanceBefore); } [Test] [Timeout(4000)] //Catches crashes in other threads, but not ideal. Hopefully there is a improvement to this. public void TestScalingSliderFlat( [Values(0, 1, 2, 3)] int type_int ) { Slider slider = null; switch (type_int) { case 0: AddStep("Add linear slider", () => { slider = new Slider { StartTime = EditorClock.CurrentTime, Position = new Vector2(300) }; PathControlPoint[] points = { new PathControlPoint(new Vector2(0), PathType.LINEAR), new PathControlPoint(new Vector2(50, 100)), }; slider.Path = new SliderPath(points); EditorBeatmap.Add(slider); }); break; case 1: AddStep("Add perfect curve slider", () => { slider = new Slider { StartTime = EditorClock.CurrentTime, Position = new Vector2(300) }; PathControlPoint[] points = { new PathControlPoint(new Vector2(0), PathType.PERFECT_CURVE), new PathControlPoint(new Vector2(50, 25)), new PathControlPoint(new Vector2(25, 100)), }; slider.Path = new SliderPath(points); EditorBeatmap.Add(slider); }); break; case 2: AddStep("Add bezier slider", () => { slider = new Slider { StartTime = EditorClock.CurrentTime, Position = new Vector2(300) }; PathControlPoint[] points = { new PathControlPoint(new Vector2(0), PathType.BEZIER), new PathControlPoint(new Vector2(50, 25)), new PathControlPoint(new Vector2(25, 80)), new PathControlPoint(new Vector2(40, 100)), }; slider.Path = new SliderPath(points); EditorBeatmap.Add(slider); }); break; AddStep("Add perfect curve slider", () => { slider = new Slider { StartTime = EditorClock.CurrentTime, Position = new Vector2(300) }; PathControlPoint[] points = { new PathControlPoint(new Vector2(0), PathType.PERFECT_CURVE), new PathControlPoint(new Vector2(50, 25)), new PathControlPoint(new Vector2(25, 100)), }; slider.Path = new SliderPath(points); EditorBeatmap.Add(slider); }); break; case 3: AddStep("Add catmull slider", () => { slider = new Slider { StartTime = EditorClock.CurrentTime, Position = new Vector2(300) }; PathControlPoint[] points = { new PathControlPoint(new Vector2(0), PathType.CATMULL), new PathControlPoint(new Vector2(50, 25)), new PathControlPoint(new Vector2(25, 80)), new PathControlPoint(new Vector2(40, 100)), }; slider.Path = new SliderPath(points); EditorBeatmap.Add(slider); }); break; } AddAssert("ensure object placed", () => EditorBeatmap.HitObjects.Count == 1); moveMouse(new Vector2(300)); AddStep("select slider", () => InputManager.Click(MouseButton.Left)); AddStep("slider is valid", () => slider.Path.GetSegmentEnds()); //To run ensureValid(); SelectionBoxDragHandle dragHandle = null!; AddStep("store drag handle", () => dragHandle = Editor.ChildrenOfType().Skip(1).First()); AddAssert("is dragHandle not null", () => dragHandle != null); AddStep("move mouse to handle", () => InputManager.MoveMouseTo(dragHandle)); AddStep("begin drag", () => InputManager.PressButton(MouseButton.Left)); moveMouse(new Vector2(0, 300)); AddStep("end drag", () => InputManager.ReleaseButton(MouseButton.Left)); AddStep("move mouse to handle", () => InputManager.MoveMouseTo(dragHandle)); AddStep("begin drag", () => InputManager.PressButton(MouseButton.Left)); moveMouse(new Vector2(0, 300)); //Should crash here if broken, although doesn't count as failed... AddStep("end drag", () => InputManager.ReleaseButton(MouseButton.Left)); } private void moveMouse(Vector2 pos) => AddStep($"move mouse to {pos}", () => InputManager.MoveMouseTo(playfield.ToScreenSpace(pos))); } }