mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
First batch of settings files
Separating ACE_Settings.hpp from config.cpp
This commit is contained in:
parent
0b6f02f45e
commit
021679208b
6
addons/interaction/ACE_Settings.hpp
Normal file
6
addons/interaction/ACE_Settings.hpp
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
class ACE_Settings {
|
||||||
|
class GVAR(EnableTeamManagement) {
|
||||||
|
value = 1;
|
||||||
|
typeName = "BOOL";
|
||||||
|
};
|
||||||
|
};
|
@ -15,10 +15,4 @@ class CfgPatches {
|
|||||||
#include "CfgEventHandlers.hpp"
|
#include "CfgEventHandlers.hpp"
|
||||||
#include "CfgVehicles.hpp"
|
#include "CfgVehicles.hpp"
|
||||||
#include "Menu_Config.hpp"
|
#include "Menu_Config.hpp"
|
||||||
|
#include "ACE_Settings.hpp"
|
||||||
class ACE_Settings {
|
|
||||||
class GVAR(EnableTeamManagement) {
|
|
||||||
value = 1;
|
|
||||||
typeName = "BOOL";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
10
addons/inventory/ACE_Settings.hpp
Normal file
10
addons/inventory/ACE_Settings.hpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
class ACE_Settings {
|
||||||
|
class GVAR(inventoryDisplaySize) {
|
||||||
|
value = 0;
|
||||||
|
typeName = "SCALAR";
|
||||||
|
isClientSettable = 1;
|
||||||
|
displayName = "$STR_ACE_Inventory_SettingName";
|
||||||
|
description = "$STR_ACE_Inventory_SettingDescription";
|
||||||
|
values[] = {"$str_medium", "$str_large", "$str_very_large"};
|
||||||
|
};
|
||||||
|
};
|
@ -13,15 +13,4 @@ class CfgPatches {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#include "RscDisplayInventory.hpp"
|
#include "RscDisplayInventory.hpp"
|
||||||
|
#include "ACE_Settings.hpp"
|
||||||
class ACE_Settings {
|
|
||||||
class GVAR(inventoryDisplaySize) {
|
|
||||||
value = 0;
|
|
||||||
typeName = "SCALAR";
|
|
||||||
isClientSettable = 1;
|
|
||||||
displayName = "$STR_ACE_Inventory_SettingName";
|
|
||||||
description = "$STR_ACE_Inventory_SettingDescription";
|
|
||||||
values[] = {"$str_medium", "$str_large", "$str_very_large"};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
7
addons/microdagr/ACE_Settings.hpp
Normal file
7
addons/microdagr/ACE_Settings.hpp
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
class ACE_Settings {
|
||||||
|
class GVAR(MapDataAvailable) {
|
||||||
|
value = 2;
|
||||||
|
typeName = "SCALAR";
|
||||||
|
isClientSettable = 0;
|
||||||
|
};
|
||||||
|
};
|
@ -16,11 +16,4 @@ class CfgPatches {
|
|||||||
#include "CfgWeapons.hpp"
|
#include "CfgWeapons.hpp"
|
||||||
#include "CfgVehicles.hpp"
|
#include "CfgVehicles.hpp"
|
||||||
#include "gui.hpp"
|
#include "gui.hpp"
|
||||||
|
#include "ACE_Settings.hpp"
|
||||||
class ACE_Settings {
|
|
||||||
class GVAR(MapDataAvailable) {
|
|
||||||
value = 2;
|
|
||||||
typeName = "SCALAR";
|
|
||||||
isClientSettable = 0;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
8
addons/movement/ACE_Settings.hpp
Normal file
8
addons/movement/ACE_Settings.hpp
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
class ACE_Settings {
|
||||||
|
class GVAR(useImperial) {
|
||||||
|
value = 0;
|
||||||
|
typeName = "BOOL";
|
||||||
|
isClientSettable = 1;
|
||||||
|
displayName = "$STR_ACE_Movement_UseImperial";
|
||||||
|
};
|
||||||
|
};
|
@ -16,12 +16,4 @@ class CfgPatches {
|
|||||||
#include "CfgFatigue.hpp"
|
#include "CfgFatigue.hpp"
|
||||||
//#include "CfgInventoryGlobalVariable.hpp"
|
//#include "CfgInventoryGlobalVariable.hpp"
|
||||||
#include "CfgMoves.hpp"
|
#include "CfgMoves.hpp"
|
||||||
|
#include "ACE_Settings.hpp"
|
||||||
class ACE_Settings {
|
|
||||||
class GVAR(useImperial) {
|
|
||||||
value = 0;
|
|
||||||
typeName = "BOOL";
|
|
||||||
isClientSettable = 1;
|
|
||||||
displayName = "$STR_ACE_Movement_UseImperial";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
14
addons/vehiclelock/ACE_Settings.hpp
Normal file
14
addons/vehiclelock/ACE_Settings.hpp
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
class ACE_Settings {
|
||||||
|
class GVAR(DefaultLockpickStrength) {
|
||||||
|
value = 10;
|
||||||
|
typeName = "SCALAR";
|
||||||
|
};
|
||||||
|
class GVAR(LockVehicleInventory) {
|
||||||
|
value = 0;
|
||||||
|
typeName = "BOOL";
|
||||||
|
};
|
||||||
|
class GVAR(VehicleStartingLockState) {
|
||||||
|
value = -1;
|
||||||
|
typeName = "SCALAR";
|
||||||
|
};
|
||||||
|
};
|
@ -12,21 +12,7 @@ class CfgPatches {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
class ACE_Settings {
|
#include "ACE_Settings.hpp"
|
||||||
class GVAR(DefaultLockpickStrength) {
|
|
||||||
value = 10;
|
|
||||||
typeName = "SCALAR";
|
|
||||||
};
|
|
||||||
class GVAR(LockVehicleInventory) {
|
|
||||||
value = 0;
|
|
||||||
typeName = "BOOL";
|
|
||||||
};
|
|
||||||
class GVAR(VehicleStartingLockState) {
|
|
||||||
value = -1;
|
|
||||||
typeName = "SCALAR";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
#include "CfgEventHandlers.hpp"
|
#include "CfgEventHandlers.hpp"
|
||||||
#include "CfgMagazines.hpp"
|
#include "CfgMagazines.hpp"
|
||||||
#include "CfgVehicles.hpp"
|
#include "CfgVehicles.hpp"
|
||||||
|
9
addons/weaponselect/ACE_Settings.hpp
Normal file
9
addons/weaponselect/ACE_Settings.hpp
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
class ACE_Settings {
|
||||||
|
class GVAR(DisplayText) {
|
||||||
|
typeName = "BOOL";
|
||||||
|
isClientSettable = 1;
|
||||||
|
value = 1;
|
||||||
|
displayName = "$STR_ACE_Weaponselect_SettingDisplayTextName";
|
||||||
|
description = "$STR_ACE_Weaponselect_SettingDisplayTextDesc";
|
||||||
|
};
|
||||||
|
};
|
@ -13,13 +13,4 @@ class CfgPatches {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#include "CfgEventHandlers.hpp"
|
#include "CfgEventHandlers.hpp"
|
||||||
|
#include "ACE_Settings.hpp"
|
||||||
class ACE_Settings {
|
|
||||||
class GVAR(DisplayText) {
|
|
||||||
typeName = "BOOL";
|
|
||||||
isClientSettable = 1;
|
|
||||||
value = 1;
|
|
||||||
displayName = "$STR_ACE_Weaponselect_SettingDisplayTextName";
|
|
||||||
description = "$STR_ACE_Weaponselect_SettingDisplayTextDesc";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
Loading…
Reference in New Issue
Block a user