326 lines
11 KiB
C++
326 lines
11 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/WeakObjectPtrTemplates.h"
|
|
#include "RigVMModel/RigVMGraph.h"
|
|
#include "Blueprint/BlueprintExtension.h"
|
|
#include "RigVMEdGraphNode.generated.h"
|
|
|
|
class FBlueprintActionDatabaseRegistrar;
|
|
class UEdGraph;
|
|
struct FSlateIcon;
|
|
class URigVMBlueprint;
|
|
|
|
/** Base class for RigVM editor side nodes */
|
|
UCLASS()
|
|
class RIGVMDEVELOPER_API URigVMEdGraphNode : public UEdGraphNode
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
friend class FRigVMEdGraphNodeDetailsCustomization;
|
|
friend class FRigVMBlueprintCompilerContext;
|
|
friend class URigVMEdGraph;
|
|
friend class URigVMEdGraphSchema;
|
|
friend class URigVMBlueprint;
|
|
friend class FRigVMEdGraphTraverser;
|
|
friend class FRigVMEdGraphPanelPinFactory;
|
|
friend class FRigVMEditorBase;
|
|
friend struct FRigVMBlueprintUtils;
|
|
friend class SRigVMEdGraphPinCurveFloat;
|
|
|
|
private:
|
|
|
|
UPROPERTY()
|
|
FString ModelNodePath;
|
|
|
|
UPROPERTY(transient)
|
|
TWeakObjectPtr<URigVMNode> CachedModelNode;
|
|
|
|
UPROPERTY(transient)
|
|
TMap<FString, TWeakObjectPtr<URigVMPin>> PinPathToModelPin;
|
|
|
|
#if WITH_EDITORONLY_DATA
|
|
/** The property we represent. For template nodes this represents the struct/property type name. */
|
|
UPROPERTY()
|
|
FName PropertyName_DEPRECATED;
|
|
|
|
UPROPERTY()
|
|
FString StructPath_DEPRECATED;
|
|
|
|
/** Pin Type for property */
|
|
UPROPERTY()
|
|
FEdGraphPinType PinType_DEPRECATED;
|
|
|
|
/** The type of parameter */
|
|
UPROPERTY()
|
|
int32 ParameterType_DEPRECATED;
|
|
|
|
/** Expanded pins */
|
|
UPROPERTY()
|
|
TArray<FString> ExpandedPins_DEPRECATED;
|
|
#endif
|
|
|
|
/** Cached dimensions of this node (used for auto-layout) */
|
|
FVector2D Dimensions;
|
|
|
|
/** The cached node titles */
|
|
mutable FText NodeTitle;
|
|
|
|
/** The cached fulol node title */
|
|
mutable FText FullNodeTitle;
|
|
|
|
/** Set this to true to enable the sub title */
|
|
bool bSubTitleEnabled;
|
|
|
|
public:
|
|
|
|
void SetSubTitleEnabled(bool bEnabled = true)
|
|
{
|
|
bSubTitleEnabled = bEnabled;
|
|
}
|
|
|
|
DECLARE_MULTICAST_DELEGATE(FNodeTitleDirtied);
|
|
DECLARE_MULTICAST_DELEGATE(FNodePinsChanged);
|
|
DECLARE_MULTICAST_DELEGATE(FNodePinExpansionChanged);
|
|
DECLARE_MULTICAST_DELEGATE(FNodeBeginRemoval);
|
|
|
|
struct FPinPair
|
|
{
|
|
FPinPair()
|
|
: InputPin(nullptr)
|
|
, OutputPin(nullptr)
|
|
{}
|
|
UEdGraphPin* InputPin;
|
|
UEdGraphPin* OutputPin;
|
|
|
|
bool IsValid() const { return InputPin != nullptr || OutputPin != nullptr; }
|
|
};
|
|
|
|
URigVMEdGraphNode();
|
|
|
|
// UObject Interface.
|
|
#if WITH_EDITOR
|
|
virtual bool Modify( bool bAlwaysMarkDirty=true ) { return false; }
|
|
#endif
|
|
|
|
// UEdGraphNode Interface.
|
|
virtual FText GetNodeTitle(ENodeTitleType::Type TitleType) const override;
|
|
virtual FLinearColor GetNodeTitleColor() const override;
|
|
virtual FLinearColor GetNodeBodyTintColor() const;
|
|
virtual bool ShowPaletteIconOnNode() const override;
|
|
virtual FSlateIcon GetIconAndTint(FLinearColor& OutColor) const override;
|
|
virtual void AllocateDefaultPins() override;
|
|
virtual void ReconstructNode() override;
|
|
virtual void ReconstructNode_Internal(bool bForce = false);
|
|
virtual void GetNodeContextMenuActions(class UToolMenu* Menu, class UGraphNodeContextMenuContext* Context) const override;
|
|
virtual void DestroyNode() override;
|
|
virtual void PinDefaultValueChanged(UEdGraphPin* Pin) override;
|
|
virtual FText GetTooltipText() const override;
|
|
virtual bool CanCreateUnderSpecifiedSchema(const UEdGraphSchema* InSchema) const override;
|
|
virtual void AutowireNewNode(UEdGraphPin* FromPin) override;
|
|
virtual bool SupportsCommentBubble() const override { return false; }
|
|
virtual bool IsSelectedInEditor() const;
|
|
virtual bool ShouldDrawNodeAsControlPointOnly(int32& OutInputPinIndex, int32& OutOutputPinIndex) const override;
|
|
virtual void BeginDestroy() override;
|
|
#if WITH_EDITOR
|
|
#if WITH_RIGVMLEGACYEDITOR
|
|
virtual void AddPinSearchMetaDataInfo(const UEdGraphPin* Pin, TArray<FSearchTagDataPair>& OutTaggedMetaData) const override;
|
|
#else
|
|
void AddRigVMSearchMetaDataInfo(TArray<struct UBlueprintExtension::FSearchTagDataPair>& OutTaggedMetaData) const;
|
|
void AddRigVMPinSearchMetaDataInfo(const UEdGraphPin* Pin, TArray<UBlueprintExtension::FSearchTagDataPair>& OutTaggedMetaData) const;
|
|
#endif
|
|
#endif
|
|
virtual FString GetPinMetaData(FName InPinName, FName InKey) override;
|
|
|
|
virtual bool IsDeprecated() const override;
|
|
bool IsOutDated() const;
|
|
virtual FEdGraphNodeDeprecationResponse GetDeprecationResponse(EEdGraphNodeDeprecationType DeprecationType) const override;
|
|
|
|
/** Set the cached dimensions of this node */
|
|
void SetDimensions(const FVector2D& InDimensions) { Dimensions = InDimensions; }
|
|
|
|
/** Get the cached dimensions of this node */
|
|
const FVector2D& GetDimensions() const { return Dimensions; }
|
|
|
|
/** Check a pin's expansion state */
|
|
bool IsPinExpanded(const FString& InPinPath);
|
|
|
|
/** Propagate pin defaults to underlying properties if they have changed */
|
|
void CopyPinDefaultsToModel(UEdGraphPin* Pin, bool bUndo = false, bool bPrintPythonCommand = false);
|
|
|
|
/** Get the blueprint that this node is contained within */
|
|
URigVMBlueprint* GetBlueprint() const;
|
|
|
|
/** Get the VM model this node lives within */
|
|
URigVMGraph* GetModel() const;
|
|
|
|
/** Get the blueprint that this node is contained within */
|
|
URigVMController* GetController() const;
|
|
|
|
/** Get the VM node this is node is wrapping */
|
|
URigVMNode* GetModelNode() const;
|
|
|
|
/** Get the VM node name this node is wrapping */
|
|
FName GetModelNodeName() const;
|
|
|
|
/** Get the VM node path this node is wrapping */
|
|
const FString& GetModelNodePath() const;
|
|
|
|
URigVMPin* GetModelPinFromPinPath(const FString& InPinPath) const;
|
|
|
|
/** Add a new element to the aggregate node referred to by the property path */
|
|
void HandleAddAggregateElement(const FString& InNodePath);
|
|
|
|
/** Add a new array element to the array referred to by the property path */
|
|
void HandleAddArrayElement(FString InPinPath);
|
|
|
|
/** Clear the array referred to by the property path */
|
|
void HandleClearArray(FString InPinPath);
|
|
|
|
/** Remove the array element referred to by the property path */
|
|
void HandleRemoveArrayElement(FString InPinPath);
|
|
|
|
/** Insert a new array element after the element referred to by the property path */
|
|
void HandleInsertArrayElement(FString InPinPath);
|
|
|
|
int32 GetInstructionIndex(bool bAsInput) const;
|
|
|
|
const FRigVMTemplate* GetTemplate() const;
|
|
|
|
void ClearErrorInfo();
|
|
|
|
void AddErrorInfo(const EMessageSeverity::Type& InSeverity, const FString& InMessage);
|
|
|
|
void SetErrorInfo(const EMessageSeverity::Type& InSeverity, const FString& InMessage);
|
|
|
|
URigVMPin* FindModelPinFromGraphPin(const UEdGraphPin* InGraphPin) const;
|
|
UEdGraphPin* FindGraphPinFromModelPin(const URigVMPin* InModelPin, bool bAsInput) const;
|
|
UEdGraphPin* FindGraphPinFromCategory(const FString& InCategory, bool bAsInput) const;
|
|
|
|
/// Synchronize the stored name/value/type on the graph pin with the value stored on the node.
|
|
/// If the pin has sub-pins, the value update is done recursively.
|
|
void SynchronizeGraphPinNameWithModelPin(const URigVMPin* InModelPin, bool bNotify = true);
|
|
void SynchronizeGraphPinValueWithModelPin(const URigVMPin* InModelPin);
|
|
void SynchronizeGraphPinTypeWithModelPin(const URigVMPin* InModelPin);
|
|
void SynchronizeGraphPinExpansionWithModelPin(const URigVMPin* InModelPin);
|
|
|
|
void SyncGraphNodeTitleWithModelNodeTitle();
|
|
void SyncGraphNodeNameWithModelNodeName(const URigVMNode* InModelNode);
|
|
|
|
FNodeTitleDirtied& OnNodeTitleDirtied() { return NodeTitleDirtied; }
|
|
FNodePinsChanged& OnNodePinsChanged() { return NodePinsChanged; }
|
|
FNodePinExpansionChanged& OnNodePinExpansionChanged() { return NodePinExpansionChanged; }
|
|
FNodeBeginRemoval& OnNodeBeginRemoval() { return NodeBeginRemoval; }
|
|
|
|
/** Called when there's a drastic change in the pins */
|
|
bool ModelPinsChanged(bool bForce = false);
|
|
|
|
/** Called when a model pin is added after the node creation */
|
|
bool ModelPinAdded(const URigVMPin* InModelPin);
|
|
|
|
/** Called when a model pin is being removed */
|
|
bool ModelPinRemoved(const URigVMPin* InModelPin);
|
|
|
|
/** Returns true if this node is relying on the cast template */
|
|
bool DrawAsCompactNode() const;
|
|
|
|
/** Sets the node's content from an external client, used for preview nodes without a graph */
|
|
void SetModelNode(URigVMNode* InModelNode);
|
|
|
|
const TArray<URigVMPin*>& GetInputPins() const { return InputPins; }
|
|
|
|
protected:
|
|
|
|
FLinearColor GetNodeProfilingColor() const;
|
|
FLinearColor GetNodeOpacityColor() const;
|
|
|
|
/** Helper function for AllocateDefaultPins */
|
|
void UpdatePinLists();
|
|
bool CreateGraphPinFromCategory(const FString& InCategory, EEdGraphPinDirection InDirection);
|
|
bool CreateGraphPinFromModelPin(const URigVMPin* InModelPin, EEdGraphPinDirection InDirection, UEdGraphPin* InParentPin = nullptr);
|
|
void RemoveGraphSubPins(UEdGraphPin *InParentPin, const TArray<UEdGraphPin*>& InPinsToKeep = TArray<UEdGraphPin*>());
|
|
bool ModelPinAdded_Internal(const URigVMPin* InModelPin);
|
|
bool ModelPinRemoved_Internal(const URigVMPin* InModelPin);
|
|
bool CategoryPinAdded_Internal(const FString& InCategory, EEdGraphPinDirection InDirection);
|
|
bool CategoryPinRemoved_Internal(const FString& InCategory);
|
|
|
|
/** Copies default values from underlying properties into pin defaults, for editing */
|
|
void SetupPinDefaultsFromModel(UEdGraphPin* Pin, const URigVMPin* InModelPin = nullptr);
|
|
|
|
/** Recreate pins when we reconstruct this node */
|
|
virtual void ReallocatePinsDuringReconstruction(const TArray<UEdGraphPin*>& OldPins);
|
|
|
|
/** Wire-up new pins given old pin wiring */
|
|
virtual void RewireOldPinsToNewPins(TArray<UEdGraphPin*>& InOldPins, TArray<UEdGraphPin*>& InNewPins);
|
|
|
|
/** Handle anything post-reconstruction */
|
|
virtual void PostReconstructNode();
|
|
|
|
/** Something that could change our title has changed */
|
|
void InvalidateNodeTitle() const;
|
|
|
|
/** Destroy all pins in an array */
|
|
void DestroyPinList(TArray<UEdGraphPin*>& InPins);
|
|
|
|
/** Sets the body + title color from a color provided by the model */
|
|
void SetColorFromModel(const FLinearColor& InColor);
|
|
|
|
UClass* GetRigVMGeneratedClass() const;
|
|
UClass* GetRigVMSkeletonGeneratedClass() const;
|
|
|
|
static FEdGraphPinType GetPinTypeForModelPin(const URigVMPin* InModelPin);
|
|
static FEdGraphPinType GetPinTypeForCategoryPin();
|
|
|
|
virtual void ConfigurePin(UEdGraphPin* EdGraphPin, const URigVMPin* ModelPin) const;
|
|
private:
|
|
|
|
int32 GetNodeTopologyVersion() const { return NodeTopologyVersion; }
|
|
int32 NodeTopologyVersion;
|
|
|
|
TArray<URigVMPin*>& PinListForPin(const URigVMPin* InModelPin);
|
|
|
|
#if WITH_EDITOR
|
|
void UpdateProfilingSettings();
|
|
#endif
|
|
|
|
FLinearColor CachedTitleColor;
|
|
FLinearColor CachedNodeColor;
|
|
|
|
#if WITH_EDITOR
|
|
bool bEnableProfiling;
|
|
#endif
|
|
|
|
TArray<URigVMPin*> ExecutePins;
|
|
TArray<URigVMPin*> InputOutputPins;
|
|
TArray<URigVMPin*> InputPins;
|
|
TArray<URigVMPin*> OutputPins;
|
|
TArray<TSharedPtr<FRigVMExternalVariable>> ExternalVariables;
|
|
TArray<UEdGraphPin*> LastEdGraphPins;
|
|
|
|
mutable TMap<TWeakObjectPtr<URigVMPin>, FPinPair> CachedPins;
|
|
TMap<FString, FPinPair> CachedCategoryPins;
|
|
|
|
FNodeTitleDirtied NodeTitleDirtied;
|
|
FNodePinsChanged NodePinsChanged;
|
|
FNodePinExpansionChanged NodePinExpansionChanged;
|
|
FNodeBeginRemoval NodeBeginRemoval;
|
|
|
|
TSet<uint32> ErrorMessageHashes;
|
|
|
|
mutable const FRigVMTemplate* CachedTemplate;
|
|
mutable TOptional<bool> DrawAsCompactNodeCache;
|
|
mutable double MicroSeconds;
|
|
mutable TArray<double> MicroSecondsFrames;
|
|
|
|
friend class SRigVMGraphNode;
|
|
friend class FRigVMFunctionArgumentLayout;
|
|
friend class FRigVMEdGraphDetailCustomization;
|
|
friend class URigVMEdGraphTemplateNodeSpawner;
|
|
friend class URigVMEdGraphArrayNodeSpawner;
|
|
friend class URigVMEdGraphIfNodeSpawner;
|
|
friend class URigVMEdGraphSelectNodeSpawner;
|
|
};
|