ACE3/addons/atragmx/functions/fnc_toggle_target_range_assist.sqf

48 lines
986 B
Plaintext
Raw Normal View History

/*
* Author: Ruthberg
* Toggles the target range assist screen on/off
*
* Arguments:
* Nothing
*
* Return Value:
* Nothing
*
* Example:
* call ace_atragmx_fnc_toggle_target_range_assist
*
* Public: No
*/
#include "script_component.hpp"
#define _dsp (uiNamespace getVariable "ATragMX_Display")
if (ctrlVisible 7000) then
{
2015-04-11 12:51:40 +00:00
false call FUNC(show_target_range_assist);
true call FUNC(show_main_page);
2015-04-07 20:44:26 +00:00
if (_this == 1) then
{
ctrlSetText [320, Str(parseNumber(ctrlText 7012))];
ctrlSetText [340, Str(parseNumber(ctrlText 7013))];
};
} else
{
2015-04-11 12:51:40 +00:00
false call FUNC(show_main_page);
true call FUNC(show_target_range_assist);
2015-04-07 20:44:26 +00:00
ctrlSetFocus (_dsp displayCtrl 7018);
ctrlSetText [7012, Str(parseNumber(ctrlText 320))];
ctrlSetText [7013, Str(parseNumber(ctrlText 340))];
2015-04-08 09:05:28 +00:00
if (GVAR(currentUnit) != 2) then
2015-04-07 20:44:26 +00:00
{
ctrlSetText [7016, "Yards"];
} else
{
ctrlSetText [7016, "Meters"];
};
};