2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2016-11-02 12:56:59 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Calculates distance at which the bullet velocity drops below the threshold velocity
|
|
|
|
*
|
|
|
|
* Arguments:
|
2017-06-08 13:31:51 +00:00
|
|
|
* theshold velocity <NUMBER>
|
2016-11-02 12:56:59 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2017-06-08 13:31:51 +00:00
|
|
|
* distance <NUMBER>
|
2016-11-02 12:56:59 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* 403 call ace_atragmx_fnc_calculate_distance_at_velocity
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define __DELTA_T 0.001
|
|
|
|
|
|
|
|
if (isNil QGVAR(targetSolutionInput)) exitWith { 0 };
|
|
|
|
|
|
|
|
private _thresholdVelocity = _this;
|
|
|
|
private _velocity = GVAR(targetSolutionInput) select 4;
|
|
|
|
|
|
|
|
if (_velocity <= _thresholdVelocity) exitWith { 0 };
|
|
|
|
|
|
|
|
private _distance = 0;
|
|
|
|
|
|
|
|
while {_velocity > _thresholdVelocity} do {
|
|
|
|
private _bc = GVAR(targetSolutionInput) select 14;
|
|
|
|
private _dragModel = GVAR(targetSolutionInput) select 15;
|
2017-10-06 18:05:20 +00:00
|
|
|
private _temperature = GVAR(targetSolutionInput) select 5;
|
|
|
|
private _drag = parseNumber(("ace_advanced_ballistics" callExtension format["retard:%1:%2:%3:%4", _dragModel, _bc, _velocity, _temperature]));
|
2016-11-02 12:56:59 +00:00
|
|
|
_distance = _distance + _velocity * __DELTA_T;
|
|
|
|
_velocity = _velocity - (_drag * __DELTA_T);
|
|
|
|
};
|
|
|
|
|
|
|
|
_distance
|