2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-02-02 08:35:17 +00:00
|
|
|
* Author: Garth 'L-H' de Wet
|
|
|
|
* Gets all placed explosives by unit, optionally filtered by specific trigger type.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit <OBJECT>
|
|
|
|
* 1: Trigger classname - filter (optional) <STRING>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Explosives <ARRAY>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* _allExplosives = [player] call ACE_Explosives_fnc_getPlacedExplosives;
|
|
|
|
* _deadmanExplosives = [player, "DeadManSwitch"] call ACE_Explosives_fnc_getPlacedExplosives;
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
2015-01-13 21:21:31 +00:00
|
|
|
#include "script_component.hpp"
|
2015-04-29 05:05:02 +00:00
|
|
|
// IGNORE_PRIVATE_WARNING(_allExplosives,_deadmanExplosives);
|
|
|
|
|
2015-08-15 19:35:33 +00:00
|
|
|
params ["_unit"];
|
|
|
|
TRACE_1("params",_unit);
|
|
|
|
|
|
|
|
private ["_clackerList", "_adjustedList", "_list", "_filter"];
|
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
_filter = nil;
|
|
|
|
if (count _this > 1) then {
|
2015-04-10 03:56:19 +00:00
|
|
|
_filter = ConfigFile >> "ACE_Triggers" >> (_this select 1);
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
_clackerList = [];
|
|
|
|
_adjustedList = false;
|
2015-01-12 09:48:26 +00:00
|
|
|
_clackerList = _unit getVariable [QGVAR(Clackers), []];
|
2015-01-11 16:42:31 +00:00
|
|
|
_list = [];
|
|
|
|
{
|
2015-04-06 20:20:11 +00:00
|
|
|
if (isNull (_x select 0)) then {
|
2015-08-15 19:35:33 +00:00
|
|
|
_clackerList set [_forEachIndex, "X"];
|
2015-04-06 20:20:11 +00:00
|
|
|
_adjustedList = true;
|
|
|
|
} else {
|
2015-04-10 03:56:19 +00:00
|
|
|
if (isNil "_filter" || {(ConfigFile >> "ACE_Triggers" >> (_x select 4)) == _filter}) then {
|
2015-04-06 20:20:11 +00:00
|
|
|
_list pushBack _x;
|
|
|
|
};
|
|
|
|
};
|
2015-08-15 19:35:33 +00:00
|
|
|
} forEach _clackerList;
|
2015-01-11 16:42:31 +00:00
|
|
|
if (_adjustedList) then {
|
2015-04-06 20:20:11 +00:00
|
|
|
_clackerList = _clackerList - ["X"];
|
|
|
|
if (count _clackerList == 0) then {
|
|
|
|
_unit SetVariable [QGVAR(Clackers), nil, true];
|
|
|
|
} else {
|
|
|
|
_unit SetVariable [QGVAR(Clackers), _clackerList, true];
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-01-12 09:48:26 +00:00
|
|
|
_list
|