2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-02-04 00:16:47 +00:00
|
|
|
/*
|
|
|
|
* Author: Garth 'L-H' de Wet
|
|
|
|
* Adds an IED to the cellphone list
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit <OBJECT>
|
|
|
|
* 1: Explosive <OBJECT>
|
|
|
|
* 2: Magazine classname <STRING>
|
|
|
|
* 3: Extra variables <ARRAY>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* Handled by PlaceExplosive.
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-04-29 05:05:02 +00:00
|
|
|
|
2015-08-15 19:35:33 +00:00
|
|
|
params ["_unit", "_explosive", "_magazineClass", "_extra"];
|
|
|
|
TRACE_4("params",_unit,_explosive,_magazineClass,_extra);
|
2015-04-29 05:05:02 +00:00
|
|
|
|
2015-02-04 00:16:47 +00:00
|
|
|
// Config is the last item in the list of passed in items.
|
2017-10-10 14:39:59 +00:00
|
|
|
private _config = (_this select 3) select (count (_this select 3) - 1);
|
2015-02-04 00:16:47 +00:00
|
|
|
|
2018-01-02 16:18:12 +00:00
|
|
|
private _requiredItems = getArray (_config >> "requires");
|
2017-10-10 14:39:59 +00:00
|
|
|
private _hasRequired = true;
|
|
|
|
private _detonators = [_unit] call FUNC(getDetonators);
|
2017-12-26 23:20:43 +00:00
|
|
|
|
2015-02-04 00:16:47 +00:00
|
|
|
{
|
2024-04-04 11:15:26 +00:00
|
|
|
if !(_x in _detonators) exitWith {
|
2015-04-06 20:20:11 +00:00
|
|
|
_hasRequired = false;
|
|
|
|
};
|
2024-04-04 11:15:26 +00:00
|
|
|
} forEach _requiredItems;
|
2015-04-29 05:05:02 +00:00
|
|
|
|
2017-12-26 23:20:43 +00:00
|
|
|
private _code = "";
|
2018-01-02 16:18:12 +00:00
|
|
|
while {true} do {
|
|
|
|
_code = [floor(random 10000), 4] call CBA_fnc_formatNumber;
|
|
|
|
if (([_code] call FUNC(getSpeedDialExplosive)) isEqualTo []) exitWith {};
|
2015-02-04 00:16:47 +00:00
|
|
|
};
|
2017-12-26 23:20:43 +00:00
|
|
|
|
2015-02-04 00:16:47 +00:00
|
|
|
if (isNil QGVAR(CellphoneIEDs)) then {
|
2015-04-06 20:20:11 +00:00
|
|
|
GVAR(CellphoneIEDs) = [];
|
2015-02-04 00:16:47 +00:00
|
|
|
};
|
2017-12-26 23:20:43 +00:00
|
|
|
|
2018-01-02 16:18:12 +00:00
|
|
|
private _count = GVAR(CellphoneIEDs) pushBack [_explosive, _code, getNumber (configFile >> "CfgMagazines" >> _magazineClass >> "ACE_Triggers" >> "Cellphone" >> "FuseTime")];
|
2015-02-04 00:16:47 +00:00
|
|
|
_count = _count + 1;
|
|
|
|
publicVariable QGVAR(CellphoneIEDs);
|
2015-08-19 22:25:45 +00:00
|
|
|
|
2015-08-21 14:42:23 +00:00
|
|
|
//display IED number message:
|
2018-01-02 16:18:12 +00:00
|
|
|
[format ["IED %1 code: %2", _count, _code]] call EFUNC(common,displayTextStructured);
|
2015-08-19 22:25:45 +00:00
|
|
|
|
2015-02-04 00:16:47 +00:00
|
|
|
if !(_hasRequired) exitWith {};
|
2018-01-02 16:18:12 +00:00
|
|
|
[format ["IED %1", _count], _code] call FUNC(addToSpeedDial);
|