2015-02-08 09:01:32 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Calculates the blood volume change and decreases the IVs given to the unit.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The Unit <OBJECT>
|
2016-09-01 10:46:08 +00:00
|
|
|
* 1: Global Sync Values (bloodbags) <BOOL>
|
2015-02-08 09:01:32 +00:00
|
|
|
*
|
|
|
|
* ReturnValue:
|
2016-09-01 10:46:08 +00:00
|
|
|
* Blood volume change (in % total) <NUMBER>
|
2015-02-07 22:55:48 +00:00
|
|
|
*
|
2015-02-08 09:01:32 +00:00
|
|
|
* Public: No
|
2015-02-07 22:55:48 +00:00
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2016-09-01 10:46:08 +00:00
|
|
|
params ["_unit", "_syncValues"];
|
2015-02-07 22:55:48 +00:00
|
|
|
|
2016-10-10 15:30:42 +00:00
|
|
|
private _bloodVolume = _unit getVariable [QGVAR(bloodVolume), DEFAULT_BLOOD_VOLUME];
|
2016-10-12 19:59:32 +00:00
|
|
|
private _bloodVolumeChange = -(_unit call FUNC(getBloodLoss));
|
2015-02-07 22:55:48 +00:00
|
|
|
|
2016-09-01 10:46:08 +00:00
|
|
|
if (!isNil {_unit getVariable QGVAR(ivBags)}) then {
|
2016-10-12 19:59:32 +00:00
|
|
|
if (_bloodVolume < DEFAULT_BLOOD_VOLUME) then {
|
2016-09-01 10:46:08 +00:00
|
|
|
private _bloodBags = _unit getVariable [QGVAR(ivBags), []];
|
2016-10-12 19:59:32 +00:00
|
|
|
|
2016-09-01 10:46:08 +00:00
|
|
|
_bloodBags = _bloodBags apply {
|
|
|
|
_x params ["_bagVolumeRemaining"];
|
2016-10-12 19:59:32 +00:00
|
|
|
|
2016-09-01 10:46:08 +00:00
|
|
|
private _bagChange = IV_CHANGE_PER_SECOND min _bagVolumeRemaining; // absolute value of the change in miliLiters
|
|
|
|
_bagVolumeRemaining = _bagVolumeRemaining - _bagChange;
|
2016-10-12 19:59:32 +00:00
|
|
|
_bloodVolumeChange = _bloodVolumeChange + (_bagChange / 1000);
|
|
|
|
|
2016-09-01 10:46:08 +00:00
|
|
|
if (_bagVolumeRemaining < 0.01) then {
|
|
|
|
[]
|
|
|
|
} else {
|
|
|
|
[_bagVolumeRemaining];
|
|
|
|
};
|
2015-03-22 22:24:24 +00:00
|
|
|
};
|
2016-10-12 19:59:32 +00:00
|
|
|
|
2016-09-01 10:46:08 +00:00
|
|
|
_bloodBags = _bloodBags - [[]]; // remove empty bags
|
2016-10-12 19:59:32 +00:00
|
|
|
|
2016-09-01 10:46:08 +00:00
|
|
|
if (_bloodBags isEqualTo []) then {
|
|
|
|
_unit setVariable [QGVAR(ivBags), nil, true]; // no bags left - clear variable (always globaly sync this)
|
|
|
|
} else {
|
|
|
|
_unit setVariable [QGVAR(ivBags), _bloodBags, _syncValues];
|
2015-04-05 18:11:54 +00:00
|
|
|
};
|
2016-09-01 10:46:08 +00:00
|
|
|
} else {
|
|
|
|
_unit setVariable [QGVAR(ivBags), nil, true]; // blood volume = 100% - clear variable (always globaly sync this)
|
|
|
|
};
|
2015-02-07 22:55:48 +00:00
|
|
|
};
|
|
|
|
|
2016-10-12 19:59:32 +00:00
|
|
|
_bloodVolumeChange
|