Files
UnrealEngineUWP/Engine/Source/Developer/GameplayDebugger/Classes/GameplayDebuggingReplicator.h
Ryan Gerleve 140cfcd734 Add const qualifiers to some networking functions
AActor::IsNetRelevantFor is now const and takes const parameters
UNetDriver::IsLevelInitializedForActor is now const and takes const parameters
UNetConnection::ClientHasInitializedLevelFor is now const
FNetGUIDCache::SupportsObject is now const

#codereview john.pollard

[CL 2350109 by Ryan Gerleve in Main branch]
2014-11-05 13:09:51 -05:00

141 lines
4.2 KiB
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GameplayDebuggingTypes.h"
#include "GameplayDebuggingReplicator.generated.h"
/**
* Transient actor used to communicate between server and client, mostly for RPC
*/
class UGameplayDebuggingComponent;
class AGameplayDebuggingHUDComponent;
DECLARE_MULTICAST_DELEGATE_OneParam(FOnSelectionChanged, class AActor*);
UCLASS(config = Engine, NotBlueprintable, Transient, hidecategories = Actor, notplaceable)
class GAMEPLAYDEBUGGER_API AGameplayDebuggingReplicator : public AActor
{
GENERATED_UCLASS_BODY()
UPROPERTY(config)
FString DebugComponentClassName;
UPROPERTY(config)
FString DebugComponentHUDClassName;
UPROPERTY(config)
int32 MaxEQSQueries;
UPROPERTY(Replicated, Transient)
UGameplayDebuggingComponent* DebugComponent;
UPROPERTY(Replicated, Transient)
APlayerController* LocalPlayerOwner;
UPROPERTY(Replicated, Transient)
AActor* LastSelectedActorToDebug;
UPROPERTY(Replicated, Transient)
bool bIsGlobalInWorld;
UPROPERTY(ReplicatedUsing = OnRep_AutoActivate, Transient)
bool bAutoActivate;
UPROPERTY(Transient, EditAnywhere, Category = "DataView")
bool OverHead;
UPROPERTY(Transient, EditAnywhere, Category = "DataView")
bool Basic;
UPROPERTY(Transient, EditAnywhere, Category = "DataView")
bool BehaviorTree;
UPROPERTY(Transient, EditAnywhere, Category = "DataView|EQS")
bool EQS;
UPROPERTY(Transient, EditAnywhere, Category = "DataView|EQS", meta = (EditCondition = "EQS"))
bool EnableEQSOnHUD;
UPROPERTY(Transient, EditAnywhere, Category = "DataView|EQS", meta = (EditCondition = "EQS"))
int32 ActiveEQSIndex;
UPROPERTY(Transient, EditAnywhere, Category = "DataView")
bool Perception;
UPROPERTY(Transient, EditAnywhere, Category = "DataView")
bool GameView1;
UPROPERTY(Transient, EditAnywhere, Category = "DataView")
bool GameView2;
UPROPERTY(Transient, EditAnywhere, Category = "DataView")
bool GameView3;
UPROPERTY(Transient, EditAnywhere, Category = "DataView")
bool GameView4;
UPROPERTY(Transient, EditAnywhere, Category = DataView)
bool GameView5;
UFUNCTION(reliable, server, WithValidation)
void ServerReplicateMessage(class AActor* Actor, uint32 InMessage, uint32 DataView = 0);
UFUNCTION(reliable, client, WithValidation)
void ClientReplicateMessage(class AActor* Actor, uint32 InMessage, uint32 DataView = 0);
UFUNCTION(reliable, server, WithValidation)
void ServerEnableTargetSelection(bool bEnable, APlayerController* Context);
#if WITH_EDITOR
void PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent) override;
#endif
UFUNCTION()
virtual void OnRep_AutoActivate();
virtual class UNetConnection* GetNetConnection() override;
virtual bool IsNetRelevantFor(const APlayerController* RealViewer, const AActor* Viewer, const FVector& SrcLocation) const override;
virtual void PostInitializeComponents() override;
virtual void BeginPlay() override;
virtual void TickActor(float DeltaTime, enum ELevelTick TickType, FActorTickFunction& ThisTickFunction) override;
UGameplayDebuggingComponent* GetDebugComponent();
bool IsToolCreated();
void CreateTool();
void EnableTool();
bool IsDrawEnabled();
void EnableDraw(bool bEnable);
void SetAsGlobalInWorld(bool IsGlobal) { bIsGlobalInWorld = IsGlobal; }
bool IsGlobalInWorld() { return bIsGlobalInWorld; }
void SetLocalPlayerOwner(APlayerController* PC) { LocalPlayerOwner = PC; }
APlayerController* GetLocalPlayerOwner() { return LocalPlayerOwner; }
FORCEINLINE AActor* GetSelectedActorToDebug() { return LastSelectedActorToDebug; }
void SetActorToDebug(AActor* InActor);
uint32 DebuggerShowFlags;
static FOnSelectionChanged OnSelectionChangedDelegate;
FOnChangeEQSQuery OnChangeEQSQuery;
protected:
void OnDebugAIDelegate(class UCanvas* Canvas, class APlayerController* PC);
void DrawDebugDataDelegate(class UCanvas* Canvas, class APlayerController* PC);
void DrawDebugData(class UCanvas* Canvas, class APlayerController* PC);
private:
uint32 bEnabledDraw : 1;
uint32 LastDrawAtFrame;
float PlayerControllersUpdateDelay;
TWeakObjectPtr<UClass> DebugComponentClass;
TWeakObjectPtr<UClass> DebugComponentHUDClass;
TWeakObjectPtr<AGameplayDebuggingHUDComponent> DebugRenderer;
};