mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
77 lines
2.4 KiB
Plaintext
77 lines
2.4 KiB
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Display triage card for a unit
|
|
*
|
|
* Arguments:
|
|
* 0: The unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* nil
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_target", "_show", "_amount", "_item", "_log", "_message", "_triageCardTexts", "_triageStatus"];
|
|
_target = _this select 0;
|
|
_show = if (count _this > 1) then {_this select 1} else {true};
|
|
|
|
GVAR(TriageCardTarget) = if (_show) then {_target} else {ObjNull};
|
|
|
|
if (_show) then {
|
|
//("ACE_MedicalTriageCard" call BIS_fnc_rscLayer) cutRsc [QGVAR(triageCard),"PLAIN"];
|
|
createDialog QGVAR(triageCard);
|
|
|
|
[{
|
|
private ["_target", "_display", "_alphaLevel", "_alphaLevel", "_lbCtrl"];
|
|
_target = (_this select 0) select 0;
|
|
if (GVAR(TriageCardTarget) != _target) exitwith {
|
|
[_this select 1] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
disableSerialization;
|
|
_display = uiNamespace getvariable QGVAR(triageCard);
|
|
if (isnil "_display") exitwith {
|
|
[_this select 1] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
_triageCardTexts = [];
|
|
|
|
// TODO fill the lb with the appropiate information for the patient
|
|
_lbCtrl = (_display displayCtrl 200);
|
|
lbClear _lbCtrl;
|
|
|
|
_log = _target getvariable [QGVAR(triageCard), []];
|
|
{
|
|
_item = _x select 0;
|
|
_amount = _x select 1;
|
|
_message = _item;
|
|
if (isClass(configFile >> "CfgWeapons" >> _item)) then {
|
|
_message = getText(configFile >> "CfgWeapons" >> _item >> "DisplayName");
|
|
} else {
|
|
if (isLocalized _message) then {
|
|
_message = localize _message;
|
|
};
|
|
};
|
|
_triageCardTexts pushback format["%1x - %2", _amount, _message];
|
|
}foreach _log;
|
|
|
|
if (count _triageCardTexts == 0) then {
|
|
_lbCtrl lbAdd (localize LSTRING(TriageCard_NoEntry));
|
|
};
|
|
{
|
|
_lbCtrl lbAdd _x;
|
|
}foreach _triageCardTexts;
|
|
|
|
_triageStatus = [_target] call FUNC(getTriageStatus);
|
|
(_display displayCtrl 2000) ctrlSetText (_triageStatus select 0);
|
|
(_display displayCtrl 2000) ctrlSetBackgroundColor (_triageStatus select 2);
|
|
|
|
}, 0, [_target]] call CBA_fnc_addPerFrameHandler;
|
|
|
|
} else {
|
|
//("ACE_MedicalTriageCard" call BIS_fnc_rscLayer) cutText ["","PLAIN"];
|
|
closeDialog 7010;
|
|
};
|