2021-03-24 12:06:04 +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.
using NUnit.Framework ;
using osu.Framework.Utils ;
using osu.Game.Beatmaps ;
using osu.Game.Beatmaps.ControlPoints ;
using osu.Game.Rulesets.Objects ;
using osu.Game.Rulesets.Objects.Types ;
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components ;
using osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders ;
using osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components ;
using osu.Game.Rulesets.Osu.Objects ;
using osu.Game.Rulesets.Osu.Objects.Drawables ;
using osu.Game.Tests.Visual ;
using osuTK ;
using osuTK.Input ;
namespace osu.Game.Rulesets.Osu.Tests.Editor
{
public class TestSceneSliderControlPointPiece : SelectionBlueprintTestScene
{
private Slider slider ;
private DrawableSlider drawableObject ;
[SetUp]
public void Setup ( ) = > Schedule ( ( ) = >
{
Clear ( ) ;
slider = new Slider
{
Position = new Vector2 ( 256 , 192 ) ,
Path = new SliderPath ( new [ ]
{
new PathControlPoint ( Vector2 . Zero , PathType . PerfectCurve ) ,
new PathControlPoint ( new Vector2 ( 150 , 150 ) ) ,
new PathControlPoint ( new Vector2 ( 300 , 0 ) , PathType . PerfectCurve ) ,
new PathControlPoint ( new Vector2 ( 400 , 0 ) ) ,
new PathControlPoint ( new Vector2 ( 400 , 150 ) )
} )
} ;
slider . ApplyDefaults ( new ControlPointInfo ( ) , new BeatmapDifficulty { CircleSize = 2 } ) ;
Add ( drawableObject = new DrawableSlider ( slider ) ) ;
2021-05-13 18:53:32 +08:00
AddBlueprint ( new TestSliderBlueprint ( slider ) , drawableObject ) ;
2021-03-24 12:06:04 +08:00
} ) ;
[Test]
public void TestDragControlPoint ( )
{
moveMouseToControlPoint ( 1 ) ;
AddStep ( "hold" , ( ) = > InputManager . PressButton ( MouseButton . Left ) ) ;
addMovementStep ( new Vector2 ( 150 , 50 ) ) ;
AddStep ( "release" , ( ) = > InputManager . ReleaseButton ( MouseButton . Left ) ) ;
assertControlPointPosition ( 1 , new Vector2 ( 150 , 50 ) ) ;
assertControlPointType ( 0 , PathType . PerfectCurve ) ;
}
[Test]
public void TestDragControlPointAlmostLinearlyExterior ( )
{
moveMouseToControlPoint ( 1 ) ;
AddStep ( "hold" , ( ) = > InputManager . PressButton ( MouseButton . Left ) ) ;
addMovementStep ( new Vector2 ( 400 , 0.01f ) ) ;
AddStep ( "release" , ( ) = > InputManager . ReleaseButton ( MouseButton . Left ) ) ;
assertControlPointPosition ( 1 , new Vector2 ( 400 , 0.01f ) ) ;
assertControlPointType ( 0 , PathType . Bezier ) ;
}
[Test]
public void TestDragControlPointPathRecovery ( )
{
moveMouseToControlPoint ( 1 ) ;
AddStep ( "hold" , ( ) = > InputManager . PressButton ( MouseButton . Left ) ) ;
2021-04-01 02:08:39 +08:00
addMovementStep ( new Vector2 ( 400 , 0.01f ) ) ;
2021-03-24 12:06:04 +08:00
assertControlPointType ( 0 , PathType . Bezier ) ;
addMovementStep ( new Vector2 ( 150 , 50 ) ) ;
AddStep ( "release" , ( ) = > InputManager . ReleaseButton ( MouseButton . Left ) ) ;
assertControlPointPosition ( 1 , new Vector2 ( 150 , 50 ) ) ;
assertControlPointType ( 0 , PathType . PerfectCurve ) ;
}
[Test]
public void TestDragControlPointPathRecoveryOtherSegment ( )
{
moveMouseToControlPoint ( 4 ) ;
AddStep ( "hold" , ( ) = > InputManager . PressButton ( MouseButton . Left ) ) ;
2021-04-01 02:08:39 +08:00
addMovementStep ( new Vector2 ( 350 , 0.01f ) ) ;
2021-03-24 12:06:04 +08:00
assertControlPointType ( 2 , PathType . Bezier ) ;
2021-03-25 00:24:05 +08:00
addMovementStep ( new Vector2 ( 150 , 150 ) ) ;
2021-03-24 12:06:04 +08:00
AddStep ( "release" , ( ) = > InputManager . ReleaseButton ( MouseButton . Left ) ) ;
2021-03-25 00:24:05 +08:00
assertControlPointPosition ( 4 , new Vector2 ( 150 , 150 ) ) ;
2021-03-24 12:06:04 +08:00
assertControlPointType ( 2 , PathType . PerfectCurve ) ;
}
2021-04-07 23:18:55 +08:00
[Test]
public void TestDragControlPointPathAfterChangingType ( )
{
AddStep ( "change type to bezier" , ( ) = > slider . Path . ControlPoints [ 2 ] . Type . Value = PathType . Bezier ) ;
AddStep ( "add point" , ( ) = > slider . Path . ControlPoints . Add ( new PathControlPoint ( new Vector2 ( 500 , 10 ) ) ) ) ;
AddStep ( "change type to perfect" , ( ) = > slider . Path . ControlPoints [ 3 ] . Type . Value = PathType . PerfectCurve ) ;
moveMouseToControlPoint ( 4 ) ;
AddStep ( "hold" , ( ) = > InputManager . PressButton ( MouseButton . Left ) ) ;
assertControlPointType ( 3 , PathType . PerfectCurve ) ;
addMovementStep ( new Vector2 ( 350 , 0.01f ) ) ;
AddStep ( "release" , ( ) = > InputManager . ReleaseButton ( MouseButton . Left ) ) ;
assertControlPointPosition ( 4 , new Vector2 ( 350 , 0.01f ) ) ;
assertControlPointType ( 3 , PathType . Bezier ) ;
}
2021-03-24 12:06:04 +08:00
private void addMovementStep ( Vector2 relativePosition )
{
AddStep ( $"move mouse to {relativePosition}" , ( ) = >
{
Vector2 position = slider . Position + relativePosition ;
InputManager . MoveMouseTo ( drawableObject . Parent . ToScreenSpace ( position ) ) ;
} ) ;
}
private void moveMouseToControlPoint ( int index )
{
AddStep ( $"move mouse to control point {index}" , ( ) = >
{
Vector2 position = slider . Position + slider . Path . ControlPoints [ index ] . Position . Value ;
InputManager . MoveMouseTo ( drawableObject . Parent . ToScreenSpace ( position ) ) ;
} ) ;
}
private void assertControlPointType ( int index , PathType type ) = > AddAssert ( $"control point {index} is {type}" , ( ) = > slider . Path . ControlPoints [ index ] . Type . Value = = type ) ;
private void assertControlPointPosition ( int index , Vector2 position ) = >
AddAssert ( $"control point {index} at {position}" , ( ) = > Precision . AlmostEquals ( position , slider . Path . ControlPoints [ index ] . Position . Value , 1 ) ) ;
private class TestSliderBlueprint : SliderSelectionBlueprint
{
public new SliderBodyPiece BodyPiece = > base . BodyPiece ;
2021-05-18 13:19:11 +08:00
public new TestSliderCircleOverlay HeadOverlay = > ( TestSliderCircleOverlay ) base . HeadOverlay ;
public new TestSliderCircleOverlay TailOverlay = > ( TestSliderCircleOverlay ) base . TailOverlay ;
2021-03-24 12:06:04 +08:00
public new PathControlPointVisualiser ControlPointVisualiser = > base . ControlPointVisualiser ;
2021-05-13 18:53:32 +08:00
public TestSliderBlueprint ( Slider slider )
2021-03-24 12:06:04 +08:00
: base ( slider )
{
}
2021-05-18 13:19:11 +08:00
protected override SliderCircleOverlay CreateCircleOverlay ( Slider slider , SliderPosition position ) = > new TestSliderCircleOverlay ( slider , position ) ;
2021-03-24 12:06:04 +08:00
}
2021-05-18 13:19:11 +08:00
private class TestSliderCircleOverlay : SliderCircleOverlay
2021-03-24 12:06:04 +08:00
{
public new HitCirclePiece CirclePiece = > base . CirclePiece ;
2021-05-18 13:19:11 +08:00
public TestSliderCircleOverlay ( Slider slider , SliderPosition position )
2021-03-24 12:06:04 +08:00
: base ( slider , position )
{
}
}
}
}