ACE3/addons/medical/functions/fnc_dropDownTriageCard.sqf

33 lines
639 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
*
* Public: Yes
*/
#include "script_component.hpp"
2015-08-22 14:25:10 +00:00
private ["_ctrl", "_display", "_idc", "_pos"];
params ["_show"];
2015-03-10 20:12:35 +00:00
disableSerialization;
_display = uiNamespace getvariable QGVAR(triageCard);
if (isnil "_display") exitwith {};
_pos = [0,0,0,0];
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)];
_ctrl = (_display displayCtrl _idc);
_ctrl ctrlSetPosition _pos;
_ctrl ctrlCommit 0;
2015-03-10 20:12:35 +00:00
};