Agrarsense
Public Member Functions | Public Attributes | List of all members
FWeatherParameters Struct Reference

#include <WeatherParameters.h>

Public Member Functions

bool IsWinterSnowCondition ()
 
bool IsWinterSeason ()
 
bool IsLidarNoiseModelCondition ()
 
FString ToString () const
 
FString ToStringHumanReadable () const
 

Public Attributes

float Temperature = 10.0f
 
float Precipitation = 0.0f
 
float PrecipitationParticleSize = 1.0f
 
float Cloudiness = 0.05f
 
float Fog = 0.0f
 
float FogFalloff = 0.2f
 
float WindIntensity = 0.0f
 
float WindDirection = 15.0f
 
float SnowAmount = 0.0f
 
float TreeSnowiness = 0.0f
 
int Month = 7
 
int Time = 12
 
bool UseManualLeafColors = false
 
FLinearColor BirchLeafColor = FLinearColor(0.0f, 0.0f, 0.0f, 0.0f)
 
FLinearColor PineLeafColor = FLinearColor(0.0f, 0.0f, 0.0f, 0.0f)
 
FLinearColor SpruceLeafColor = FLinearColor(0.0f, 0.0f, 0.0f, 0.0f)
 
FLinearColor AlderLeafColor = FLinearColor(0.0f, 0.0f, 0.0f, 0.0f)
 

Detailed Description

Definition at line 13 of file WeatherParameters.h.

Member Function Documentation

◆ IsLidarNoiseModelCondition()

bool FWeatherParameters::IsLidarNoiseModelCondition ( )
inline

Checks if the current weather conditions allow for a Lidar noise model to be used.

Returns
true if the Lidar noise model can be applied in the current weather.

Definition at line 86 of file WeatherParameters.h.

87 {
88 return Temperature <= 0.0f && Precipitation != 0.0f;
89 }

Referenced by ALidar::SimulateRaycastLidar().

◆ IsWinterSeason()

bool FWeatherParameters::IsWinterSeason ( )
inline

Definition at line 77 of file WeatherParameters.h.

78 {
79 return (Month == 12 || Month <= 3);
80 }

Referenced by AInstancedActorRenderer::OnWeatherParametersChanged().

◆ IsWinterSnowCondition()

bool FWeatherParameters::IsWinterSnowCondition ( )
inline

Definition at line 72 of file WeatherParameters.h.

73 {
74 return SnowAmount != 0.0f;
75 }

Referenced by ALidar::SimulateRaycastLidar().

◆ ToString()

FString FWeatherParameters::ToString ( ) const
inline

Definition at line 91 of file WeatherParameters.h.

92 {
93 return FString::Printf(
94 TEXT("%f, %f, %f, %f, %f, %f, %f, %f, %f, %f, %d, %d"),
99 Fog,
105 Month,
106 Time
107 );
108 }

◆ ToStringHumanReadable()

FString FWeatherParameters::ToStringHumanReadable ( ) const
inline

Definition at line 110 of file WeatherParameters.h.

111 {
112 return FString::Printf(
113 TEXT("Temperature: %.2f, Precipitation: %.2f, Precipitation Particle Size: %.2f, Cloudiness: %.2f, Fog: %.2f, Fog Falloff: %.2f, Wind Intensity: %.2f, Wind Direction: %.2f, Snow Amount: %.2f, Tree Snowiness: %.2f, Month: %d, Time: %d"),
118 Fog,
124 Month,
125 Time
126 );
127 }

Referenced by AWeather::SendWeatherData().

Member Data Documentation

◆ AlderLeafColor

FLinearColor FWeatherParameters::AlderLeafColor = FLinearColor(0.0f, 0.0f, 0.0f, 0.0f)

Definition at line 70 of file WeatherParameters.h.

◆ BirchLeafColor

FLinearColor FWeatherParameters::BirchLeafColor = FLinearColor(0.0f, 0.0f, 0.0f, 0.0f)

Definition at line 61 of file WeatherParameters.h.

◆ Cloudiness

float FWeatherParameters::Cloudiness = 0.05f

Definition at line 27 of file WeatherParameters.h.

◆ Fog

float FWeatherParameters::Fog = 0.0f

Definition at line 30 of file WeatherParameters.h.

◆ FogFalloff

float FWeatherParameters::FogFalloff = 0.2f

Definition at line 33 of file WeatherParameters.h.

◆ Month

int FWeatherParameters::Month = 7

Definition at line 48 of file WeatherParameters.h.

Referenced by AWeather::GetCurrentSeason().

◆ PineLeafColor

FLinearColor FWeatherParameters::PineLeafColor = FLinearColor(0.0f, 0.0f, 0.0f, 0.0f)

Definition at line 64 of file WeatherParameters.h.

◆ Precipitation

float FWeatherParameters::Precipitation = 0.0f

Definition at line 21 of file WeatherParameters.h.

Referenced by LidarNoiseModel::CheckSnowflakeHit().

◆ PrecipitationParticleSize

float FWeatherParameters::PrecipitationParticleSize = 1.0f

Definition at line 24 of file WeatherParameters.h.

Referenced by LidarNoiseModel::CheckSnowflakeHit().

◆ SnowAmount

float FWeatherParameters::SnowAmount = 0.0f

◆ SpruceLeafColor

FLinearColor FWeatherParameters::SpruceLeafColor = FLinearColor(0.0f, 0.0f, 0.0f, 0.0f)

Definition at line 67 of file WeatherParameters.h.

◆ Temperature

float FWeatherParameters::Temperature = 10.0f

Definition at line 18 of file WeatherParameters.h.

◆ Time

int FWeatherParameters::Time = 12

Definition at line 51 of file WeatherParameters.h.

◆ TreeSnowiness

float FWeatherParameters::TreeSnowiness = 0.0f

Definition at line 45 of file WeatherParameters.h.

◆ UseManualLeafColors

bool FWeatherParameters::UseManualLeafColors = false

Definition at line 58 of file WeatherParameters.h.

◆ WindDirection

float FWeatherParameters::WindDirection = 15.0f

Definition at line 39 of file WeatherParameters.h.

◆ WindIntensity

float FWeatherParameters::WindIntensity = 0.0f

The documentation for this struct was generated from the following file: