mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
93 lines
3.3 KiB
Plaintext
93 lines
3.3 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Ruthberg
|
|
* Calculates the true wind speed at a given world position
|
|
*
|
|
* Arguments:
|
|
* 0: world position - posASL <POSTION>
|
|
* 1: Account for wind gradient (used in advanced ballistics) <BOOL>
|
|
* 2: Account for terrain <BOOL>
|
|
* 3: Account for obstacles <BOOL>
|
|
*
|
|
* Return Value:
|
|
* wind speed - m/s <NUMBER>
|
|
*
|
|
* Example:
|
|
* [eyePos ACE_player, true, true, true] call ace_weather_fnc_calculateWindSpeed;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_position", "_windGradientEnabled", "_terrainEffectEnabled", "_obstacleEffectEnabled"];
|
|
|
|
private _fnc_polar2vect = {
|
|
params ["_mag","_dir","_elev"];
|
|
private _mag2D = _mag * cos(_elev);
|
|
[_mag2D * sin(_dir), _mag2D * cos(_dir), _mag * sin(_elev)];
|
|
};
|
|
|
|
private _windSpeed = vectorMagnitude wind;
|
|
private _windDir = (wind select 0) atan2 (wind select 1);
|
|
private _windDirAdjusted = _windDir + 180;
|
|
|
|
// Wind gradient
|
|
if (_windGradientEnabled) then {
|
|
if (_windSpeed > 0.05) then {
|
|
private _height = (ASLToATL _position) select 2;
|
|
if (_height > 0 && _height < 20) then {
|
|
private _roughnessLength = _position call FUNC(calculateRoughnessLength);
|
|
_windSpeed = _windSpeed * (0 max (ln(_height / _roughnessLength) / ln(20 / _roughnessLength)));
|
|
};
|
|
};
|
|
};
|
|
|
|
// Terrain effect on wind
|
|
if (_terrainEffectEnabled) then {
|
|
if (_windSpeed > 0.05) then {
|
|
private _newWindSpeed = 0;
|
|
{
|
|
private _windSource = [100, _windDirAdjusted, _x] call _fnc_polar2vect;
|
|
if (!(terrainIntersectASL [_position, _position vectorAdd _windSource])) exitWith {
|
|
_newWindSpeed = cos(_x * 9) * _windSpeed;
|
|
};
|
|
_windSource = [100, _windDirAdjusted + _x, 0] call _fnc_polar2vect;
|
|
if (!(terrainIntersectASL [_position, _position vectorAdd _windSource])) exitWith {
|
|
_newWindSpeed = cos(_x * 9) * _windSpeed;
|
|
};
|
|
_windSource = [100, _windDirAdjusted - _x, 0] call _fnc_polar2vect;
|
|
if (!(terrainIntersectASL [_position, _position vectorAdd _windSource])) exitWith {
|
|
_newWindSpeed = cos(_x * 9) * _windSpeed;
|
|
};
|
|
nil
|
|
} count [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
|
|
_windSpeed = _newWindSpeed;
|
|
};
|
|
};
|
|
|
|
// Obstacle effect on wind
|
|
if (_obstacleEffectEnabled) then {
|
|
if (_windSpeed > 0.05) then {
|
|
private _newWindSpeed = 0;
|
|
{
|
|
private _windSource = [20, _windDirAdjusted, _x] call _fnc_polar2vect;
|
|
if (!(lineIntersects [_position, _position vectorAdd _windSource])) exitWith {
|
|
_newWindSpeed = cos(_x * 2) * _windSpeed;
|
|
};
|
|
_windSource = [20, _windDirAdjusted + _x, 0] call _fnc_polar2vect;
|
|
if (!(lineIntersects [_position, _position vectorAdd _windSource])) exitWith {
|
|
_newWindSpeed = cos(_x * 2) * _windSpeed;
|
|
};
|
|
_windSource = [20, _windDirAdjusted - _x, 0] call _fnc_polar2vect;
|
|
if (!(lineIntersects [_position, _position vectorAdd _windSource])) exitWith {
|
|
_newWindSpeed = cos(_x * 2) * _windSpeed;
|
|
};
|
|
nil
|
|
} count [0, 5, 10, 15, 20, 25, 30, 35, 40, 45];
|
|
_windSpeed = _newWindSpeed;
|
|
};
|
|
};
|
|
|
|
_windSpeed = 0 max _windSpeed;
|
|
|
|
_windSpeed
|