2023-09-12 18:58:10 +00:00
#include "..\script_component.hpp"
2017-04-29 17:58:35 +00:00
2019-09-05 20:56:53 +00:00
if (missionNamespace getVariable [QGVAR(dev_watchVariableRunning), false]) exitWith {};
GVAR(dev_watchVariableRunning) = true;
2017-04-29 17:58:35 +00:00
["medical", {
// Hide when patient display is up because they might overlap
2019-05-12 04:13:59 +00:00
private _display = uiNamespace getVariable [QEGVAR(medical_gui,RscPatientInfo), displayNull];
if (!isNull _display) exitWith {"Paused"};
2017-04-29 17:58:35 +00:00
private _unit = cursorTarget;
2024-06-18 14:08:03 +00:00
if !(_unit isKindOf "CAManBase") then {_unit = cursorObject};
if !(_unit isKindOf "CAManBase") then {_unit = ACE_player};
2018-05-22 16:21:24 +00:00
if ((_unit != ACE_player) && {IS_UNCONSCIOUS(ACE_player)}) then {_unit = ACE_player};
2024-06-18 14:08:03 +00:00
if !(_unit isKindOf "CAManBase") exitWith {"No Unit?"};
2017-04-29 17:58:35 +00:00
private _return = [];
// Header:
2017-09-26 22:43:54 +00:00
_return pushBack format ["<t size='1.2'><t color='#%1'>%2</t> [%3]", (["00FF00", "0000FF"] select (_unit == ACE_player)), [_unit] call EFUNC(common,getName), typeOf _unit];
2017-04-29 17:58:35 +00:00
_return pushBack "";
// State:
2018-07-16 21:25:54 +00:00
private _targetState = [_unit, EGVAR(medical,STATE_MACHINE)] call CBA_statemachine_fnc_getCurrentState;
2017-09-26 22:43:54 +00:00
if (!local _unit) then {_targetState = "NotLocal";};
private _color = switch (_targetState) do {case "Default": {"33FF33"}; case "Injured": {"FF3333"}; case "Unconscious": {"FF8833"}; case "CardiacArrest": {"FF33AA"}; default {"555555"}};
2019-06-28 00:01:20 +00:00
_return pushBack format ["<t color='#%1'>State: %2</t>", _color, _targetState];
private _hasStableVitals = ["N", "Y"] select ([_unit] call EFUNC(medical_status,hasStableVitals));
private _hasStableCondition = ["N", "Y"] select ([_unit] call EFUNC(medical_status,isInStableCondition));
2024-02-04 17:50:24 +00:00
private _unconcFlag = ["", "[<t color='#BBFFBB'>U</t>]"] select IS_UNCONSCIOUS(_unit);
2019-06-28 00:01:20 +00:00
private _timeLeft = _unit getVariable [QEGVAR(medical_statemachine,cardiacArrestTimeLeft), -1];
private _cardiactArrestFlag = if IN_CRDC_ARRST(_unit) then {format ["[<t color='#BBBBFF'>CA</t> %1]", _timeLeft toFixed 1]} else {""};
_return pushBack format ["[StableVitals: %1] [StableCon: %2] %3 %4", _hasStableVitals, _hasStableCondition, _unconcFlag, _cardiactArrestFlag];
2017-04-29 17:58:35 +00:00
// Blood:
2018-04-27 15:03:55 +00:00
private _bloodVolume = GET_BLOOD_VOLUME(_unit);
2019-04-27 19:12:11 +00:00
private _woundBleeding = GET_WOUND_BLEEDING(_unit);
2018-04-27 15:03:55 +00:00
private _bloodLoss = GET_BLOOD_LOSS(_unit);
2019-04-27 19:12:11 +00:00
private _hemorrhage = GET_HEMORRHAGE(_unit);
2024-02-04 17:50:24 +00:00
private _isBleeding = ["", "[<t color ='#FF9999'>Bleeding</t>]"] select IS_BLEEDING(_unit);
2019-04-27 19:12:11 +00:00
private _secondsToHeartstop = if (_bloodLoss != 0) then {format ["[<t color ='#FF9999'>Time Left:</t> %1 sec]", (((_bloodVolume - BLOOD_VOLUME_CLASS_4_HEMORRHAGE) max 0) / _bloodLoss) toFixed 0]} else {""};
_return pushBack format ["Blood: %1 [Hemorrhage: %2] %3", _bloodVolume toFixed 3, _hemorrhage, _isBleeding];
_return pushBack format [" - [W: %1 T: %2] %3", _woundBleeding toFixed 4, _bloodLoss toFixed 4, _secondsToHeartstop];
2017-04-29 17:58:35 +00:00
// Heart:
2018-05-08 09:16:12 +00:00
private _cardiacOutput = [_unit] call EFUNC(medical_status,getCardiacOutput);
private _heartRate = GET_HEART_RATE(_unit);
2018-05-08 08:28:16 +00:00
GET_BLOOD_PRESSURE(_unit) params ["_bpLow", "_bpHigh"];
2017-04-29 17:58:35 +00:00
_return pushBack format ["CardiacOutput %1", _cardiacOutput toFixed 5];
2019-09-07 17:18:12 +00:00
_return pushBack format [" - [HR: %1] [BP: %2 / %3]", _heartRate toFixed 1, _bpHigh toFixed 1, _bpLow toFixed 1];
2017-04-29 17:58:35 +00:00
// Pain:
2018-05-11 14:28:25 +00:00
private _pain = GET_PAIN(_unit);
private _painSuppress = GET_PAIN_SUPPRESS(_unit);
2018-05-08 07:47:03 +00:00
private _painLevel = GET_PAIN_PERCEIVED(_unit);
2019-04-27 19:12:11 +00:00
private _isInPain = IS_IN_PAIN(_unit);
_return pushBack format ["Effective Pain: %1 [%2]", _painLevel toFixed 3, _isInPain];
2017-04-29 17:58:35 +00:00
_return pushBack format [" - [Pain: %1] [Suppress: %2]", _pain toFixed 3, _painSuppress toFixed 3];
// Damage:
private _damage = _unit getVariable [QEGVAR(medical,bodyPartDamage), [0,0,0,0,0,0]];
2024-02-04 17:50:24 +00:00
private _limping = ["", "[<t color ='#FFCC22'> Limping </t>]"] select (_unit getVariable [QEGVAR(medical,isLimping), false]);
2019-10-08 15:45:09 +00:00
_return pushBack format ["BodyPartDamage: [H: %1] [B: %2]", (_damage select 0) toFixed 2, (_damage select 1) toFixed 2];
2017-06-05 17:30:54 +00:00
_return pushBack format ["[LA:%1] [RA: %2] [LL:%3] [RL: %4]", (_damage select 2) toFixed 2, (_damage select 3) toFixed 2, (_damage select 4) toFixed 2, (_damage select 5) toFixed 2];
2017-04-29 17:58:35 +00:00
2019-04-27 19:12:11 +00:00
_return pushBack format ["Hitpoints: [HHed:%1] [HBod: %2]", (_unit getHitPointDamage "HitHead") toFixed 2, (_unit getHitPointDamage "HitBody") toFixed 2];
_return pushBack format ["[HHnd:%1] [HLeg: %2] %3", (_unit getHitPointDamage "HitHands") toFixed 2, (_unit getHitPointDamage "HitLegs") toFixed 2, _limping];
2019-06-03 15:31:46 +00:00
private _fractures = GET_FRACTURES(_unit);
2024-02-04 17:50:24 +00:00
private _canSprint = ["[<t color ='#FFCC22'>Sprint Blocked</t>]", ""] select (isSprintAllowed _unit);
private _forceWalk = ["", "[<t color ='#FF9922'>Forced Walking</t>]"] select (isForcedWalk _unit);
2020-08-23 00:37:15 +00:00
_return pushBack format ["Fractures: %1 %2%3", _fractures, _canSprint, _forceWalk];
2019-05-12 04:13:59 +00:00
2017-04-29 17:58:35 +00:00
// Tourniquets:
_return pushBack "------- Tourniquets: -------";
2018-07-29 21:43:14 +00:00
private _tourniquets = GET_TOURNIQUETS(_unit);
2017-04-29 17:58:35 +00:00
private _occludedMedications = _unit getVariable [QEGVAR(medical,occludedMedications), []];
{
private _tPartNum = _forEachIndex;
if (_x != 0) then {
2018-07-18 18:13:25 +00:00
_return pushBack format ["%1 [Time On: %2]", ALL_SELECTIONS select _tPartNum, (CBA_missionTime - _x) toFixed 1];
2017-04-29 17:58:35 +00:00
};
{
2019-06-03 15:31:46 +00:00
_x params ["_medPartNum", "_medClassname"];
2017-04-29 17:58:35 +00:00
if (_medPartNum == _tPartNum) then {
_return pushBack format [" - Occluded Med: %1", _medClassname];
};
} forEach _occludedMedications;
} forEach _tourniquets;
// Wounds:
2019-09-28 20:48:19 +00:00
_return pushBack "------- Open Wounds: -------";
2019-06-22 18:36:27 +00:00
private _wounds = GET_OPEN_WOUNDS(_unit);
2017-04-29 17:58:35 +00:00
{
2023-06-24 05:11:56 +00:00
private _bodyPart = _x;
{
_x params ["_xClassID", "_xAmountOf", "_xBleeding", "_xDamage"];
_return pushBack format ["%1: [%2] [x%3] [Bld: %4] [Dmg: %5]", _bodyPart, _xClassID, _xAmountOf toFixed 1, _xBleeding toFixed 4, _xDamage toFixed 2];
} forEach _y;
2017-04-29 17:58:35 +00:00
} forEach _wounds;
2019-04-27 19:12:11 +00:00
// Bandaged Wounds:
_return pushBack "------- Bandaged Wounds: -------";
2019-06-22 18:36:27 +00:00
private _wounds = GET_BANDAGED_WOUNDS(_unit);
2019-04-27 19:12:11 +00:00
{
2023-06-24 05:11:56 +00:00
private _bodyPart = _x;
{
_x params ["_xClassID", "_xAmountOf", "_xBleeding", "_xDamage"];
_return pushBack format ["%1: [%2] [x%3] [Bld: %4] [Dmg: %5]", _bodyPart, _xClassID, _xAmountOf toFixed 1, _xBleeding toFixed 4, _xDamage toFixed 2];
} forEach _y;
2019-04-27 19:12:11 +00:00
} forEach _wounds;
// Stitched Wounds:
_return pushBack "------- Stitched Wounds: -------";
2019-06-22 18:36:27 +00:00
private _wounds = GET_STITCHED_WOUNDS(_unit);
2019-04-27 19:12:11 +00:00
{
2023-06-24 05:11:56 +00:00
private _bodyPart = _x;
{
_x params ["_xClassID", "_xAmountOf", "_xBleeding", "_xDamage"];
_return pushBack format ["%1: [%2] [x%3] [Bld: %4] [Dmg: %5]", _bodyPart, _xClassID, _xAmountOf toFixed 1, _xBleeding toFixed 4, _xDamage toFixed 2];
} forEach _y;
2019-04-27 19:12:11 +00:00
} forEach _wounds;
2017-04-29 17:58:35 +00:00
// IVs:
_return pushBack "------- IVs: -------";
private _ivBags = _unit getVariable [QEGVAR(medical,ivBags), []];
{
_x params ["_xVolumeAdded", "_xType", "_xBodyPartN"];
2018-07-18 18:13:25 +00:00
_return pushBack format ["%1: %2 [%3 ml]", ALL_SELECTIONS select _xBodyPartN, _xType, _xVolumeAdded];
2017-04-29 17:58:35 +00:00
} forEach _ivBags;
2019-04-27 19:12:11 +00:00
// Medications:
_return pushBack "------- Medications: -------";
private _hrTargetAdjustment = 0;
private _painSupressAdjustment = 0;
private _peripheralResistanceAdjustment = 0;
2019-09-28 21:11:32 +00:00
private _uniqueMedications = [];
2019-04-27 19:12:11 +00:00
private _rawMedications = (_unit getVariable [VAR_MEDICATIONS, []]) apply {
_x params ["_medication", "_timeAdded", "_timeTillMaxEffect", "_maxTimeInSystem", "_hrAdjust", "_painAdjust", "_flowAdjust"];
2019-09-28 21:11:32 +00:00
_uniqueMedications pushBackUnique _medication;
2019-04-27 19:12:11 +00:00
private _timeInSystem = CBA_missionTime - _timeAdded;
private _effectRatio = (((_timeInSystem / _timeTillMaxEffect) ^ 2) min 1) * (_maxTimeInSystem - _timeInSystem) / _maxTimeInSystem;
_hrTargetAdjustment = _hrTargetAdjustment + _hrAdjust * _effectRatio;
_painSupressAdjustment = _painSupressAdjustment + _painAdjust * _effectRatio;
_peripheralResistanceAdjustment = _peripheralResistanceAdjustment + _flowAdjust * _effectRatio;
format ["%1 [%2 / %3][%4][%5,%6,%7]",_medication,_timeInSystem toFixed 0,_maxTimeInSystem toFixed 0, _effectRatio toFixed 2, _hrAdjust toFixed 1, _painAdjust toFixed 2, _flowAdjust toFixed 1];
};
_return pushBack format ["Adjusts: [HR %1][PS %2][PR %3]", _hrTargetAdjustment toFixed 2, _painSupressAdjustment toFixed 2, _peripheralResistanceAdjustment toFixed 2];
2019-09-28 21:11:32 +00:00
{
private _medicationCount = [_unit, _x, true] call EFUNC(medical_status,getMedicationCount);
private _medicationEffectiveness = [_unit, _x, false] call EFUNC(medical_status,getMedicationCount);
_return pushBack format ["-%1: C: %2 - E: %3", _x, _medicationCount toFixed 2, _medicationEffectiveness toFixed 2];
} forEach _uniqueMedications;
2019-04-27 19:12:11 +00:00
_return pushBack "------- Medications Raw: -------";
_return append _rawMedications;
2019-05-12 04:13:59 +00:00
if (_unit isEqualTo ACE_player) then {
_return pushBack format ["ACE_setCustomAimCoef: %1", [missionNamespace, "ACE_setCustomAimCoef", "max"] call EFUNC(common,arithmeticGetResult)];
};
2019-09-05 20:56:53 +00:00
_return pushBack format ["%1 - %2",lifeState _unit, animationState _unit];
2017-04-29 17:58:35 +00:00
// Footer:
_return pushBack "</t>";
// Return:
_return joinString "<br/>"
2019-04-27 19:12:11 +00:00
}, [40]] call EFUNC(common,watchVariable);