Fix for latest game update

This commit is contained in:
a2x
2024-05-24 11:30:54 +10:00
parent dd7299729a
commit 3f6c894097
76 changed files with 31851 additions and 24923 deletions

View File

@@ -1,14 +1,25 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2024-05-23 01:29:07.135665300 UTC
// 2024-05-24 01:30:25.777667800 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
pub mod cs2_dumper {
pub mod schemas {
// Module: pulse_system.dll
// Classes count: 85
// Enums count: 7
// Classes count: 108
// Enums count: 9
pub mod pulse_system_dll {
// Alignment: 4
// Members count: 6
#[repr(u32)]
pub enum EPulseGraphExecutionHistoryFlag {
NO_FLAGS = 0x0,
CURSOR_ADD_TAG = 0x1,
CURSOR_REMOVE_TAG = 0x2,
CURSOR_RETIRED = 0x4,
REQUIREMENT_PASS = 0x8,
REQUIREMENT_FAIL = 0x10
}
// Alignment: 4
// Members count: 3
#[repr(u32)]
@@ -25,15 +36,16 @@ pub mod cs2_dumper {
ASYNC_FIRE_AND_FORGET = 0x1
}
// Alignment: 4
// Members count: 3
// Members count: 4
#[repr(u32)]
pub enum PulseCursorExecResult_t {
Succeeded = 0x0,
Canceled = 0x1,
Failed = 0x2
Failed = 0x2,
OngoingNotify = 0x3
}
// Alignment: 4
// Members count: 19
// Members count: 20
#[repr(u32)]
pub enum PulseValueType_t {
PVAL_INVALID = u32::MAX,
@@ -48,16 +60,17 @@ pub mod cs2_dumper {
PVAL_RESOURCE = 0x8,
PVAL_SNDEVT_GUID = 0x9,
PVAL_ENTITY_NAME = 0xA,
PVAL_SCHEMA_PTR = 0xB,
PVAL_OPAQUE_HANDLE = 0xB,
PVAL_TYPESAFE_INT = 0xC,
PVAL_CURSOR_FLOW = 0xD,
PVAL_ANY = 0xE,
PVAL_SCHEMA_ENUM = 0xF,
PVAL_PANORAMA_PANEL_HANDLE = 0x10,
PVAL_COUNT = 0x11
PVAL_TEST_HANDLE = 0x11,
PVAL_COUNT = 0x12
}
// Alignment: 2
// Members count: 61
// Members count: 73
#[repr(u16)]
pub enum PulseInstructionCode_t {
INVALID = 0x0,
@@ -76,7 +89,7 @@ pub mod cs2_dumper {
SET_VAR = 0xD,
GET_VAR = 0xE,
GET_CONST = 0xF,
SET_REGISTER_DOMAIN_VALUE = 0x10,
GET_DOMAIN_VALUE = 0x10,
COPY = 0x11,
NOT = 0x12,
NEGATE = 0x13,
@@ -92,35 +105,47 @@ pub mod cs2_dumper {
AND = 0x1D,
OR = 0x1E,
CONVERT_VALUE = 0x1F,
LAST_SERIALIZED_CODE = 0x20,
NEGATE_INT = 0x21,
NEGATE_FLOAT = 0x22,
ADD_INT = 0x23,
ADD_FLOAT = 0x24,
ADD_STRING = 0x25,
SUB_INT = 0x26,
SUB_FLOAT = 0x27,
MUL_INT = 0x28,
MUL_FLOAT = 0x29,
DIV_INT = 0x2A,
DIV_FLOAT = 0x2B,
MOD_INT = 0x2C,
MOD_FLOAT = 0x2D,
LT_INT = 0x2E,
LT_FLOAT = 0x2F,
LTE_INT = 0x30,
LTE_FLOAT = 0x31,
EQ_BOOL = 0x32,
EQ_INT = 0x33,
EQ_FLOAT = 0x34,
EQ_STRING = 0x35,
EQ_ENTITY_NAME = 0x36,
NE_BOOL = 0x37,
NE_INT = 0x38,
NE_FLOAT = 0x39,
NE_STRING = 0x3A,
NE_ENTITY_NAME = 0x3B,
GET_CONST_INLINE_STORAGE = 0x3C
REINTERPRET_INSTANCE = 0x20,
GET_BLACKBOARD_REFERENCE = 0x21,
SET_BLACKBOARD_REFERENCE = 0x22,
REQUIREMENT_RESULT = 0x23,
LAST_SERIALIZED_CODE = 0x24,
NEGATE_INT = 0x25,
NEGATE_FLOAT = 0x26,
ADD_INT = 0x27,
ADD_FLOAT = 0x28,
ADD_STRING = 0x29,
SUB_INT = 0x2A,
SUB_FLOAT = 0x2B,
MUL_INT = 0x2C,
MUL_FLOAT = 0x2D,
DIV_INT = 0x2E,
DIV_FLOAT = 0x2F,
MOD_INT = 0x30,
MOD_FLOAT = 0x31,
LT_INT = 0x32,
LT_FLOAT = 0x33,
LTE_INT = 0x34,
LTE_FLOAT = 0x35,
EQ_BOOL = 0x36,
EQ_INT = 0x37,
EQ_FLOAT = 0x38,
EQ_STRING = 0x39,
EQ_ENTITY_NAME = 0x3A,
EQ_EHANDLE = 0x3B,
EQ_PANEL_HANDLE = 0x3C,
EQ_OPAQUE_HANDLE = 0x3D,
EQ_TEST_HANDLE = 0x3E,
NE_BOOL = 0x3F,
NE_INT = 0x40,
NE_FLOAT = 0x41,
NE_STRING = 0x42,
NE_ENTITY_NAME = 0x43,
NE_EHANDLE = 0x44,
NE_PANEL_HANDLE = 0x45,
NE_OPAQUE_HANDLE = 0x46,
NE_TEST_HANDLE = 0x47,
GET_CONST_INLINE_STORAGE = 0x48
}
// Alignment: 4
// Members count: 5
@@ -141,6 +166,15 @@ pub mod cs2_dumper {
SoftCancel = 0x2,
HardCancel = 0x3
}
// Alignment: 4
// Members count: 4
#[repr(u32)]
pub enum PulseDomainValueType_t {
INVALID = u32::MAX,
ENTITY_NAME = 0x0,
PANEL_ID = 0x1,
COUNT = 0x2
}
// Parent: CPulseCell_BaseFlow
// Fields count: 1
//
@@ -148,6 +182,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Step_PublicOutput {
pub const m_OutputIndex: usize = 0x48; // PulseRuntimeOutputIndex_t
}
@@ -158,6 +193,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
pub mod CPulseCell_Val_TestDomainFindEntityByName {
}
@@ -176,9 +212,22 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
pub mod CPulseCell_Step_TestDomainDestroyFakeEntity {
}
// Parent: CPulseCell_BaseFlow
// Fields count: 2
//
// Metadata:
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Test_MultiOutflow_WithParams {
pub const m_Out1: usize = 0x48; // SignatureOutflow_Continue
pub const m_Out2: usize = 0x78; // SignatureOutflow_Continue
}
// Parent: None
// Fields count: 1
pub mod PulseRuntimeVarIndex_t {
@@ -190,6 +239,11 @@ pub mod cs2_dumper {
pub const m_Value: usize = 0x0; // int32
}
// Parent: None
// Fields count: 1
pub mod PulseRuntimeDomainValueIndex_t {
pub const m_Value: usize = 0x0; // int16
}
// Parent: None
// Fields count: 3
//
// Metadata:
@@ -246,14 +300,12 @@ pub mod cs2_dumper {
pub const m_EventOutflow: usize = 0x8; // CPulse_OutflowConnection
}
// Parent: None
// Fields count: 3
//
// Metadata:
// MGetKV3ClassDefaults
// Fields count: 4
pub mod CPulse_OutflowConnection {
pub const m_SourceOutflowName: usize = 0x0; // CUtlSymbolLarge
pub const m_nDestChunk: usize = 0x8; // PulseRuntimeChunkIndex_t
pub const m_nInstruction: usize = 0xC; // int32
pub const m_OutflowRegisterMap: usize = 0x10; // PulseRegisterMap_t
}
// Parent: None
// Fields count: 1
@@ -276,6 +328,14 @@ pub mod cs2_dumper {
pub const m_nEditorNodeID: usize = 0x8; // PulseDocNodeID_t
}
// Parent: None
// Fields count: 1
//
// Metadata:
// MGetKV3ClassDefaults
pub mod CPulseCell_Test_MultiOutflow_WithParams_Yielding__CursorState_t {
pub const nTestStep: usize = 0x0; // int32
}
// Parent: None
// Fields count: 0
//
// Metadata:
@@ -283,6 +343,18 @@ pub mod cs2_dumper {
// MPropertyDescription
pub mod CPulseTestFuncs_DerivedDomain {
}
// Parent: None
// Fields count: 5
//
// Metadata:
// MGetKV3ClassDefaults
pub mod PulseGraphExecutionHistoryCursorDesc_t {
pub const vecAncestorCursorIDs: usize = 0x0; // CUtlVector<PulseCursorID_t>
pub const nSpawnNodeID: usize = 0x18; // PulseDocNodeID_t
pub const nRetiredAtNodeID: usize = 0x1C; // PulseDocNodeID_t
pub const flLastReferenced: usize = 0x20; // float32
pub const nLastValidEntryIdx: usize = 0x24; // int32
}
// Parent: CPulseCell_BaseYieldingInflow
// Fields count: 1
//
@@ -290,6 +362,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Inflow_Yield {
pub const m_UnyieldResume: usize = 0x48; // CPulse_ResumePoint
}
@@ -300,6 +373,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Inflow_GraphHook {
pub const m_HookName: usize = 0x70; // CUtlSymbolLarge
}
@@ -310,6 +384,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
// MPropertyDescription
// MPulseEditorHeaderIcon
@@ -322,8 +397,8 @@ pub mod cs2_dumper {
// Metadata:
// MPulseLibraryBindings
pub mod CTestDomainDerived_Cursor {
pub const m_nCursorValueA: usize = 0x168; // int32
pub const m_nCursorValueB: usize = 0x16C; // int32
pub const m_nCursorValueA: usize = 0xA0; // int32
pub const m_nCursorValueB: usize = 0xA4; // int32
}
// Parent: None
// Fields count: 2
@@ -341,11 +416,27 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
// MPropertyDescription
// MPulseEditorHeaderIcon
pub mod CPulseCell_CursorQueue {
pub const m_nCursorsAllowedToRunParallel: usize = 0x60; // int32
pub const m_nCursorsAllowedToRunParallel: usize = 0x80; // int32
}
// Parent: CPulseCell_Base
// Fields count: 0
//
// Metadata:
// MGetKV3ClassDefaults
pub mod CPulseCell_BaseRequirement {
}
// Parent: None
// Fields count: 1
//
// Metadata:
// MGetKV3ClassDefaults
pub mod PulseNodeDynamicOutflows_t {
pub const m_Outflows: usize = 0x0; // CUtlVector<PulseNodeDynamicOutflows_t::DynamicOutflow_t>
}
// Parent: CPulseCell_BaseValue
// Fields count: 0
@@ -354,6 +445,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
// MPropertyDescription
pub mod CPulseCell_Value_TestValue50 {
@@ -365,8 +457,16 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Test_MultiInflow_WithDefault {
}
// Parent: None
// Fields count: 0
//
// Metadata:
// MGapTypeQueriesForScopeSingleton
pub mod CPulseTestGapTypeQueryRegistration {
}
// Parent: CPulseCell_BaseFlow
// Fields count: 2
//
@@ -374,9 +474,10 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Outflow_StringSwitch {
pub const m_DefaultCaseOutflow: usize = 0x48; // CPulse_OutflowConnection
pub const m_CaseOutflows: usize = 0x58; // CUtlVector<CPulse_OutflowConnection>
pub const m_CaseOutflows: usize = 0x78; // CUtlVector<CPulse_OutflowConnection>
}
// Parent: CPulseCell_BaseFlow
// Fields count: 0
@@ -385,12 +486,22 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Test_NoInflow {
}
// Parent: None
// Fields count: 1
pub mod PulseTestEHandle_t {
pub const m_Value: usize = 0x0; // uint32
// Parent: CPulseCell_BaseYieldingInflow
// Fields count: 4
//
// Metadata:
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_FireCursors {
pub const m_Outflows: usize = 0x48; // CUtlVector<CPulse_OutflowConnection>
pub const m_bWaitForChildOutflows: usize = 0x60; // bool
pub const m_OnFinished: usize = 0x68; // CPulse_ResumePoint
pub const m_OnCanceled: usize = 0x98; // CPulse_ResumePoint
}
// Parent: None
// Fields count: 2
@@ -410,9 +521,6 @@ pub mod cs2_dumper {
}
// Parent: CPulse_OutflowConnection
// Fields count: 0
//
// Metadata:
// MGetKV3ClassDefaults
pub mod CPulse_ResumePoint {
}
// Parent: CPulseCell_BaseFlow
@@ -422,6 +530,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Outflow_CycleRandom {
pub const m_Outputs: usize = 0x48; // CUtlVector<CPulse_OutflowConnection>
}
@@ -432,10 +541,20 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Inflow_EventHandler {
pub const m_EventName: usize = 0x70; // CUtlSymbolLarge
}
// Parent: None
// Fields count: 2
//
// Metadata:
// MGetKV3ClassDefaults
pub mod CPulseCell_BaseLerp__CursorState_t {
pub const m_StartTime: usize = 0x0; // GameTime_t
pub const m_EndTime: usize = 0x4; // GameTime_t
}
// Parent: None
// Fields count: 3
//
// Metadata:
@@ -460,11 +579,12 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Timeline {
pub const m_TimelineEvents: usize = 0x48; // CUtlVector<CPulseCell_Timeline::TimelineEvent_t>
pub const m_bWaitForChildOutflows: usize = 0x60; // bool
pub const m_OnFinished: usize = 0x68; // CPulse_ResumePoint
pub const m_OnCanceled: usize = 0x78; // CPulse_ResumePoint
pub const m_OnCanceled: usize = 0x98; // CPulse_ResumePoint
}
// Parent: None
// Fields count: 4
@@ -477,6 +597,33 @@ pub mod cs2_dumper {
pub const m_TargetInput: usize = 0x10; // CUtlSymbolLarge
pub const m_Param: usize = 0x18; // CUtlSymbolLarge
}
// Parent: CPulseCell_BaseRequirement
// Fields count: 1
//
// Metadata:
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
// MPropertyDescription
// MPulseRequirementPass
pub mod CPulseCell_LimitCount {
pub const m_nLimitCount: usize = 0x48; // int32
}
// Parent: None
// Fields count: 2
//
// Metadata:
// MGetKV3ClassDefaults
pub mod PulseGraphExecutionHistoryNodeDesc_t {
pub const strCellDesc: usize = 0x0; // CBufferString
pub const strBindingName: usize = 0x10; // CUtlSymbolLarge
}
// Parent: CPulse_ResumePoint
// Fields count: 0
pub mod SignatureOutflow_Resume {
}
// Parent: None
// Fields count: 0
//
@@ -486,15 +633,17 @@ pub mod cs2_dumper {
pub mod FakeEntity_tAPI {
}
// Parent: CPulseCell_BaseYieldingInflow
// Fields count: 4
// Fields count: 5
//
// Metadata:
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Step_CallExternalMethod {
pub const m_MethodName: usize = 0x48; // CUtlSymbolLarge
pub const m_ExpectedArgs: usize = 0x50; // CUtlVector<CPulseRuntimeMethodArg>
pub const m_GameBlackboard: usize = 0x50; // CUtlSymbolLarge
pub const m_ExpectedArgs: usize = 0x58; // CUtlLeanVector<CPulseRuntimeMethodArg>
pub const m_nAsyncCallMode: usize = 0x68; // PulseMethodCallMode_t
pub const m_OnFinished: usize = 0x70; // CPulse_ResumePoint
}
@@ -503,6 +652,7 @@ pub mod cs2_dumper {
//
// Metadata:
// MPulseInstanceDomainInfo
// MPulseDomainHookInfo
// MPulseLibraryBindings
pub mod CPulseGraphInstance_TurtleGraphics {
}
@@ -514,20 +664,33 @@ pub mod cs2_dumper {
pub mod CPulseCell_BaseFlow {
}
// Parent: None
// Fields count: 5
//
// Metadata:
// MGetKV3ClassDefaults
pub mod PulseGraphExecutionHistoryEntry_t {
pub const nCursorID: usize = 0x0; // PulseCursorID_t
pub const nEditorID: usize = 0x4; // PulseDocNodeID_t
pub const flExecTime: usize = 0x8; // float32
pub const unFlags: usize = 0xC; // uint32
pub const tagName: usize = 0x10; // CUtlSymbolLarge
}
// Parent: None
// Fields count: 1
pub mod PulseCursorYieldToken_t {
pub const m_Value: usize = 0x0; // int32
}
// Parent: None
// Fields count: 7
pub mod FakeEntity_t {
pub const m_nHandle: usize = 0x0; // PulseTestEHandle_t
pub const m_Name: usize = 0x8; // CUtlString
pub const m_Class: usize = 0x10; // CUtlString
pub const m_bDestroyed: usize = 0x18; // bool
pub const m_pAssociatedGraphInstance: usize = 0x20; // CPulseGraphInstance_TestDomain*
pub const m_bFuncWasCalled: usize = 0x28; // bool
pub const m_fValue: usize = 0x2C; // float32
// Fields count: 5
//
// Metadata:
// MGetKV3ClassDefaults
pub mod CPulseGraphExecutionHistory {
pub const m_nInstanceID: usize = 0x0; // PulseGraphInstanceID_t
pub const m_strFileName: usize = 0x8; // CUtlString
pub const m_vecHistory: usize = 0x10; // CUtlVector<PulseGraphExecutionHistoryEntry_t*>
pub const m_mapCellDesc: usize = 0x28; // CUtlOrderedMap<PulseDocNodeID_t,PulseGraphExecutionHistoryNodeDesc_t*>
pub const m_mapCursorDesc: usize = 0x50; // CUtlOrderedMap<PulseCursorID_t,PulseGraphExecutionHistoryCursorDesc_t*>
}
// Parent: CPulseCell_BaseYieldingInflow
// Fields count: 3
@@ -536,10 +699,22 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_TestWaitWithCursorState {
pub const m_WakeResume: usize = 0x48; // CPulse_ResumePoint
pub const m_WakeCancel: usize = 0x58; // CPulse_ResumePoint
pub const m_WakeFail: usize = 0x68; // CPulse_ResumePoint
pub const m_WakeCancel: usize = 0x78; // CPulse_ResumePoint
pub const m_WakeFail: usize = 0xA8; // CPulse_ResumePoint
}
// Parent: CPulseCell_Inflow_BaseEntrypoint
// Fields count: 1
//
// Metadata:
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Inflow_ObservableVariableListener {
pub const m_BlackboardReference: usize = 0x70; // CPulse_BlackboardReference
}
// Parent: CPulseCell_BaseFlow
// Fields count: 0
@@ -549,7 +724,7 @@ pub mod cs2_dumper {
pub mod CPulseCell_BaseYieldingInflow {
}
// Parent: None
// Fields count: 11
// Fields count: 12
//
// Metadata:
// MGetKV3ClassDefaults
@@ -564,7 +739,8 @@ pub mod cs2_dumper {
pub const m_nDestInstruction: usize = 0x18; // int32
pub const m_nCallInfoIndex: usize = 0x1C; // PulseRuntimeCallInfoIndex_t
pub const m_nConstIdx: usize = 0x20; // PulseRuntimeConstantIndex_t
pub const m_DomainValue: usize = 0x28; // CBufferString
pub const m_nDomainValueIdx: usize = 0x22; // PulseRuntimeDomainValueIndex_t
pub const m_nBlackboardReferenceIdx: usize = 0x24; // PulseRuntimeBlackboardReferenceIndex_t
}
// Parent: None
// Fields count: 5
@@ -579,7 +755,7 @@ pub mod cs2_dumper {
pub const m_nSrcInstruction: usize = 0x30; // int32
}
// Parent: None
// Fields count: 5
// Fields count: 7
//
// Metadata:
// MGetKV3ClassDefaults
@@ -589,6 +765,8 @@ pub mod cs2_dumper {
pub const m_Type: usize = 0x10; // CPulseValueFullType
pub const m_DefaultValue: usize = 0x20; // KeyValues3
pub const m_bIsPublic: usize = 0x32; // bool
pub const m_bIsObservable: usize = 0x33; // bool
pub const m_nEditorNodeID: usize = 0x34; // PulseDocNodeID_t
}
// Parent: CPulseCell_Inflow_BaseEntrypoint
// Fields count: 5
@@ -597,27 +775,46 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Inflow_Method {
pub const m_MethodName: usize = 0x70; // CUtlSymbolLarge
pub const m_Description: usize = 0x78; // CUtlString
pub const m_bIsPublic: usize = 0x80; // bool
pub const m_ReturnType: usize = 0x88; // CPulseValueFullType
pub const m_Args: usize = 0x98; // CUtlVector<CPulseRuntimeMethodArg>
pub const m_Args: usize = 0x98; // CUtlLeanVector<CPulseRuntimeMethodArg>
}
// Parent: CBasePulseGraphInstance
// Fields count: 6
//
// Metadata:
// MPulseInstanceDomainInfo
// MPulseDomainHookInfo
// MPulseLibraryBindings
// MPulseDomainOptInFeatureTag
pub mod CPulseGraphInstance_TestDomain {
pub const m_bIsRunningUnitTests: usize = 0xD8; // bool
pub const m_bExplicitTimeStepping: usize = 0xD9; // bool
pub const m_bExpectingToDestroyWithYieldedCursors: usize = 0xDA; // bool
pub const m_nNextValidateIndex: usize = 0xDC; // int32
pub const m_Tracepoints: usize = 0xE0; // CUtlVector<CUtlString>
pub const m_bTestYesOrNoPath: usize = 0xF8; // bool
pub const m_bIsRunningUnitTests: usize = 0xF8; // bool
pub const m_bExplicitTimeStepping: usize = 0xF9; // bool
pub const m_bExpectingToDestroyWithYieldedCursors: usize = 0xFA; // bool
pub const m_nNextValidateIndex: usize = 0xFC; // int32
pub const m_Tracepoints: usize = 0x100; // CUtlVector<CUtlString>
pub const m_bTestYesOrNoPath: usize = 0x118; // bool
}
// Parent: None
// Fields count: 0
//
// Metadata:
// MPulseProvideFeatureTag
// MPulseLibraryBindings
pub mod FakeEntityDerivedB_tAPI {
}
// Parent: None
// Fields count: 2
//
// Metadata:
// MGetKV3ClassDefaults
pub mod PulseNodeDynamicOutflows_t__DynamicOutflow_t {
pub const m_OutflowID: usize = 0x0; // CGlobalSymbol
pub const m_Connection: usize = 0x8; // CPulse_OutflowConnection
}
// Parent: CPulseCell_BaseFlow
// Fields count: 1
@@ -626,6 +823,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Outflow_CycleShuffled {
pub const m_Outputs: usize = 0x48; // CUtlVector<CPulse_OutflowConnection>
}
@@ -648,6 +846,16 @@ pub mod cs2_dumper {
pub const flWaitValue: usize = 0x0; // float32
pub const bFailOnCancel: usize = 0x4; // bool
}
// Parent: None
// Fields count: 3
//
// Metadata:
// MGetKV3ClassDefaults
pub mod CPulse_DomainValue {
pub const m_nType: usize = 0x0; // PulseDomainValueType_t
pub const m_Value: usize = 0x8; // CGlobalSymbol
pub const m_ExpectedRuntimeType: usize = 0x10; // CGlobalSymbol
}
// Parent: CPulseCell_BaseFlow
// Fields count: 0
//
@@ -655,6 +863,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
pub mod CPulseCell_Step_TestDomainCreateFakeEntity {
}
@@ -665,6 +874,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
// MPulseEditorHeaderText
pub mod CPulseCell_Step_TestDomainEntFire {
@@ -678,14 +888,39 @@ pub mod cs2_dumper {
// MPropertyDescription
pub mod CPulseMathlib {
}
// Parent: None
// Fields count: 1
pub mod PulseRuntimeBlackboardReferenceIndex_t {
pub const m_Value: usize = 0x0; // int16
}
// Parent: CPulse_OutflowConnection
// Fields count: 0
pub mod SignatureOutflow_Continue {
}
// Parent: CPulseCell_BaseYieldingInflow
// Fields count: 5
//
// Metadata:
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Test_MultiOutflow_WithParams_Yielding {
pub const m_Out1: usize = 0x48; // SignatureOutflow_Continue
pub const m_AsyncChild1: usize = 0x78; // SignatureOutflow_Continue
pub const m_AsyncChild2: usize = 0xA8; // SignatureOutflow_Continue
pub const m_YieldResume1: usize = 0xD8; // SignatureOutflow_Resume
pub const m_YieldResume2: usize = 0x108; // SignatureOutflow_Resume
}
// Parent: CPulseGraphInstance_TestDomain
// Fields count: 1
//
// Metadata:
// MPulseInstanceDomainInfo
// MPulseDomainHookInfo
// MPulseLibraryBindings
pub mod CPulseGraphInstance_TestDomain_Derived {
pub const m_nInstanceValueX: usize = 0x100; // int32
pub const m_nInstanceValueX: usize = 0x120; // int32
}
// Parent: CPulseCell_Inflow_BaseEntrypoint
// Fields count: 4
@@ -694,6 +929,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Inflow_EntOutputHandler {
pub const m_SourceEntity: usize = 0x70; // CUtlSymbolLarge
pub const m_SourceOutput: usize = 0x78; // CUtlSymbolLarge
@@ -705,6 +941,14 @@ pub mod cs2_dumper {
pub mod PulseRuntimeConstantIndex_t {
pub const m_Value: usize = 0x0; // int16
}
// Parent: None
// Fields count: 0
//
// Metadata:
// MPulseProvideFeatureTag
// MPulseLibraryBindings
pub mod FakeEntityDerivedA_tAPI {
}
// Parent: CPulseCell_BaseFlow
// Fields count: 0
//
@@ -712,6 +956,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
pub mod CPulseCell_Step_TestDomainTracepoint {
}
@@ -720,6 +965,25 @@ pub mod cs2_dumper {
pub mod PulseDocNodeID_t {
pub const m_Value: usize = 0x0; // int32
}
// Parent: None
// Fields count: 4
//
// Metadata:
// MGetKV3ClassDefaults
pub mod CPulse_BlackboardReference {
pub const m_hBlackboardResource: usize = 0x0; // CResourceNameTyped<CWeakHandle<InfoForResourceTypeIPulseGraphDef>>
pub const m_BlackboardResource: usize = 0xE0; // CUtlSymbolLarge
pub const m_nNodeID: usize = 0xE8; // PulseDocNodeID_t
pub const m_NodeName: usize = 0xF0; // CGlobalSymbol
}
// Parent: None
// Fields count: 1
//
// Metadata:
// MGetKV3ClassDefaults
pub mod CPulseCell_LimitCount__InstanceState_t {
pub const m_nCurrentCount: usize = 0x0; // int32
}
// Parent: CPulseCell_BaseValue
// Fields count: 0
//
@@ -727,6 +991,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
pub mod CPulseCell_Val_TestDomainGetEntityName {
}
@@ -776,26 +1041,31 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Outflow_IntSwitch {
pub const m_DefaultCaseOutflow: usize = 0x48; // CPulse_OutflowConnection
pub const m_CaseOutflows: usize = 0x58; // CUtlVector<CPulse_OutflowConnection>
pub const m_CaseOutflows: usize = 0x78; // CUtlVector<CPulse_OutflowConnection>
}
// Parent: None
// Fields count: 10
// Fields count: 14
//
// Metadata:
// MGetKV3ClassDefaults
pub mod CPulseGraphDef {
pub const m_DomainIdentifier: usize = 0x8; // CUtlSymbolLarge
pub const m_ParentMapName: usize = 0x10; // CUtlSymbolLarge
pub const m_Chunks: usize = 0x18; // CUtlVector<CPulse_Chunk*>
pub const m_Cells: usize = 0x30; // CUtlVector<CPulseCell_Base*>
pub const m_Vars: usize = 0x48; // CUtlVector<CPulse_Variable>
pub const m_PublicOutputs: usize = 0x60; // CUtlVector<CPulse_PublicOutput>
pub const m_InvokeBindings: usize = 0x78; // CUtlVector<CPulse_InvokeBinding*>
pub const m_CallInfos: usize = 0x90; // CUtlVector<CPulse_CallInfo*>
pub const m_Constants: usize = 0xA8; // CUtlVector<CPulse_Constant>
pub const m_OutputConnections: usize = 0xC0; // CUtlVector<CPulse_OutputConnection*>
pub const m_ParentXmlName: usize = 0x18; // CUtlSymbolLarge
pub const m_vecGameBlackboards: usize = 0x20; // CUtlVector<CUtlSymbolLarge>
pub const m_Chunks: usize = 0x38; // CUtlVector<CPulse_Chunk*>
pub const m_Cells: usize = 0x50; // CUtlVector<CPulseCell_Base*>
pub const m_Vars: usize = 0x68; // CUtlVector<CPulse_Variable>
pub const m_PublicOutputs: usize = 0x80; // CUtlVector<CPulse_PublicOutput>
pub const m_InvokeBindings: usize = 0x98; // CUtlVector<CPulse_InvokeBinding*>
pub const m_CallInfos: usize = 0xB0; // CUtlVector<CPulse_CallInfo*>
pub const m_Constants: usize = 0xC8; // CUtlVector<CPulse_Constant>
pub const m_DomainValues: usize = 0xE0; // CUtlVector<CPulse_DomainValue>
pub const m_BlackboardReferences: usize = 0xF8; // CUtlVector<CPulse_BlackboardReference>
pub const m_OutputConnections: usize = 0x110; // CUtlVector<CPulse_OutputConnection*>
}
// Parent: CPulseCell_BaseFlow
// Fields count: 0
@@ -804,6 +1074,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Test_MultiInflow_NoDefault {
}
// Parent: None
@@ -822,12 +1093,13 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
// MPropertyDescription
// MPulseEditorHeaderIcon
pub mod CPulseCell_WaitForCursorsWithTag {
pub const m_bTagSelfWhenComplete: usize = 0x60; // bool
pub const m_nDesiredKillPriority: usize = 0x64; // PulseCursorCancelPriority_t
pub const m_bTagSelfWhenComplete: usize = 0x80; // bool
pub const m_nDesiredKillPriority: usize = 0x84; // PulseCursorCancelPriority_t
}
// Parent: CPulseCell_BaseFlow
// Fields count: 2
@@ -843,18 +1115,13 @@ pub mod cs2_dumper {
pub mod PulseRuntimeCallInfoIndex_t {
pub const m_Value: usize = 0x0; // int32
}
// Parent: CPulseCell_BaseFlow
// Fields count: 2
// Parent: CPulseCell_BaseYieldingInflow
// Fields count: 1
//
// Metadata:
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPropertyFriendlyName
// MPropertyDescription
pub mod CPulseCell_Outflow_TestExplicitYesNo {
pub const m_Yes: usize = 0x48; // CPulse_OutflowConnection
pub const m_No: usize = 0x58; // CPulse_OutflowConnection
pub mod CPulseCell_BaseLerp {
pub const m_WakeResume: usize = 0x48; // CPulse_ResumePoint
}
// Parent: CPulseCell_BaseFlow
// Fields count: 2
@@ -863,11 +1130,26 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
// MPropertyDescription
pub mod CPulseCell_Outflow_TestExplicitYesNo {
pub const m_Yes: usize = 0x48; // CPulse_OutflowConnection
pub const m_No: usize = 0x78; // CPulse_OutflowConnection
}
// Parent: CPulseCell_BaseFlow
// Fields count: 2
//
// Metadata:
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
// MPropertyDescription
pub mod CPulseCell_Outflow_TestRandomYesNo {
pub const m_Yes: usize = 0x48; // CPulse_OutflowConnection
pub const m_No: usize = 0x58; // CPulse_OutflowConnection
pub const m_No: usize = 0x78; // CPulse_OutflowConnection
}
// Parent: CPulseCell_BaseFlow
// Fields count: 0
@@ -876,6 +1158,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Step_DebugLog {
}
// Parent: None
@@ -890,6 +1173,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
pub mod CPulseCell_Outflow_CycleOrdered {
pub const m_Outputs: usize = 0x48; // CUtlVector<CPulse_OutflowConnection>
}
@@ -915,6 +1199,7 @@ pub mod cs2_dumper {
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName
// MPropertyDescription
// MPulseEditorHeaderIcon
@@ -926,10 +1211,10 @@ pub mod cs2_dumper {
// Metadata:
// MPulseLibraryBindings
pub mod CPulseTurtleGraphicsCursor {
pub const m_Color: usize = 0x168; // Color
pub const m_vPos: usize = 0x16C; // Vector2D
pub const m_flHeadingDeg: usize = 0x174; // float32
pub const m_bPenUp: usize = 0x178; // bool
pub const m_Color: usize = 0xA0; // Color
pub const m_vPos: usize = 0xA4; // Vector2D
pub const m_flHeadingDeg: usize = 0xAC; // float32
pub const m_bPenUp: usize = 0xB0; // bool
}
}
}