2018-07-30 09:22:14 +00:00
|
|
|
#include "script_component.hpp"
|
2016-07-15 10:23:47 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Add an entry to the triage card
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The patient <OBJECT>
|
2016-10-13 19:21:42 +00:00
|
|
|
* 1: The new item class name <STRING>
|
2016-07-15 10:23:47 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
2019-03-30 16:07:54 +00:00
|
|
|
* [bob, "bandage"] call ace_medical_treatment_fnc_addToTriageCard
|
2017-06-08 13:31:51 +00:00
|
|
|
*
|
2019-03-30 16:07:54 +00:00
|
|
|
* Public: No
|
2016-07-15 10:23:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
params ["_unit", "_newItem"];
|
|
|
|
|
|
|
|
if (!local _unit) exitWith {
|
|
|
|
[QGVAR(addToTriageCard), _this, _unit] call CBA_fnc_targetEvent;
|
|
|
|
};
|
|
|
|
|
|
|
|
private _log = _unit getVariable [QEGVAR(medical,triageCard), []];
|
|
|
|
private _inList = false;
|
|
|
|
private _amount = 1;
|
2016-10-13 19:21:42 +00:00
|
|
|
|
2016-07-15 10:23:47 +00:00
|
|
|
{
|
2016-10-13 19:21:42 +00:00
|
|
|
if (_x select 0 == _newItem) exitWith {
|
2016-07-15 10:23:47 +00:00
|
|
|
private _info = _log select _forEachIndex;
|
2016-10-13 19:21:42 +00:00
|
|
|
_info set [1, (_info select 1) + 1];
|
2016-07-15 10:23:47 +00:00
|
|
|
_info set [2, CBA_missionTime];
|
|
|
|
_log set [_forEachIndex, _info];
|
|
|
|
|
2016-10-13 19:21:42 +00:00
|
|
|
_amount = _info select 1;
|
2016-07-15 10:23:47 +00:00
|
|
|
_inList = true;
|
|
|
|
};
|
|
|
|
} forEach _log;
|
|
|
|
|
|
|
|
if (!_inList) then {
|
|
|
|
_log pushBack [_newItem, 1, CBA_missionTime];
|
|
|
|
};
|
|
|
|
|
|
|
|
_unit setVariable [QEGVAR(medical,triageCard), _log, true];
|
|
|
|
["ace_triageCardItemAdded", [_unit, _newItem, _amount]] call CBA_fnc_localEvent;
|