2015-04-11 21:40:46 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Toggles the target speed assist screen on/off
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_atragmx_fnc_toggle_target_speed_assist
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-04-06 13:51:59 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
#define _dsp (uiNamespace getVariable "ATragMX_Display")
|
|
|
|
|
|
|
|
if (ctrlVisible 8000) then
|
|
|
|
{
|
2015-04-11 12:51:40 +00:00
|
|
|
false call FUNC(show_target_speed_assist);
|
|
|
|
true call FUNC(show_main_page);
|
2015-04-07 20:44:26 +00:00
|
|
|
|
|
|
|
if (_this == 1) then
|
|
|
|
{
|
|
|
|
[] call FUNC(calculate_target_speed_assist);
|
|
|
|
ctrlSetText [330, Str(parseNumber(ctrlText 8007))];
|
|
|
|
};
|
2015-04-06 13:51:59 +00:00
|
|
|
} else
|
|
|
|
{
|
2015-04-11 12:51:40 +00:00
|
|
|
false call FUNC(show_main_page);
|
|
|
|
true call FUNC(show_target_speed_assist);
|
2015-04-07 20:44:26 +00:00
|
|
|
|
|
|
|
ctrlSetFocus (_dsp displayCtrl 8012);
|
|
|
|
|
2015-04-08 09:05:28 +00:00
|
|
|
ctrlSetText [8004, Str(Round((GVAR(targetRange) select GVAR(currentTarget))))];
|
2015-04-06 13:51:59 +00:00
|
|
|
|
2015-04-08 09:05:28 +00:00
|
|
|
if (GVAR(currentUnit) != 2) then
|
2015-04-07 20:44:26 +00:00
|
|
|
{
|
|
|
|
ctrlSetText [8008, "Yards"];
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
ctrlSetText [8008, "Meters"];
|
|
|
|
};
|
|
|
|
|
2015-04-08 09:05:28 +00:00
|
|
|
if (GVAR(currentUnit) != 1) then
|
2015-04-07 20:44:26 +00:00
|
|
|
{
|
|
|
|
ctrlSetText [8011, "m/s"];
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
ctrlSetText [8011, "mph"];
|
|
|
|
};
|
2015-04-06 13:51:59 +00:00
|
|
|
};
|