ACE3/addons/medical/functions/fnc_useItems.sqf

39 lines
1.0 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Use Equipment items if any is available. Priority: 1) Medic, 2) Patient. If in vehicle: 3) Crew
*
* Arguments:
* 0: Medic <OBJECT>
* 1: Patient <OBJECT>
* 2: Items <ARRAY<STRING>>
*
* ReturnValue:
2015-08-22 17:47:23 +00:00
* None
*
* Public: Yes
*/
#include "script_component.hpp"
private ["_medic", "_patient", "_items", "_itemUsedInfo", "_itemsUsedBy"];
2015-08-22 17:47:23 +00:00
params ["_medic", "_patient", "_items"];
_itemsUsedBy = [];
{
2015-02-28 18:28:05 +00:00
// handle a one of type use item
if (typeName _x == "ARRAY") then {
{
_itemUsedInfo = [_medic, _patient, _x] call FUNC(useItem);
if (_itemUsedInfo select 0) exitwith { _itemsUsedBy pushback [(_itemUsedInfo select 1), _x]};
2015-08-22 17:47:23 +00:00
} foreach _x;
2015-02-28 18:28:05 +00:00
};
2015-02-28 18:28:05 +00:00
// handle required item
if (typeName _x == "STRING") then {
_itemUsedInfo = [_medic, _patient, _x] call FUNC(useItem);
if (_itemUsedInfo select 0) exitwith { _itemsUsedBy pushback [(_itemUsedInfo select 1), _x]};
2015-02-28 18:28:05 +00:00
};
2015-08-22 17:47:23 +00:00
} foreach _items;
[count _items == count _itemsUsedBy, _itemsUsedBy];