2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-07-03 21:14:23 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Use Equipment items if any is available.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-16 18:14:54 +00:00
|
|
|
* 0: Unit <OBJECT>
|
|
|
|
* 1: Item classnames <ARRAY>
|
2015-07-03 21:14:23 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Return Value:
|
2015-09-26 04:36:35 +00:00
|
|
|
* [Had Item to Use <BOOL>, Array of units that used the items <ARRAY>] <ARRAY>
|
2015-08-16 18:14:54 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [unit, ["classname1", "classname2"]] call ace_repair_fnc_useItems
|
2015-07-03 21:14:23 +00:00
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
2015-08-16 18:14:54 +00:00
|
|
|
params ["_unit", "_items"];
|
|
|
|
TRACE_2("params",_unit,_items);
|
2015-08-09 06:54:44 +00:00
|
|
|
|
2017-10-10 14:39:59 +00:00
|
|
|
private _itemsUsedBy = [];
|
2015-07-03 21:14:23 +00:00
|
|
|
{
|
|
|
|
// handle a one of type use item
|
2015-11-20 17:40:31 +00:00
|
|
|
if (_x isEqualType []) then {
|
2015-07-03 21:14:23 +00:00
|
|
|
{
|
2017-10-10 14:39:59 +00:00
|
|
|
private _itemUsedInfo = [_unit, _x] call FUNC(useItem);
|
2015-11-10 02:11:48 +00:00
|
|
|
if (_itemUsedInfo select 0) exitWith { _itemsUsedBy pushback [(_itemUsedInfo select 1), _x]};
|
2015-08-09 06:54:44 +00:00
|
|
|
} forEach _x;
|
2015-07-03 21:14:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// handle required item
|
2015-11-20 17:40:31 +00:00
|
|
|
if (_x isEqualType "") then {
|
2017-10-10 14:39:59 +00:00
|
|
|
private _itemUsedInfo = [_unit, _x] call FUNC(useItem);
|
2015-11-10 02:11:48 +00:00
|
|
|
if (_itemUsedInfo select 0) exitWith { _itemsUsedBy pushback [(_itemUsedInfo select 1), _x]};
|
2015-07-03 21:14:23 +00:00
|
|
|
};
|
2015-08-09 06:54:44 +00:00
|
|
|
} forEach _items;
|
2015-07-03 21:14:23 +00:00
|
|
|
|
|
|
|
[count _items == count _itemsUsedBy, _itemsUsedBy];
|