ACE3/addons/medical/functions/fnc_getBloodLoss.sqf

32 lines
869 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Calculate the total blood loss of a unit.
*
* Arguments:
* 0: The Unit <OBJECT>
*
* ReturnValue:
* Total blood loss of unit <NUMBER>
*
* Public: No
*/
#include "script_component.hpp"
2015-08-22 14:25:10 +00:00
params ["_unit"];
private _totalBloodLoss = 0;
private _tourniquets = _unit getVariable [QGVAR(tourniquets), [0,0,0,0,0,0]];
2016-10-12 19:59:32 +00:00
{
2016-10-12 19:59:32 +00:00
if (_tourniquets select (_x select 2) == 0) then {
// total bleeding ratio * percentage of injury left
2015-02-28 18:28:05 +00:00
_totalBloodLoss = _totalBloodLoss + ((_x select 4) * (_x select 3));
};
} forEach (_unit getVariable [QGVAR(openWounds), []]);
{
_totalBloodLoss = _totalBloodLoss + ((_x select 4) * (_x select 3));
} forEach (_unit getVariable [QGVAR(internalWounds), []]);
2016-10-10 15:30:42 +00:00
_totalBloodLoss * ((_unit getVariable [QGVAR(bleedingCoefficient), GVAR(bleedingCoefficient)]) max 0) * DEFAULT_BLOOD_VOLUME / 100;