2015-02-22 09:27:57 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Handles the medication given to a patient.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The patient <OBJECT>
|
|
|
|
* 1: Medication Treatment classname <STRING>
|
|
|
|
* 2: The medication treatment variablename <STRING>
|
|
|
|
* 3: Max dosage <NUMBER>
|
2015-10-21 20:52:21 +00:00
|
|
|
* 4: The time in the system <NUMBER>
|
2015-02-22 09:27:57 +00:00
|
|
|
* 5: Incompatable medication <ARRAY<STRING>>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-22 14:25:10 +00:00
|
|
|
* None
|
2015-02-22 09:27:57 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2015-02-28 17:59:37 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-22 14:25:10 +00:00
|
|
|
private ["_foundEntry", "_allUsedMedication","_allMedsFromClassname", "_usedMeds", "_hasOverDosed", "_med", "_limit", "_decreaseAmount", "_viscosityAdjustment", "_medicationConfig", "_onOverDose"];
|
|
|
|
params ["_target", "_className", "_variable", "_maxDosage", "_timeInSystem", "_incompatabileMeds", "_viscosityChange", "_painReduce"];
|
2016-02-03 20:40:26 +00:00
|
|
|
TRACE_8("params",_target,_className,_variable,_maxDosage,_timeInSystem,_incompatabileMeds,_viscosityChange,_painReduce);
|
2015-02-22 09:27:57 +00:00
|
|
|
|
|
|
|
_foundEntry = false;
|
2015-11-30 16:27:09 +00:00
|
|
|
_allUsedMedication = _target getVariable [QGVAR(allUsedMedication), []];
|
2015-02-22 09:27:57 +00:00
|
|
|
{
|
2015-08-22 14:25:10 +00:00
|
|
|
_x params ["_variableX", "_allMedsFromClassname"];
|
2015-11-30 16:14:05 +00:00
|
|
|
if (_variableX== _variable) exitWith {
|
2015-02-22 09:27:57 +00:00
|
|
|
if !(_className in _allMedsFromClassname) then {
|
2015-11-30 16:21:28 +00:00
|
|
|
_allMedsFromClassname pushBack _className;
|
2015-02-22 09:27:57 +00:00
|
|
|
_x set [1, _allMedsFromClassname];
|
2015-11-30 16:23:48 +00:00
|
|
|
_allUsedMedication set [_forEachIndex, _x];
|
2015-11-30 16:27:09 +00:00
|
|
|
_target setVariable [QGVAR(allUsedMedication), _allUsedMedication];
|
2015-02-22 09:27:57 +00:00
|
|
|
};
|
|
|
|
_foundEntry = true;
|
|
|
|
};
|
2015-11-30 16:23:48 +00:00
|
|
|
} forEach _allUsedMedication;
|
2015-02-22 09:27:57 +00:00
|
|
|
|
|
|
|
if (!_foundEntry) then {
|
2015-11-30 16:21:28 +00:00
|
|
|
_allUsedMedication pushBack [_variable, [_className]];
|
2015-11-30 16:27:09 +00:00
|
|
|
_target setVariable [QGVAR(allUsedMedication), _allUsedMedication];
|
2015-02-22 09:27:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-11-30 16:27:09 +00:00
|
|
|
_usedMeds = _target getVariable [_variable, 0];
|
2015-04-03 19:53:58 +00:00
|
|
|
if (_usedMeds >= floor (_maxDosage + round(random(2))) && _maxDosage >= 1 && GVAR(enableOverdosing)) then {
|
2015-02-22 09:27:57 +00:00
|
|
|
[_target] call FUNC(setDead);
|
|
|
|
};
|
|
|
|
|
|
|
|
_hasOverDosed = 0;
|
|
|
|
{
|
2015-08-22 14:25:10 +00:00
|
|
|
_x params ["_med", "_limit"];
|
2015-02-22 09:27:57 +00:00
|
|
|
{
|
2015-08-22 14:25:10 +00:00
|
|
|
_x params ["", "_classNamesUsed"];
|
2015-02-28 19:46:36 +00:00
|
|
|
if ({_x == _med} count _classNamesUsed > _limit) then {
|
2015-02-22 09:27:57 +00:00
|
|
|
_hasOverDosed = _hasOverDosed + 1;
|
|
|
|
};
|
2015-11-30 16:23:48 +00:00
|
|
|
} forEach _allUsedMedication;
|
|
|
|
} forEach _incompatabileMeds;
|
2015-02-22 09:27:57 +00:00
|
|
|
|
2015-04-03 19:53:58 +00:00
|
|
|
if (_hasOverDosed > 0 && GVAR(enableOverdosing)) then {
|
2015-03-03 19:12:57 +00:00
|
|
|
_medicationConfig = (configFile >> "ACE_Medical_Advanced" >> "Treatment" >> "Medication");
|
|
|
|
_onOverDose = getText (_medicationConfig >> "onOverDose");
|
|
|
|
if (isClass (_medicationConfig >> _className)) then {
|
|
|
|
_medicationConfig = (_medicationConfig >> _className);
|
|
|
|
if (isText (_medicationConfig >> "onOverDose")) then { _onOverDose = getText (_medicationConfig >> "onOverDose"); };
|
|
|
|
};
|
|
|
|
if (isNil _onOverDose) then {
|
|
|
|
_onOverDose = compile _onOverDose;
|
|
|
|
} else {
|
2015-11-30 16:27:09 +00:00
|
|
|
_onOverDose = missionNamespace getVariable _onOverDose;
|
2015-03-03 19:12:57 +00:00
|
|
|
};
|
|
|
|
[_target, _className] call _onOverDose;
|
|
|
|
};
|
|
|
|
|
2015-02-22 09:27:57 +00:00
|
|
|
_decreaseAmount = 1 / _timeInSystem;
|
2015-03-03 18:56:32 +00:00
|
|
|
_viscosityAdjustment = _viscosityChange / _timeInSystem;
|
|
|
|
|
2015-02-22 09:27:57 +00:00
|
|
|
[{
|
2015-08-22 14:25:10 +00:00
|
|
|
params ["_args", "_idPFH"];
|
2015-09-03 13:49:49 +00:00
|
|
|
_args params ["_target", "_timeInSystem", "_variable", "_amountDecreased","_decreaseAmount", "_viscosityAdjustment", "_painReduce"];
|
|
|
|
private "_usedMeds";
|
2015-11-30 16:27:09 +00:00
|
|
|
_usedMeds = _target getVariable [_variable, 0];
|
2015-02-22 09:27:57 +00:00
|
|
|
_usedMeds = _usedMeds - _decreaseAmount;
|
2015-11-30 16:27:09 +00:00
|
|
|
_target setVariable [_variable, _usedMeds];
|
2015-02-22 09:27:57 +00:00
|
|
|
|
|
|
|
_amountDecreased = _amountDecreased + _decreaseAmount;
|
|
|
|
|
2015-03-03 18:56:32 +00:00
|
|
|
// Restoring the viscosity while the medication is leaving the system
|
2015-11-30 16:27:09 +00:00
|
|
|
_target setVariable [QGVAR(peripheralResistance), ((_target getVariable [QGVAR(peripheralResistance), 100]) - _viscosityAdjustment) max 0];
|
|
|
|
_target setVariable [QGVAR(painSuppress), ((_target getVariable [QGVAR(painSuppress), 0]) - _painReduce) max 0];
|
2015-03-03 18:56:32 +00:00
|
|
|
|
|
|
|
if (_amountDecreased >= 1 || (_usedMeds <= 0) || !alive _target) then {
|
2015-08-22 14:25:10 +00:00
|
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
2015-02-22 09:27:57 +00:00
|
|
|
};
|
|
|
|
_args set [3, _amountDecreased];
|
2015-05-16 14:09:30 +00:00
|
|
|
}, 1, [_target, _timeInSystem, _variable, 0, _decreaseAmount, _viscosityAdjustment, _painReduce / _timeInSystem] ] call CBA_fnc_addPerFrameHandler;
|