diff --git a/Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/CopyPasteHelper.cs b/Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/CopyPasteHelper.cs index badbbd8e70..a5f54566f9 100644 --- a/Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/CopyPasteHelper.cs +++ b/Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/CopyPasteHelper.cs @@ -204,6 +204,10 @@ private static void PasteActionsFromClipboard(InputActionsEditorState state, boo var index = state.selectedActionIndex; if (addLast) index = actionArray.arraySize - 1; + + if (index < 0) + index = 0; + PasteData(EditorGUIUtility.systemCopyBuffer, new[] {index}, actionArray); } @@ -288,13 +292,14 @@ private static void PasteAction(SerializedProperty arrayProperty, string jsonToI private static int PasteBindingOrComposite(SerializedProperty arrayProperty, string json, int index, string actionName, bool createCompositeParts = true) { var pastePartOfComposite = IsPartOfComposite(json); - if (index > 0) + if (index > 0 && arrayProperty.arraySize > 0 && index - 1 < arrayProperty.arraySize) { var currentProperty = arrayProperty.GetArrayElementAtIndex(index - 1); var currentIsComposite = IsComposite(currentProperty) || IsPartOfComposite(currentProperty); if (pastePartOfComposite && !currentIsComposite) //prevent pasting part of composite into non-composite return index; } + index = pastePartOfComposite || s_State.selectionType == SelectionType.Action ? index : Selectors.GetSelectedBindingIndexAfterCompositeBindings(s_State) + 1; if (json.Contains(k_BindingData)) //copied data is composite with bindings - only true for directly copied composites, not for composites from copied actions return PasteCompositeFromJson(arrayProperty, json, index, actionName); @@ -351,7 +356,7 @@ private static bool IsPartOfComposite(string json) private static SerializedProperty AddElement(SerializedProperty arrayProperty, string name, int index = -1) { var uniqueName = InputActionSerializationHelpers.FindUniqueName(arrayProperty, name); - if (index < 0) + if (index < 0 || index > arrayProperty.arraySize) index = arrayProperty.arraySize; arrayProperty.InsertArrayElementAtIndex(index); diff --git a/Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/InputActionsEditorView.cs b/Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/InputActionsEditorView.cs index c8d91fa9e6..bd41c775af 100644 --- a/Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/InputActionsEditorView.cs +++ b/Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/InputActionsEditorView.cs @@ -1,4 +1,5 @@ #if UNITY_EDITOR && UNITY_INPUT_SYSTEM_PROJECT_WIDE_ACTIONS +using CmdEvents = UnityEngine.InputSystem.Editor.InputActionsEditorConstants.CommandEvents; using System; using System.Collections.Generic; using System.Linq; @@ -14,6 +15,8 @@ internal class InputActionsEditorView : ViewBase("actions-tree-view"); + m_ActionMapsListView = root.Q("action-maps-list-view"); + + root.RegisterCallback(OnValidateCommand); + root.RegisterCallback(OnExecuteCommand); + root.focusable = true; // Required for CommandEvents to work } private void OnReset() @@ -159,6 +169,49 @@ public class ViewState public IEnumerable controlSchemes; public int selectedControlSchemeIndex; } + + void OnExecuteCommand(ExecuteCommandEvent evt) + { + if (evt.commandName != CmdEvents.Paste) + return; + + var copiedType = CopyPasteHelper.GetCopiedClipboardType(); + + if (copiedType == typeof(InputActionMap)) + { + Dispatch(Commands.PasteActionMaps()); + } + else if (copiedType == typeof(InputAction)) + { + // Can't paste an Action without any Action Maps for it to go to + if (m_ActionMapsListView.itemsSource.Count > 0) + Dispatch(Commands.PasteActionsOrBindings()); + } + else if (copiedType == typeof(InputBinding)) + { + // Can't paste a Binding without any Actions for it to go to + if (m_ActionsTreeView.itemsSource.Count > 0) + { + var oldSelectedBinding = stateContainer.GetState().selectedBindingIndex; + Dispatch(Commands.PasteActionsOrBindings()); + + // If paste succeeded, expand the relevant Action to show the new binding. + if (stateContainer.GetState().selectedBindingIndex != oldSelectedBinding) + m_ActionsTreeView.ExpandItem(m_ActionsTreeView.GetIdForIndex(stateContainer.GetState().selectedActionIndex)); + } + } + } + + void OnValidateCommand(ValidateCommandEvent evt) + { + // Mark commands as supported for Execute by stopping propagation of the event + switch (evt.commandName) + { + case CmdEvents.Paste: + evt.StopPropagation(); + break; + } + } } internal static partial class Selectors