Skip to content

Commit dc6ecfe

Browse files
dump more
1 parent 94d1b38 commit dc6ecfe

File tree

3,012 files changed

+17111
-2316
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,012 files changed

+17111
-2316
lines changed

DumpSource2/commands.txt

+3,438
Large diffs are not rendered by default.

DumpSource2/convars.txt

+2,212-333
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
enum AnimParamButton_t : uint32_t
2+
{
3+
ANIMPARAM_BUTTON_NONE = 0,
4+
ANIMPARAM_BUTTON_DPAD_UP = 1,
5+
ANIMPARAM_BUTTON_DPAD_RIGHT = 2,
6+
ANIMPARAM_BUTTON_DPAD_DOWN = 3,
7+
ANIMPARAM_BUTTON_DPAD_LEFT = 4,
8+
ANIMPARAM_BUTTON_A = 5,
9+
ANIMPARAM_BUTTON_B = 6,
10+
ANIMPARAM_BUTTON_X = 7,
11+
ANIMPARAM_BUTTON_Y = 8,
12+
ANIMPARAM_BUTTON_LEFT_SHOULDER = 9,
13+
ANIMPARAM_BUTTON_RIGHT_SHOULDER = 10,
14+
ANIMPARAM_BUTTON_LTRIGGER = 11,
15+
ANIMPARAM_BUTTON_RTRIGGER = 12,
16+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
enum AnimParamNetworkSetting : uint32_t
2+
{
3+
Auto = 0,
4+
AlwaysNetwork = 1,
5+
NeverNetwork = 2,
6+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
enum AnimParamType_t : uint8_t
2+
{
3+
ANIMPARAM_UNKNOWN = 0,
4+
ANIMPARAM_BOOL = 1,
5+
ANIMPARAM_ENUM = 2,
6+
ANIMPARAM_INT = 3,
7+
ANIMPARAM_FLOAT = 4,
8+
ANIMPARAM_VECTOR = 5,
9+
ANIMPARAM_QUATERNION = 6,
10+
ANIMPARAM_GLOBALSYMBOL = 7,
11+
ANIMPARAM_COUNT = 8,
12+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
enum AnimPoseControl : uint32_t
2+
{
3+
NoPoseControl = 0,
4+
AbsolutePoseControl = 1,
5+
RelativePoseControl = 2,
6+
};

DumpSource2/schemas/animationsystem/AnimationDecodeDebugDumpElement_t.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ class AnimationDecodeDebugDumpElement_t
66
CUtlVector< CUtlString > m_decodeOps;
77
CUtlVector< CUtlString > m_internalOps;
88
CUtlVector< CUtlString > m_decodedAnims;
9-
}
9+
};

DumpSource2/schemas/animationsystem/AnimationDecodeDebugDump_t.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class AnimationDecodeDebugDump_t
22
{
33
AnimationProcessingType_t m_processingType;
44
CUtlVector< AnimationDecodeDebugDumpElement_t > m_elems;
5-
}
5+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
enum AnimationProcessingType_t : uint32_t
2+
{
3+
ANIMATION_PROCESSING_SERVER_SIMULATION = 0,
4+
ANIMATION_PROCESSING_CLIENT_SIMULATION = 1,
5+
ANIMATION_PROCESSING_CLIENT_PREDICTION = 2,
6+
ANIMATION_PROCESSING_CLIENT_INTERPOLATION = 3,
7+
ANIMATION_PROCESSING_CLIENT_RENDER = 4,
8+
ANIMATION_PROCESSING_MAX = 5,
9+
};

DumpSource2/schemas/animationsystem/AnimationSnapshotBase_t.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ class AnimationSnapshotBase_t
99
AnimationSnapshotType_t m_SnapshotType;
1010
bool m_bHasDecodeDump;
1111
AnimationDecodeDebugDumpElement_t m_DecodeDump;
12-
}
12+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
enum AnimationSnapshotType_t : uint32_t
2+
{
3+
ANIMATION_SNAPSHOT_SERVER_SIMULATION = 0,
4+
ANIMATION_SNAPSHOT_CLIENT_SIMULATION = 1,
5+
ANIMATION_SNAPSHOT_CLIENT_PREDICTION = 2,
6+
ANIMATION_SNAPSHOT_CLIENT_INTERPOLATION = 3,
7+
ANIMATION_SNAPSHOT_CLIENT_RENDER = 4,
8+
ANIMATION_SNAPSHOT_FINAL_COMPOSITE = 5,
9+
ANIMATION_SNAPSHOT_MAX = 6,
10+
};

