2015-04-11 21:40:46 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Toggles the target range assist screen on/off
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-04-17 22:11:53 +00:00
|
|
|
* update range? <NUMBER>
|
2015-04-11 21:40:46 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Example:
|
2015-04-17 22:11:53 +00:00
|
|
|
* 1 call ace_atragmx_fnc_toggle_target_range_assist
|
2015-04-11 21:40:46 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-04-06 13:51:59 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-04-17 22:11:53 +00:00
|
|
|
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
|
|
|
|
2015-04-17 22:11:53 +00:00
|
|
|
if (_this == 1) then {
|
2015-04-07 20:44:26 +00:00
|
|
|
ctrlSetText [320, Str(parseNumber(ctrlText 7012))];
|
2015-04-17 22:11:53 +00:00
|
|
|
ctrlSetText [140040, Str(parseNumber(ctrlText 7012))];
|
2015-04-07 20:44:26 +00:00
|
|
|
ctrlSetText [340, Str(parseNumber(ctrlText 7013))];
|
2015-04-17 22:11:53 +00:00
|
|
|
ctrlSetText [140060, Str(parseNumber(ctrlText 7013))];
|
|
|
|
[] call FUNC(calculate_target_solution);
|
2015-04-07 20:44:26 +00:00
|
|
|
};
|
2015-04-17 22:11:53 +00:00
|
|
|
} else {
|
2015-04-11 12:51:40 +00:00
|
|
|
false call FUNC(show_main_page);
|
|
|
|
true call FUNC(show_target_range_assist);
|
2015-04-06 13:51:59 +00:00
|
|
|
};
|