mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-24 09:29:21 +03:00
weather test 2
This commit is contained in:
@@ -4,52 +4,22 @@ private ["_weather","_windX","_windY","_weatherOptions","_numWeatherOptions","_f
|
||||
//wind is split randomly in to east-west/north-south direction
|
||||
_weatherOptions =
|
||||
[
|
||||
[0, 0, 5, 0],
|
||||
[0, 0, 4, 0],
|
||||
[0, 0, 3, 0],
|
||||
[0, 0.1, 2, 0],
|
||||
[0, 0.2, 1, 0],
|
||||
[0, 0.3, 2, 0],
|
||||
[0, 0.4, 3, 0],
|
||||
[0, 0.5, 4, 0],
|
||||
[0, 0.4, 5, 0],
|
||||
[0, 0.3, 5, 0],
|
||||
[0, 0.2, 4, 0],
|
||||
[0.1, 0.1, 3, 0.1],
|
||||
[0.2, 0.1, 2, 0.2],
|
||||
[0.3, 0, 1, 0.3],
|
||||
[0.4, 0, 2, 0.4],
|
||||
[0.5, 0, 3, 0.5],
|
||||
[0.6, 0, 4, 0.6],
|
||||
[0.7, 0, 5, 0.7],
|
||||
[0.8, 0, 6, 0.8],
|
||||
[0.9, 0, 7, 0.9],
|
||||
[1, 0, 8, 1],
|
||||
[0.9, 0, 9, 0.9],
|
||||
[0.8, 0, 8, 0.8],
|
||||
[0.7, 0.1, 7, 0.7],
|
||||
[0.6, 0.2, 6, 0.6],
|
||||
[0.5, 0.3, 5, 0.5],
|
||||
[0.4, 0.4, 4, 0.4],
|
||||
[0.3, 0.5, 3, 0.3],
|
||||
[0.2, 0.4, 3, 0.2],
|
||||
[0.1, 0.3, 4, 0.1],
|
||||
[0.2, 0.2, 5, 0.2],
|
||||
[0.3, 0.1, 6, 0.3],
|
||||
[0.4, 0.2, 7, 0.4],
|
||||
[0.5, 0.3, 8, 0.5],
|
||||
[0.5, 0.4, 9, 0.6],
|
||||
[0.6, 0.5, 10, 0.7],
|
||||
[0.5, 0.6, 11, 0.8],
|
||||
[0.4, 0.7, 12, 0.8],
|
||||
[0.3, 0.8, 13, 0.9],
|
||||
[0.2, 0.9, 14, 0.9],
|
||||
[0.1, 1, 15, 1]
|
||||
[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 60 minutes
|
||||
_forcastTime = 3600;
|
||||
// get inital weather forcast for the next 5 minutes
|
||||
_forcastTime = 300;
|
||||
if (isNil "WeatherForcast" and isNil "WeatherForcastTime") then {
|
||||
WeatherForcast = floor(random(_numWeatherOptions));
|
||||
WeatherForcastTime = diag_tickTime;
|
||||
@@ -67,7 +37,7 @@ if (isNil "CurrentWeatherOption") then {
|
||||
} else {
|
||||
if(CurrentWeatherOption < WeatherForcast) then {
|
||||
// start transition up if forcast is higher in the array than current weather
|
||||
CurrentWeatherOption = ((CurrentWeatherOption + 1) min _weatherOptions);
|
||||
CurrentWeatherOption = ((CurrentWeatherOption + 1) min _numWeatherOptions);
|
||||
} else {
|
||||
// start transition down if forcast is lower in the array than current weather
|
||||
if (CurrentWeatherOption != WeatherForcast and WeatherForcastTime >= _forcastTime) then {
|
||||
|
||||
Reference in New Issue
Block a user