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
78 lines
3.0 KiB
Plaintext
78 lines
3.0 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Ruthberg
|
|
* Gathers the weather data for the Kestrel 4500
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ace_kestrel4500_fnc_collectData
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
private _playerDir = getDir ACE_player;
|
|
private _playerAltitude = (getPosASL ACE_player) select 2;
|
|
private _temperature = _playerAltitude call EFUNC(weather,calculateTemperatureAtHeight);
|
|
private _humidity = EGVAR(weather,currentHumidity);
|
|
private _barometricPressure = _playerAltitude call EFUNC(weather,calculateBarometricPressure);
|
|
private _altitude = EGVAR(common,mapAltitude) + _playerAltitude;
|
|
private _airDensity = [_temperature, _barometricPressure, _humidity] call EFUNC(weather,calculateAirDensity);
|
|
private _densityAltitude = _airDensity call EFUNC(weather,calculateDensityAltitude);
|
|
private _chill = [_temperature, _humidity] call EFUNC(weather,calculateWindChill);
|
|
private _heatIndex = [_temperature, _humidity] call EFUNC(weather,calculateHeatIndex);
|
|
private _dewPoint = [_temperature, _humidity] call EFUNC(weather,calculateDewPoint);
|
|
private _wetBulb = [_temperature, _barometricPressure, _humidity] call EFUNC(weather,calculateWetBulb);
|
|
|
|
if (isNil QGVAR(MIN) || isNil QGVAR(MAX)) then {
|
|
GVAR(MIN) = [0, _playerDir, 0, 0, 0, _temperature, _chill, _humidity, _heatIndex, _dewPoint, _wetBulb, _barometricPressure, _altitude, _densityAltitude];
|
|
GVAR(MAX) = [0, _playerDir, 0, 0, 0, _temperature, _chill, _humidity, _heatIndex, _dewPoint, _wetBulb, _barometricPressure, _altitude, _densityAltitude];
|
|
};
|
|
|
|
{
|
|
GVAR(ENTRIES) set [_x, (GVAR(ENTRIES) select _x) + 1];
|
|
} count [1, 5, 6, 7, 8, 9, 10, 11, 12, 13];
|
|
|
|
|
|
[0, _playerDir] call FUNC(updateMemory);
|
|
|
|
if (GVAR(MinAvgMaxMode) == 1) then {
|
|
{
|
|
GVAR(ENTRIES) set [_x, (GVAR(ENTRIES) select _x) + 1];
|
|
} count [2, 3, 4];
|
|
|
|
// Wind SPD
|
|
private _windSpeed = call FUNC(measureWindSpeed);
|
|
[2, _windSpeed] call FUNC(updateMemory);
|
|
|
|
// CROSSWIND
|
|
private _crosswind = 0;
|
|
if (missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false]) then {
|
|
_crosswind = abs(sin(GVAR(RefHeading) - _playerDir) * _windSpeed);
|
|
} else {
|
|
_crosswind = abs(sin(GVAR(RefHeading)) * _windSpeed);
|
|
};
|
|
[3, _crosswind] call FUNC(updateMemory);
|
|
|
|
// HEADWIND
|
|
private _headwind = 0;
|
|
if (missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false]) then {
|
|
_headwind = cos(GVAR(RefHeading) - _playerDir) * _windSpeed;
|
|
} else {
|
|
_headwind = cos(GVAR(RefHeading)) * _windSpeed;
|
|
};
|
|
if (abs(_headwind) > abs(GVAR(MAX) select 4)) then {
|
|
GVAR(MAX) set [4, _headwind];
|
|
};
|
|
if (abs(_headwind) < abs(GVAR(MIN) select 4)) then {
|
|
GVAR(MIN) set [4, _headwind];
|
|
};
|
|
GVAR(TOTAL) set [4, (GVAR(TOTAL) select 4) + _headwind];
|
|
};
|
|
|
|
{ _x call FUNC(updateMemory); true } count [[5, _temperature],[6, _chill],[7, _humidity],[8, _heatIndex],[9, _dewPoint],[10, _wetBulb],[11, _barometricPressure],[12, _altitude],[13, _densityAltitude]];
|