mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
83 lines
2.9 KiB
Plaintext
83 lines
2.9 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* 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>
|
|
* 4: The time in the system <NUMBER>
|
|
* 5: Incompatable medication <ARRAY<STRING>>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [bob, "classname", "varname", 5, 6, ["stuff"]] call ACE_medical_fnc_onMedicationUsage
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_target", "_className", "_variable", "_maxDosage", "_timeInSystem", "_incompatabileMeds", "_viscosityChange", "_painReduce"];
|
|
TRACE_8("params",_target,_className,_variable,_maxDosage,_timeInSystem,_incompatabileMeds,_viscosityChange,_painReduce);
|
|
|
|
private _foundEntry = false;
|
|
private _allUsedMedication = _target getVariable [QGVAR(allUsedMedication), []];
|
|
{
|
|
_x params ["_variableX", "_allMedsFromClassname"];
|
|
if (_variableX== _variable) exitWith {
|
|
if !(_className in _allMedsFromClassname) then {
|
|
_allMedsFromClassname pushBack _className;
|
|
_x set [1, _allMedsFromClassname];
|
|
_allUsedMedication set [_forEachIndex, _x];
|
|
_target setVariable [QGVAR(allUsedMedication), _allUsedMedication];
|
|
};
|
|
_foundEntry = true;
|
|
};
|
|
} forEach _allUsedMedication;
|
|
|
|
if (!_foundEntry) then {
|
|
_allUsedMedication pushBack [_variable, [_className]];
|
|
_target setVariable [QGVAR(allUsedMedication), _allUsedMedication];
|
|
};
|
|
|
|
|
|
private _usedMeds = _target getVariable [_variable, 0];
|
|
if (_usedMeds >= floor (_maxDosage + round(random(2))) && _maxDosage >= 1 && GVAR(enableOverdosing)) then {
|
|
[_target] call FUNC(setDead);
|
|
};
|
|
|
|
private _hasOverDosed = 0;
|
|
{
|
|
_x params ["_med", "_limit"];
|
|
{
|
|
_x params ["", "_classNamesUsed"];
|
|
if ({_x == _med} count _classNamesUsed > _limit) then {
|
|
_hasOverDosed = _hasOverDosed + 1;
|
|
};
|
|
} forEach _allUsedMedication;
|
|
} forEach _incompatabileMeds;
|
|
|
|
if (_hasOverDosed > 0 && GVAR(enableOverdosing)) then {
|
|
private _medicationConfig = (configFile >> "ACE_Medical_Advanced" >> "Treatment" >> "Medication");
|
|
private _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 {
|
|
_onOverDose = missionNamespace getVariable _onOverDose;
|
|
};
|
|
[_target, _className] call _onOverDose;
|
|
};
|
|
|
|
private _decreaseAmount = 1 / _timeInSystem;
|
|
private _viscosityAdjustment = _viscosityChange / _timeInSystem;
|
|
|
|
// Run the loop that computes the effect of the medication over time
|
|
[_target, _variable, 0, _decreaseAmount, _viscosityAdjustment, _painReduce / _timeInSystem] call FUNC(medicationEffectLoop);
|