2018-07-30 09:22:14 +00:00
|
|
|
#include "script_component.hpp"
|
2016-07-15 10:23:47 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Handles the medication given to a patient.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The patient <OBJECT>
|
|
|
|
* 1: Medication Treatment classname <STRING>
|
2019-04-27 19:12:11 +00:00
|
|
|
* 2: Max dosage <NUMBER>
|
|
|
|
* 3: Incompatable medication <ARRAY<STRING>>
|
2016-07-15 10:23:47 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
2019-04-27 19:12:11 +00:00
|
|
|
* [player, "morphine", 4, [["x", 1]]] call ace_medical_treatment_fnc_onMedicationUsage
|
2017-06-08 13:31:51 +00:00
|
|
|
*
|
2016-07-15 10:23:47 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2019-04-27 19:12:11 +00:00
|
|
|
params ["_target", "_className", "_maxDosage", "_incompatabileMeds"];
|
|
|
|
TRACE_4("onMedicationUsage",_target,_className,_maxDosage,_incompatabileMeds);
|
2016-07-15 10:23:47 +00:00
|
|
|
|
2019-04-27 19:12:11 +00:00
|
|
|
private _fnc_getMedicationCount = {
|
|
|
|
params ["_target", "_medication"];
|
|
|
|
private _return = 0;
|
|
|
|
{
|
|
|
|
_x params ["_xMed", "_timeAdded", "_timeTillMaxEffect", "_maxTimeInSystem"];
|
|
|
|
if (_xMed == _medication) then {
|
|
|
|
private _timeInSystem = CBA_missionTime - _timeAdded;
|
|
|
|
_return = _return + linearConversion [_timeTillMaxEffect, _maxTimeInSystem, _timeInSystem, 1, 0, true];
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|
2019-04-27 19:12:11 +00:00
|
|
|
} forEach (_target getVariable [VAR_MEDICATIONS, []]);
|
|
|
|
TRACE_2("getMedicationCount",_medication,_return);
|
|
|
|
_return
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|
|
|
|
|
2019-04-27 19:12:11 +00:00
|
|
|
private _overdosedMedications = [];
|
|
|
|
|
|
|
|
// Check for overdose from current medication
|
|
|
|
private _currentDose = [_target, _className] call _fnc_getMedicationCount;
|
|
|
|
if (_currentDose >= floor (_maxDosage + round(random(2))) && {_maxDosage >= 1}) then {
|
|
|
|
TRACE_1("exceeded max dose",_currentDose);
|
|
|
|
_overdosedMedications pushBackUnique _className;
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|
|
|
|
|
2019-04-27 19:12:11 +00:00
|
|
|
// Check incompatible medication (format [med,limit])
|
2016-07-15 10:23:47 +00:00
|
|
|
{
|
2019-04-27 19:12:11 +00:00
|
|
|
_x params ["_xMed", "_xLimit"];
|
|
|
|
private _inSystem = [_target, _xMed] call _fnc_getMedicationCount;
|
|
|
|
if (_inSystem> _xLimit) then {
|
|
|
|
_overdosedMedications pushBackUnique _xMed;
|
|
|
|
};
|
2016-07-15 10:23:47 +00:00
|
|
|
} forEach _incompatabileMeds;
|
|
|
|
|
2019-04-27 19:12:11 +00:00
|
|
|
if !(_overdosedMedications isEqualTo []) then {
|
2016-07-15 10:23:47 +00:00
|
|
|
private _medicationConfig = (configFile >> "ace_medical_treatment" >> "Medication");
|
|
|
|
private _onOverDose = getText (_medicationConfig >> "onOverDose");
|
|
|
|
if (isClass (_medicationConfig >> _className)) then {
|
|
|
|
_medicationConfig = (_medicationConfig >> _className);
|
2019-04-27 19:12:11 +00:00
|
|
|
if (isText (_medicationConfig >> "onOverDose")) then { _onOverDose = getText (_medicationConfig >> "onOverDose"); };
|
|
|
|
};
|
|
|
|
TRACE_2("overdose",_overdosedMedications,_onOverDose);
|
|
|
|
if (_onOverDose == "") exitWith {
|
|
|
|
TRACE_1("CriticalVitals Event",_target); // make unconscious
|
|
|
|
[QEGVAR(medical,CriticalVitals), _target] call CBA_fnc_localEvent;
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|
|
|
|
if (isNil _onOverDose) then {
|
|
|
|
_onOverDose = compile _onOverDose;
|
|
|
|
} else {
|
|
|
|
_onOverDose = missionNamespace getVariable _onOverDose;
|
|
|
|
};
|
2019-04-27 19:12:11 +00:00
|
|
|
[_target, _className, _overdosedMedications] call _onOverDose;
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|