2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2017-06-08 13:31:51 +00:00
|
|
|
/*
|
2019-09-05 20:58:05 +00:00
|
|
|
* Author: esteldunedain, PabstMirror
|
|
|
|
* update gps display, called from main map's draw
|
2017-06-08 13:31:51 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2019-09-05 20:58:05 +00:00
|
|
|
* 0: Map ctrl <CONTROL>
|
2017-06-08 13:31:51 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2019-09-05 20:58:05 +00:00
|
|
|
* [findDisplay 12 displayCtrl 51] call ACE_maptools_fnc_openMapGpsUpdate;
|
2017-06-08 13:31:51 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-16 08:13:29 +00:00
|
|
|
|
2019-09-05 20:58:05 +00:00
|
|
|
params ["_mapCtrl"];
|
|
|
|
private _mapDisplay = ctrlParent _mapCtrl;
|
|
|
|
|
|
|
|
if ((!GVAR(mapGpsShow)) || {!(call FUNC(canUseMapGPS))}) exitWith {
|
|
|
|
(_mapDisplay displayCtrl 913589) ctrlShow false;
|
2015-01-16 08:13:29 +00:00
|
|
|
};
|
2019-09-05 20:58:05 +00:00
|
|
|
(_mapDisplay displayCtrl 913589) ctrlShow true;
|
|
|
|
|
|
|
|
if (CBA_missionTime < GVAR(mapGpsNextUpdate)) exitWith {};
|
|
|
|
GVAR(mapGpsNextUpdate) = CBA_missionTime + 0.5;
|
2015-01-16 08:13:29 +00:00
|
|
|
|
2019-09-05 20:58:05 +00:00
|
|
|
private _ctrl = _mapDisplay displayCtrl 913590;
|
2016-04-02 16:53:34 +00:00
|
|
|
_ctrl ctrlSetText str (round (getDir ACE_player)); // Set Heading
|
2019-09-05 20:58:05 +00:00
|
|
|
_ctrl = _mapDisplay displayCtrl 913591;
|
2016-04-02 16:53:34 +00:00
|
|
|
_ctrl ctrlSetText str (round ((getPosASL ACE_player) select 2) + EGVAR(common,mapAltitude)); // Set Altitude
|
2019-09-05 20:58:05 +00:00
|
|
|
_ctrl = _mapDisplay displayCtrl 913592;
|
2016-04-02 16:53:34 +00:00
|
|
|
_ctrl ctrlSetText mapGridPosition ACE_player; // Set grid cords
|