mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Glowbal
|
|
* Display triage card for a unit
|
|
*
|
|
* Arguments:
|
|
* 0: The unit <OBJECT>
|
|
* 1: Show <BOOL> (default: true)
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [bob, true] call ace_medical_fnc_displayTriageCard
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
params ["_target", ["_show", 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);
|
|
|
|
[{
|
|
params ["_args", "_idPFH"];
|
|
_args params ["_target"];
|
|
if (GVAR(TriageCardTarget) != _target) exitWith {
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
disableSerialization;
|
|
private _display = uiNamespace getVariable QGVAR(triageCard);
|
|
if (isNil "_display") exitWith {
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
private _triageCardTexts = [];
|
|
|
|
// TODO fill the lb with the appropiate information for the patient
|
|
private _lbCtrl = (_display displayCtrl 200);
|
|
lbClear _lbCtrl;
|
|
|
|
private _log = _target getVariable [QGVAR(triageCard), []];
|
|
{
|
|
_x params ["_item", "_amount"];
|
|
private _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;
|
|
|
|
private _triageStatus = [_target] call FUNC(getTriageStatus);
|
|
_triageStatus params ["_text", "", "_color"];
|
|
|
|
(_display displayCtrl 2000) ctrlSetText _text;
|
|
(_display displayCtrl 2000) ctrlSetBackgroundColor _color;
|
|
|
|
}, 0, [_target]] call CBA_fnc_addPerFrameHandler;
|
|
|
|
} else {
|
|
//("ACE_MedicalTriageCard" call BIS_fnc_rscLayer) cutText ["","PLAIN"];
|
|
closeDialog 7010;
|
|
};
|