ACE3/addons/atragmx/functions/fnc_toggle_target_speed_assist.sqf

36 lines
857 B
Plaintext
Raw Normal View History

/*
* Author: Ruthberg
* Toggles the target speed assist screen on/off
*
* Arguments:
* update speed? <NUMBER>
*
* Return Value:
* Nothing
*
* Example:
* 1 call ace_atragmx_fnc_toggle_target_speed_assist
*
* Public: No
*/
#include "script_component.hpp"
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 {
2015-04-07 20:44:26 +00:00
[] call FUNC(calculate_target_speed_assist);
private ["_targetSpeed"];
_targetSpeed = parseNumber(ctrlText 8007);
if (_targetSpeed != 0) then {
ctrlSetText [330, Str(_targetSpeed)];
ctrlSetText [140050, Str(_targetSpeed)];
[] call FUNC(calculate_target_solution);
};
2015-04-07 20:44:26 +00:00
};
} else {
2015-04-11 12:51:40 +00:00
false call FUNC(show_main_page);
true call FUNC(show_target_speed_assist);
};