mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
6b68ff426f
* Corrects the prediction of the (hair-raising!) zero angle calculation in the vanilla-game
48 lines
1.7 KiB
Plaintext
48 lines
1.7 KiB
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Updates the scope base angle based on the zero range input
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ace_atragmx_fnc_update_zero_range
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
[] call FUNC(parse_input);
|
|
|
|
private _bulletMass = GVAR(workingMemory) select 12;
|
|
private _boreHeight = GVAR(workingMemory) select 5;
|
|
private _airFriction = GVAR(workingMemory) select 4;
|
|
private _muzzleVelocity = GVAR(workingMemory) select 1;
|
|
private _bc = GVAR(workingMemory) select 15;
|
|
private _dragModel = GVAR(workingMemory) select 16;
|
|
private _atmosphereModel = GVAR(workingMemory) select 17;
|
|
private _zeroRange = GVAR(workingMemory) select 2;
|
|
private _altitude = GVAR(altitude);
|
|
private _temperature = GVAR(temperature);
|
|
private _barometricPressure = GVAR(barometricPressure);
|
|
private _relativeHumidity = GVAR(relativeHumidity);
|
|
|
|
if (!GVAR(atmosphereModeTBH)) then {
|
|
_barometricPressure = 1013.25 * (1 - (0.0065 * _altitude) / (273.15 + _temperature + 0.0065 * _altitude)) ^ 5.255754495;
|
|
_relativeHumidity = 0.5;
|
|
};
|
|
|
|
private _scopeBaseAngle = if (!(missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false])) then {
|
|
private _zeroAngle = "ace_advanced_ballistics" callExtension format ["calcZero:%1:%2:%3:%4", _zeroRange, _muzzleVelocity, _airFriction, _boreHeight];
|
|
(parseNumber _zeroAngle)
|
|
} else {
|
|
private _zeroAngle = "ace_advanced_ballistics" callExtension format ["calcZeroAB:%1:%2:%3:%4:%5:%6:%7:%8:%9", _zeroRange, _muzzleVelocity, _boreHeight, _temperature, _barometricPressure, _relativeHumidity, _bc, _dragModel, _atmosphereModel];
|
|
(parseNumber _zeroAngle)
|
|
};
|
|
|
|
GVAR(workingMemory) set [2, _zeroRange];
|
|
GVAR(workingMemory) set [3, _scopeBaseAngle];
|