ACE3/addons/microdagr/CfgVehicles.hpp

77 lines
3.3 KiB
C++
Raw Normal View History

2015-03-09 18:52:15 +00:00
class CfgVehicles {
2015-03-18 18:46:39 +00:00
class Man;
class CAManBase: Man {
class ACE_SelfActions {
class ACE_Equipment {
class GVAR(show) {
//Opens the mini map
displayName = "$STR_ACE_microdagr_show";
condition = QUOTE(([DISPLAY_MODE_DISPLAY] call FUNC(canShow)) && {GVAR(currentShowMode) != DISPLAY_MODE_DISPLAY});
statement = QUOTE([DISPLAY_MODE_DISPLAY] call FUNC(openDisplay));
showDisabled = 0;
priority = 0.2;
2015-03-25 13:57:44 +00:00
icon = QUOTE(PATHTOF(UI\icon_microDAGR.paa));
exceptions[] = {"notOnMap"};
};
class GVAR(configure) {
//Opens the dialog
displayName = "$STR_ACE_microdagr_configure";
condition = QUOTE(([DISPLAY_MODE_DIALOG] call FUNC(canShow)) && {GVAR(currentShowMode) != DISPLAY_MODE_DIALOG});
statement = QUOTE([DISPLAY_MODE_DIALOG] call FUNC(openDisplay));
2015-03-18 18:46:39 +00:00
showDisabled = 0;
2015-03-18 18:50:27 +00:00
priority = 0.1;
2015-03-25 13:57:44 +00:00
icon = QUOTE(PATHTOF(UI\icon_microDAGR.paa));
exceptions[] = {"notOnMap"};
};
class GVAR(close) {
2015-03-18 18:46:39 +00:00
displayName = "$STR_ACE_microdagr_closeUnit";
condition = QUOTE(GVAR(currentShowMode) != DISPLAY_MODE_CLOSED);
statement = QUOTE([DISPLAY_MODE_CLOSED] call FUNC(openDisplay));
showDisabled = 0;
priority = 0.3;
2015-03-25 13:57:44 +00:00
icon = QUOTE(PATHTOF(UI\icon_microDAGR.paa));
exceptions[] = {"notOnMap"};
2015-03-18 18:46:39 +00:00
};
};
2015-03-09 18:52:15 +00:00
};
};
2015-03-18 18:46:39 +00:00
class Logic;
class Module_F: Logic {
class ArgumentsBaseUnits {};
class ModuleDescription {};
};
class GVAR(dagrModule): Module_F {
author = "$STR_ACE_Common_ACETeam";
category = "ACE";
displayName = "MicroDAGR Map Fill";
function = QFUNC(moduleMapFill);
scope = 2;
isGlobal = 1;
2015-03-25 05:32:08 +00:00
icon = QUOTE(PATHTOF(UI\Icon_Module_microDAGR_ca.paa));
2015-03-18 18:46:39 +00:00
functionPriority = 0;
class Arguments {
class MapDataAvailable {
displayName = "MicroDAGR Map Fill"; // Argument label
2015-03-25 05:32:08 +00:00
description = "How much map data is filled on MicroDAGR's "; // Tooltip description
2015-03-18 18:46:39 +00:00
typeName = "NUMBER"; // Value type, can be "NUMBER", "STRING" or "BOOL"
class values {
class None {name = "Full Satellite + Buildings"; value = MAP_DETAIL_SAT; default = 1;};
class Side {name = "Topographical + Roads"; value = MAP_DETAIL_TOPOROADS;};
class Unique {name = "None (Cannot use map view)"; value = MAP_DETAIL_NONE;};
};
};
};
class ModuleDescription: ModuleDescription {
2015-03-25 05:32:08 +00:00
description = "Controls how much data is filled on the microDAGR items. Less data restricts the map view to show less on the minimap.<br/>Source: microDAGR.pbo";
2015-03-18 18:46:39 +00:00
};
2015-03-09 18:52:15 +00:00
};
2015-03-25 05:06:04 +00:00
class Box_NATO_Support_F;
2015-03-25 05:05:06 +00:00
class ACE_Box_Misc: Box_NATO_Support_F {
class TransportItems {
MACRO_ADDITEM(ACE_microDAGR,10);
};
};
2015-03-09 18:52:15 +00:00
};