2015-08-06 21:51:17 +00:00
/*
* Author: Glowbal
* Update all UI information in the medical menu
2015-08-02 14:56:27 +00:00
*
2015-08-06 21:51:17 +00:00
* Arguments:
* 0: target <OBJECT>
* 1: display <DISPLAY>
*
* Return Value:
2015-08-07 03:37:41 +00:00
* None
*
* Example:
2015-10-13 07:01:59 +00:00
* [some_player, some_display] call ace_medical_menu_fnc_updateUIInfo
2015-08-06 21:51:17 +00:00
*
* Public: No
2015-08-02 14:56:27 +00:00
*/
#include "script_component.hpp"
2015-08-07 03:37:41 +00:00
params ["_target", "_display"];
2015-08-02 14:56:27 +00:00
2015-10-13 07:01:59 +00:00
private["_allInjuryTexts", "_bandagedwounds", "_damaged", "_genericMessages", "_logs", "_openWounds", "_part", "_partText", "_pointDamage", "_selectionBloodLoss", "_selectionN", "_severity", "_totalIvVolume", "_triageStatus"];
2015-10-13 18:40:16 +00:00
if (isNil "_display" || {isNull _display}) exitWith {ERROR("No display");};
2015-10-13 07:01:59 +00:00
2015-08-06 21:51:17 +00:00
_selectionN = GVAR(selectedBodyPart);
2015-10-13 07:01:59 +00:00
if (_selectionN < 0 || {_selectionN > 5}) exitwith {};
2015-08-02 14:56:27 +00:00
2015-08-06 21:51:17 +00:00
_genericMessages = [];
2015-08-09 18:08:45 +00:00
_partText = [ELSTRING(medical,Head), ELSTRING(medical,Torso), ELSTRING(medical,LeftArm) ,ELSTRING(medical,RightArm) ,ELSTRING(medical,LeftLeg), ELSTRING(medical,RightLeg)] select _selectionN;
_genericMessages pushBack [localize _partText, [1, 1, 1, 1]];
2015-08-02 14:56:27 +00:00
2015-08-09 18:07:06 +00:00
if (_target getVariable [QEGVAR(medical,isBleeding), false]) then {
2015-08-07 03:37:41 +00:00
_genericMessages pushBack [localize ELSTRING(medical,Status_Bleeding), [1, 0.1, 0.1, 1]];
2015-08-02 14:56:27 +00:00
};
2015-08-07 03:37:41 +00:00
2015-08-09 18:07:06 +00:00
if (_target getVariable [QEGVAR(medical,hasLostBlood), 0] > 1) then {
2015-08-07 03:37:41 +00:00
_genericMessages pushBack [localize ELSTRING(medical,Status_Lost_Blood), [1, 0.1, 0.1, 1]];
2015-08-02 14:56:27 +00:00
};
2015-08-09 18:07:06 +00:00
if (((_target getVariable [QEGVAR(medical,tourniquets), [0, 0, 0, 0, 0, 0]]) select _selectionN) > 0) then {
2015-08-07 03:37:41 +00:00
_genericMessages pushBack [localize ELSTRING(medical,Status_Tourniquet_Applied), [0.77, 0.51, 0.08, 1]];
2015-08-02 14:56:27 +00:00
};
2015-08-07 03:37:41 +00:00
2015-08-09 18:07:06 +00:00
if (_target getVariable [QEGVAR(medical,hasPain), false]) then {
2015-08-07 03:37:41 +00:00
_genericMessages pushBack [localize ELSTRING(medical,Status_Pain), [1, 1, 1, 1]];
2015-08-02 14:56:27 +00:00
};
2015-08-06 21:51:17 +00:00
_totalIvVolume = 0;
2015-08-02 14:56:27 +00:00
{
2015-08-06 21:51:17 +00:00
private "_value";
2015-08-07 03:37:41 +00:00
_value = _target getVariable _x;
if (!isNil "_value") then {
_totalIvVolume = _totalIvVolume + (_target getVariable [_x, 0]);
2015-08-02 14:56:27 +00:00
};
2015-08-09 18:07:06 +00:00
} count EGVAR(medical,IVBags);
2015-08-07 03:37:41 +00:00
2015-08-06 21:51:17 +00:00
if (_totalIvVolume >= 1) then {
2015-08-07 03:37:41 +00:00
_genericMessages pushBack [format [localize ELSTRING(medical,receivingIvVolume), floor _totalIvVolume], [1, 1, 1, 1]];
2015-08-06 21:51:17 +00:00
};
2015-08-02 14:56:27 +00:00
2015-08-06 21:51:17 +00:00
_damaged = [false, false, false, false, false, false];
2015-08-07 03:37:41 +00:00
_selectionBloodLoss = [0, 0, 0, 0, 0, 0];
2015-08-06 21:51:17 +00:00
_allInjuryTexts = [];
2015-11-06 07:05:25 +00:00
if ((EGVAR(medical,level) >= 2) && {([_target] call EFUNC(medical,hasMedicalEnabled))}) then {
2015-08-07 03:37:41 +00:00
_openWounds = _target getVariable [QEGVAR(medical,openWounds), []];
2015-08-06 21:51:17 +00:00
private "_amountOf";
{
_amountOf = _x select 3;
// Find how much this bodypart is bleeding
if (_amountOf > 0) then {
2015-08-07 03:37:41 +00:00
_damaged set [_x select 2, true];
_selectionBloodLoss set [_x select 2, (_selectionBloodLoss select (_x select 2)) + (20 * ((_x select 4) * _amountOf))];
2015-08-06 21:51:17 +00:00
if (_selectionN == (_x select 2)) then {
// Collect the text to be displayed for this injury [ Select injury class type definition - select the classname DisplayName (6th), amount of injuries for this]
if (_amountOf >= 1) then {
// TODO localization
2015-08-07 03:37:41 +00:00
_allInjuryTexts pushBack [format["%2x %1", (EGVAR(medical,AllWoundInjuryTypes) select (_x select 1)) select 6, _amountOf], [1,1,1,1]];
2015-08-06 21:51:17 +00:00
} else {
// TODO localization
2015-08-07 03:37:41 +00:00
_allInjuryTexts pushBack [format["Partial %1", (EGVAR(medical,AllWoundInjuryTypes) select (_x select 1)) select 6], [1,1,1,1]];
2015-08-06 21:51:17 +00:00
};
};
2015-08-02 14:56:27 +00:00
};
2015-08-07 03:37:41 +00:00
} forEach _openWounds;
2015-08-06 21:51:17 +00:00
2015-08-07 03:37:41 +00:00
_bandagedwounds = _target getVariable [QEGVAR(medical,bandagedWounds), []];
2015-08-06 21:51:17 +00:00
{
_amountOf = _x select 3;
// Find how much this bodypart is bleeding
if !(_damaged select (_x select 2)) then {
2015-08-07 03:37:41 +00:00
_selectionBloodLoss set [_x select 2, (_selectionBloodLoss select (_x select 2)) + (20 * ((_x select 4) * _amountOf))];
2015-08-06 21:51:17 +00:00
};
if (_selectionN == (_x select 2)) then {
// Collect the text to be displayed for this injury [ Select injury class type definition - select the classname DisplayName (6th), amount of injuries for this]
if (_amountOf > 0) then {
if (_amountOf >= 1) then {
// TODO localization
2015-08-07 03:37:41 +00:00
_allInjuryTexts pushBack [format ["[B] %2x %1", (EGVAR(medical,AllWoundInjuryTypes) select (_x select 1)) select 6, _amountOf], [0.88,0.7,0.65,1]];
2015-08-06 21:51:17 +00:00
} else {
// TODO localization
2015-08-07 03:37:41 +00:00
_allInjuryTexts pushBack [format ["[B] Partial %1", (EGVAR(medical,AllWoundInjuryTypes) select (_x select 1)) select 6], [0.88,0.7,0.65,1]];
2015-08-06 21:51:17 +00:00
};
2015-08-02 14:56:27 +00:00
};
};
2015-08-07 03:37:41 +00:00
} forEach _bandagedwounds;
2015-08-06 21:51:17 +00:00
} else {
_damaged = [true, true, true, true, true, true];
2015-09-05 09:57:17 +00:00
2015-08-06 21:51:17 +00:00
{
2015-09-05 09:57:17 +00:00
_selectionBloodLoss set [_forEachIndex, _x];
2015-08-06 21:51:17 +00:00
2015-10-13 07:01:59 +00:00
if ((_x > 0) && {_forEachIndex == _selectionN}) then {
2015-09-05 09:57:17 +00:00
_pointDamage = _x;
2015-08-06 21:51:17 +00:00
_severity = switch (true) do {
case (_pointDamage > 0.5): {localize ELSTRING(medical,HeavilyWounded)};
case (_pointDamage > 0.1): {localize ELSTRING(medical,LightlyWounded)};
default {localize ELSTRING(medical,VeryLightlyWounded)};
};
_part = localize ([
ELSTRING(medical,Head),
ELSTRING(medical,Torso),
ELSTRING(medical,LeftArm),
ELSTRING(medical,RightArm),
ELSTRING(medical,LeftLeg),
ELSTRING(medical,RightLeg)
] select _forEachIndex);
_allInjuryTexts pushBack [format ["%1 %2", _severity, toLower _part], [1,1,1,1]];
};
2015-09-05 10:35:48 +00:00
} forEach (_target getvariable [QEGVAR(medical,bodyPartStatus), [0,0,0,0,0,0]]);
2015-08-06 21:51:17 +00:00
};
2015-08-02 14:56:27 +00:00
2015-10-13 07:01:59 +00:00
[_selectionBloodLoss, _damaged, _display] call FUNC(updateBodyImage);
2015-08-06 21:51:17 +00:00
[_display, _genericMessages, _allInjuryTexts] call FUNC(updateInformationLists);
2015-08-02 14:56:27 +00:00
2015-08-07 17:11:27 +00:00
_logs = _target getVariable [QEGVAR(medical,logFile_activity_view), []];
2015-08-06 21:51:17 +00:00
[_display, _logs] call FUNC(updateActivityLog);
2015-08-02 14:56:27 +00:00
2015-08-07 17:11:27 +00:00
_logs = _target getVariable [QEGVAR(medical,logFile_quick_view), []];
[_display, _logs] call FUNC(updateQuickViewLog);
2015-08-06 21:51:17 +00:00
_triageStatus = [_target] call EFUNC(medical,getTriageStatus);
(_display displayCtrl 2000) ctrlSetText (_triageStatus select 0);
(_display displayCtrl 2000) ctrlSetBackgroundColor (_triageStatus select 2);