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-05-23 06:26:13 +00:00
|
|
|
* 1: Treatment classname <STRING>
|
2015-02-21 20:10:57 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-22 17:47:23 +00:00
|
|
|
* None
|
2015-02-21 20:10:57 +00:00
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-22 17:47:23 +00:00
|
|
|
private ["_config", "_volumeAdded", "_typeOf", "_varName", "_bloodVolume"];
|
|
|
|
params ["_target", "_treatmentClassname"];
|
2015-02-21 20:10:57 +00:00
|
|
|
|
2015-11-30 16:27:09 +00:00
|
|
|
_bloodVolume = _target getVariable [QGVAR(bloodVolume), 100];
|
2015-11-30 16:14:05 +00:00
|
|
|
if (_bloodVolume >= 100) exitWith {};
|
2015-04-05 18:11:54 +00:00
|
|
|
|
2015-02-21 20:10:57 +00:00
|
|
|
// 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
|
|
|
|
2015-05-23 06:26:13 +00:00
|
|
|
if (isClass (_config >> _treatmentClassname)) then {
|
|
|
|
_config = (_config >> _treatmentClassname);
|
2015-02-21 20:10:57 +00:00
|
|
|
if (isNumber (_config >> "volume")) then { _volumeAdded = getNumber (_config >> "volume");};
|
|
|
|
if (isText (_config >> "type")) then { _typeOf = getText (_config >> "type"); };
|
2015-05-23 06:26:13 +00:00
|
|
|
} else {
|
|
|
|
ERROR("IV Treatment Classname not found");
|
2015-02-21 20:10:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_varName = format["ACE_Medical_IVVolume_%1",_typeOf];
|
2015-11-30 16:27:09 +00:00
|
|
|
_target setVariable [_varName, (_target getVariable [_varName, 0]) + _volumeAdded, true];
|
2015-02-21 20:10:57 +00:00
|
|
|
|
2015-03-22 22:24:24 +00:00
|
|
|
if !(_varName in GVAR(IVBags)) then {
|
2015-11-30 16:21:28 +00:00
|
|
|
GVAR(IVBags) pushBack _varName;
|
2015-04-06 16:22:43 +00:00
|
|
|
publicVariable QGVAR(IVBags);
|
2015-03-22 22:24:24 +00:00
|
|
|
};
|