mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
/*
|
|
* Author: Rosuto, Ruthberg
|
|
* Toggles the DAGR overlay
|
|
*
|
|
* Arguments:
|
|
* Nothing
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
GVAR(run) = !GVAR(run);
|
|
|
|
if (GVAR(run)) then {
|
|
if (GVAR(menuRun) && dialog) then {
|
|
GVAR(menuRun) = false;
|
|
closeDialog 0;
|
|
};
|
|
GVAR(hidden) = true;
|
|
[{
|
|
params ["_args", "_idPFH"];
|
|
_args params ["_vehicle"];
|
|
if (!GVAR(run) || (!alive ACE_player) || (vehicle ACE_player != _vehicle)) exitWith {
|
|
GVAR(run) = false;
|
|
135471 cutText ["", "PLAIN"];
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
if (cameraView == "GUNNER") then {
|
|
if (!GVAR(hidden)) then {
|
|
GVAR(hidden) = true;
|
|
135471 cutText ["", "PLAIN"];
|
|
};
|
|
} else {
|
|
if (GVAR(hidden)) then {
|
|
GVAR(hidden) = false;
|
|
switch (toUpper GVAR(displaySelection)) do {
|
|
case "WP" : {
|
|
call FUNC(outputWP);
|
|
};
|
|
case "VECTOR" : {
|
|
call FUNC(outputVector);
|
|
};
|
|
case "DATA" : {
|
|
call FUNC(outputData);
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}, 0.1, [vehicle ACE_player]] call CBA_fnc_addPerFrameHandler;
|
|
};
|