Replaced all execVM calls with FUNC()

This commit is contained in:
ulteq 2015-04-11 14:51:40 +02:00
parent 9604699f26
commit d7a40bfba2
7 changed files with 34 additions and 34 deletions

View File

@ -4,19 +4,19 @@
if (underwater ACE_player) exitWith { false };
if (!("ACE_ATragMX" in (uniformItems ACE_player)) && !("ACE_ATragMX" in (vestItems ACE_player))) exitWith { false };
execVM QUOTE(PATHTOF(functions\fnc_update_target_selection.sqf));
createDialog 'ATragMX_Display';
true execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
call FUNC(update_target_selection);
false execVM QUOTE(PATHTOF(functions\fnc_show_add_new_gun.sqf));
false execVM QUOTE(PATHTOF(functions\fnc_show_gun_list.sqf));
false execVM QUOTE(PATHTOF(functions\fnc_show_range_card.sqf));
false execVM QUOTE(PATHTOF(functions\fnc_show_range_card_setup.sqf));
false execVM QUOTE(PATHTOF(functions\fnc_show_target_range_assist.sqf));
false execVM QUOTE(PATHTOF(functions\fnc_show_target_speed_assist.sqf));
false execVM QUOTE(PATHTOF(functions\fnc_show_target_speed_assist_timer.sqf));
true call FUNC(show_main_page);
false call FUNC(show_add_new_gun);
false call FUNC(show_gun_list);
false call FUNC(show_range_card);
false call FUNC(show_range_card_setup);
false call FUNC(show_target_range_assist);
false call FUNC(show_target_speed_assist);
false call FUNC(show_target_speed_assist_timer);
{
lbAdd [6000, _x select 0];

View File

@ -4,8 +4,8 @@
if !(ctrlVisible 9000) then {
false execVM QUOTE(PATHTOF(functions\fnc_show_target_speed_assist.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_target_speed_assist_timer.sqf));
false call FUNC(show_target_speed_assist);
true call FUNC(show_target_speed_assist_timer);
ctrlSetFocus (_dsp displayCtrl 9002);
@ -21,8 +21,8 @@ if !(ctrlVisible 9000) then {
[] call FUNC(calculate_target_speed_assist);
false execVM QUOTE(PATHTOF(functions\fnc_show_target_speed_assist_timer.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_target_speed_assist.sqf));
false call FUNC(show_target_speed_assist_timer);
true call FUNC(show_target_speed_assist);
[_this select 1] call cba_fnc_removePerFrameHandler;
};

View File

@ -4,16 +4,16 @@
if (ctrlVisible 6000) then
{
false execVM QUOTE(PATHTOF(functions\fnc_show_gun_list.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
false call FUNC(show_gun_list);
true call FUNC(show_main_page);
if (_this) then {
(lbCurSel 6000) call FUNC(change_gun);
};
} else
{
false execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_gun_list.sqf));
false call FUNC(show_main_page);
true call FUNC(show_gun_list);
ctrlSetFocus (_dsp displayCtrl 6002);

View File

@ -4,12 +4,12 @@
if (ctrlVisible 5006) then
{
false execVM QUOTE(PATHTOF(functions\fnc_show_range_card.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
false call FUNC(show_range_card);
true call FUNC(show_main_page);
} else
{
false execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_range_card.sqf));
false call FUNC(show_main_page);
true call FUNC(show_range_card);
ctrlSetFocus (_dsp displayCtrl 5001);

View File

@ -4,8 +4,8 @@
if (ctrlVisible 10000) then
{
false execVM QUOTE(PATHTOF(functions\fnc_show_range_card_setup.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_range_card.sqf));
false call FUNC(show_range_card_setup);
true call FUNC(show_range_card);
if (_this == 1) then
{
@ -18,8 +18,8 @@ if (ctrlVisible 10000) then
};
} else
{
false execVM QUOTE(PATHTOF(functions\fnc_show_range_card.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_range_card_setup.sqf));
false call FUNC(show_range_card);
true call FUNC(show_range_card_setup);
ctrlSetFocus (_dsp displayCtrl 10006);

View File

@ -4,8 +4,8 @@
if (ctrlVisible 7000) then
{
false execVM QUOTE(PATHTOF(functions\fnc_show_target_range_assist.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
false call FUNC(show_target_range_assist);
true call FUNC(show_main_page);
if (_this == 1) then
{
@ -14,8 +14,8 @@ if (ctrlVisible 7000) then
};
} else
{
false execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_target_range_assist.sqf));
false call FUNC(show_main_page);
true call FUNC(show_target_range_assist);
ctrlSetFocus (_dsp displayCtrl 7018);

View File

@ -4,8 +4,8 @@
if (ctrlVisible 8000) then
{
false execVM QUOTE(PATHTOF(functions\fnc_show_target_speed_assist.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
false call FUNC(show_target_speed_assist);
true call FUNC(show_main_page);
if (_this == 1) then
{
@ -14,8 +14,8 @@ if (ctrlVisible 8000) then
};
} else
{
false execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
true execVM QUOTE(PATHTOF(functions\fnc_show_target_speed_assist.sqf));
false call FUNC(show_main_page);
true call FUNC(show_target_speed_assist);
ctrlSetFocus (_dsp displayCtrl 8012);