File size: 11,974 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 |
//!contents of this class will be transfered to client upon connecting, with the variables in either initial state as set through the 'InitServer..()' call, or replaced with contents of the json configuration file if such file is both present and reading is enabled in server.cfg
class CfgGameplayJson
{
int version = -1;
//! Obsolete, 'InitServer' on individual json items is now called centrally
void InitServer()
{
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
ref ITEM_GeneralData GeneralData = new ITEM_GeneralData;
ref ITEM_PlayerData PlayerData = new ITEM_PlayerData;
ref ITEM_WorldData WorldsData = new ITEM_WorldData;
ref ITEM_BaseBuildingData BaseBuildingData = new ITEM_BaseBuildingData;
ref ITEM_UIData UIData = new ITEM_UIData;
ref ITEM_MapData MapData = new ITEM_MapData;
};
class ITEM_DataBase
{
void ITEM_DataBase()
{
#ifdef SERVER
CfgGameplayHandler.RegisterItem(this);
#endif
}
bool ValidateServer()
{
return true;
}
void InitServer();
}
class ITEM_GeneralData : ITEM_DataBase
{
override void InitServer()
{
disableBaseDamage = GetGame().ServerConfigGetInt( "disableBaseDamage" );
disableContainerDamage = GetGame().ServerConfigGetInt( "disableContainerDamage" );
disableRespawnDialog = GetGame().ServerConfigGetInt("disableRespawnDialog");
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
bool disableBaseDamage;
bool disableContainerDamage;
bool disableRespawnDialog;
bool disableRespawnInUnconsciousness;
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_PlayerData : ITEM_DataBase
{
ref ITEM_StaminaData StaminaData = new ITEM_StaminaData;
ref ITEM_ShockHandlingData ShockHandlingData = new ITEM_ShockHandlingData;
ref ITEM_MovementData MovementData = new ITEM_MovementData;
ref ITEM_DrowningData DrowningData = new ITEM_DrowningData;
override void InitServer()
{
disablePersonalLight = GetGame().ServerConfigGetInt( "disablePersonalLight" );
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
bool disablePersonalLight;
bool disable2dMap;
ref TStringArray spawnGearPresetFiles;
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_ShockHandlingData : ITEM_DataBase
{
override void InitServer()
{
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
float shockRefillSpeedConscious = PlayerConstants.SHOCK_REFILL_CONSCIOUS_SPEED;
float shockRefillSpeedUnconscious = PlayerConstants.SHOCK_REFILl_UNCONSCIOUS_SPEED;
bool allowRefillSpeedModifier = true;
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_StaminaData : ITEM_DataBase
{
override void InitServer()
{
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
float staminaWeightLimitThreshold = GameConstants.STAMINA_WEIGHT_LIMIT_THRESHOLD;
float staminaMax = GameConstants.STAMINA_MAX;
float staminaKgToStaminaPercentPenalty = GameConstants.STAMINA_KG_TO_STAMINAPERCENT_PENALTY;
float staminaMinCap = GameConstants.STAMINA_MIN_CAP;
float sprintStaminaModifierErc = 1;//consumption of stamina during standing sprint modification
float sprintStaminaModifierCro = 1;//consumption of stamina during crouched sprint modification
float sprintSwimmingStaminaModifier = 1;//consumption of stamina during swimming sprint modification
float sprintLadderStaminaModifier = 1;//consumption of stamina during climbing sprint modification
float meleeStaminaModifier = 1;//consumption of stamina during melee attacks and evasion modification
float obstacleTraversalStaminaModifier = 1;// vaulting and climbing stamina consumption modification
float holdBreathStaminaModifier = 1;// hold breath stamina consumption modification
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_MovementData : ITEM_DataBase
{
override void InitServer()
{
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
float timeToStrafeJog = 0.1;
float rotationSpeedJog = 0.15;
float timeToSprint = 0.45;
float timeToStrafeSprint = 0.3;
float rotationSpeedSprint = 0.15;
bool allowStaminaAffectInertia = 1;
}
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_WorldData : ITEM_DataBase
{
override void InitServer()
{
lightingConfig = GetGame().ServerConfigGetInt( "lightingConfig" );
wetnessWeightModifiers = {GameConstants.WEIGHT_DRY,GameConstants.WEIGHT_DAMP,GameConstants.WEIGHT_WET,GameConstants.WEIGHT_SOAKING_WET,GameConstants.WEIGHT_DRENCHED};
}
override bool ValidateServer()
{
if (!wetnessWeightModifiers || wetnessWeightModifiers.Count() != 5)
{
return false;
}
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
int lightingConfig;
ref array<string> objectSpawnersArr;
ref array<float> environmentMinTemps;
ref array<float> environmentMaxTemps;
ref array<float> wetnessWeightModifiers = {GameConstants.WEIGHT_DRY,GameConstants.WEIGHT_DAMP,GameConstants.WEIGHT_WET,GameConstants.WEIGHT_SOAKING_WET,GameConstants.WEIGHT_DRENCHED};
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_BaseBuildingData : ITEM_DataBase
{
override void InitServer()
{
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
ref ITEM_HologramData HologramData = new ITEM_HologramData;
ref ITEM_ConstructionData ConstructionData = new ITEM_ConstructionData;
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_HologramData : ITEM_DataBase
{
override void InitServer()
{
disallowedTypesInUnderground = new TStringSet();
disallowedTypesInUnderground.Insert("FenceKit");
disallowedTypesInUnderground.Insert("TerritoryFlagKit");
disallowedTypesInUnderground.Insert("WatchtowerKit");
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
bool disableIsCollidingBBoxCheck;
bool disableIsCollidingPlayerCheck;
bool disableIsClippingRoofCheck;
bool disableIsBaseViableCheck;
bool disableIsCollidingGPlotCheck;
bool disableIsCollidingAngleCheck;
bool disableIsPlacementPermittedCheck;
bool disableHeightPlacementCheck;
bool disableIsUnderwaterCheck;
bool disableIsInTerrainCheck;
ref TStringSet disallowedTypesInUnderground;
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_ConstructionData : ITEM_DataBase
{
override void InitServer()
{
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
bool disablePerformRoofCheck;
bool disableIsCollidingCheck;
bool disableDistanceCheck;
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
//! data for UI, in-game HUD, and similar
class ITEM_UIData : ITEM_DataBase
{
override void InitServer()
{
HitIndicationData.InitServer();
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
ref ITEM_HitIndicationData HitIndicationData = new ITEM_HitIndicationData;
bool use3DMap = false;
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_HitIndicationData : ITEM_DataBase
{
override void InitServer()
{
hitDirectionOverrideEnabled = false;
hitIndicationPostProcessEnabled = false;
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
//!!! all member variables must be defined in the .json file, otherwise they are treated as '0' value (unless that's what you want..)
bool hitDirectionOverrideEnabled = false;
int hitDirectionBehaviour = HitDirectionModes.STATIC;
int hitDirectionStyle = HitIndicatorType.SPLASH;
string hitDirectionIndicatorColorStr;
float hitDirectionMaxDuration = HitDirectionConstants.DURATION_BASE;
float hitDirectionBreakPointRelative = HitDirectionConstants.BREAKPOINT_BASE;
float hitDirectionScatter = HitDirectionConstants.SCATTER;
bool hitIndicationPostProcessEnabled = false;
};
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_MapData : ITEM_DataBase
{
override void InitServer()
{
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
bool ignoreMapOwnership = false;
bool ignoreNavItemsOwnership = false;
bool displayPlayerPosition = false;
bool displayNavInfo = true;
}
//--------------------------------------------------------------------------------------------------------------------------------------------------
class ITEM_DrowningData : ITEM_DataBase
{
override void InitServer()
{
}
override bool ValidateServer()
{
return true;
}
//-------------------------------------------------------------------------------------------------
//!!! all member variables must correspond with the cfggameplay.json file contents !!!!
float staminaDepletionSpeed = 10;
float healthDepletionSpeed = 10;
float shockDepletionSpeed = 10;
}
|