DumpSource2/schemas/animationsystem/AnimationSnapshot_t.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class AnimationSnapshot_t : public AnimationSnapshotBase_t
22
{
33
int32 m_nEntIndex;
44
CUtlString m_modelName;
5-
}
5+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
enum BoneTransformSpace_t : uint32_t
2+
{
3+
BoneTransformSpace_Invalid = -1,
4+
BoneTransformSpace_Parent = 0,
5+
BoneTransformSpace_Model = 1,
6+
BoneTransformSpace_World = 2,
7+
};

DumpSource2/schemas/animationsystem/CAnimActivity.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ class CAnimActivity
44
int32 m_nActivity;
55
int32 m_nFlags;
66
int32 m_nWeight;
7-
}
7+
};

DumpSource2/schemas/animationsystem/CAnimBone.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ class CAnimBone
77
float32 m_scale;
88
QuaternionStorage m_qAlignment;
99
int32 m_flags;
10-
}
10+
};

DumpSource2/schemas/animationsystem/CAnimBoneDifference.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ class CAnimBoneDifference
55
Vector m_posError;
66
bool m_bHasRotation;
77
bool m_bHasMovement;
8-
}
8+
};

DumpSource2/schemas/animationsystem/CAnimData.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ class CAnimData
55
CUtlVector< CAnimDecoder > m_decoderArray;
66
int32 m_nMaxUniqueFrameIndex;
77
CUtlVector< CAnimFrameSegment > m_segmentArray;
8-
}
8+
};

DumpSource2/schemas/animationsystem/CAnimDataChannelDesc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ class CAnimDataChannelDesc
99
CUtlVector< CBufferString > m_szElementNameArray;
1010
CUtlVector< int32 > m_nElementIndexArray;
1111
CUtlVector< uint32 > m_nElementMaskArray;
12-
}
12+
};

DumpSource2/schemas/animationsystem/CAnimDecoder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ class CAnimDecoder
33
CBufferString m_szName;
44
int32 m_nVersion;
55
int32 m_nType;
6-
}
6+
};

DumpSource2/schemas/animationsystem/CAnimDesc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ class CAnimDesc
1515
CUtlVector< Vector > m_vecBoneWorldMin;
1616
CUtlVector< Vector > m_vecBoneWorldMax;
1717
CAnimSequenceParams m_sequenceParams;
18-
}
18+
};

DumpSource2/schemas/animationsystem/CAnimDesc_Flag.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ class CAnimDesc_Flag
88
bool m_bModelDoc;
99
bool m_bImplicitSeqIgnoreDelta;
1010
bool m_bAnimGraphAdditive;
11-
}
11+
};

DumpSource2/schemas/animationsystem/CAnimEncodeDifference.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ class CAnimEncodeDifference
77
CUtlVector< uint8 > m_bHasMovementBitArray;
88
CUtlVector< uint8 > m_bHasMorphBitArray;
99
CUtlVector< uint8 > m_bHasUserBitArray;
10-
}
10+
};

DumpSource2/schemas/animationsystem/CAnimEncodedFrames.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ class CAnimEncodedFrames
55
int32 m_nFramesPerBlock;
66
CUtlVector< CAnimFrameBlockAnim > m_frameblockArray;
77
CAnimEncodeDifference m_usageDifferences;
8-
}
8+
};
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
class CAnimEnum
22
{
33
uint8 m_value;
4-
}
4+
};

DumpSource2/schemas/animationsystem/CAnimEventDefinition.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ class CAnimEventDefinition
77
KeyValues3 m_EventData;
88
CBufferString m_sLegacyOptions;
99
CGlobalSymbol m_sEventName;
10-
}
10+
};

DumpSource2/schemas/animationsystem/CAnimFrameBlockAnim.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ class CAnimFrameBlockAnim
33
int32 m_nStartFrame;
44
int32 m_nEndFrame;
55
CUtlVector< int32 > m_segmentIndexArray;
6-
}
6+
};

DumpSource2/schemas/animationsystem/CAnimFrameSegment.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ class CAnimFrameSegment
44
uint32 m_nLocalElementMasks;
55
int32 m_nLocalChannel;
66
CUtlBinaryBlock m_container;
7-
}
7+
};

DumpSource2/schemas/animationsystem/CAnimKeyData.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ class CAnimKeyData
66
CUtlVector< CBufferString > m_morphArray;
77
int32 m_nChannelElements;
88
CUtlVector< CAnimDataChannelDesc > m_dataChannelArray;
9-
}
9+
};

