mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
55 lines
1.1 KiB
Plaintext
55 lines
1.1 KiB
Plaintext
/*
|
|
* 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
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
#define _dsp (uiNamespace getVariable "ATragMX_Display")
|
|
|
|
if (ctrlVisible 8000) then
|
|
{
|
|
false call FUNC(show_target_speed_assist);
|
|
true call FUNC(show_main_page);
|
|
|
|
if (_this == 1) then
|
|
{
|
|
[] call FUNC(calculate_target_speed_assist);
|
|
ctrlSetText [330, Str(parseNumber(ctrlText 8007))];
|
|
};
|
|
} else
|
|
{
|
|
false call FUNC(show_main_page);
|
|
true call FUNC(show_target_speed_assist);
|
|
|
|
ctrlSetFocus (_dsp displayCtrl 8012);
|
|
|
|
ctrlSetText [8004, Str(Round((GVAR(targetRange) select GVAR(currentTarget))))];
|
|
|
|
if (GVAR(currentUnit) != 2) then
|
|
{
|
|
ctrlSetText [8008, "Yards"];
|
|
} else
|
|
{
|
|
ctrlSetText [8008, "Meters"];
|
|
};
|
|
|
|
if (GVAR(currentUnit) != 1) then
|
|
{
|
|
ctrlSetText [8011, "m/s"];
|
|
} else
|
|
{
|
|
ctrlSetText [8011, "mph"];
|
|
};
|
|
};
|