2021-03-20 05:20:26 +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
|
|
|
|
|
2021-03-20 05:20:26 +08:00
|
|
|
using System.Linq;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2021-09-26 21:08:43 +08:00
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2021-03-20 05:20:26 +08:00
|
|
|
using osu.Game.Rulesets.Osu;
|
2021-09-26 21:08:43 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles;
|
2021-03-20 05:20:26 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2021-09-26 21:08:43 +08:00
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
|
|
using osu.Game.Rulesets.UI;
|
2021-03-20 05:20:26 +08:00
|
|
|
using osu.Game.Screens.Edit.Compose.Components;
|
2021-09-26 21:29:00 +08:00
|
|
|
using osu.Game.Screens.Edit.Compose.Components.Timeline;
|
2021-03-20 05:20:26 +08:00
|
|
|
using osu.Game.Tests.Beatmaps;
|
|
|
|
using osuTK;
|
|
|
|
using osuTK.Input;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
|
|
|
{
|
2021-09-26 21:09:30 +08:00
|
|
|
public class TestSceneBlueprintOrdering : EditorTestScene
|
2021-03-20 05:20:26 +08:00
|
|
|
{
|
|
|
|
protected override Ruleset CreateEditorRuleset() => new OsuRuleset();
|
|
|
|
|
|
|
|
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset) => new TestBeatmap(ruleset, false);
|
|
|
|
|
2021-04-27 14:40:35 +08:00
|
|
|
private EditorBlueprintContainer blueprintContainer
|
|
|
|
=> Editor.ChildrenOfType<EditorBlueprintContainer>().First();
|
2021-03-20 05:20:26 +08:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestSelectedObjectHasPriorityWhenOverlapping()
|
|
|
|
{
|
|
|
|
var firstSlider = new Slider
|
|
|
|
{
|
|
|
|
Path = new SliderPath(new[]
|
|
|
|
{
|
|
|
|
new PathControlPoint(new Vector2()),
|
|
|
|
new PathControlPoint(new Vector2(150, -50)),
|
|
|
|
new PathControlPoint(new Vector2(300, 0))
|
|
|
|
}),
|
|
|
|
Position = new Vector2(0, 100)
|
|
|
|
};
|
|
|
|
var secondSlider = new Slider
|
|
|
|
{
|
|
|
|
Path = new SliderPath(new[]
|
|
|
|
{
|
|
|
|
new PathControlPoint(new Vector2()),
|
|
|
|
new PathControlPoint(new Vector2(-50, 50)),
|
|
|
|
new PathControlPoint(new Vector2(-100, 100))
|
|
|
|
}),
|
|
|
|
Position = new Vector2(200, 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
AddStep("add overlapping sliders", () =>
|
|
|
|
{
|
|
|
|
EditorBeatmap.Add(firstSlider);
|
|
|
|
EditorBeatmap.Add(secondSlider);
|
|
|
|
});
|
|
|
|
AddStep("select first slider", () => EditorBeatmap.SelectedHitObjects.Add(firstSlider));
|
|
|
|
|
|
|
|
AddStep("move mouse to common point", () =>
|
|
|
|
{
|
|
|
|
var pos = blueprintContainer.ChildrenOfType<PathControlPointPiece>().ElementAt(1).ScreenSpaceDrawQuad.Centre;
|
|
|
|
InputManager.MoveMouseTo(pos);
|
|
|
|
});
|
|
|
|
AddStep("right click", () => InputManager.Click(MouseButton.Right));
|
|
|
|
|
|
|
|
AddAssert("selection is unchanged", () => EditorBeatmap.SelectedHitObjects.Single() == firstSlider);
|
|
|
|
}
|
2021-09-26 21:08:43 +08:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestOverlappingObjectsWithSameStartTime()
|
|
|
|
{
|
|
|
|
AddStep("add overlapping circles", () =>
|
|
|
|
{
|
|
|
|
EditorBeatmap.Add(createHitCircle(50, OsuPlayfield.BASE_SIZE / 2));
|
|
|
|
EditorBeatmap.Add(createHitCircle(50, OsuPlayfield.BASE_SIZE / 2 + new Vector2(-10, -20)));
|
|
|
|
EditorBeatmap.Add(createHitCircle(50, OsuPlayfield.BASE_SIZE / 2 + new Vector2(10, -20)));
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("click at centre of playfield", () =>
|
|
|
|
{
|
|
|
|
var hitObjectContainer = Editor.ChildrenOfType<HitObjectContainer>().Single();
|
|
|
|
var centre = hitObjectContainer.ToScreenSpace(OsuPlayfield.BASE_SIZE / 2);
|
|
|
|
InputManager.MoveMouseTo(centre);
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddAssert("frontmost object selected", () =>
|
|
|
|
{
|
|
|
|
var hasCombo = Editor.ChildrenOfType<HitCircleSelectionBlueprint>().Single(b => b.IsSelected).Item as IHasComboInformation;
|
|
|
|
return hasCombo?.IndexInCurrentCombo == 0;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-09-26 21:29:00 +08:00
|
|
|
[Test]
|
|
|
|
public void TestPlacementOfConcurrentObjectWithDuration()
|
|
|
|
{
|
|
|
|
AddStep("seek to timing point", () => EditorClock.Seek(2170));
|
|
|
|
AddStep("add hit circle", () => EditorBeatmap.Add(createHitCircle(2170, Vector2.Zero)));
|
|
|
|
|
|
|
|
AddStep("choose spinner placement tool", () =>
|
|
|
|
{
|
|
|
|
InputManager.Key(Key.Number4);
|
|
|
|
var hitObjectContainer = Editor.ChildrenOfType<HitObjectContainer>().Single();
|
|
|
|
InputManager.MoveMouseTo(hitObjectContainer.ScreenSpaceDrawQuad.Centre);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("begin placing spinner", () =>
|
|
|
|
{
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
AddStep("end placing spinner", () =>
|
|
|
|
{
|
|
|
|
EditorClock.Seek(2500);
|
|
|
|
InputManager.Click(MouseButton.Right);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddAssert("two timeline blueprints present", () => Editor.ChildrenOfType<TimelineHitObjectBlueprint>().Count() == 2);
|
|
|
|
}
|
|
|
|
|
2021-09-26 21:08:43 +08:00
|
|
|
private HitCircle createHitCircle(double startTime, Vector2 position) => new HitCircle
|
|
|
|
{
|
|
|
|
StartTime = startTime,
|
|
|
|
Position = position,
|
|
|
|
};
|
2021-03-20 05:20:26 +08:00
|
|
|
}
|
|
|
|
}
|