ACE3/addons/advanced_ballistics/functions/fnc_calculateBarrelLengthVelocityShift.sqf

56 lines
2.3 KiB
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
/*
2015-08-05 02:13:36 +00:00
* Author: Ruthberg, MikeMatrix, joko // Jonas
*
* Calculates the muzzle velocity shift caused by different barrel lengths
*
* Arguments:
* 0: barrel length - mm <NUMBER>
2015-05-08 15:20:56 +00:00
* 1: muzzle velocity lookup table - m/s <ARRAY>
* 2: barrel length lookup table - mm <ARRAY>
* 3: muzzle velocity - m/s <NUMBER>
*
* Return Value:
* muzzle velocity shift - m/s <NUMBER>
2015-08-05 02:38:04 +00:00
*
* Example:
* [5, [0,5], [0,5], 5] call ace_advanced_ballistics_fnc_calculateBarrelLengthVelocityShift
*
2015-08-05 02:38:04 +00:00
* Public: No
*/
2015-04-05 19:08:55 +00:00
params ["_barrelLength", "_muzzleVelocityTable", "_barrelLengthTable", "_muzzleVelocity"];
TRACE_4("params",_barrelLength,_muzzleVelocityTable,_barrelLengthTable,_muzzleVelocity);
2015-04-05 19:08:55 +00:00
2015-08-05 02:13:36 +00:00
// If barrel length is not defined, then there is no point in calculating muzzle velocity
2015-04-05 19:08:55 +00:00
if (_barrelLength == 0) exitWith { 0 };
private _muzzleVelocityTableCount = count _muzzleVelocityTable;
private _barrelLengthTableCount = count _barrelLengthTable;
2015-04-05 19:08:55 +00:00
2015-08-05 02:13:36 +00:00
// Exit if tables are different sizes, have no elements or have only one element
if (_muzzleVelocityTableCount != _barrelLengthTableCount || _muzzleVelocityTableCount == 0) exitWith { 0 };
2015-08-05 02:13:36 +00:00
if (_muzzleVelocityTableCount == 1) exitWith { (_muzzleVelocityTable select 0) - _muzzleVelocity };
2015-04-05 19:08:55 +00:00
2015-08-05 02:13:36 +00:00
// If we have the precise barrel length value, return result immediately
if (_barrelLength in _barrelLengthTable) exitWith {
(_muzzleVelocityTable select (_barrelLengthTable find _barrelLength)) - _muzzleVelocity
2015-04-05 19:08:55 +00:00
};
2015-08-05 02:13:36 +00:00
// Limit values to lower and upper bound of data we have available
if (_barrelLength <= (_barrelLengthTable select 0)) exitWith { (_muzzleVelocityTable select 0) - _muzzleVelocity };
if (_barrelLength >= (_barrelLengthTable select _barrelLengthTableCount - 1)) exitWith { (_muzzleVelocityTable select _barrelLengthTableCount - 1) - _muzzleVelocity };
private _upperDataIndex = 0;
private _lowerDataIndex = 1;
2015-08-05 02:13:36 +00:00
// Find closest bordering values for barrel length
{
if (_barrelLength <= _x) exitWith {
2015-08-23 20:26:31 +00:00
_upperDataIndex = _forEachIndex;
_lowerDataIndex = _upperDataIndex - 1;
2015-04-07 19:27:04 +00:00
};
2015-08-05 02:13:36 +00:00
} forEach _barrelLengthTable;
2015-04-05 19:08:55 +00:00
(linearConversion [_barrelLengthTable select _lowerDataIndex, _barrelLengthTable select _upperDataIndex, _barrelLength, _muzzleVelocityTable select _lowerDataIndex, _muzzleVelocityTable select _upperDataIndex]) - _muzzleVelocity // Return