mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Measures the wind speed, stores the information in GVAR(MeasuredWindSpeed) and updates GVAR(ImpellerState)
|
|
*
|
|
* Arguments:
|
|
* Nothing
|
|
*
|
|
* Return Value:
|
|
* wind speed <NUMBER>
|
|
*
|
|
* Example:
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_playerDir", "_windSpeed", "_windDir"];
|
|
|
|
_playerDir = getDir ACE_player;
|
|
_windSpeed = vectorMagnitude ACE_wind;
|
|
_windDir = (ACE_wind select 0) atan2 (ACE_wind select 1);
|
|
|
|
if (missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false]) then {
|
|
_windSpeed = (eyePos ACE_player) call EFUNC(advanced_ballistics,calculateWindSpeed);
|
|
_windSpeed = abs(cos(_playerDir - _windDir)) * _windSpeed;
|
|
} else {
|
|
_windSpeed = (eyePos ACE_player) call FUNC(calculateWindSpeed);
|
|
};
|
|
|
|
if (_windSpeed > 0.3 || {GVAR(MeasuredWindSpeed) > 0.1 && _windSpeed > 0.125}) then {
|
|
GVAR(MeasuredWindSpeed) = _windSpeed;
|
|
} else {
|
|
GVAR(MeasuredWindSpeed) = GVAR(MeasuredWindSpeed) * 0.99;
|
|
if (GVAR(MeasuredWindSpeed) < 0.05) then {
|
|
GVAR(MeasuredWindSpeed) = 0;
|
|
};
|
|
};
|
|
|
|
GVAR(MeasuredWindSpeed)
|