ACE3/addons/medical_damage/functions/fnc_handleIncapacitation.sqf

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-12-05 20:34:20 +00:00
/*
* Author: Ruthberg
* Handle incapacitation due to damage and pain
*
* Arguments:
* 0: The Unit <OBJECT>
*
* ReturnValue:
* nothing
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit"];
2018-05-08 07:47:03 +00:00
private _painLevel = GET_PAIN_PERCEIVED(_unit);
private _bodyPartDamage = _unit getVariable [QEGVAR(medical,bodyPartDamage), [0,0,0,0,0,0]];
2016-12-05 20:34:20 +00:00
2016-12-08 10:38:43 +00:00
_bodyPartDamage params ["_headDamage", "_bodyDamage", "_leftArmDamage", "_rightArmDamage", "_leftLegDamage", "_rightLegDamage"];
// Exclude non penetrating body damage
2016-12-05 20:34:20 +00:00
{
_x params ["", "", "_bodyPartN", "_amountOf", "", "_damage"];
2016-12-08 10:38:43 +00:00
if (_bodyPartN == 1 && {_damage < PENETRATION_THRESHOLD}) then {
_bodyDamage = _bodyDamage - (_amountOf * _damage);
2016-12-05 20:34:20 +00:00
};
} forEach (_unit getVariable [QEGVAR(medical,openWounds), []]);
2016-12-05 20:34:20 +00:00
2016-12-08 10:38:43 +00:00
private _damageThreshold = if (isPlayer _unit) then {
EGVAR(medical,playerDamageThreshold)
2016-12-08 10:38:43 +00:00
} else {
EGVAR(medical,AIDamageThreshold)
2016-12-08 10:38:43 +00:00
};
2017-04-26 15:16:09 +00:00
if ((_headDamage > _damageThreshold / 2) || {_bodyDamage > _damageThreshold} || {(_painLevel >= PAIN_UNCONSCIOUS) && {random 1 < 0.1}}) then {
[QEGVAR(medical,CriticalInjury), _unit] call CBA_fnc_localEvent;
2016-12-05 20:34:20 +00:00
};