Agrarsense
Sensor.h
Go to the documentation of this file.
1// Copyright (c) 2023 FrostBit Software Lab at the Lapland University of Applied Sciences
2//
3// This work is licensed under the terms of the MIT license.
4// For a copy, see <https://opensource.org/licenses/MIT>.
5
6#pragma once
7
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"
17
18#include <vector>
19
20#include "ROSIntegration/Classes/ROSIntegrationGameInstance.h"
21#include "ROSIntegration/Classes/RI/Topic.h"
22
29
30
31#include "Sensor.generated.h"
32
33class AVehicle;
34class ASensorModel;
35
37
38DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FPrimitiveAdded, UPrimitiveComponent*, PrimitiveComponent);
39
43UCLASS()
44class AGRARSENSE_API ASensor : public AActor, public IActorInformation
45{
46 GENERATED_BODY()
47
48public:
49
50 ASensor(const FObjectInitializer& ObjectInitializer);
51
57 UFUNCTION(BlueprintCallable)
58 FString ExportToJsonFile(const FString& FileName);
59
64 UFUNCTION(BlueprintCallable)
65 virtual ESensorTypes GetSensorType() const
66 {
67 return ESensorTypes::NONE;
68 }
69
74 UFUNCTION(BlueprintPure)
75 FString GetSensorIdentifier() const
76 {
77 return SensorIdentifier;
78 }
79
84 UFUNCTION(BlueprintCallable)
85 void SetSensorIdentifier(const FString newIdentifier)
86 {
87 SensorIdentifier = newIdentifier;
88 SetAndValidateActorIDAndName(SensorName, SensorIdentifier, TWeakObjectPtr<AActor>(this));
89 }
90
95 UFUNCTION(BlueprintPure)
96 FString GetSensorName() const
97 {
98 return SensorName;
99 }
100
104 UFUNCTION(BlueprintPure)
105 virtual FString GetParametersAsString() const
106 {
107 return FString();
108 }
109
110 /*
111 * Checks if the object is attached to Vehicle.
112 * Returns a valid pointer to the AVehicle if the parent is of type AVehicle,
113 * otherwise returns nullptr.
114 */
115 UFUNCTION(BlueprintCallable)
116 AVehicle* IsAttachedToVehicle() const;
117
122 UFUNCTION(BlueprintCallable)
123 void SetSensorName(const FString newName)
124 {
125 SensorName = newName;
126 }
127
132 UFUNCTION(BlueprintPure)
133 virtual FString GetTopicName()
134 {
135 FString Name = "Undefined";
136
137 if (ROSTopic)
138 {
139 Name = ROSTopic->GetName();
140 }
141
142 return Name;
143 }
144
149 UFUNCTION(BlueprintCallable)
150 UTopic* GetROSTopic() const
151 {
152 return ROSTopic;
153 }
154
159 UFUNCTION(BlueprintCallable)
160 void SetSimulateSensor(bool SimulateSensor)
161 {
162 SimulateThisSensor = SimulateSensor;
163 }
164
169 UFUNCTION(BlueprintCallable)
170 inline bool CanSimulateSensor() const
171 {
172 return SimulateThisSensor;
173 }
174
180 UFUNCTION(BlueprintCallable, BlueprintPure)
181 ASensorModel* GetSensorModel() const
182 {
183 return SensorModel.Get();
184 }
185
190 UFUNCTION(BlueprintCallable)
191 void SetSensorModel(ASensorModel* NewSensorModel)
192 {
193 SensorModel = NewSensorModel;
194 }
195
200 UFUNCTION(BlueprintCallable)
201 FORCEINLINE bool IsROSConnected() const
202 {
203 return ROSConnected;
204 }
205
210 UFUNCTION(BlueprintPure)
211 UROSIntegrationGameInstance* GetROSGameInstance() const
212 {
213 return ROSInstance;
214 }
215
216 virtual FString GetActorID_Implementation() const override
217 {
218 return GetSensorIdentifier();
219 }
220
221 virtual FString GetActorName_Implementation() const override
222 {
223 return GetSensorName();
224 }
225
226 virtual FString GetActorInformation_Implementation() const override
227 {
228 const FString Sensor = UEnumUtilities::ConvertSensorTypeToString(GetSensorType());
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();
234
235 FString Information = FString::Printf(TEXT("Sensor: %s \nID: %s \nLocation: %s \nRotation: %s \nParameters: %s"),
236 *Sensor, *ID, *Location.ToString(), *Rotation.ToString(), *Parameters);
237
238 return Information;
239 }
240
241 virtual void SetActorName_Implementation(const FString& NewActorName) override
242 {
243 SetSensorName(NewActorName);
244 }
245
246 virtual void SetActorIDAndName_Implementation(const FString& NewActorName, const FString& NewID) override
247 {
248 SetSensorName(NewActorName);
249 SetSensorIdentifier(NewID);
250 }
251
252 void SetParentActorPtr(AActor* ParentActorPtr)
253 {
254 ParentActor = ParentActorPtr;
255 }
256
261 static void HideComponentForAllCameras(UPrimitiveComponent* PrimitiveComponent);
262
263 UFUNCTION(BlueprintCallable)
264 static TMap<FString, FColor> GetSemanticColors();
265
270 static TArray<TWeakObjectPtr<UPrimitiveComponent>> GetComponentsToHide()
271 {
272 // Since we don't know whether some UPrimitiveComponent has been destroyed,
273 // we need to check these are still valid.
274 ComponentsToHide.RemoveAll([](const TWeakObjectPtr<UPrimitiveComponent>& WeakComponent)
275 {
276 return !WeakComponent.IsValid();
277 });
278
279 return ComponentsToHide;
280 }
281
282 UPROPERTY(BlueprintAssignable)
283 FSensorDestroy OnSensorDestroy;
284
285 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Sensor")
286 FString AttachedToComponent;
287
288 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Sensor")
289 FName AttachedToBone;
290
291protected:
292
293 virtual void BeginPlay() override;
294
295 virtual void EndPlay(const EEndPlayReason::Type EndPlayReason) override;
296
297 /*
298 * Creates a timestamp string representing the current date and time in the format:
299 * DAY:MONTH:YEAR:HOUR:MINUTE:SECOND:MILLISECOND
300 */
301 FString CreateTimeStampString() const;
302
306 virtual void CreateROSTopic();
307
311 virtual void DestroyROSTopic();
312
316 virtual void CreateDataSavePath();
317
324 template<typename InStructType>
325 static FString StructToString(const InStructType& InStruct)
326 {
327 FString AsString;
328 FJsonObjectConverter::UStructToJsonObjectString(InStruct, AsString);
329 return AsString;
330 }
331
335 UFUNCTION(BlueprintCallable, BlueprintPure)
336 bool IsLogFileCreated()
337 {
338 if (LogFile)
339 {
340 return true;
341 }
342
343 return false;
344 }
345
351 UFUNCTION(BlueprintCallable)
352 virtual void CreateLogFile();
353
357 UFUNCTION(BlueprintCallable)
358 void WriteToLogFile(const FString& Message);
359
360 UPROPERTY()
361 UTopic* ROSTopic = nullptr;
362
363 UPROPERTY(VisibleAnywhere, Category = "Sensor")
364 bool SendDataToROS = true;
365
366 UPROPERTY()
367 ULogFile* LogFile = nullptr;
368
369 UPROPERTY()
370 AActor* ParentActor = nullptr;
371
372 FString FileSavePath;
373
374 UPROPERTY()
375 UROSIntegrationGameInstance* ROSInstance = nullptr;
376
377 static FPrimitiveAdded OnPrimitiveAdded;
378
379 // Lidar Niagara particle system visualization FName constants
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";
384
385private:
386
387
388
393 UFUNCTION()
394 void ROSBridgeStateChanged(EROSState ROSState);
395
396 UPROPERTY()
397 TObjectPtr<ASensorModel> SensorModel;
398
399 UPROPERTY(EditAnywhere, Category = "Sensor")
400 FString SensorIdentifier;
401
402 UPROPERTY(EditAnywhere, Category = "Sensor")
403 FString SensorName;
404
405 UPROPERTY(EditAnywhere, Category = "Sensor")
406 bool SimulateThisSensor = true;
407
408 UPROPERTY(VisibleAnywhere, Category = "Sensor")
409 bool ROSConnected = false;
410
411 static TArray<TWeakObjectPtr<UPrimitiveComponent>> ComponentsToHide;
412
413};
EROSState
Definition: ROSState.h:16
ESensorTypes
Definition: SensorTypes.h:15
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FSensorDestroy, ASensor *, sensor)
Definition: Sensor.h:45
virtual FString GetActorID_Implementation() const override
Definition: Sensor.h:216
static TArray< TWeakObjectPtr< UPrimitiveComponent > > GetComponentsToHide()
Definition: Sensor.h:270
virtual void SetActorName_Implementation(const FString &NewActorName) override
Definition: Sensor.h:241
virtual void SetActorIDAndName_Implementation(const FString &NewActorName, const FString &NewID) override
Definition: Sensor.h:246
void SetParentActorPtr(AActor *ParentActorPtr)
Definition: Sensor.h:252
virtual FString GetActorName_Implementation() const override
Definition: Sensor.h:221
virtual FString GetActorInformation_Implementation() const override
Definition: Sensor.h:226
static FString ConvertSensorTypeToString(ESensorTypes Sensortype)