2018-06-09 17:43:53 +00:00
|
|
|
/*
|
|
|
|
* Author: Alganthe
|
|
|
|
* Rate of fire bar statement.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: stats array (ARRAY)
|
|
|
|
* 1: item config path (CONFIG)
|
|
|
|
* 2: Args
|
|
|
|
* 2.1: Stat limits (ARRAY of BOOL)
|
|
|
|
* 2.2: Bar limits (ARRAY of SCALAR)
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Number
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
params ["_stat", "_config", "_args"];
|
|
|
|
_args params ["_statMinMax", "_barLimits"];
|
|
|
|
|
|
|
|
private _fireModes = getArray (_config >> "modes");
|
|
|
|
private _fireRate = [];
|
|
|
|
|
|
|
|
{
|
|
|
|
_fireRate pushBackUnique log (getNumber (_config >> _x >> "reloadTime"));
|
|
|
|
} foreach _fireModes;
|
|
|
|
|
|
|
|
_fireRate sort true;
|
|
|
|
|
2018-06-10 05:14:14 +00:00
|
|
|
linearConversion [_statMinMax select 0, _statMinMax select 1, _fireRate param [0, 0], _barLimits select 0, _barLimits select 1]
|