mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:37:25 +08:00
81 lines
3.4 KiB
C#
81 lines
3.4 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Testing;
|
|
using osu.Framework.Utils;
|
|
using osu.Game.Rulesets.Osu.Edit;
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles;
|
|
using osu.Game.Tests.Visual;
|
|
using osuTK;
|
|
using osuTK.Input;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests.Editor
|
|
{
|
|
public class TestSceneOsuEditorGrids : EditorTestScene
|
|
{
|
|
protected override Ruleset CreateEditorRuleset() => new OsuRuleset();
|
|
|
|
[Test]
|
|
public void TestGridExclusivity()
|
|
{
|
|
AddStep("enable distance snap grid", () => InputManager.Key(Key.T));
|
|
AddStep("select second object", () => EditorBeatmap.SelectedHitObjects.Add(EditorBeatmap.HitObjects.ElementAt(1)));
|
|
AddUntilStep("distance snap grid visible", () => this.ChildrenOfType<OsuDistanceSnapGrid>().Any());
|
|
rectangularGridActive(false);
|
|
|
|
AddStep("enable rectangular grid", () => InputManager.Key(Key.Y));
|
|
AddUntilStep("distance snap grid hidden", () => !this.ChildrenOfType<OsuDistanceSnapGrid>().Any());
|
|
rectangularGridActive(true);
|
|
|
|
AddStep("enable distance snap grid", () => InputManager.Key(Key.T));
|
|
AddStep("select second object", () => EditorBeatmap.SelectedHitObjects.Add(EditorBeatmap.HitObjects.ElementAt(1)));
|
|
AddUntilStep("distance snap grid visible", () => this.ChildrenOfType<OsuDistanceSnapGrid>().Any());
|
|
rectangularGridActive(false);
|
|
}
|
|
|
|
private void rectangularGridActive(bool active)
|
|
{
|
|
AddStep("choose placement tool", () => InputManager.Key(Key.Number2));
|
|
AddStep("move cursor to (1, 1)", () =>
|
|
{
|
|
var composer = Editor.ChildrenOfType<OsuRectangularPositionSnapGrid>().Single();
|
|
InputManager.MoveMouseTo(composer.ToScreenSpace(new Vector2(1, 1)));
|
|
});
|
|
|
|
if (active)
|
|
AddAssert("placement blueprint at (0, 0)", () => Precision.AlmostEquals(Editor.ChildrenOfType<HitCirclePlacementBlueprint>().Single().HitObject.Position, new Vector2(0, 0)));
|
|
else
|
|
AddAssert("placement blueprint at (1, 1)", () => Precision.AlmostEquals(Editor.ChildrenOfType<HitCirclePlacementBlueprint>().Single().HitObject.Position, new Vector2(1, 1)));
|
|
|
|
AddStep("choose selection tool", () => InputManager.Key(Key.Number1));
|
|
}
|
|
|
|
[Test]
|
|
public void TestGridSizeToggling()
|
|
{
|
|
AddStep("enable rectangular grid", () => InputManager.Key(Key.Y));
|
|
AddUntilStep("rectangular grid visible", () => this.ChildrenOfType<OsuRectangularPositionSnapGrid>().Any());
|
|
gridSizeIs(4);
|
|
|
|
nextGridSizeIs(8);
|
|
nextGridSizeIs(16);
|
|
nextGridSizeIs(32);
|
|
nextGridSizeIs(4);
|
|
}
|
|
|
|
private void nextGridSizeIs(int size)
|
|
{
|
|
AddStep("toggle to next grid size", () => InputManager.Key(Key.G));
|
|
gridSizeIs(size);
|
|
}
|
|
|
|
private void gridSizeIs(int size)
|
|
=> AddAssert($"grid size is {size}", () => this.ChildrenOfType<OsuRectangularPositionSnapGrid>().Single().Spacing == new Vector2(size)
|
|
&& EditorBeatmap.BeatmapInfo.GridSize == size);
|
|
}
|
|
}
|