mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
59 lines
1.9 KiB
Plaintext
59 lines
1.9 KiB
Plaintext
private ["_weather","_windX","_windY","_weatherOptions","_numWeatherOptions","_forcastTime"];
|
|
|
|
//[overCast,Fog,wind,rain]
|
|
//wind is split randomly in to east-west/north-south direction
|
|
_weatherOptions =
|
|
[
|
|
[0, 0, 4, 0],
|
|
[0.1, 0.1, 5, 0.1],
|
|
[0.3, 0.2, 6, 0.2],
|
|
[0.4, 0.3, 7, 0.3],
|
|
[0.5, 0.4, 8, 0.4],
|
|
[0.5, 0.5, 9, 0.5],
|
|
[0.6, 0.4, 10, 0.6],
|
|
[0.7, 0.3, 11, 0.7],
|
|
[0.8, 0.2, 12, 0.8],
|
|
[0.9, 0.1, 13, 0.9],
|
|
[1, 1, 15, 1]
|
|
];
|
|
_numWeatherOptions = count _weatherOptions;
|
|
|
|
// get inital weather forcast for the next 5 minutes
|
|
_forcastTime = 300;
|
|
if (isNil "WeatherForcast" && isNil "WeatherForcastTime") then {
|
|
WeatherForcast = floor(random(_numWeatherOptions));
|
|
WeatherForcastTime = diag_tickTime;
|
|
} else {
|
|
// after 60 minutes get a new forcast
|
|
if (WeatherForcastTime >= _forcastTime) then {
|
|
WeatherForcast = floor(random(_numWeatherOptions));
|
|
WeatherForcastTime = diag_tickTime;
|
|
};
|
|
};
|
|
|
|
if (isNil "CurrentWeatherOption") then {
|
|
// set inital weather to current forcast
|
|
CurrentWeatherOption = WeatherForcast;
|
|
} else {
|
|
if(CurrentWeatherOption < WeatherForcast) then {
|
|
// start transition up if forcast is higher in the array than current weather
|
|
CurrentWeatherOption = ((CurrentWeatherOption + 1) min _numWeatherOptions);
|
|
} else {
|
|
// start transition down if forcast is lower in the array than current weather
|
|
if (CurrentWeatherOption != WeatherForcast && WeatherForcastTime >= _forcastTime) then {
|
|
CurrentWeatherOption = ((CurrentWeatherOption - 1) max 0) ;
|
|
};
|
|
};
|
|
};
|
|
|
|
// current weather
|
|
_weather = _weatherOptions select CurrentWeatherOption;
|
|
|
|
_windX = floor(random(_weather select 2));
|
|
_windY = (_weather select 2) - _windX;
|
|
_weather set [2,[_windX,_windY]];
|
|
|
|
diag_log format["Weather %1", _weather];
|
|
|
|
PVDZE_plr_SetWeather = _weather;
|
|
publicVariable "PVDZE_plr_SetWeather"; |