2015-03-01 15:04:53 +00:00
/*
* Author: Glowbal
* Displays the patient information for given unit.
*
* Arguments:
* 0: The Unit <OBJECT>
* 1: Show <BOOL> <OPTIONAL>
*
* ReturnValue:
* nil
*
* Public: No
*/
#include "script_component.hpp"
2015-04-17 03:04:27 +00:00
// Exit for basic medical
if (GVAR(level) < 2) exitWith {};
2015-04-07 18:19:32 +00:00
private ["_target", "_show", "_selectionN"];
2015-03-01 15:04:53 +00:00
_target = _this select 0;
_show = if (count _this > 1) then {_this select 1} else {true};
2015-04-07 18:19:32 +00:00
_selectionN = if (count _this > 2) then {_this select 2} else {0};
2015-03-01 15:04:53 +00:00
2015-04-07 18:19:32 +00:00
GVAR(currentSelectedSelectionN) = if (typeName _selectionN == "SCALAR") then {_selectionN} else {0};
2015-03-01 15:04:53 +00:00
GVAR(displayPatientInformationTarget) = if (_show) then {_target} else {ObjNull};
2015-04-01 18:03:44 +00:00
if (USE_WOUND_EVENT_SYNC) then {
[_target, ACE_player] call FUNC(requestWoundSync);
};
2015-03-22 16:04:42 +00:00
2015-03-01 15:04:53 +00:00
if (_show) then {
2015-03-07 12:57:36 +00:00
("ACE_MedicalRscDisplayInformation" call BIS_fnc_rscLayer) cutRsc [QGVAR(DisplayInformation),"PLAIN"];
[{
private ["_target", "_display", "_alphaLevel", "_damaged", "_availableSelections", "_openWounds", "_selectionBloodLoss", "_red", "_green", "_blue", "_alphaLevel", "_allInjuryTexts", "_lbCtrl", "_genericMessages"];
_target = (_this select 0) select 0;
2015-04-06 17:43:27 +00:00
_selectionN = (_this select 0) select 1;
if (GVAR(displayPatientInformationTarget) != _target || GVAR(currentSelectedSelectionN) != _selectionN) exitwith {
2015-03-07 12:57:36 +00:00
[_this select 1] call CBA_fnc_removePerFrameHandler;
};
disableSerialization;
_display = uiNamespace getvariable QGVAR(DisplayInformation);
if (isnil "_display") exitwith {
[_this select 1] call CBA_fnc_removePerFrameHandler;
};
_allInjuryTexts = [];
_genericMessages = [];
2015-04-03 18:26:24 +00:00
2015-04-08 05:39:16 +00:00
if (GVAR(level) >= 2) then {
_partText = ["STR_ACE_Interaction_Head", "STR_ACE_Interaction_Torso", "STR_ACE_Interaction_ArmLeft" ,"STR_ACE_Interaction_ArmRight" ,"STR_ACE_Interaction_LegLeft", "STR_ACE_Interaction_LegRight"] select _selectionN;
_genericMessages pushback [localize _partText, [1, 1, 1, 1]];
};
2015-04-03 18:26:24 +00:00
2015-03-07 12:57:36 +00:00
if (_target getvariable[QGVAR(isBleeding), false]) then {
2015-03-09 21:23:37 +00:00
_genericMessages pushback [localize "STR_ACE_MEDICAL_STATUS_BLEEDING", [1, 0.1, 0.1, 1]];
2015-03-07 12:57:36 +00:00
};
2015-04-28 18:47:11 +00:00
if (_target getvariable[QGVAR(hasLostBlood), 0] > 1) then {
2015-03-07 12:57:36 +00:00
_genericMessages pushback [localize "STR_ACE_MEDICAL_STATUS_LOST_BLOOD", [1, 0.1, 0.1, 1]];
};
2015-04-06 17:43:27 +00:00
if (((_target getvariable [QGVAR(tourniquets), [0,0,0,0,0,0]]) select _selectionN) > 0) then {
2015-03-24 21:01:33 +00:00
_genericMessages pushback [localize "STR_ACE_MEDICAL_STATUS_TOURNIQUET_APPLIED", [0.77, 0.51, 0.08, 1]];
2015-03-07 12:57:36 +00:00
};
2015-03-12 06:35:29 +00:00
if (_target getvariable[QGVAR(hasPain), false]) then {
2015-03-09 21:23:37 +00:00
_genericMessages pushback [localize "STR_ACE_MEDICAL_STATUS_PAIN", [1, 1, 1, 1]];
};
2015-03-07 12:57:36 +00:00
2015-04-05 18:11:54 +00:00
_totalIvVolume = 0;
{
private "_value";
_value = _target getvariable _x;
if !(isnil "_value") then {
_totalIvVolume = _totalIvVolume + (_target getvariable [_x, 0]);
};
}foreach GVAR(IVBags);
if (_totalIvVolume >= 1) then {
_genericMessages pushback [format[localize "STR_ACE_MEDICAL_receivingIvVolume", floor _totalIvVolume], [1, 1, 1, 1]];
};
2015-04-07 18:19:32 +00:00
_damaged = [false, false, false, false, false, false];
2015-03-07 12:57:36 +00:00
_selectionBloodLoss = [0,0,0,0,0,0];
if (GVAR(level) >= 2) then {
_openWounds = _target getvariable [QGVAR(openWounds), []];
private "_amountOf";
{
_amountOf = _x select 3;
// Find how much this bodypart is bleeding
2015-04-07 18:19:32 +00:00
if (_amountOf > 0) then {
_damaged set[_x select 2, true];
_selectionBloodLoss set [(_x select 2), (_selectionBloodLoss select (_x select 2)) + (20 * ((_x select 4) * _amountOf))];
if (_selectionN == (_x select 2)) then {
2015-03-07 12:57:36 +00:00
// 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-04-05 17:26:33 +00:00
_allInjuryTexts pushback [format["%2x %1", (GVAR(AllWoundInjuryTypes) select (_x select 1)) select 6, _amountOf], [1,1,1,1]];
2015-03-07 12:57:36 +00:00
} else {
// TODO localization
2015-04-05 17:26:33 +00:00
_allInjuryTexts pushback [format["Partial %1", (GVAR(AllWoundInjuryTypes) select (_x select 1)) select 6], [1,1,1,1]];
2015-03-07 12:57:36 +00:00
};
};
};
}foreach _openWounds;
2015-04-05 17:26:33 +00:00
_bandagedwounds = _target getvariable [QGVAR(bandagedWounds), []];
{
_amountOf = _x select 3;
// Find how much this bodypart is bleeding
2015-04-07 18:19:32 +00:00
if !(_damaged select (_x select 2)) then {
_selectionBloodLoss set [(_x select 2), (_selectionBloodLoss select (_x select 2)) + (20 * ((_x select 4) * _amountOf))];
};
if (_selectionN == (_x select 2)) then {
2015-04-05 17:26:33 +00:00
// 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-04-07 18:19:32 +00:00
_allInjuryTexts pushback [format["[B] %2x %1", (GVAR(AllWoundInjuryTypes) select (_x select 1)) select 6, _amountOf], [0.88,0.7,0.65,1]];
2015-04-05 17:26:33 +00:00
} else {
// TODO localization
2015-04-07 18:19:32 +00:00
_allInjuryTexts pushback [format["[B] Partial %1", (GVAR(AllWoundInjuryTypes) select (_x select 1)) select 6], [0.88,0.7,0.65,1]];
2015-04-05 17:26:33 +00:00
};
};
};
}foreach _bandagedwounds;
2015-03-07 12:57:36 +00:00
} else {
2015-04-07 18:19:32 +00:00
_damaged = [true, true, true, true, true, true];
2015-03-12 06:34:29 +00:00
{
2015-03-19 20:14:42 +00:00
_selectionBloodLoss set [_forEachIndex, _target getHitPointDamage _x];
2015-03-07 12:57:36 +00:00
2015-04-14 18:28:19 +00:00
if (_target getHitPointDamage _x > 0 && {_forEachIndex == _selectionN}) then {
2015-04-14 18:40:17 +00:00
_pointDamage = _target getHitPointDamage _x;
_severity = switch (true) do {
case (_pointDamage > 0.5): {localize "STR_ACE_Medical_HeavilyWounded"};
case (_pointDamage > 0.1): {localize "STR_ACE_Medical_LightlyWounded"};
default {localize "STR_ACE_Medical_VeryLightlyWounded"};
};
_part = localize ([
"STR_ACE_Medical_Head",
"STR_ACE_Medical_Torso",
"STR_ACE_Medical_LeftArm",
"STR_ACE_Medical_RightArm",
"STR_ACE_Medical_LeftLeg",
"STR_ACE_Medical_RightLeg"
] select _forEachIndex);
_allInjuryTexts pushBack [format ["%1 %2", _severity, toLower _part], [1,1,1,1]];
2015-03-19 20:31:56 +00:00
};
} forEach ["HitHead", "HitBody", "HitLeftArm", "HitRightArm", "HitLeftLeg", "HitRightLeg"];
2015-03-07 12:57:36 +00:00
};
// Handle the body image coloring
2015-04-07 18:19:32 +00:00
2015-03-07 12:57:36 +00:00
_availableSelections = [50,51,52,53,54,55];
{
private ["_red", "_green", "_blue"];
_total = _x;
_red = 1;
_green = 1;
_blue = 1;
2015-04-07 18:19:32 +00:00
if (_total > 0) then {
if (_damaged select _forEachIndex) then {
_green = (0.9 - _total) max 0;
_blue = _green;
} else {
_green = (0.9 - _total) max 0;
_red = _green;
//_blue = _green;
2015-03-07 12:57:36 +00:00
};
};
(_display displayCtrl (_availableSelections select _foreachIndex)) ctrlSetTextColor [_red, _green, _blue, 1.0];
}foreach _selectionBloodLoss;
_lbCtrl = (_display displayCtrl 200);
lbClear _lbCtrl;
{
_lbCtrl lbAdd (_x select 0);
_lbCtrl lbSetColor [_foreachIndex, _x select 1];
}foreach _genericMessages;
2015-04-07 18:19:32 +00:00
_amountOfGeneric = count _genericMessages;
2015-03-07 12:57:36 +00:00
{
2015-04-05 17:26:33 +00:00
_lbCtrl lbAdd (_x select 0);
2015-04-07 18:19:32 +00:00
_lbCtrl lbSetColor [_foreachIndex + _amountOfGeneric, _x select 1];
2015-03-07 12:57:36 +00:00
}foreach _allInjuryTexts;
2015-04-03 18:26:24 +00:00
if (count _allInjuryTexts == 0) then {
2015-04-26 07:36:51 +00:00
_lbCtrl lbAdd (localize "STR_ACE_Medical_NoInjuriesBodypart");
2015-03-07 12:57:36 +00:00
};
_logCtrl = (_display displayCtrl 302);
lbClear _logCtrl;
private ["_logs", "_log", "_message", "_moment", "_arguments", "_lbCtrl"];
2015-04-03 19:03:22 +00:00
_logs = _target getvariable [QGVAR(logFile_Activity), []];
2015-03-07 12:57:36 +00:00
{
2015-04-03 19:03:22 +00:00
// [_message,_moment,_type, _arguments]
_message = _x select 0;
_moment = _x select 1;
_arguments = _x select 3;
if (isLocalized _message) then {
_message = localize _message;
};
2015-03-07 12:57:36 +00:00
{
2015-04-03 19:03:22 +00:00
if (typeName _x == "STRING" && {isLocalized _x}) then {
_arguments set [_foreachIndex, localize _x];
2015-03-07 12:57:36 +00:00
};
2015-04-03 19:03:22 +00:00
}foreach _arguments;
_message = format([_message] + _arguments);
_logCtrl lbAdd format["%1 %2", _moment, _message];
2015-03-07 12:57:36 +00:00
}foreach _logs;
_triageStatus = [_target] call FUNC(getTriageStatus);
(_display displayCtrl 303) ctrlSetText (_triageStatus select 0);
(_display displayCtrl 303) ctrlSetBackgroundColor (_triageStatus select 2);
2015-04-06 17:43:27 +00:00
}, 0, [_target, GVAR(currentSelectedSelectionN)]] call CBA_fnc_addPerFrameHandler;
2015-03-01 15:04:53 +00:00
} else {
2015-03-07 12:57:36 +00:00
("ACE_MedicalRscDisplayInformation" call BIS_fnc_rscLayer) cutText ["","PLAIN"];
2015-03-12 06:34:29 +00:00
};