visibleMap: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "<sqf>([^↵][^<]*↵[^<]*)<\/sqf>" to "<sqf> $1 </sqf>") |
||
(12 intermediate revisions by 2 users not shown) | |||
Line 17: | Line 17: | ||
|gr2= Interaction | |gr2= Interaction | ||
|descr= Return true if the main map is shown (active). | |descr= Return true if the main map is shown (active). In {{arma3}} it also returns true if the respawn screen map is visible. | ||
|s1= [[visibleMap]] | |s1= [[visibleMap]] | ||
Line 23: | Line 23: | ||
|r1= [[Boolean]] | |r1= [[Boolean]] | ||
|x1= < | |x1= <sqf>if (visibleMap) then {hint "You're showing the map !"};</sqf> | ||
|seealso= [[forceMap]] [[openMap]] | |seealso= [[forceMap]] [[openMap]] | ||
Line 37: | Line 37: | ||
Some of these cases can be covered with an [[addMissionEventHandler]] of type "Map". | Some of these cases can be covered with an [[addMissionEventHandler]] of type "Map". | ||
Just use the two magic variables 'mapIsOpened' and 'mapIsForced'. Skeleton might look something like: | Just use the two magic variables 'mapIsOpened' and 'mapIsForced'. Skeleton might look something like: | ||
< | <sqf> | ||
// update marker as long as map is open (works for uav stations as well) | |||
J_myGPSEH = addMissionEventHandler ["Map", { | J_myGPSEH = addMissionEventHandler ["Map", { | ||
Line 48: | Line 49: | ||
// no sheduled environment -> create one | // no sheduled environment -> create one | ||
/* Triggered when map is opened or closed either by user action or script command openMap. */ | |||
0 spawn { | |||
waitUntil { | |||
// ... // do something as long as map is open | // ... // do something as long as map is open | ||
not J_var_GPSOn | |||
}; | }; | ||
}; | }; | ||
} | } else { | ||
J_var_GPSOn = | J_var_GPSOn = false; | ||
systemChat "GPS inactive"; | |||
}; | }; | ||
}];</ | }]; | ||
</sqf> | |||
</dd> | </dd> | ||
</dl> | </dl> |
Latest revision as of 19:43, 3 September 2024
Description
- Description:
- Return true if the main map is shown (active). In Arma 3 it also returns true if the respawn screen map is visible.
- Groups:
- MapInteraction
Syntax
- Syntax:
- visibleMap
- Return Value:
- Boolean
Examples
- Example 1:
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on 13 November 2017
- James
-
visibleMap does not work in all cases where a map might be part of a dialog like in a uav terminal or in a artillery computer dialog.
Some of these cases can be covered with an addMissionEventHandler of type "Map".
Just use the two magic variables 'mapIsOpened' and 'mapIsForced'. Skeleton might look something like:
// update marker as long as map is open (works for uav stations as well) J_myGPSEH = addMissionEventHandler ["Map", { params ["_mapIsOpened", "_mapIsForced"]; if (_mapIsOpened) then { systemChat "GPS active"; J_var_GPSOn = true; // no sheduled environment -> create one /* Triggered when map is opened or closed either by user action or script command openMap. */ 0 spawn { waitUntil { // ... // do something as long as map is open not J_var_GPSOn }; }; } else { J_var_GPSOn = false; systemChat "GPS inactive"; }; }];