ACE3/addons/medical_status/functions/fnc_getBloodVolumeChange.sqf

52 lines
1.7 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Calculates the blood volume change and decreases the IVs given to the unit.
*
* Arguments:
* 0: The Unit <OBJECT>
2016-12-05 20:34:20 +00:00
* 1: Time since last update <NUMBER>
* 2: Global Sync Values (bloodbags) <BOOL>
*
* ReturnValue:
2016-12-05 20:34:20 +00:00
* Blood volume change (liters per second) <NUMBER>
*
* Public: No
*/
#include "script_component.hpp"
2016-12-05 20:34:20 +00:00
params ["_unit", "_deltaT", "_syncValues"];
2016-10-10 15:30:42 +00:00
private _bloodVolume = _unit getVariable [QGVAR(bloodVolume), DEFAULT_BLOOD_VOLUME];
2016-12-05 20:34:20 +00:00
private _bloodVolumeChange = -_deltaT * (_unit call FUNC(getBloodLoss));
if (!isNil {_unit getVariable QGVAR(ivBags)}) then {
2016-12-05 20:34:20 +00:00
private _bloodBags = _unit getVariable [QGVAR(ivBags), []];
2016-12-14 17:50:31 +00:00
private _tourniquets = _unit getVariable [QGVAR(tourniquets), [0,0,0,0,0,0]];
2016-10-12 19:59:32 +00:00
2016-12-05 20:34:20 +00:00
_bloodBags = _bloodBags apply {
_x params ["_bagVolumeRemaining", "_type", "_bodyPart"];
2016-10-12 19:59:32 +00:00
if (_tourniquets select _bodyPart == 0) then {
private _bagChange = (_deltaT * GVAR(ivFlowRate) * IV_CHANGE_PER_SECOND) min _bagVolumeRemaining; // absolute value of the change in miliLiters
_bagVolumeRemaining = _bagVolumeRemaining - _bagChange;
_bloodVolumeChange = _bloodVolumeChange + (_bagChange / 1000);
};
if (_bagVolumeRemaining < 0.01) then {
2016-12-05 20:34:20 +00:00
[]
} else {
[_bagVolumeRemaining, _type, _bodyPart]
2015-03-22 22:24:24 +00:00
};
2016-12-05 20:34:20 +00:00
};
2016-10-12 19:59:32 +00:00
2016-12-05 20:34:20 +00:00
_bloodBags = _bloodBags - [[]]; // remove empty bags
2016-10-12 19:59:32 +00:00
2016-12-05 20:34:20 +00:00
if (_bloodBags isEqualTo []) then {
_unit setVariable [QGVAR(ivBags), nil, true]; // no bags left - clear variable (always globaly sync this)
} else {
2016-12-05 20:34:20 +00:00
_unit setVariable [QGVAR(ivBags), _bloodBags, _syncValues];
};
};
2016-10-12 19:59:32 +00:00
_bloodVolumeChange