mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:07:38 +08:00
96 lines
4.3 KiB
C#
96 lines
4.3 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.
|
|
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Osu.Edit;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
using osu.Game.Screens.Edit.Components.RadioButtons;
|
|
using osu.Game.Tests.Beatmaps;
|
|
using osuTK;
|
|
using osuTK.Input;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests.Editor
|
|
{
|
|
public partial class TestScenePreciseRotation : TestSceneOsuEditor
|
|
{
|
|
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset) => new TestBeatmap(ruleset);
|
|
|
|
[Test]
|
|
public void TestHotkeyHandling()
|
|
{
|
|
AddStep("select single circle", () => EditorBeatmap.SelectedHitObjects.Add(EditorBeatmap.HitObjects.OfType<HitCircle>().First()));
|
|
AddStep("press rotate hotkey", () =>
|
|
{
|
|
InputManager.PressKey(Key.ControlLeft);
|
|
InputManager.Key(Key.R);
|
|
InputManager.ReleaseKey(Key.ControlLeft);
|
|
});
|
|
AddUntilStep("no popover present", () => this.ChildrenOfType<PreciseRotationPopover>().Count(), () => Is.Zero);
|
|
|
|
AddStep("select first three objects", () =>
|
|
{
|
|
EditorBeatmap.SelectedHitObjects.Clear();
|
|
EditorBeatmap.SelectedHitObjects.AddRange(EditorBeatmap.HitObjects.Take(3));
|
|
});
|
|
AddStep("press rotate hotkey", () =>
|
|
{
|
|
InputManager.PressKey(Key.ControlLeft);
|
|
InputManager.Key(Key.R);
|
|
InputManager.ReleaseKey(Key.ControlLeft);
|
|
});
|
|
AddUntilStep("popover present", () => this.ChildrenOfType<PreciseRotationPopover>().Count(), () => Is.EqualTo(1));
|
|
AddStep("press rotate hotkey", () =>
|
|
{
|
|
InputManager.PressKey(Key.ControlLeft);
|
|
InputManager.Key(Key.R);
|
|
InputManager.ReleaseKey(Key.ControlLeft);
|
|
});
|
|
AddUntilStep("no popover present", () => this.ChildrenOfType<PreciseRotationPopover>().Count(), () => Is.Zero);
|
|
}
|
|
|
|
[Test]
|
|
public void TestRotateCorrectness()
|
|
{
|
|
AddStep("replace objects", () =>
|
|
{
|
|
EditorBeatmap.Clear();
|
|
EditorBeatmap.AddRange(new HitObject[]
|
|
{
|
|
new HitCircle { Position = new Vector2(100) },
|
|
new HitCircle { Position = new Vector2(200) },
|
|
});
|
|
});
|
|
AddStep("select both circles", () => EditorBeatmap.SelectedHitObjects.AddRange(EditorBeatmap.HitObjects));
|
|
AddStep("press rotate hotkey", () =>
|
|
{
|
|
InputManager.PressKey(Key.ControlLeft);
|
|
InputManager.Key(Key.R);
|
|
InputManager.ReleaseKey(Key.ControlLeft);
|
|
});
|
|
AddUntilStep("popover present", getPopover, () => Is.Not.Null);
|
|
|
|
AddStep("rotate by 180deg", () => getPopover().ChildrenOfType<TextBox>().Single().Current.Value = "180");
|
|
AddAssert("first object rotated 180deg around playfield centre",
|
|
() => EditorBeatmap.HitObjects.OfType<HitCircle>().ElementAt(0).Position,
|
|
() => Is.EqualTo(OsuPlayfield.BASE_SIZE - new Vector2(100)));
|
|
AddAssert("second object rotated 180deg around playfield centre",
|
|
() => EditorBeatmap.HitObjects.OfType<HitCircle>().ElementAt(1).Position,
|
|
() => Is.EqualTo(OsuPlayfield.BASE_SIZE - new Vector2(200)));
|
|
|
|
AddStep("change rotation origin", () => getPopover().ChildrenOfType<EditorRadioButton>().ElementAt(1).TriggerClick());
|
|
AddAssert("first object rotated 90deg around selection centre",
|
|
() => EditorBeatmap.HitObjects.OfType<HitCircle>().ElementAt(0).Position, () => Is.EqualTo(new Vector2(200, 200)));
|
|
AddAssert("second object rotated 90deg around selection centre",
|
|
() => EditorBeatmap.HitObjects.OfType<HitCircle>().ElementAt(1).Position, () => Is.EqualTo(new Vector2(100, 100)));
|
|
|
|
PreciseRotationPopover? getPopover() => this.ChildrenOfType<PreciseRotationPopover>().SingleOrDefault();
|
|
}
|
|
}
|
|
}
|