ACE3/addons/medical/functions/fnc_dropDownTriageCard.sqf

35 lines
681 B
Plaintext
Raw Normal View History

2015-03-10 20:12:35 +00:00
/*
* Author: Glowbal
* Display triage card for a unit
*
* Arguments:
2015-08-22 14:25:10 +00:00
* 0: Show <BOOL>
2015-03-10 20:12:35 +00:00
*
* Return Value:
2015-08-22 14:25:10 +00:00
* None
2015-03-10 20:12:35 +00:00
*
* Example:
* [true] call ace_medical_fnc_dropDownTriageCard
*
2015-03-10 20:12:35 +00:00
* Public: Yes
*/
#include "script_component.hpp"
2015-08-22 14:25:10 +00:00
params ["_show"];
2015-03-10 20:12:35 +00:00
disableSerialization;
private _display = uiNamespace getVariable QGVAR(triageCard);
2015-11-30 16:22:16 +00:00
if (isNil "_display") exitWith {};
2015-03-10 20:12:35 +00:00
private _pos = [0,0,0,0];
2015-03-10 20:12:35 +00:00
if (_show) then {
_pos = ctrlPosition (_display displayCtrl 2001);
2015-03-10 20:12:35 +00:00
};
2015-03-21 13:40:26 +00:00
for "_idc" from 2002 to 2006 step 1 do {
_pos set [1, (_pos select 1) + (_pos select 3)];
private _ctrl = (_display displayCtrl _idc);
_ctrl ctrlSetPosition _pos;
_ctrl ctrlCommit 0;
2015-03-10 20:12:35 +00:00
};