2018-07-30 09:22:14 +00:00
|
|
|
#include "script_component.hpp"
|
2016-07-15 10:23:47 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* IV Treatment local callback
|
|
|
|
*
|
|
|
|
* Arguments:
|
2016-12-14 11:36:51 +00:00
|
|
|
* 0: The patient <OBJECT>
|
|
|
|
* 1: Treatment class name <STRING>
|
|
|
|
* 2: Body part <STRING>
|
2016-07-15 10:23:47 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
2019-03-30 16:07:54 +00:00
|
|
|
* Public: No
|
2016-07-15 10:23:47 +00:00
|
|
|
*/
|
|
|
|
|
2016-12-14 11:36:51 +00:00
|
|
|
params ["_target", "_treatmentClassname", "_bodyPart"];
|
|
|
|
|
|
|
|
private _partIndex = ALL_BODY_PARTS find toLower _bodyPart;
|
|
|
|
if (_partIndex < 0) exitWith { false };
|
2016-07-15 10:23:47 +00:00
|
|
|
|
2018-05-10 16:44:02 +00:00
|
|
|
private _bloodVolume = GET_BLOOD_VOLUME(_target);
|
2016-10-05 22:54:57 +00:00
|
|
|
|
2016-10-10 15:30:42 +00:00
|
|
|
if (_bloodVolume >= DEFAULT_BLOOD_VOLUME) exitWith {};
|
2016-07-15 10:23:47 +00:00
|
|
|
|
|
|
|
// Find the proper attributes for the used IV
|
2016-10-12 19:59:32 +00:00
|
|
|
private _config = configFile >> QUOTE(ADDON) >> "IV";
|
2016-07-15 10:23:47 +00:00
|
|
|
private _volumeAdded = getNumber (_config >> "volume");
|
2016-10-12 19:59:32 +00:00
|
|
|
private _type = getText (_config >> "type");
|
2016-07-15 10:23:47 +00:00
|
|
|
|
|
|
|
if (isClass (_config >> _treatmentClassname)) then {
|
2016-10-12 19:59:32 +00:00
|
|
|
_config = _config >> _treatmentClassname;
|
|
|
|
|
|
|
|
if (isNumber (_config >> "volume")) then {
|
|
|
|
_volumeAdded = getNumber (_config >> "volume");
|
|
|
|
};
|
|
|
|
|
|
|
|
if (isText (_config >> "type")) then {
|
|
|
|
_type = getText (_config >> "type");
|
|
|
|
};
|
2016-07-15 10:23:47 +00:00
|
|
|
} else {
|
|
|
|
ERROR("IV Treatment Classname not found");
|
|
|
|
};
|
|
|
|
|
2016-09-18 10:05:36 +00:00
|
|
|
private _bloodBags = _target getVariable [QEGVAR(medical,ivBags), []];
|
2016-12-14 11:36:51 +00:00
|
|
|
_bloodBags pushBack [_volumeAdded, _type, _partIndex];
|
2016-10-12 19:59:32 +00:00
|
|
|
|
2016-09-18 10:05:36 +00:00
|
|
|
_target setVariable [QEGVAR(medical,ivBags), _bloodBags, true];
|