mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ab7af04530
* Refactored the old code * Introduced 'timeTillMaxEffect' config entry for medication
76 lines
2.6 KiB
Plaintext
76 lines
2.6 KiB
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Update the heart rate
|
|
*
|
|
* Arguments:
|
|
* 0: The Unit <OBJECT>
|
|
* 1: Time since last update <NUMBER>
|
|
* 2: Sync value? <BOOL>
|
|
*
|
|
* ReturnValue:
|
|
* nothing
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", "_deltaT", "_syncValue"];
|
|
|
|
private _hrTargetAdjustment = 0;
|
|
private _adjustment = _unit getVariable [QGVAR(heartRateAdjustments), []];
|
|
|
|
if (!(_adjustment isEqualTo [])) then {
|
|
{
|
|
_x params ["_value", "_timeTillMaxEffect", "_maxTimeInSystem", "_timeInSystem"];
|
|
if (abs _value > 0 && {_maxTimeInSystem > 0}) then {
|
|
if (_timeInSystem >= _maxTimeInSystem) then {
|
|
_adjustment set [_forEachIndex, ObjNull];
|
|
} else {
|
|
_timeInSystem = _timeInSystem + _deltaT;
|
|
private _effectRatio = ((_timeInSystem / (1 max _timeTillMaxEffect)) ^ 2) min 1;
|
|
_hrTargetAdjustment = _hrTargetAdjustment + _value * _effectRatio * (_maxTimeInSystem - _timeInSystem) / _maxTimeInSystem;
|
|
_x set [3, _timeInSystem];
|
|
};
|
|
} else {
|
|
_adjustment set [_forEachIndex, ObjNull];
|
|
};
|
|
} forEach _adjustment;
|
|
|
|
_adjustment = _adjustment - [ObjNull];
|
|
_unit setVariable [QGVAR(heartRateAdjustments), _adjustment, _syncValue];
|
|
};
|
|
|
|
private _heartRate = _unit getVariable [QGVAR(heartRate), 80];
|
|
|
|
if (!(_unit getVariable [QGVAR(inCardiacArrest), false])) then {
|
|
private _hrChange = 0;
|
|
private _bloodVolume = _unit getVariable [QGVAR(bloodVolume), DEFAULT_BLOOD_VOLUME];
|
|
if (_bloodVolume > BLOOD_VOLUME_CLASS_4_HEMORRHAGE) then {
|
|
([_unit] call FUNC(getBloodPressure)) params ["_bloodPressureL", "_bloodPressureH"];
|
|
private _meanBP = (2/3) * _bloodPressureH + (1/3) * _bloodPressureL;
|
|
private _painLevel = [_unit] call FUNC(getPainLevel);
|
|
|
|
private _targetBP = 107;
|
|
if (_bloodVolume < BLOOD_VOLUME_CLASS_3_HEMORRHAGE) then {
|
|
_targetBP = _targetBP * (_bloodVolume / DEFAULT_BLOOD_VOLUME);
|
|
};
|
|
|
|
private _targetHR = 80;
|
|
if (_bloodVolume < BLOOD_VOLUME_CLASS_2_HEMORRHAGE) then {
|
|
_targetHR = _heartRate * (_targetBP / (45 max _meanBP));
|
|
};
|
|
if (_painLevel > 0.2) then {
|
|
_targetHR = _targetHR max (80 + 50 * _painLevel);
|
|
};
|
|
_targetHR = _targetHR + _hrTargetAdjustment;
|
|
|
|
_hrChange = round(_targetHR - _heartRate) / 2;
|
|
} else {
|
|
_hrChange = -round(_heartRate / 10);
|
|
};
|
|
_heartRate = _heartRate + _deltaT * _hrChange;
|
|
};
|
|
|
|
_unit setVariable [QGVAR(heartRate), 0 max _heartRate, _syncValue];
|