Files
UnrealEngineUWP/Engine/Source/Editor/BlueprintGraph/Classes/K2Node_ActorBoundEvent.h
Ben Marsh 20bf0eb6a1 Updating copyright notices to 2017 (copying from //Tasks/UE4/Dev-Copyright-2017).
#rb none
#lockdown Nick.Penwarden

[CL 3226823 by Ben Marsh in Main branch]
2016-12-08 08:52:44 -05:00

77 lines
2.7 KiB
C++

// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "EdGraph/EdGraphNodeUtils.h"
#include "K2Node_Event.h"
#include "K2Node_ActorBoundEvent.generated.h"
class AActor;
class FKismetCompilerContext;
class FNodeHandlingFunctor;
class UEdGraph;
UCLASS(MinimalAPI)
class UK2Node_ActorBoundEvent : public UK2Node_Event
{
GENERATED_UCLASS_BODY()
/** Delegate property name that this event is associated with */
UPROPERTY()
FName DelegatePropertyName;
/** Delegate property's owner class that this event is associated with */
UPROPERTY()
UClass* DelegateOwnerClass;
/** The event that this event is bound to */
UPROPERTY()
class AActor* EventOwner;
//~ Begin UObject Interface
virtual void Serialize(FArchive& Ar) override;
//~ End UObject Interface
//~ Begin UEdGraphNode Interface
virtual void ReconstructNode() override;
virtual void DestroyNode() override;
virtual bool CanPasteHere(const UEdGraph* TargetGraph) const override;
virtual FText GetNodeTitle(ENodeTitleType::Type TitleType) const override;
virtual FText GetTooltipText() const override;
virtual FString GetDocumentationLink() const override;
virtual FString GetDocumentationExcerptName() const override;
//~ End UEdGraphNode Interface
//~ Begin K2Node Interface
virtual AActor* GetReferencedLevelActor() const override;
virtual bool NodeCausesStructuralBlueprintChange() const override { return true; }
virtual FNodeHandlingFunctor* CreateNodeHandler(FKismetCompilerContext& CompilerContext) const override;
//~ End K2Node Interface
virtual bool IsUsedByAuthorityOnlyDelegate() const override;
/**
* Initialized the members of the node, given the specified owner and delegate property. This will fill out all the required members for the event, such as CustomFunctionName
*
* @param InEventOwner The target for this bound event
* @param InDelegateProperty The multicast delegate property associated with the event, which will have a delegate added to it in the level script actor, matching its signature
*/
BLUEPRINTGRAPH_API void InitializeActorBoundEventParams(AActor* InEventOwner, const UMulticastDelegateProperty* InDelegateProperty);
/** Return the delegate property that this event is bound to */
BLUEPRINTGRAPH_API UMulticastDelegateProperty* GetTargetDelegateProperty();
/** Const version of GetTargetDelegateProperty that does not search redirect table */
BLUEPRINTGRAPH_API UMulticastDelegateProperty* GetTargetDelegatePropertyConst() const;
/** Returns the delegate that this event is bound in */
BLUEPRINTGRAPH_API FMulticastScriptDelegate* GetTargetDelegate();
private:
/** Constructing FText strings can be costly, so we cache the node's title */
FNodeTextCache CachedNodeTitle;
};