mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
35 lines
952 B
Plaintext
35 lines
952 B
Plaintext
|
/*
|
||
|
* Author: Alganthe
|
||
|
* Impact bar statement.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: stats array (ARRAY)
|
||
|
* 1: item config path (CONFIG)
|
||
|
* 2: Args for configExtreme
|
||
|
* 2.1: Stat limits (ARRAY of BOOL)
|
||
|
* 2.2: Bar limits (ARRAY of SCALAR)
|
||
|
* 2.3: Evaluate as a logarithmic number (BOOL)
|
||
|
*
|
||
|
* Return Value:
|
||
|
* Number
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
params ["_stats", "_config", "_args"];
|
||
|
_args params ["_hitMinMax", "_initSpeedMinMax", "_launcherTabIDC"];
|
||
|
|
||
|
private _statValues = [
|
||
|
[_config],
|
||
|
_stats,
|
||
|
[true, false],
|
||
|
[_hitMinMax select 0, _initSpeedMinMax select 0]
|
||
|
] call BIS_fnc_configExtremes;
|
||
|
(_statValues select 1) params ["_hit", "_initSpeed"];
|
||
|
|
||
|
_hit = linearConversion [_hitMinMax select 0, _hitMinMax select 1, _hit, 0.01, 1];
|
||
|
_initSpeed = linearConversion [_initSpeedMinMax select 0, _initSpeedMinMax select 1, _initSpeed, 0.01, 1];
|
||
|
|
||
|
[sqrt(_hit^2 * _initSpeed), _hit] select (GVAR(currentLeftPanel) == _launcherTabIDC)
|