8#include "CoreMinimal.h"
9#include "GameFramework/Actor.h"
10#include "Engine/EngineTypes.h"
11#include "Engine/World.h"
12#include "Templates/SharedPointer.h"
13#include "UObject/ObjectPtr.h"
14#include "Containers/UnrealString.h"
15#include "Components/PrimitiveComponent.h"
16#include "JsonObjectConverter.h"
20#include "ROSIntegration/Classes/ROSIntegrationGameInstance.h"
21#include "ROSIntegration/Classes/RI/Topic.h"
31#include "Sensor.generated.h"
50 ASensor(
const FObjectInitializer& ObjectInitializer);
57 UFUNCTION(BlueprintCallable)
58 FString ExportToJsonFile(
const FString& FileName);
64 UFUNCTION(BlueprintCallable)
74 UFUNCTION(BlueprintPure)
75 FString GetSensorIdentifier()
const
77 return SensorIdentifier;
84 UFUNCTION(BlueprintCallable)
85 void SetSensorIdentifier(const FString newIdentifier)
87 SensorIdentifier = newIdentifier;
88 SetAndValidateActorIDAndName(SensorName, SensorIdentifier, TWeakObjectPtr<AActor>(
this));
95 UFUNCTION(BlueprintPure)
96 FString GetSensorName()
const
104 UFUNCTION(BlueprintPure)
105 virtual FString GetParametersAsString()
const
115 UFUNCTION(BlueprintCallable)
116 AVehicle* IsAttachedToVehicle()
const;
122 UFUNCTION(BlueprintCallable)
123 void SetSensorName(const FString newName)
125 SensorName = newName;
132 UFUNCTION(BlueprintPure)
133 virtual FString GetTopicName()
135 FString Name =
"Undefined";
139 Name = ROSTopic->GetName();
149 UFUNCTION(BlueprintCallable)
150 UTopic* GetROSTopic()
const
159 UFUNCTION(BlueprintCallable)
160 void SetSimulateSensor(
bool SimulateSensor)
162 SimulateThisSensor = SimulateSensor;
169 UFUNCTION(BlueprintCallable)
170 inline
bool CanSimulateSensor()
const
172 return SimulateThisSensor;
180 UFUNCTION(BlueprintCallable, BlueprintPure)
183 return SensorModel.Get();
190 UFUNCTION(BlueprintCallable)
193 SensorModel = NewSensorModel;
200 UFUNCTION(BlueprintCallable)
201 FORCEINLINE
bool IsROSConnected()
const
210 UFUNCTION(BlueprintPure)
211 UROSIntegrationGameInstance* GetROSGameInstance()
const
218 return GetSensorIdentifier();
223 return GetSensorName();
229 const FString ID = IActorInformation::Execute_GetActorID(
this);
230 const FTransform
Transform = GetActorTransform();
231 const FVector Location =
Transform.GetLocation();
232 const FRotator Rotation =
Transform.Rotator();
233 const FString Parameters = GetParametersAsString();
235 FString Information = FString::Printf(TEXT(
"Sensor: %s \nID: %s \nLocation: %s \nRotation: %s \nParameters: %s"),
236 *Sensor, *ID, *Location.ToString(), *Rotation.ToString(), *Parameters);
243 SetSensorName(NewActorName);
248 SetSensorName(NewActorName);
249 SetSensorIdentifier(NewID);
254 ParentActor = ParentActorPtr;
261 static void HideComponentForAllCameras(UPrimitiveComponent* PrimitiveComponent);
263 UFUNCTION(BlueprintCallable)
264 static TMap<FString, FColor> GetSemanticColors();
274 ComponentsToHide.RemoveAll([](
const TWeakObjectPtr<UPrimitiveComponent>& WeakComponent)
276 return !WeakComponent.IsValid();
279 return ComponentsToHide;
282 UPROPERTY(BlueprintAssignable)
283 FSensorDestroy OnSensorDestroy;
285 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Sensor")
286 FString AttachedToComponent;
288 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Sensor")
289 FName AttachedToBone;
293 virtual
void BeginPlay() override;
295 virtual
void EndPlay(const EEndPlayReason::Type EndPlayReason) override;
301 FString CreateTimeStampString() const;
306 virtual
void CreateROSTopic();
311 virtual
void DestroyROSTopic();
316 virtual
void CreateDataSavePath();
324 template<typename InStructType>
325 static FString StructToString(const InStructType& InStruct)
328 FJsonObjectConverter::UStructToJsonObjectString(InStruct, AsString);
335 UFUNCTION(BlueprintCallable, BlueprintPure)
336 bool IsLogFileCreated()
351 UFUNCTION(BlueprintCallable)
352 virtual void CreateLogFile();
357 UFUNCTION(BlueprintCallable)
358 void WriteToLogFile(
const FString& Message);
361 UTopic* ROSTopic =
nullptr;
363 UPROPERTY(VisibleAnywhere, Category = "Sensor")
364 bool SendDataToROS = true;
370 AActor* ParentActor =
nullptr;
372 FString FileSavePath;
375 UROSIntegrationGameInstance* ROSInstance =
nullptr;
377 static FPrimitiveAdded OnPrimitiveAdded;
380 inline static const FName NiagaraPointsInt = "User.PointCount";
381 inline static const FName NiagaraHitPoints = "User.HitPoints";
382 inline static const FName NiagaraHitColors = "User.HitColors";
383 inline static const FName NiagaraPointsFloat = "User.Test";
394 void ROSBridgeStateChanged(
EROSState ROSState);
399 UPROPERTY(EditAnywhere, Category = "Sensor")
400 FString SensorIdentifier;
402 UPROPERTY(EditAnywhere, Category = "Sensor")
405 UPROPERTY(EditAnywhere, Category = "Sensor")
406 bool SimulateThisSensor = true;
408 UPROPERTY(VisibleAnywhere, Category = "Sensor")
409 bool ROSConnected = false;
411 static TArray<TWeakObjectPtr<UPrimitiveComponent>> ComponentsToHide;
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FSensorDestroy, ASensor *, sensor)
virtual FString GetActorID_Implementation() const override
static TArray< TWeakObjectPtr< UPrimitiveComponent > > GetComponentsToHide()
virtual void SetActorName_Implementation(const FString &NewActorName) override
virtual void SetActorIDAndName_Implementation(const FString &NewActorName, const FString &NewID) override
void SetParentActorPtr(AActor *ParentActorPtr)
virtual FString GetActorName_Implementation() const override
virtual FString GetActorInformation_Implementation() const override
static FString ConvertSensorTypeToString(ESensorTypes Sensortype)