2015-04-11 21:40:46 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Creates the ATragMX dialog
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_atragmx_create_dialog
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-04-06 13:51:59 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-05-26 10:32:37 +00:00
|
|
|
#define __dsp (uiNamespace getVariable "ATragMX_Display")
|
|
|
|
#define __ctrlBackground (__dsp displayCtrl 720000)
|
|
|
|
|
2015-05-09 20:09:36 +00:00
|
|
|
if (GVAR(active)) exitWith { false };
|
2015-04-06 19:11:02 +00:00
|
|
|
if (underwater ACE_player) exitWith { false };
|
|
|
|
if (!("ACE_ATragMX" in (uniformItems ACE_player)) && !("ACE_ATragMX" in (vestItems ACE_player))) exitWith { false };
|
2015-04-06 13:51:59 +00:00
|
|
|
|
|
|
|
createDialog 'ATragMX_Display';
|
|
|
|
|
2015-04-11 12:51:40 +00:00
|
|
|
call FUNC(update_target_selection);
|
|
|
|
|
2015-04-16 11:46:32 +00:00
|
|
|
GVAR(showMainPage) call FUNC(show_main_page);
|
2015-04-06 13:51:59 +00:00
|
|
|
|
2015-04-16 11:46:32 +00:00
|
|
|
GVAR(showAddNewGun) call FUNC(show_add_new_gun);
|
2015-04-17 22:11:53 +00:00
|
|
|
GVAR(showAtmoEnvData) call FUNC(show_atmo_env_data);
|
|
|
|
GVAR(showGunAmmoData) call FUNC(show_gun_ammo_data);
|
2015-04-16 11:46:32 +00:00
|
|
|
GVAR(showGunList) call FUNC(show_gun_list);
|
|
|
|
GVAR(showRangeCard) call FUNC(show_range_card);
|
|
|
|
if (GVAR(showRangeCard)) then {
|
2015-04-16 17:52:20 +00:00
|
|
|
ctrlSetFocus ((uiNamespace getVariable "ATragMX_Display") displayCtrl 5001);
|
2015-04-16 11:46:32 +00:00
|
|
|
[] call FUNC(update_range_card);
|
|
|
|
};
|
|
|
|
GVAR(showRangeCardSetup) call FUNC(show_range_card_setup);
|
2015-04-21 13:01:23 +00:00
|
|
|
GVAR(showSolutionSetup) call FUNC(show_solution_setup);
|
2015-04-17 22:11:53 +00:00
|
|
|
GVAR(showTargetData) call FUNC(show_target_data);
|
2015-04-16 11:46:32 +00:00
|
|
|
GVAR(showTargetRangeAssist) call FUNC(show_target_range_assist);
|
|
|
|
GVAR(showTargetSpeedAssist) call FUNC(show_target_speed_assist);
|
|
|
|
GVAR(showTargetSpeedAssistTimer) call FUNC(show_target_speed_assist_timer);
|
2015-04-06 13:51:59 +00:00
|
|
|
|
2015-04-19 15:40:49 +00:00
|
|
|
[GVAR(currentGun), false, true] call FUNC(change_gun);
|
2015-04-19 08:47:43 +00:00
|
|
|
|
2015-04-06 13:51:59 +00:00
|
|
|
{
|
2015-04-07 20:44:26 +00:00
|
|
|
lbAdd [6000, _x select 0];
|
2015-04-08 09:05:28 +00:00
|
|
|
} forEach GVAR(gunList);
|
2015-04-06 13:51:59 +00:00
|
|
|
|
2015-05-09 19:41:01 +00:00
|
|
|
GVAR(active) = true;
|
|
|
|
|
2015-05-26 10:32:37 +00:00
|
|
|
GVAR(DialogPFH) = [{
|
|
|
|
if (!GVAR(active)) exitWith {
|
|
|
|
[_this select 1] call cba_fnc_removePerFrameHandler;
|
|
|
|
};
|
|
|
|
__ctrlBackground ctrlSetText format [QUOTE(PATHTOF(UI\ATRAG_%1.paa)), ["N", "D"] select (call EFUNC(common,ambientBrightness))];
|
2015-08-04 07:34:31 +00:00
|
|
|
}, 60, []] call CBA_fnc_addPerFrameHandler;
|
2015-05-26 10:32:37 +00:00
|
|
|
|
2015-04-06 13:51:59 +00:00
|
|
|
true
|