You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Renamed lots of UI text and tooltips to improve UX - Hid the 'Propagate' and 'Per Instance' buttons until this feature is properly supported - Flipped radio buttons so they're on top of 'instant' buttons - Renamed 'Any' to 'Mesh' in the top level UI (meaning, 'any part of the mesh') - Added group name title text for 'Mesh', 'Polygon', 'Edge', 'Vertex' - Reversed order of top level buttons, removed 'Select' label - 'Remove Subdivision Level' now greys out if there is nothing already subdivided - Fixed lots of non-unity build issues #codereview richard.talbotwatkin #rb none [CL 3509887 by Mike Fricker in Dev-Geometry branch]
110 lines
4.0 KiB
C++
110 lines
4.0 KiB
C++
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "InsertEdgeLoop.h"
|
|
#include "IMeshEditorModeEditingContract.h"
|
|
#include "IMeshEditorModeUIContract.h"
|
|
#include "UICommandInfo.h"
|
|
#include "EditableMesh.h"
|
|
#include "MeshElement.h"
|
|
#include "MultiBoxBuilder.h"
|
|
#include "UICommandList.h"
|
|
|
|
|
|
#define LOCTEXT_NAMESPACE "MeshEditorMode"
|
|
|
|
|
|
void UInsertEdgeLoopCommand::RegisterUICommand( FBindingContext* BindingContext )
|
|
{
|
|
UI_COMMAND_EXT( BindingContext, /* Out */ UICommandInfo, "InsertEdgeLoop", "Insert Edge Loop", "Inserts a loop of edges at a specific location along the selected edge as you click and drag. If a valid loop cannot be determined, no edges will be inserted.", EUserInterfaceActionType::RadioButton, FInputChord() );
|
|
}
|
|
|
|
|
|
void UInsertEdgeLoopCommand::ApplyDuringDrag( IMeshEditorModeEditingContract& MeshEditorMode, UViewportInteractor* ViewportInteractor )
|
|
{
|
|
// Insert edge loop
|
|
static TMap< UEditableMesh*, TArray< FMeshElement > > SelectedMeshesAndEdges;
|
|
MeshEditorMode.GetSelectedMeshesAndEdges( /* Out */ SelectedMeshesAndEdges );
|
|
|
|
if( SelectedMeshesAndEdges.Num() > 0 )
|
|
{
|
|
// Deselect the edges first, since they'll be deleted or split up while inserting the edge loop,
|
|
// and we want them to be re-selected after undo
|
|
MeshEditorMode.DeselectAllMeshElements();
|
|
|
|
static TArray<FMeshElement> MeshElementsToSelect;
|
|
MeshElementsToSelect.Reset();
|
|
|
|
for( auto& MeshAndEdges : SelectedMeshesAndEdges )
|
|
{
|
|
UEditableMesh* EditableMesh = MeshAndEdges.Key;
|
|
verify( !EditableMesh->AnyChangesToUndo() );
|
|
|
|
const TArray<FMeshElement>& EdgeElements = MeshAndEdges.Value;
|
|
|
|
// Figure out where to add the loop along the edge
|
|
FEdgeID ClosestEdgeID = FEdgeID::Invalid;
|
|
float Split = 0.0f;
|
|
const bool bFoundSplit = MeshEditorMode.FindEdgeSplitUnderInteractor( MeshEditorMode.GetActiveActionInteractor(), EditableMesh, EdgeElements, /* Out */ ClosestEdgeID, /* Out */ Split );
|
|
|
|
// Insert the edge loop
|
|
if( bFoundSplit )
|
|
{
|
|
for( const FMeshElement& EdgeMeshElement : EdgeElements )
|
|
{
|
|
const FEdgeID EdgeID( EdgeMeshElement.ElementAddress.ElementID );
|
|
|
|
static TArray<FEdgeID> NewEdgeIDs;
|
|
NewEdgeIDs.Reset();
|
|
|
|
static TArray<float> Splits; // @todo mesheditor edgeloop: Add support for inserting multiple splits at once!
|
|
Splits.Reset();
|
|
Splits.Add( Split );
|
|
EditableMesh->InsertEdgeLoop( EdgeID, Splits, /* Out */ NewEdgeIDs );
|
|
|
|
// Select all of the new edges that were created by inserting the loop
|
|
if( NewEdgeIDs.Num() > 0 )
|
|
{
|
|
for( const FEdgeID NewEdgeID : NewEdgeIDs )
|
|
{
|
|
FMeshElement MeshElementToSelect;
|
|
{
|
|
MeshElementToSelect.Component = EdgeMeshElement.Component;
|
|
MeshElementToSelect.ElementAddress.SubMeshAddress = EdgeMeshElement.ElementAddress.SubMeshAddress;
|
|
MeshElementToSelect.ElementAddress.ElementType = EEditableMeshElementType::Edge;
|
|
MeshElementToSelect.ElementAddress.ElementID = NewEdgeID;
|
|
}
|
|
|
|
// Queue selection of this new element. We don't want it to be part of the current action.
|
|
MeshElementsToSelect.Add( MeshElementToSelect );
|
|
}
|
|
}
|
|
}
|
|
|
|
MeshEditorMode.TrackUndo( EditableMesh, EditableMesh->MakeUndo() );
|
|
}
|
|
}
|
|
|
|
MeshEditorMode.SelectMeshElements( MeshElementsToSelect );
|
|
}
|
|
}
|
|
|
|
|
|
void UInsertEdgeLoopCommand::AddToVRRadialMenuActionsMenu( IMeshEditorModeUIContract& MeshEditorMode, FMenuBuilder& MenuBuilder, TSharedPtr<FUICommandList> CommandList, const FName TEMPHACK_StyleSetName, class UVREditorMode* VRMode )
|
|
{
|
|
if( MeshEditorMode.GetMeshElementSelectionMode() == EEditableMeshElementType::Edge )
|
|
{
|
|
MenuBuilder.AddMenuEntry(
|
|
LOCTEXT("VRInsertEdgeLoop", "Insert Loop"),
|
|
FText(),
|
|
FSlateIcon(TEMPHACK_StyleSetName, "MeshEditorMode.EdgeInsert"), // @todo mesheditor extensibility: TEMPHACK for style; Need PolygonModelingStyle, probably. Or we're just cool with exporting MeshEditorModeStyle, since we're all the same plugin after all.
|
|
MakeUIAction( MeshEditorMode ),
|
|
NAME_None,
|
|
EUserInterfaceActionType::ToggleButton
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
#undef LOCTEXT_NAMESPACE
|
|
|