2015-02-21 20:53:07 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Add an entry to the triage card
|
2015-02-21 20:47:10 +00:00
|
|
|
*
|
2015-02-21 20:53:07 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: The patient <OBJECT>
|
|
|
|
* 1: The new item classname <STRING>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-22 14:25:10 +00:00
|
|
|
* None
|
2015-02-21 20:53:07 +00:00
|
|
|
*
|
|
|
|
* Public: Yes
|
2015-02-21 20:47:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
2015-08-22 15:10:19 +00:00
|
|
|
|
2015-08-22 14:25:10 +00:00
|
|
|
private ["_log", "_inList", "_amount"];
|
|
|
|
params ["_unit", "_newItem"];
|
2015-02-21 20:47:10 +00:00
|
|
|
|
|
|
|
if (!local _unit) exitwith {
|
2015-09-18 18:47:19 +00:00
|
|
|
[_this, QUOTE(DFUNC(addToTriageCard)), _unit] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */
|
2015-02-21 20:47:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_log = _unit getvariable [QGVAR(triageCard), []];
|
|
|
|
_inList = false;
|
|
|
|
_amount = 1;
|
|
|
|
{
|
|
|
|
if ((_x select 0) == _newItem) exitwith {
|
|
|
|
private "_info";
|
|
|
|
_info = _log select _foreachIndex;
|
|
|
|
_info set [1,(_info select 1) + 1];
|
2015-05-21 16:42:44 +00:00
|
|
|
_info set [2, ACE_time];
|
2015-02-21 20:47:10 +00:00
|
|
|
_log set [_foreachIndex, _info];
|
|
|
|
|
|
|
|
_amount = (_info select 1);
|
|
|
|
_inList = true;
|
|
|
|
};
|
2015-08-22 14:25:10 +00:00
|
|
|
} foreach _log;
|
2015-02-21 20:47:10 +00:00
|
|
|
|
|
|
|
if (!_inList) then {
|
2015-05-21 16:42:44 +00:00
|
|
|
_log pushback [_newItem, 1, ACE_time];
|
2015-02-21 20:47:10 +00:00
|
|
|
};
|
|
|
|
_unit setvariable [QGVAR(triageCard), _log, true];
|
2015-06-09 22:30:02 +00:00
|
|
|
["Medical_onItemAddedToTriageCard", [_unit, _newItem, _amount]] call EFUNC(common,localEvent);
|