ACE3/addons/arsenal/functions/fnc_statBarStatement_rateOfFIre.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

37 lines
748 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Alganthe
* Rate of fire bar statement.
*
* Arguments:
* 0: Not used
* 1: Item config path <CONFIG>
* 2: Args <ARRAY>
* - 0: Stat limits <ARRAY of BOOLS>
* - 1: Bar limits <ARRAY of NUMBERS>
*
* Return Value:
* Number
*
* Public: No
*/
params ["", "_config", "_args"];
_args params ["_statMinMax", "_barLimits"];
private _fireRate = [];
{
private _n = log (getNumber (_config >> _x >> "reloadTime"));
if (!finite _n) then {
_n = 0;
};
_fireRate pushBackUnique _n;
} forEach (getArray (_config >> "modes"));
_fireRate sort true;
linearConversion [_statMinMax select 0, _statMinMax select 1, _fireRate param [0, 0], _barLimits select 0, _barLimits select 1]