2015-02-21 20:10:57 +00:00
/*
* Author: Glowbal
2015-02-21 20:25:37 +00:00
* IV Treatment local callback
2015-02-21 20:10:57 +00:00
*
* Arguments:
* 0: The medic <OBJECT>
2015-02-21 20:25:37 +00:00
* 1: Item used classname <STRING>
2015-02-21 20:10:57 +00:00
*
*
* Return Value:
2015-02-21 20:25:37 +00:00
* nil
2015-02-21 20:10:57 +00:00
*
* Public: Yes
*/
#include "script_component.hpp"
private ["_target", "_ivItem", "_config", "_volumeAdded", "_typeOf", "_varName"];
_target = _this select 0;
_ivItem = _this select 1;
// Find the proper attributes for the used IV
_config = (configFile >> "ACE_Medical_Advanced" >> "Treatment" >> "IV");
2015-03-22 22:24:24 +00:00
_volumeAdded = getNumber (_config >> "volume");
_typeOf = getText (_config >> "type");
2015-02-21 20:10:57 +00:00
if (isClass (_config >> _className)) then {
_config = (_config >> _className);
if (isNumber (_config >> "volume")) then { _volumeAdded = getNumber (_config >> "volume");};
if (isText (_config >> "type")) then { _typeOf = getText (_config >> "type"); };
};
_varName = format["ACE_Medical_IVVolume_%1",_typeOf];
_target setvariable [_varName, (_target getvariable [_varName, 0]) + _volumeAdded];
2015-03-22 22:24:24 +00:00
if !(_varName in GVAR(IVBags)) then {
GVAR(IVBags) pushback _varName;
2015-03-24 20:08:45 +00:00
publicVariable QGVAR(IVBags);
2015-03-22 22:24:24 +00:00
};
2015-02-21 20:10:57 +00:00
// TODO localization
//[_target,"treatment",format["%1 has given %4 a %2(%3ml)",[_caller] call EFUNC(common,getName),_attributes select 2,_attributes select 1,_target]] call FUNC(addActivityToLog);
//[_target,_removeItem] call FUNC(addToTriageList);