19#include "Misc/DateTime.h"
20#include "Kismet/GameplayStatics.h"
21#include "TimerManager.h"
22#include "UObject/Class.h"
27ASensor::ASensor(
const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer)
29 RootComponent = CreateDefaultSubobject<USceneComponent>(TEXT(
"SceneRoot"));
30 RootComponent->SetMobility(EComponentMobility::Movable);
37 UWorld* World = GetWorld();
55 World->GetTimerManager().SetTimer(Handle, FTimerDelegate::CreateLambda([
this]
59 FString ActorInformation = IActorInformation::Execute_GetActorInformation(
this);
60 FString Message = FString::Printf(TEXT(
"Spawned %s"), *ActorInformation);
83 FString ActorID = IActorInformation::Execute_GetActorID(
this);
84 FString SensorTransformSensorID = ActorID +
"/transform";
101 Super::EndPlay(EndPlayReason);
109 FString Sensor = UEnum::GetDisplayValueAsText(
GetSensorType()).ToString();
111 FString Message = FString::Printf(TEXT(
"Destroyed %s sensor with ID: %s"), *Sensor, *ID);
114 if (EndPlayReason == EEndPlayReason::EndPlayInEditor
115 || EndPlayReason == EEndPlayReason::Quit)
119 WeakComponentPtr.Reset();
126 TArray<AActor*> AttachedActors;
127 GetAttachedActors(AttachedActors);
128 for (AActor* Actor : AttachedActors)
185 ROSTopic->ConditionalBeginDestroy();
207 MessageType =
"sensor_msgs/PointCloud2";
215 MessageType =
"sensor_msgs/Image";
219 MessageType =
"geometry_msgs/Transform";
224 MessageType =
"std_msgs/String";
229 UE_LOG(LogTemp, Warning, TEXT(
"Unhandled ROS sensor message creation for sensor: %s"), *SensorNameString);
233 FString TopicName = FString::Printf(TEXT(
"/agrarsense/out/sensors/%s"), *
GetSensorIdentifier());
235 ROSTopic = NewObject<UTopic>(UTopic::StaticClass());
242 FString Message = FString::Printf(TEXT(
"%s sensor created ROS topic. Name: '%s' MessageType: '%s' "), *
GetSensorName(), *TopicName, *MessageType);
254 FString VehicleName =
Vehicle->GetActorID_Implementation();
278 LogFile = NewObject<ULogFile>(ULogFile::StaticClass());
282 FString UnixTimeStamp = FString::FromInt(FDateTime::Now().ToUnixTimestamp());
284 FString ActorID = IActorInformation::Execute_GetActorID(
this);
287 ActorID.ReplaceInline(TEXT(
"/"), TEXT(
""), ESearchCase::IgnoreCase);
289 FString FileName = FString::Printf(TEXT(
"%s_%s_%s"), *
GetSensorName(), *ActorID, *UnixTimeStamp);
296 if (!IsValid(
LogFile) && IsValid(
this))
309 if (PrimitiveComponent)
311 TWeakObjectPtr<UPrimitiveComponent> Component(PrimitiveComponent);
324 FDateTime Now = FDateTime::Now();
325 FString TimeStamp = FString::Printf(TEXT(
"%02d:%02d:%04d:%02d:%02d:%02d:%03d"),
326 Now.GetDay(), Now.GetMonth(), Now.GetYear(),
327 Now.GetHour(), Now.GetMinute(), Now.GetSecond(), Now.GetMillisecond());
@ SemanticSegmentationCamera
static TArray< TWeakObjectPtr< UPrimitiveComponent > > ComponentsToHide
virtual void DestroyROSTopic()
virtual void CreateLogFile()
void ROSBridgeStateChanged(EROSState ROSState)
UROSIntegrationGameInstance * ROSInstance
static void HideComponentForAllCameras(UPrimitiveComponent *PrimitiveComponent)
virtual void BeginPlay() override
FSensorDestroy OnSensorDestroy
static FPrimitiveAdded OnPrimitiveAdded
FString GetSensorIdentifier() const
virtual void CreateDataSavePath()
FString GetSensorName() const
virtual ESensorTypes GetSensorType() const
AVehicle * IsAttachedToVehicle() const
FString ExportToJsonFile(const FString &FileName)
virtual FString GetActorID_Implementation() const override
FString CreateTimeStampString() const
void WriteToLogFile(const FString &Message)
FORCEINLINE bool IsROSConnected() const
virtual void EndPlay(const EEndPlayReason::Type EndPlayReason) override
virtual void CreateROSTopic()
ASensor(const FObjectInitializer &ObjectInitializer)
static TMap< FString, FColor > GetSemanticColors()
static void Log(const FString &Message, bool LogToTextFile=true, bool LogToROS=true)
static FString GetDataFolder()
static UROSIntegrationGameInstance * GetROSGameInstance(const UObject *WorldContextObject)
static UROSHandler * GetROSHandle(const UObject *WorldContextObject)
static FString ConvertSensorTypeToString(ESensorTypes Sensortype)
void Write(const FString &Text)
void Create(const FString &FileNameWithoutExtension, FLogFileSettings Settings)
FROSDelegate_ROState OnROSStateChanged
static TMap< FString, FColor > GetSemanticColors()
static ATransformSensor * SpawnTransformSensor(const FTransform &transform, FTransformSensorParameters Parameters, const FString sensorIdentifier, const FString sensorName, bool SimulateSensor=true, AActor *Parent=nullptr)
static void AddSensor(ASensor *SensorPtr)
static void RemoveSensor(ASensor *SensorPtr)
static FString ExportSensorToJSON(const FString &FileName, ASensor *Sensor)
FFileWriteOptions FileWriteOptions
FFileCreationOptions FileCreationOptions