DumpSource2/schemas/animationsystem/CAnimLocalHierarchy.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ class CAnimLocalHierarchy
66
int32 m_nPeakFrame;
77
int32 m_nTailFrame;
88
int32 m_nEndFrame;
9-
}
9+
};
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
class CAnimMorphDifference
22
{
33
CBufferString m_name;
4-
}
4+
};

DumpSource2/schemas/animationsystem/CAnimMovement.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ class CAnimMovement
77
float32 angle;
88
Vector vector;
99
Vector position;
10-
}
10+
};

DumpSource2/schemas/animationsystem/CAnimSequenceParams.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class CAnimSequenceParams
22
{
33
float32 m_flFadeInTime;
44
float32 m_flFadeOutTime;
5-
}
5+
};

DumpSource2/schemas/animationsystem/CAnimUser.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class CAnimUser
22
{
33
CBufferString m_name;
44
int32 m_nType;
5-
}
5+
};

DumpSource2/schemas/animationsystem/CAnimUserDifference.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class CAnimUserDifference
22
{
33
CBufferString m_name;
44
int32 m_nType;
5-
}
5+
};

DumpSource2/schemas/animationsystem/CAnimationGroup.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ class CAnimationGroup
88
CAnimKeyData m_decodeKey;
99
CUtlVector< CBufferString > m_szScripts;
1010
CUtlVector< CStrongHandleVoid > m_AdditionalExtRefs;
11-
}
11+
};

DumpSource2/schemas/animationsystem/CCompressorGroup.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ class CCompressorGroup
1717
CUtlVector< CCompressor< Color >* > m_colorCompressor;
1818
CUtlVector< CCompressor< Vector2D >* > m_vector2DCompressor;
1919
CUtlVector< CCompressor< Vector4D >* > m_vector4DCompressor;
20-
}
20+
};

DumpSource2/schemas/animationsystem/CMoodVData.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ class CMoodVData
33
CResourceNameTyped< CWeakHandle< InfoForResourceTypeCModel > > m_sModelName;
44
MoodType_t m_nMoodType;
55
CUtlVector< MoodAnimationLayer_t > m_animationLayers;
6-
}
6+
};

DumpSource2/schemas/animationsystem/CSeqAutoLayer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ class CSeqAutoLayer
77
float32 m_peak;
88
float32 m_tail;
99
float32 m_end;
10-
}
10+
};

DumpSource2/schemas/animationsystem/CSeqAutoLayerFlag.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ class CSeqAutoLayerFlag
88
bool m_bPose;
99
bool m_bFetchFrame;
1010
bool m_bSubtract;
11-
}
11+
};

DumpSource2/schemas/animationsystem/CSeqBoneMaskList.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ class CSeqBoneMaskList
55
CUtlVector< float32 > m_flBoneWeightArray;
66
float32 m_flDefaultMorphCtrlWeight;
77
CUtlVector< CUtlPair< CBufferString, float32 > > m_morphCtrlWeightArray;
8-
}
8+
};

DumpSource2/schemas/animationsystem/CSeqCmdLayer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ class CSeqCmdLayer
99
float32 m_flVar1;
1010
float32 m_flVar2;
1111
int16 m_nLineNumber;
12-
}
12+
};

DumpSource2/schemas/animationsystem/CSeqCmdSeqDesc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ class CSeqCmdSeqDesc
1212
CUtlVector< CAnimEventDefinition > m_eventArray;
1313
CUtlVector< CAnimActivity > m_activityArray;
1414
CUtlVector< CSeqPoseSetting > m_poseSettingArray;
15-
}
15+
};

DumpSource2/schemas/animationsystem/CSeqIKLock.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ class CSeqIKLock
44
float32 m_flAngleWeight;
55
int16 m_nLocalBone;
66
bool m_bBonesOrientedAlongPositiveX;
7-
}
7+
};

DumpSource2/schemas/animationsystem/CSeqMultiFetch.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ class CSeqMultiFetch
1010
bool m_bCalculatePoseParameters;
1111
bool m_bFixedBlendWeight;
1212
float32[2] m_flFixedBlendWeightVals;
13-
}
13+
};

DumpSource2/schemas/animationsystem/CSeqMultiFetchFlag.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ class CSeqMultiFetchFlag
66
bool m_b1D;
77
bool m_b2D;
88
bool m_b2D_TRI;
9-
}
9+
};

