2019-01-24 16:43:03 +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.
2018-10-29 13:07:06 +08:00
2019-12-09 23:07:07 +08:00
using System ;
2019-10-31 15:25:26 +08:00
using System.Collections.Generic ;
2019-11-12 17:35:28 +08:00
using System.Linq ;
2019-11-13 16:36:46 +08:00
using Humanizer ;
2019-10-31 15:25:26 +08:00
using osu.Framework.Allocation ;
2019-12-09 19:49:59 +08:00
using osu.Framework.Bindables ;
2018-10-29 13:07:06 +08:00
using osu.Framework.Graphics ;
using osu.Framework.Graphics.Containers ;
2019-11-12 17:35:28 +08:00
using osu.Framework.Graphics.Cursor ;
using osu.Framework.Graphics.UserInterface ;
2019-10-31 16:25:30 +08:00
using osu.Framework.Input ;
2019-11-05 12:26:44 +08:00
using osu.Framework.Input.Bindings ;
2019-10-31 15:23:54 +08:00
using osu.Framework.Input.Events ;
2019-11-12 17:35:28 +08:00
using osu.Game.Graphics.UserInterface ;
2019-12-06 16:03:54 +08:00
using osu.Game.Rulesets.Objects ;
2019-12-09 23:07:07 +08:00
using osu.Game.Rulesets.Objects.Types ;
2018-10-29 13:07:06 +08:00
using osu.Game.Rulesets.Osu.Objects ;
2019-10-31 15:25:26 +08:00
using osu.Game.Screens.Edit.Compose ;
2019-12-09 16:54:19 +08:00
using osuTK ;
2019-11-13 16:28:18 +08:00
using osuTK.Input ;
2018-10-29 13:07:06 +08:00
2018-11-07 15:08:56 +08:00
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
2018-10-29 13:07:06 +08:00
{
2019-11-12 17:35:28 +08:00
public class PathControlPointVisualiser : CompositeDrawable , IKeyBindingHandler < PlatformAction > , IHasContextMenu
2018-10-29 13:07:06 +08:00
{
2019-10-31 16:25:30 +08:00
internal readonly Container < PathControlPointPiece > Pieces ;
2019-12-11 17:18:16 +08:00
2019-10-31 15:51:58 +08:00
private readonly Slider slider ;
2019-12-11 17:18:16 +08:00
2019-11-03 18:59:37 +08:00
private readonly bool allowSelection ;
2018-10-29 13:07:06 +08:00
2019-10-31 16:25:30 +08:00
private InputManager inputManager ;
2019-10-31 15:25:26 +08:00
[Resolved(CanBeNull = true)]
private IPlacementHandler placementHandler { get ; set ; }
2019-12-09 19:49:59 +08:00
private IBindableList < PathControlPoint > controlPoints ;
2019-11-03 18:59:37 +08:00
public PathControlPointVisualiser ( Slider slider , bool allowSelection )
2018-10-29 13:07:06 +08:00
{
this . slider = slider ;
2019-11-03 18:59:37 +08:00
this . allowSelection = allowSelection ;
2018-10-29 13:07:06 +08:00
2019-10-31 15:23:54 +08:00
RelativeSizeAxes = Axes . Both ;
2019-10-31 15:51:58 +08:00
InternalChild = Pieces = new Container < PathControlPointPiece > { RelativeSizeAxes = Axes . Both } ;
2018-11-09 12:58:46 +08:00
}
2018-10-29 13:07:06 +08:00
2019-10-31 16:25:30 +08:00
protected override void LoadComplete ( )
{
base . LoadComplete ( ) ;
inputManager = GetContainingInputManager ( ) ;
2019-12-09 19:49:59 +08:00
controlPoints = slider . Path . ControlPoints . GetBoundCopy ( ) ;
controlPoints . ItemsAdded + = addControlPoints ;
controlPoints . ItemsRemoved + = removeControlPoints ;
addControlPoints ( controlPoints ) ;
2019-10-31 16:25:30 +08:00
}
2019-12-09 19:49:59 +08:00
private void addControlPoints ( IEnumerable < PathControlPoint > controlPoints )
2018-11-09 12:58:46 +08:00
{
2019-12-09 19:49:59 +08:00
foreach ( var point in controlPoints )
2019-10-31 16:13:10 +08:00
{
2019-12-09 19:49:59 +08:00
var piece = new PathControlPointPiece ( slider , point ) ;
2019-11-03 18:59:37 +08:00
if ( allowSelection )
piece . RequestSelection = selectPiece ;
Pieces . Add ( piece ) ;
2019-10-31 16:13:10 +08:00
}
2019-12-09 19:49:59 +08:00
}
2019-10-31 16:13:10 +08:00
2019-12-09 19:49:59 +08:00
private void removeControlPoints ( IEnumerable < PathControlPoint > controlPoints )
{
foreach ( var point in controlPoints )
Pieces . RemoveAll ( p = > p . ControlPoint = = point ) ;
2018-10-29 13:07:06 +08:00
}
2019-10-31 15:23:54 +08:00
2019-10-31 16:13:10 +08:00
protected override bool OnClick ( ClickEvent e )
2019-10-31 15:23:54 +08:00
{
2019-10-31 15:51:58 +08:00
foreach ( var piece in Pieces )
2019-12-11 17:18:16 +08:00
{
2019-10-31 16:13:10 +08:00
piece . IsSelected . Value = false ;
2019-12-11 17:18:16 +08:00
}
2019-10-31 16:13:10 +08:00
return false ;
}
2019-10-31 15:23:54 +08:00
2019-11-12 17:35:28 +08:00
public bool OnPressed ( PlatformAction action )
2019-10-31 16:13:10 +08:00
{
2019-11-12 17:35:28 +08:00
switch ( action . ActionMethod )
{
case PlatformActionMethod . Delete :
return deleteSelected ( ) ;
}
return false ;
}
public bool OnReleased ( PlatformAction action ) = > action . ActionMethod = = PlatformActionMethod . Delete ;
2019-12-09 19:49:59 +08:00
private void selectPiece ( PathControlPointPiece piece , MouseButtonEvent e )
2019-10-31 16:13:10 +08:00
{
2019-11-13 16:28:18 +08:00
if ( e . Button = = MouseButton . Left & & inputManager . CurrentState . Keyboard . ControlPressed )
2019-12-09 19:49:59 +08:00
piece . IsSelected . Toggle ( ) ;
2019-10-31 16:25:30 +08:00
else
{
2019-12-09 19:49:59 +08:00
foreach ( var p in Pieces )
p . IsSelected . Value = p = = piece ;
2019-10-31 16:25:30 +08:00
}
2019-10-31 15:23:54 +08:00
}
2019-10-31 15:25:26 +08:00
2019-11-12 17:35:28 +08:00
private bool deleteSelected ( )
2019-10-31 15:25:26 +08:00
{
2019-12-09 19:49:59 +08:00
List < PathControlPoint > toRemove = Pieces . Where ( p = > p . IsSelected . Value ) . Select ( p = > p . ControlPoint ) . ToList ( ) ;
2019-10-31 15:25:26 +08:00
2019-11-12 17:35:28 +08:00
// Ensure that there are any points to be deleted
2019-12-06 16:03:54 +08:00
if ( toRemove . Count = = 0 )
2019-11-12 17:35:28 +08:00
return false ;
2019-10-31 15:25:26 +08:00
2019-12-06 16:03:54 +08:00
foreach ( var c in toRemove )
2019-12-06 17:49:14 +08:00
{
// The first control point in the slider must have a type, so take it from the previous "first" one
// Todo: Should be handled within SliderPath itself
if ( c = = slider . Path . ControlPoints [ 0 ] & & slider . Path . ControlPoints . Count > 1 & & slider . Path . ControlPoints [ 1 ] . Type . Value = = null )
slider . Path . ControlPoints [ 1 ] . Type . Value = slider . Path . ControlPoints [ 0 ] . Type . Value ;
2019-12-06 16:03:54 +08:00
slider . Path . ControlPoints . Remove ( c ) ;
2019-12-06 17:49:14 +08:00
}
2019-12-06 16:03:54 +08:00
2019-12-09 21:35:19 +08:00
// If there are 0 or 1 remaining control points, the slider is in a degenerate (single point) form and should be deleted
if ( slider . Path . ControlPoints . Count < = 1 )
2019-11-12 17:35:28 +08:00
{
placementHandler ? . Delete ( slider ) ;
return true ;
}
2019-10-31 15:25:26 +08:00
2019-12-09 16:54:19 +08:00
// The path will have a non-zero offset if the head is removed, but sliders don't support this behaviour since the head is positioned at the slider's position
// So the slider needs to be offset by this amount instead, and all control points offset backwards such that the path is re-positioned at (0, 0)
Vector2 first = slider . Path . ControlPoints [ 0 ] . Position . Value ;
foreach ( var c in slider . Path . ControlPoints )
c . Position . Value - = first ;
slider . Position + = first ;
2019-11-12 17:35:28 +08:00
// Since pieces are re-used, they will not point to the deleted control points while remaining selected
foreach ( var piece in Pieces )
piece . IsSelected . Value = false ;
2019-10-31 15:25:26 +08:00
2019-11-12 17:35:28 +08:00
return true ;
}
2019-10-31 15:25:26 +08:00
2019-11-12 17:35:28 +08:00
public MenuItem [ ] ContextMenuItems
{
get
{
2019-11-13 16:38:34 +08:00
if ( ! Pieces . Any ( p = > p . IsHovered ) )
return null ;
2019-10-31 16:58:33 +08:00
2019-12-11 17:18:16 +08:00
var selectedPieces = Pieces . Where ( p = > p . IsSelected . Value ) . ToList ( ) ;
int count = selectedPieces . Count ;
2019-10-31 16:58:33 +08:00
2019-12-11 17:18:16 +08:00
if ( count = = 0 )
2019-11-13 15:56:48 +08:00
return null ;
2019-10-31 15:25:26 +08:00
2019-12-11 17:18:16 +08:00
List < MenuItem > items = new List < MenuItem > ( ) ;
if ( ! selectedPieces . Contains ( Pieces [ 0 ] ) )
items . Add ( createMenuItemForPathType ( null ) ) ;
// todo: hide/disable items which aren't valid for selected points
items . Add ( createMenuItemForPathType ( PathType . Linear ) ) ;
items . Add ( createMenuItemForPathType ( PathType . PerfectCurve ) ) ;
items . Add ( createMenuItemForPathType ( PathType . Bezier ) ) ;
items . Add ( createMenuItemForPathType ( PathType . Catmull ) ) ;
2019-11-12 17:35:28 +08:00
return new MenuItem [ ]
{
2019-12-11 17:18:16 +08:00
new OsuMenuItem ( $"Delete {" control point ".ToQuantity(count, count > 1 ? ShowQuantityAs.Numeric : ShowQuantityAs.None)}" , MenuItemType . Destructive , ( ) = > deleteSelected ( ) ) ,
2019-12-11 17:20:28 +08:00
new OsuMenuItem ( "Curve type" )
2019-12-09 23:07:07 +08:00
{
2019-12-11 17:18:16 +08:00
Items = items
2019-12-09 23:07:07 +08:00
}
2019-11-12 17:35:28 +08:00
} ;
2019-10-31 15:25:26 +08:00
}
}
2019-12-09 23:07:07 +08:00
private MenuItem createMenuItemForPathType ( PathType ? type )
{
int totalCount = Pieces . Count ( p = > p . IsSelected . Value ) ;
int countOfState = Pieces . Where ( p = > p . IsSelected . Value ) . Count ( p = > p . ControlPoint . Type . Value = = type ) ;
var item = new PathTypeMenuItem ( type , ( ) = >
{
foreach ( var p in Pieces . Where ( p = > p . IsSelected . Value ) )
p . ControlPoint . Type . Value = type ;
} ) ;
if ( countOfState = = totalCount )
item . State . Value = TernaryState . True ;
else if ( countOfState > 0 )
item . State . Value = TernaryState . Indeterminate ;
else
item . State . Value = TernaryState . False ;
return item ;
}
private class PathTypeMenuItem : TernaryStateMenuItem
{
public PathTypeMenuItem ( PathType ? type , Action action )
: base ( type = = null ? "Inherit" : type . ToString ( ) . Humanize ( ) , changeState , MenuItemType . Standard , _ = > action ? . Invoke ( ) )
{
}
private static TernaryState changeState ( TernaryState state ) = > TernaryState . True ;
}
2018-10-29 13:07:06 +08:00
}
}