PhysPreset Asset: Difference between revisions

From COD Engine Research
mNo edit summary
 
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
[[Category:BO1]]
[[Category:BO1]]
[[Category:BO2]]
[[Category:BO2]]
[[Category:BO3]]
The PhysPreset asset controls the settings on dynamic objects. Any environmental object that moves from a gunshot or explosion has a physpreset to handle the force. The physpreset has existed in every CoD from the earliest Call of Duty 4 Alpha all the way to Ghosts, and it has changed very little.  
The PhysPreset asset controls the settings on dynamic objects. Any environmental object that moves from a gunshot or explosion has a physpreset to handle the force. The physpreset has existed in every CoD from the earliest Call of Duty 4 Alpha all the way to Ghosts, and it has changed very little.  
== Call of Duty 4 & Modern Warfare 2 ==
== Call of Duty 4 & Modern Warfare 2 ==
Line 51: Line 52:
#pragma pack(pop)
#pragma pack(pop)
</syntaxhighlight>
</syntaxhighlight>
== Black Ops 1 & 2 ==
== Black Ops 1 & 2 & 3 ==
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">
enum PhysPresetScaling
{
  PHYSPRESET_SCALING_LINEAR = 0x0,
  PHYSPRESET_SCALING_QUADRATIC = 0x1,
  PHYSPRESET_SCALING_COUNT = 0x2,
};
#pragma pack(push, 4)
#pragma pack(push, 4)
struct PhysPreset
struct PhysPreset
{
{
   const char *name;
   const char *name;
   int type;
   int flags;
   float mass;
   float mass;
   float bounce;
   float bounce;
   float friction;
   float friction;
#ifdef BO3
  float damping_linear;
  float damping_angular;
#endif
   float bulletForceScale;
   float bulletForceScale;
   float explosiveForceScale;
   float explosiveForceScale;
   const char *sndAliasPrefix;
   const char *sndAliasPrefix;
#ifndef BO3
   float piecesSpreadFraction;
   float piecesSpreadFraction;
   float piecesUpwardVelocity;
   float piecesUpwardVelocity;
  float minMomentum;
#endif
   float maxMomentum;
   int canFloat;
   float minVolume;
   float gravityScale;
   float maxVolume;
   vec3_t centerOfMassOffset;
   float minPitch;
   vec3_t buoyancyBoxMin;
   float maxPitch;
   vec3_t buoyancyBoxMax;
  PhysPresetScaling volumeType;
#ifdef BO3
   PhysPresetScaling pitchType;
   FxEffectDef * trailFX;
   bool tempDefaultToCylinder;
   FxImpactTable * impactsFXTable;
   bool perSurfaceSndAlias;
   SoundsImpactTable * impactsSoundsTable;
};
#endif
};
};
#pragma pack(pop)
#pragma pack(pop)
Line 109: Line 108:
== Ghosts ==
== Ghosts ==
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">
#pragma pack(push, 4)
enum PhysPresetScaling
struct PhysPreset
{
  PHYSPRESET_SCALING_LINEAR = 0x0,
  PHYSPRESET_SCALING_QUADRATIC = 0x1,
  PHYSPRESET_SCALING_COUNT = 0x2,
};
 
struct __declspec(align(8)) PhysPreset
{
{
   const char *name;
   const char *name;
Line 133: Line 138:
   bool perSurfaceSndAlias;
   bool perSurfaceSndAlias;
};
};
#pragma pack(pop)
</syntaxhighlight>
</syntaxhighlight>



Latest revision as of 22:43, 1 September 2015

The PhysPreset asset controls the settings on dynamic objects. Any environmental object that moves from a gunshot or explosion has a physpreset to handle the force. The physpreset has existed in every CoD from the earliest Call of Duty 4 Alpha all the way to Ghosts, and it has changed very little.

Call of Duty 4 & Modern Warfare 2

#pragma pack(push, 4)
struct PhysPreset
{
  const char *name;
  int type;
  float mass;
  float bounce;
  float friction;
  float bulletForceScale;
  float explosiveForceScale;
  const char *sndAliasPrefix;
  float piecesSpreadFraction;
  float piecesUpwardVelocity;
  bool tempDefaultToCylinder;
};
#pragma pack(pop)

