mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
66 lines
2.2 KiB
Plaintext
66 lines
2.2 KiB
Plaintext
|
#include "script_component.hpp"
|
||
|
|
||
|
private ["_windSpeed", "_windDir", "_height", "_newWindSpeed", "_windSource", "_roughnessLength"];
|
||
|
|
||
|
fnc_polar2vect = {
|
||
|
private ["_mag2D"];
|
||
|
_mag2D = (_this select 0) * cos((_this select 2));
|
||
|
[_mag2D * sin((_this select 1)), _mag2D * cos((_this select 1)), (_this select 0) * sin((_this select 2))];
|
||
|
};
|
||
|
|
||
|
_windSpeed = vectorMagnitude ACE_wind;
|
||
|
_windDir = (ACE_wind select 0) atan2 (ACE_wind select 1);
|
||
|
|
||
|
// Wind gradient
|
||
|
if (_windSpeed > 0.05) then {
|
||
|
_height = (ASLToATL _this) select 2;
|
||
|
_height = 0 max _height min 20;
|
||
|
if (_height < 20) then {
|
||
|
_roughnessLength = _this call FUNC(calculateRoughnessLength);
|
||
|
_windSpeed = _windSpeed * ln(_height / _roughnessLength) / ln(20 / _roughnessLength);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
// Terrain effect on wind
|
||
|
if (_windSpeed > 0.05) then {
|
||
|
_newWindSpeed = 0;
|
||
|
{
|
||
|
_windSource = [100, _windDir + 180, _x] call fnc_polar2vect;
|
||
|
if (!(terrainIntersectASL [_this, _this vectorAdd _windSource])) exitWith {
|
||
|
_newWindSpeed = cos(_x * 9) * _windSpeed;
|
||
|
};
|
||
|
_windSource = [100, _windDir + 180 + _x, 0] call fnc_polar2vect;
|
||
|
if (!(terrainIntersectASL [_this, _this vectorAdd _windSource])) exitWith {
|
||
|
_newWindSpeed = cos(_x * 9) * _windSpeed;
|
||
|
};
|
||
|
_windSource = [100, _windDir + 180 - _x, 0] call fnc_polar2vect;
|
||
|
if (!(terrainIntersectASL [_this, _this vectorAdd _windSource])) exitWith {
|
||
|
_newWindSpeed = cos(_x * 9) * _windSpeed;
|
||
|
};
|
||
|
} forEach [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
|
||
|
_windSpeed = _newWindSpeed;
|
||
|
};
|
||
|
|
||
|
// Obstacle effect on wind
|
||
|
if (_windSpeed > 0.05) then {
|
||
|
_newWindSpeed = 0;
|
||
|
{
|
||
|
_windSource = [20, _windDir + 180, _x] call fnc_polar2vect;
|
||
|
if (!(lineIntersects [_this, _this vectorAdd _windSource])) exitWith {
|
||
|
_newWindSpeed = cos(_x * 2) * _windSpeed;
|
||
|
};
|
||
|
_windSource = [20, _windDir + 180 + _x, 0] call fnc_polar2vect;
|
||
|
if (!(lineIntersects [_this, _this vectorAdd _windSource])) exitWith {
|
||
|
_newWindSpeed = cos(_x * 2) * _windSpeed;
|
||
|
};
|
||
|
_windSource = [20, _windDir + 180 - _x, 0] call fnc_polar2vect;
|
||
|
if (!(lineIntersects [_this, _this vectorAdd _windSource])) exitWith {
|
||
|
_newWindSpeed = cos(_x * 2) * _windSpeed;
|
||
|
};
|
||
|
} forEach [0, 5, 10, 15, 20, 25, 30, 35, 40, 45];
|
||
|
_windSpeed = _newWindSpeed;
|
||
|
};
|
||
|
_windSpeed = 0 max _windSpeed;
|
||
|
|
||
|
_windSpeed
|