mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
9ef4371c18
* add nicer microdagr model * rename files (2 renames because of change in case (MicroDAGR -> microdagr) * reduce gloss, reduce dirt on screen * rotate model by 180° and use dummyweapon item model for better ground alignment when placing or dropping the microdagr
82 lines
3.3 KiB
C++
82 lines
3.3 KiB
C++
class CfgVehicles {
|
|
class Man;
|
|
class CAManBase: Man {
|
|
class ACE_SelfActions {
|
|
class ACE_Equipment {
|
|
class GVAR(configure) {
|
|
//Opens the dialog
|
|
displayName = CSTRING(configure);
|
|
condition = QUOTE(([DISPLAY_MODE_DIALOG] call FUNC(canShow)) && {GVAR(currentShowMode) != DISPLAY_MODE_DIALOG});
|
|
statement = QUOTE([DISPLAY_MODE_DIALOG] call FUNC(openDisplay));
|
|
icon = QPATHTOF(UI\icon_microDAGR.paa);
|
|
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
|
|
class GVAR(show) {
|
|
//Opens the mini map
|
|
displayName = CSTRING(show);
|
|
condition = QUOTE(([DISPLAY_MODE_DISPLAY] call FUNC(canShow)) && {GVAR(currentShowMode) != DISPLAY_MODE_DISPLAY});
|
|
statement = QUOTE([DISPLAY_MODE_DISPLAY] call FUNC(openDisplay));
|
|
icon = QPATHTOF(UI\icon_microDAGR.paa);
|
|
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
|
|
};
|
|
class GVAR(close) {
|
|
displayName = CSTRING(closeUnit);
|
|
condition = QUOTE(GVAR(currentShowMode) != DISPLAY_MODE_CLOSED);
|
|
statement = QUOTE([DISPLAY_MODE_CLOSED] call FUNC(openDisplay));
|
|
icon = QPATHTOF(UI\icon_microDAGR.paa);
|
|
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
class ACE_Module;
|
|
class GVAR(dagrModule): ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE";
|
|
displayName = CSTRING(Module_DisplayName);
|
|
function = QFUNC(moduleMapFill);
|
|
scope = 1;
|
|
isGlobal = 1;
|
|
isSingular = 1;
|
|
icon = QPATHTOF(UI\Icon_Module_microDAGR_ca.paa);
|
|
functionPriority = 0;
|
|
class Arguments {
|
|
class MapDataAvailable {
|
|
displayName = CSTRING(MapDataAvailable_DisplayName);
|
|
description = CSTRING(MapDataAvailable_Description);
|
|
typeName = "NUMBER";
|
|
class values {
|
|
class Full {name = CSTRING(MapFill_Full); value = MAP_DETAIL_SAT; default = 1;};
|
|
class Roads {name = CSTRING(MapFill_OnlyRoads); value = MAP_DETAIL_TOPOROADS;};
|
|
class Disabled {name = CSTRING(MapFill_None); value = MAP_DETAIL_NONE;};
|
|
};
|
|
};
|
|
};
|
|
class ModuleDescription {
|
|
description = CSTRING(Module_Description);
|
|
};
|
|
};
|
|
|
|
class Box_NATO_Support_F;
|
|
class ACE_Box_Misc: Box_NATO_Support_F {
|
|
class TransportItems {
|
|
MACRO_ADDITEM(ACE_microDAGR,10);
|
|
};
|
|
};
|
|
|
|
class Item_Base_F;
|
|
class ACE_microDAGR_Item: Item_Base_F {
|
|
scope = 2;
|
|
scopeCurator = 2;
|
|
displayName = CSTRING(itemName);
|
|
author = ECSTRING(common,ACETeam);
|
|
icon = QPATHTOF(UI\icon_microDAGR.paa);
|
|
vehicleClass = "Items";
|
|
model = "\A3\Weapons_f\DummyWeapon.p3d";
|
|
class TransportItems {
|
|
MACRO_ADDITEM(ACE_microDAGR,1);
|
|
};
|
|
};
|
|
};
|