8#include "CoreMinimal.h"
9#include "GameFramework/Actor.h"
10#include "Engine/World.h"
15#include "ROSIntegration/Public/std_msgs/String.h"
17#include "Weather.generated.h"
19class UROSIntegrationGameInstance;
36 AWeather(
const FObjectInitializer& ObjectInitializer);
43 UFUNCTION(BlueprintCallable)
49 UFUNCTION(BlueprintCallable)
50 FString ExportToJSON(
const FString& FileName);
55 UFUNCTION(BlueprintCallable)
61 UFUNCTION(BlueprintCallable, BlueprintPure)
69 UFUNCTION(BlueprintCallable, BlueprintPure)
70 ESeason GetSeasonForMonth(
const int32 Month);
75 UFUNCTION(BlueprintCallable)
78 return CurrentWeather;
81 UFUNCTION(BlueprintCallable)
82 const
bool IsValidLeafColor(const FLinearColor& Color)
const
84 return Color != FLinearColor(0.0f, 0.0f, 0.0f, 0.0f);
90 UPROPERTY(BlueprintAssignable)
91 FLevelEventDelegate_WeatherChanged OnWeatherChanged;
95 virtual
void BeginPlay() override;
97 virtual
void EndPlay(const EEndPlayReason::Type EndPlayReason) override;
102 void ROSBridgeStateChanged(
EROSState ROSState);
106 void InitializeROSTopic();
113 UTopic* WeatherTopic =
nullptr;
116 UROSIntegrationGameInstance* RosInstance =
nullptr;
118 bool ROSConnected = false;
123 TSharedPtr<ROSMessages::std_msgs::String> Message;
125 const
FWeatherParameters Default = { 0.0f, 0.0f, 0.1f, 0.05f, 0.0f, 0.2f, 0.0f, 15.0f, 0.0f, 0.0f, 7, 9 };
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FLevelEventDelegate_WeatherChanged, FWeatherParameters, weatherParameters)