ACE3/addons/medical/functions/fnc_init.sqf

84 lines
2.4 KiB
Plaintext
Raw Normal View History

2015-02-06 12:47:17 +00:00
/*
* Author: KoffeinFlummi, commy2
2015-02-06 12:47:17 +00:00
* Initializes unit variables.
*
* Arguments:
* 0: The Unit <OBJECT>
*
* ReturnValue:
* nil
*
* Public: No
*/
#include "script_component.hpp"
2015-08-22 14:25:10 +00:00
params ["_unit"];
2015-02-06 12:47:17 +00:00
2016-10-07 02:21:01 +00:00
if (damage _unit > 0) then {
_unit setDamage 0;
};
2015-04-19 15:28:47 +00:00
_unit setVariable [QGVAR(pain), 0, true];
2016-10-10 15:30:42 +00:00
_unit setVariable [QGVAR(bloodVolume), DEFAULT_BLOOD_VOLUME, true];
2016-12-05 20:34:20 +00:00
_unit setVariable [QGVAR(isUnconscious), false, true];
_unit setVariable [QGVAR(partialHealCounter), 0, true];
// tourniquets
_unit setVariable [QGVAR(tourniquets), [0,0,0,0,0,0], true];
_unit setVariable [QGVAR(occludedMedications), nil, true]; //Delayed Medications (from tourniquets)
// wounds and injuries
_unit setVariable [QGVAR(openWounds), [], true];
_unit setVariable [QGVAR(bandagedWounds), [], true];
2016-12-05 20:34:20 +00:00
_unit setVariable [QGVAR(stitchedWounds), [], true];
// vitals
_unit setVariable [QGVAR(heartRate), 80, true];
_unit setVariable [QGVAR(heartRateAdjustments), [], true];
_unit setVariable [QGVAR(bloodPressure), [80, 120], true];
_unit setVariable [QGVAR(peripheralResistance), 100, true];
_unit setVariable [QGVAR(peripheralResistanceAdjustments), [], true];
// triage card and logs
2016-12-05 22:00:02 +00:00
_unit setVariable [QGVAR(triageLevel), 0, true];
_unit setVariable [QGVAR(triageCard), [], true];
// IVs
_unit setVariable [QGVAR(ivBags), nil, true];
// damage storage
2016-12-08 10:38:43 +00:00
_unit setVariable [QGVAR(bodyPartDamage), [0,0,0,0,0,0], true];
#ifdef DEBUG_TESTRESULTS
_unit setVariable [QGVAR(bodyPartStatus), [0,0,0,0,0,0], true];
2016-12-08 10:38:43 +00:00
#endif
// generic medical admin
2016-12-05 20:34:20 +00:00
_unit setVariable [QGVAR(inCardiacArrest), false, true];
_unit setVariable [QGVAR(hasLostBlood), 0, true];
_unit setVariable [QGVAR(isBleeding), false, true];
_unit setVariable [QGVAR(hasPain), false, true];
_unit setVariable [QGVAR(amountOfReviveLives), GVAR(amountOfReviveLives), true];
_unit setVariable [QGVAR(painSuppress), 0, true];
_unit setVariable [QGVAR(painSuppressAdjustments), [], true];
private ["_allUsedMedication", "_logs"];
// medication
_allUsedMedication = _unit getVariable [QGVAR(allUsedMedication), []];
{
_unit setVariable [_x select 0, nil];
2015-11-30 16:23:48 +00:00
} forEach _allUsedMedication;
_unit setVariable [QGVAR(allUsedMedication), [], true];
2015-02-28 10:47:35 +00:00
// TODO move to treatment
_logs = _unit getVariable [QGVAR(allLogs), []];
{
_unit setVariable [_x, nil];
2015-11-30 16:23:48 +00:00
} forEach _logs;
_unit setVariable [QGVAR(allLogs), [], true];
2015-03-21 20:59:08 +00:00
[{
2016-09-18 17:48:49 +00:00
params ["_unit"];
[QGVAR(initialized), [_unit]] call CBA_fnc_localEvent;
}, [_unit], 0.5, 0.1] call CBA_fnc_waitAndExecute;