ACE3/addons/advanced_ballistics/functions/fnc_calculateBarrelLengthVelocityShift.sqf

71 lines
2.8 KiB
Plaintext
Raw Normal View History

/*
2015-08-05 02:13:36 +00:00
* Author: Ruthberg, MikeMatrix, joko // Jonas
*
* Calculates the muzzle velocity shift caused by different barrel lengths
*
* Arguments:
2015-05-08 15:20:56 +00:00
* 0: barrel length - mm
* 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
*
* Public: No
*/
2015-04-05 19:08:55 +00:00
#include "script_component.hpp"
2015-08-05 02:13:36 +00:00
scopeName "main";
private ["_muzzleVelocityTableCount", "_barrelLengthTableCount", "_lowerDataIndex",
"_upperDataIndex", "_lowerBarrelLength", "_upperBarrelLength", "_lowerMuzzleVelocity",
"_upperMuzzleVelocity", "_interpolationRatio"];
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 };
2015-08-05 02:13:36 +00:00
_muzzleVelocityTableCount = count _muzzleVelocityTable;
_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 || _barrelLengthTableCount == 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 };
// Find closest bordering values for barrel length
{
2015-08-23 20:26:31 +00:00
if (_barrelLength <= _x) then {
_upperDataIndex = _forEachIndex;
_lowerDataIndex = _upperDataIndex - 1;
2015-08-05 02:13:36 +00:00
breakTo "main";
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
2015-08-05 02:13:36 +00:00
// Worst case scenario
if (isNil "_lowerDataIndex" || isNil "_upperDataIndex") exitWith {0};
2015-04-05 19:08:55 +00:00
2015-08-05 02:13:36 +00:00
_lowerBarrelLength = _barrelLengthTable select _lowerDataIndex;
_upperBarrelLength = _barrelLengthTable select _upperDataIndex;
_lowerMuzzleVelocity = _muzzleVelocityTable select _lowerDataIndex;
_upperMuzzleVelocity = _muzzleVelocityTable select _upperDataIndex;
// Calculate interpolation ratio
_interpolationRatio = if (abs (_lowerBarrelLength - _upperBarrelLength) > 0) then {
(_upperBarrelLength - _barrelLength) / (_upperBarrelLength - _lowerBarrelLength)
} else {
0
};
2015-04-05 19:08:55 +00:00
// Calculate interpolated muzzle velocity shift
2015-08-05 02:13:36 +00:00
(_lowerMuzzleVelocity + ((_upperMuzzleVelocity - _lowerMuzzleVelocity) * (1 - _interpolationRatio))) - _muzzleVelocity // Return