ACE3/addons/medical_status/functions/fnc_initUnit.sqf

85 lines
2.8 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>
*
* Return Value:
* None
*
* Example:
* [bob] call ACE_medical_fnc_init
2015-02-06 12:47:17 +00:00
*
* 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;
};
// - Blood and heart ----------------------------------------------------------
_unit setVariable [VAR_BLOOD_VOL, DEFAULT_BLOOD_VOLUME, true];
_unit setVariable [VAR_HEART_RATE, DEFAULT_HEART_RATE, true];
_unit setVariable [QGVAR(heartRateAdjustments), [], true];
_unit setVariable [VAR_BLOOD_PRESS, [80, 120], true];
_unit setVariable [QGVAR(peripheralResistance), 100, true];
_unit setVariable [QGVAR(peripheralResistanceAdjustments), [], true];
_unit setVariable [QGVAR(inCardiacArrest), false, true];
_unit setVariable [QGVAR(hasLostBlood), 0, true];
_unit setVariable [QGVAR(isBleeding), false, true];
// - Pain ---------------------------------------------------------------------
_unit setVariable [VAR_PAIN, 0, true];
_unit setVariable [QGVAR(hasPain), false, true];
_unit setVariable [VAR_PAIN_SUPP, 0, true];
_unit setVariable [QGVAR(painSuppressAdjustments), [], true];
// - Wounds -------------------------------------------------------------------
_unit setVariable [QGVAR(openWounds), [], true];
_unit setVariable [QGVAR(bandagedWounds), [], true];
2016-12-05 20:34:20 +00:00
_unit setVariable [QGVAR(stitchedWounds), [], true];
2017-09-26 22:43:54 +00:00
_unit setVariable [QEGVAR(medical_engine,isLimping), false, true];
// - Misc ---------------------------------------------------------------------
_unit setVariable [QGVAR(isUnconscious), false, true];
// - Treatments ---------------------------------------------------------------
_unit setVariable [QGVAR(tourniquets), [0,0,0,0,0,0], true];
_unit setVariable [QGVAR(occludedMedications), nil, true]; //Delayed Medications (from tourniquets)
_unit setVariable [QGVAR(ivBags), nil, true];
_unit setVariable [QGVAR(partialHealCounter), 0, true];
// triage card and logs
2016-12-05 22:00:02 +00:00
_unit setVariable [QGVAR(triageLevel), 0, true];
_unit setVariable [QGVAR(triageCard), [], 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
// medication
private _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
private _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"];
2017-03-25 16:36:37 +00:00
TRACE_2("Unit Init",_unit,local _unit);
2016-09-18 17:48:49 +00:00
[QGVAR(initialized), [_unit]] call CBA_fnc_localEvent;
2017-03-25 16:36:37 +00:00
}, [_unit], 0.5] call CBA_fnc_waitAndExecute;