mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
62 lines
2.0 KiB
Plaintext
62 lines
2.0 KiB
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Inits the wind variables on mission start
|
|
*
|
|
* Argument:
|
|
* None
|
|
*
|
|
* Return value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_weather_fnc_initWind
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private _month = date select 1;
|
|
private _windDirectionProbabilities = GVAR(WindDirectionProbabilities) select (_month - 1);
|
|
|
|
ACE_wind = [0, 0, 0];
|
|
|
|
GVAR(wind_direction_reference) = random 360;
|
|
private _sum = 0;
|
|
for "_i" from 0 to 7 do {
|
|
_sum = _sum + (_windDirectionProbabilities select _i);
|
|
};
|
|
private _rand = random _sum;
|
|
private _csum = [0, 0, 0, 0, 0, 0, 0, 0];
|
|
for "_i" from 0 to 7 do {
|
|
for "_j" from 0 to _i do {
|
|
_csum set [_i, (_csum select _i) + (_windDirectionProbabilities select _j)];
|
|
};
|
|
};
|
|
private _index = 0;
|
|
for "_i" from 0 to 7 do {
|
|
if (_rand > (_csum select _i)) then {
|
|
_index = _index + 1;
|
|
};
|
|
};
|
|
GVAR(wind_direction_reference) = 45 * _index;
|
|
|
|
GVAR(wind_mean_dir) = GVAR(wind_direction_reference);
|
|
GVAR(wind_direction_reference) = GVAR(wind_direction_reference) + (random 22.5) - (random 22.5);
|
|
GVAR(wind_direction_reference) = (360 + GVAR(wind_direction_reference)) % 360;
|
|
|
|
GVAR(min_wind_speed) = GVAR(WindSpeedMin) select (_month - 1);
|
|
GVAR(min_wind_speed) = (GVAR(min_wind_speed) select 0) + (random (GVAR(min_wind_speed) select 1)) - (random (GVAR(min_wind_speed) select 1));
|
|
GVAR(min_wind_speed) = 0 max GVAR(min_wind_speed);
|
|
GVAR(mean_wind_speed) = GVAR(WindSpeedMean) select (_month - 1);
|
|
GVAR(max_wind_speed) = GVAR(WindSpeedMax) select (_month - 1);
|
|
GVAR(max_wind_speed) = (GVAR(max_wind_speed) select 0) + (random (GVAR(max_wind_speed) select 1)) - (random (GVAR(max_wind_speed) select 1));
|
|
GVAR(max_wind_speed) = 0 max GVAR(max_wind_speed);
|
|
|
|
GVAR(current_wind_direction) = GVAR(wind_direction_reference);
|
|
GVAR(current_wind_speed) = GVAR(min_wind_speed) + (GVAR(max_wind_speed) - GVAR(min_wind_speed)) * (random 1);
|
|
|
|
GVAR(wind_period_count) = 0;
|
|
GVAR(wind_next_period) = -1;
|
|
|
|
GVAR(wind_speed_debug_output) = [];
|