Type

The type has never been identified. Changing it appears to alter nothing, and there are no instances of it being used.

World at War

#pragma pack(push, 4)
struct PhysPreset
{	
  const char *name;
  int type;
  float mass;
  float bounce;
  float friction;
  float bulletForceScale;	
  float explosiveForceScale;	
  const char *sndAliasPrefix;	
  float piecesSpreadFraction;	
  float piecesUpwardVelocity;	
  int bCanFloat;	
  float gravityScale;
};
#pragma pack(pop)

Black Ops 1 & 2 & 3

#pragma pack(push, 4)
struct PhysPreset
{
  const char *name;
  int flags;
  float mass;
  float bounce;
  float friction;
#ifdef BO3
  float damping_linear;
  float damping_angular;
#endif
  float bulletForceScale;
  float explosiveForceScale;
  const char *sndAliasPrefix;
#ifndef BO3
  float piecesSpreadFraction;
  float piecesUpwardVelocity;
#endif
  int canFloat;
  float gravityScale;
  vec3_t centerOfMassOffset;
  vec3_t buoyancyBoxMin;
  vec3_t buoyancyBoxMax;
#ifdef BO3
  FxEffectDef * trailFX;
  FxImpactTable * impactsFXTable;
  SoundsImpactTable * impactsSoundsTable;
#endif
};
#pragma pack(pop)

Modern Warfare 3

#pragma pack(push, 4)
struct PhysPreset
{	
  const char *name;	
  int type;	
  float mass;
  float bounce;
  float friction;	
  float bulletForceScale;	
  float explosiveForceScale;	
  const char *sndAliasPrefix;	
  float piecesSpreadFraction;	
  float piecesUpwardVelocity;
  int unknowns[7];
};
#pragma pack(pop)

Ghosts

enum PhysPresetScaling
{
  PHYSPRESET_SCALING_LINEAR = 0x0,
  PHYSPRESET_SCALING_QUADRATIC = 0x1,
  PHYSPRESET_SCALING_COUNT = 0x2,
};

struct __declspec(align(8)) PhysPreset
{
  const char *name;
  int type;
  float mass;
  float bounce;
  float friction;
  float bulletForceScale;
  float explosiveForceScale;
  const char *sndAliasPrefix;
  float piecesSpreadFraction;
  float piecesUpwardVelocity;
  float minMomentum;
  float maxMomentum;
  float minVolume;
  float maxVolume;
  float minPitch;
  float maxPitch;
  PhysPresetScaling volumeType;
  PhysPresetScaling pitchType;
  bool tempDefaultToCylinder;
  bool perSurfaceSndAlias;
};

Advanced Warfare

#pragma pack(push, 4)
struct PhysPreset
{	
  const char *name;	
  int type;	
  float mass;
  float bounce;
  float friction;	
  float bulletForceScale;	
  float explosiveForceScale;
  char unknown[4];
  const char *sndAliasPrefix;	
  float piecesSpreadFraction;	
  float piecesUpwardVelocity;
  int unknowns[9];
};
#pragma pack(pop)

Source Format

The physpreset source files are raw text files with no extension, located at "raw/physic/". They use the same format as many other assets, with each setting name and value separated by a back-slash. The first setting identifies the file, and for physpreset the identifier string is "PHYSIC". PhysPresets are unique because they're the only asset found so far with a setting in the source that doesn't have a setting in the asset. The physpreset source files include an extra setting, "isFrictionInfinity", a bool (At least on IW games, on Treyarch games it has been added). If it is 1, then the source file's friction will say it is 0.5, but once compiled the actual friction will be 340282346638528860000000000000000000000. For example, here is the CoD4 source for "brick" found at "raw/physic/brick".

PHYSIC\sndAliasPrefix\physics_brick\mass\5\friction\0.5\isFrictionInfinity\0\bounce\0.3\bulletForceScale\0.6\explosiveForceScale\0.12\piecesSpreadFraction\0\piecesUpwardVelocity\0\tempDefaultToCylinder\0