mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
6ec0859f85
Can't show minimap display in turret view (cameraView = "gunner"), but can bring up the interactive dialog
38 lines
987 B
Plaintext
38 lines
987 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Tests if the dagr can be shown in a mode
|
|
*
|
|
* Arguments:
|
|
* The display mode to test showing <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* [mode] call ace_microdagr_fnc_canShow
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PARAMS_1(_showType);
|
|
|
|
private ["_returnValue"];
|
|
|
|
_returnValue = false;
|
|
|
|
switch (_showType) do {
|
|
case (DISPLAY_MODE_CLOSED): {_returnValue = true}; //Can always close
|
|
case (DISPLAY_MODE_HIDDEN): {_returnValue = true}; //Can always hide
|
|
|
|
case (DISPLAY_MODE_DIALOG): {
|
|
_returnValue = ("ACE_microDAGR" in (items ACE_player)) && {[ACE_player, objNull, ["notOnMap", "isNotInside"]] call EFUNC(common,canInteractWith)};
|
|
};
|
|
case (DISPLAY_MODE_DISPLAY): {
|
|
//Can't have minimap up while zoomed in
|
|
_returnValue = (cameraview != "GUNNER") && {"ACE_microDAGR" in (items ACE_player)} && {[ACE_player, objNull, ["notOnMap", "isNotInside"]] call EFUNC(common,canInteractWith)};
|
|
};
|
|
};
|
|
|
|
_returnValue
|