DumpSource2/schemas/animationsystem/CSeqPoseParamDesc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ class CSeqPoseParamDesc
55
float32 m_flEnd;
66
float32 m_flLoop;
77
bool m_bLooping;
8-
}
8+
};

DumpSource2/schemas/animationsystem/CSeqPoseSetting.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ class CSeqPoseSetting
88
bool m_bY;
99
bool m_bZ;
1010
int32 m_eType;
11-
}
11+
};

DumpSource2/schemas/animationsystem/CSeqS1SeqDesc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ class CSeqS1SeqDesc
1111
CBufferString m_LegacyKeyValueText;
1212
CUtlVector< CAnimActivity > m_activityArray;
1313
CUtlVector< CFootMotion > m_footMotion;
14-
}
14+
};

DumpSource2/schemas/animationsystem/CSeqScaleSet.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ class CSeqScaleSet
55
Vector m_vRootOffset;
66
CUtlVector< int16 > m_nLocalBoneArray;
77
CUtlVector< float32 > m_flBoneScaleArray;
8-
}
8+
};

DumpSource2/schemas/animationsystem/CSeqSeqDescFlag.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ class CSeqSeqDescFlag
1111
bool m_bLegacyCyclepose;
1212
bool m_bLegacyRealtime;
1313
bool m_bModelDoc;
14-
}
14+
};

DumpSource2/schemas/animationsystem/CSeqSynthAnimDesc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ class CSeqSynthAnimDesc
66
int16 m_nLocalBaseReference;
77
int16 m_nLocalBoneMask;
88
CUtlVector< CAnimActivity > m_activityArray;
9-
}
9+
};

DumpSource2/schemas/animationsystem/CSeqTransition.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class CSeqTransition
22
{
33
float32 m_flFadeInTime;
44
float32 m_flFadeOutTime;
5-
}
5+
};

DumpSource2/schemas/animationsystem/CSequenceGroupData.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ class CSequenceGroupData
1414
CUtlVector< CSeqPoseParamDesc > m_localPoseParamArray;
1515
KeyValues3 m_keyValues;
1616
CUtlVector< CSeqIKLock > m_localIKAutoplayLockArray;
17-
}
17+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
enum FootstepLandedFootSoundType_t : uint32_t
2+
{
3+
FOOTSOUND_Left = 0,
4+
FOOTSOUND_Right = 1,
5+
FOOTSOUND_UseOverrideSound = 2,
6+
};
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
class HSequence
22
{
33
int32 m_Value;
4-
}
4+
};

DumpSource2/schemas/animationsystem/MoodAnimationLayer_t.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ class MoodAnimationLayer_t
1212
CRangeFloat m_flEndOffset;
1313
float32 m_flFadeIn;
1414
float32 m_flFadeOut;
15-
}
15+
};

DumpSource2/schemas/animationsystem/MoodAnimation_t.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class MoodAnimation_t
22
{
33
CUtlString m_sName;
44
float32 m_flWeight;
5-
}
5+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
enum MoodType_t : uint32_t
2+
{
3+
eMoodType_Head = 0,
4+
eMoodType_Body = 1,
5+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
enum ParticleAttachment_t : uint32_t
2+
{
3+
PATTACH_INVALID = -1,
4+
PATTACH_ABSORIGIN = 0,
5+
PATTACH_ABSORIGIN_FOLLOW = 1,
6+
PATTACH_CUSTOMORIGIN = 2,
7+
PATTACH_CUSTOMORIGIN_FOLLOW = 3,
8+
PATTACH_POINT = 4,
9+
PATTACH_POINT_FOLLOW = 5,
10+
PATTACH_EYES_FOLLOW = 6,
11+
PATTACH_OVERHEAD_FOLLOW = 7,
12+
PATTACH_WORLDORIGIN = 8,
13+
PATTACH_ROOTBONE_FOLLOW = 9,
14+
PATTACH_RENDERORIGIN_FOLLOW = 10,
15+
PATTACH_MAIN_VIEW = 11,
16+
PATTACH_WATERWAKE = 12,
17+
PATTACH_CENTER_FOLLOW = 13,
18+
PATTACH_CUSTOM_GAME_STATE_1 = 14,
19+
PATTACH_HEALTHBAR = 15,
20+
MAX_PATTACH_TYPES = 16,
21+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
enum RagdollPoseControl : uint32_t
2+
{
3+
Absolute = 0,
4+
Relative = 1,
5+
};

0 commit comments

Comments
 (0)