2023-08-31 01:50:54 +00:00
# pragma once
# include <cstdint>
# include "!GlobalTypes.hpp"
// /////////////////////////////////////////////////////////////
// Binary: pulse_system.dll
2024-04-19 12:05:51 +00:00
// Classes count: 0 (Allocated) | 103 (Unallocated)
// Enums count: 0 (Allocated) | 9 (Unallocated)
2023-08-31 01:50:54 +00:00
// Created using source2gen - github.com/neverlosecc/source2gen
// /////////////////////////////////////////////////////////////
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-19 12:05:51 +00:00
// Enumerator count: 4
// Alignment: 4
// Size: 0x4
enum class EPulseGraphExecutionHistoryFlag : uint32_t
2023-08-31 01:50:54 +00:00
{
2024-04-19 12:05:51 +00:00
// MPropertySuppressEnumerator
// MEnumeratorIsNotAFlag
NO_FLAGS = 0x0 ,
CURSOR_ADD_TAG = 0x1 ,
CURSOR_REMOVE_TAG = 0x2 ,
CURSOR_RETIRED = 0x4 ,
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Enumerator count: 3
// Alignment: 4
// Size: 0x4
enum class PulseTestEnumShape_t : uint32_t
{
// MPropertyFriendlyName "Circle"
CIRCLE = 0x64 ,
// MPropertyFriendlyName "Square"
SQUARE = 0xc8 ,
// MPropertyFriendlyName "Triangle"
TRIANGLE = 0x12c ,
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-05 16:55:05 +00:00
// Enumerator count: 2
2023-08-31 01:50:54 +00:00
// Alignment: 4
2024-04-05 16:55:05 +00:00
// Size: 0x4
2023-08-31 01:50:54 +00:00
enum class PulseMethodCallMode_t : uint32_t
{
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "Wait For Completion"
// MPropertyDescription "Synchronous - wait for the method to fully complete before returning"
2023-08-31 01:50:54 +00:00
SYNC_WAIT_FOR_COMPLETION = 0x0 ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "Fire And Forget"
// MPropertyDescription "Asynchronous - returns and continues despite the called method yielding"
2023-08-31 01:50:54 +00:00
ASYNC_FIRE_AND_FORGET = 0x1 ,
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-19 12:05:51 +00:00
// Enumerator count: 4
2023-08-31 01:50:54 +00:00
// Alignment: 4
2024-04-05 16:55:05 +00:00
// Size: 0x4
2024-02-12 00:06:50 +00:00
enum class PulseCursorExecResult_t : uint32_t
{
Succeeded = 0x0 ,
Canceled = 0x1 ,
Failed = 0x2 ,
2024-04-19 12:05:51 +00:00
OngoingNotify = 0x3 ,
2024-02-12 00:06:50 +00:00
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-19 12:05:51 +00:00
// Enumerator count: 20
2024-02-12 00:06:50 +00:00
// Alignment: 4
2024-04-05 16:55:05 +00:00
// Size: 0x4
2023-08-31 01:50:54 +00:00
enum class PulseValueType_t : uint32_t
{
PVAL_INVALID = 0xffffffffffffffff ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "Boolean"
2023-08-31 01:50:54 +00:00
PVAL_BOOL = 0x0 ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "Integer"
2023-08-31 01:50:54 +00:00
PVAL_INT = 0x1 ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "Float"
2023-08-31 01:50:54 +00:00
PVAL_FLOAT = 0x2 ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "String"
2023-08-31 01:50:54 +00:00
PVAL_STRING = 0x3 ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "Vector3"
2023-08-31 01:50:54 +00:00
PVAL_VEC3 = 0x4 ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "Transform"
2023-08-31 01:50:54 +00:00
PVAL_TRANSFORM = 0x5 ,
2024-02-12 00:06:50 +00:00
// MPropertyFriendlyName "Color"
PVAL_COLOR_RGB = 0x6 ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "Entity Handle"
2024-02-12 00:06:50 +00:00
PVAL_EHANDLE = 0x7 ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "Resource"
2024-02-12 00:06:50 +00:00
PVAL_RESOURCE = 0x8 ,
2023-11-09 15:17:52 +00:00
// MPropertyFriendlyName "SoundEvent Handle"
2024-02-12 00:06:50 +00:00
PVAL_SNDEVT_GUID = 0x9 ,
// MPropertyFriendlyName "Entity Name"
PVAL_ENTITY_NAME = 0xa ,
2024-04-19 12:05:51 +00:00
PVAL_OPAQUE_HANDLE = 0xb ,
2024-02-12 00:06:50 +00:00
PVAL_TYPESAFE_INT = 0xc ,
PVAL_CURSOR_FLOW = 0xd ,
PVAL_ANY = 0xe ,
// MPropertyFriendlyName "Schema Enum"
PVAL_SCHEMA_ENUM = 0xf ,
2024-04-19 12:05:51 +00:00
// MPropertyFriendlyName "Panorama Panel Handle"
PVAL_PANORAMA_PANEL_HANDLE = 0x10 ,
// MPropertyFriendlyName "Test Handle"
PVAL_TEST_HANDLE = 0x11 ,
2023-11-09 15:17:52 +00:00
// MPropertySuppressEnumerator
2024-04-19 12:05:51 +00:00
PVAL_COUNT = 0x12 ,
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Enumerator count: 66
// Alignment: 2
// Size: 0x2
enum class PulseInstructionCode_t : uint16_t
{
INVALID = 0x0 ,
IMMEDIATE_HALT = 0x1 ,
RETURN_VOID = 0x2 ,
RETURN_VALUE = 0x3 ,
NOP = 0x4 ,
JUMP = 0x5 ,
JUMP_COND = 0x6 ,
CHUNK_LEAP = 0x7 ,
CHUNK_LEAP_COND = 0x8 ,
PULSE_CALL_SYNC = 0x9 ,
PULSE_CALL_ASYNC_FIRE = 0xa ,
CELL_INVOKE = 0xb ,
LIBRARY_INVOKE = 0xc ,
SET_VAR = 0xd ,
GET_VAR = 0xe ,
GET_CONST = 0xf ,
GET_DOMAIN_VALUE = 0x10 ,
COPY = 0x11 ,
NOT = 0x12 ,
NEGATE = 0x13 ,
ADD = 0x14 ,
SUB = 0x15 ,
MUL = 0x16 ,
DIV = 0x17 ,
MOD = 0x18 ,
LT = 0x19 ,
LTE = 0x1a ,
EQ = 0x1b ,
NE = 0x1c ,
AND = 0x1d ,
OR = 0x1e ,
CONVERT_VALUE = 0x1f ,
REINTERPRET_INSTANCE = 0x20 ,
GET_BLACKBOARD_REFERENCE = 0x21 ,
SET_BLACKBOARD_REFERENCE = 0x22 ,
LAST_SERIALIZED_CODE = 0x23 ,
NEGATE_INT = 0x24 ,
NEGATE_FLOAT = 0x25 ,
ADD_INT = 0x26 ,
ADD_FLOAT = 0x27 ,
ADD_STRING = 0x28 ,
SUB_INT = 0x29 ,
SUB_FLOAT = 0x2a ,
MUL_INT = 0x2b ,
MUL_FLOAT = 0x2c ,
DIV_INT = 0x2d ,
DIV_FLOAT = 0x2e ,
MOD_INT = 0x2f ,
MOD_FLOAT = 0x30 ,
LT_INT = 0x31 ,
LT_FLOAT = 0x32 ,
LTE_INT = 0x33 ,
LTE_FLOAT = 0x34 ,
EQ_BOOL = 0x35 ,
EQ_INT = 0x36 ,
EQ_FLOAT = 0x37 ,
EQ_STRING = 0x38 ,
EQ_ENTITY_NAME = 0x39 ,
EQ_EHANDLE = 0x3a ,
NE_BOOL = 0x3b ,
NE_INT = 0x3c ,
NE_FLOAT = 0x3d ,
NE_STRING = 0x3e ,
NE_ENTITY_NAME = 0x3f ,
NE_EHANDLE = 0x40 ,
GET_CONST_INLINE_STORAGE = 0x41 ,
2024-02-12 00:06:50 +00:00
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-05 16:55:05 +00:00
// Enumerator count: 5
2024-02-12 00:06:50 +00:00
// Alignment: 4
2024-04-05 16:55:05 +00:00
// Size: 0x4
2024-02-12 00:06:50 +00:00
enum class PulseTestEnumColor_t : uint32_t
{
// MPropertyFriendlyName "Black"
BLACK = 0x0 ,
// MPropertyFriendlyName "White"
WHITE = 0x1 ,
// MPropertyFriendlyName "Red"
RED = 0x2 ,
// MPropertyFriendlyName "Green"
GREEN = 0x3 ,
// MPropertyFriendlyName "Blue"
BLUE = 0x4 ,
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-19 12:05:51 +00:00
// Enumerator count: 4
2024-02-12 00:06:50 +00:00
// Alignment: 4
2024-04-05 16:55:05 +00:00
// Size: 0x4
2024-04-19 12:05:51 +00:00
enum class PulseCursorCancelPriority_t : uint32_t
2024-02-12 00:06:50 +00:00
{
2024-04-19 12:05:51 +00:00
// MPropertyFriendlyName "Keep running normally."
None = 0x0 ,
// MPropertyFriendlyName "Kill after current node."
// MPropertyDescription "Do not stop the current yielding node, but do not continue to the next node afterwards."
CancelOnSucceeded = 0x1 ,
// MPropertyFriendlyName "Kill elegantly."
// MPropertyDescription "Request elegant wind-down of any associated work (e.g. vcd interrupt)."
SoftCancel = 0x2 ,
// MPropertyFriendlyName "Kill immediately."
// MPropertyDescription "Stop without any wind-down."
HardCancel = 0x3 ,
2023-08-31 01:50:54 +00:00
} ;
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Enumerator count: 4
// Alignment: 4
// Size: 0x4
enum class PulseDomainValueType_t : uint32_t
{
INVALID = 0xffffffffffffffff ,
// MPropertyFriendlyName "Entity Name"
ENTITY_NAME = 0x0 ,
// MPropertyFriendlyName "Panel ID"
PANEL_ID = 0x1 ,
COUNT = 0x2 ,
} ;
struct PulseRuntimeOutputIndex_t ;
struct SignatureOutflow_Continue ;
struct CPulse_ResumePoint ;
struct CPulse_OutflowConnection ;
2023-08-31 01:50:54 +00:00
struct PulseRuntimeChunkIndex_t ;
2024-04-19 12:05:51 +00:00
struct PulseRegisterMap_t ;
2023-08-31 01:50:54 +00:00
struct PulseDocNodeID_t ;
2024-04-19 12:05:51 +00:00
struct PulseCursorID_t ;
struct PulseGraphInstanceID_t ;
struct CPulse_BlackboardReference ;
2023-08-31 01:50:54 +00:00
struct PulseRuntimeVarIndex_t ;
2024-04-19 12:05:51 +00:00
struct PulseRuntimeRegisterIndex_t ;
2023-08-31 01:50:54 +00:00
struct PulseRuntimeInvokeIndex_t ;
struct PulseRuntimeCallInfoIndex_t ;
2024-02-12 00:06:50 +00:00
struct PulseRuntimeConstantIndex_t ;
2024-04-19 12:05:51 +00:00
struct PulseRuntimeDomainValueIndex_t ;
struct PulseRuntimeBlackboardReferenceIndex_t ;
struct PulseRuntimeCellIndex_t ;
struct SignatureOutflow_Resume ;
2023-08-31 01:50:54 +00:00
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x4
2024-02-12 00:06:50 +00:00
// Has Trivial Destructor
//
2024-04-19 12:05:51 +00:00
// MIsBoxedIntegerType
struct PulseDocNodeID_t
2024-02-12 00:06:50 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int32_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseDocNodeID_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2024-02-12 00:06:50 +00:00
} ;
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
// Has VTable
//
// MGetKV3ClassDefaults
class CPulseCell_Base
2024-02-12 00:06:50 +00:00
{
2024-04-19 12:05:51 +00:00
private :
[[maybe_unused]] uint8_t __pad0000 [ 0x8 ] ; // 0x0
2024-02-12 00:06:50 +00:00
public :
2024-04-19 12:05:51 +00:00
// MFgdFromSchemaCompletelySkipField
PulseDocNodeID_t m_nEditorNodeID ; // 0x8
2024-02-12 00:06:50 +00:00
} ;
// Registered binary: pulse_system.dll (project 'pulse_system')
// Alignment: 8
2023-08-31 01:50:54 +00:00
// Size: 0x1
2023-11-09 15:17:52 +00:00
// Has Trivial Constructor
// Has Trivial Destructor
//
// MPulseLibraryBindings
// MPropertyDescription "Library for interacting with a few global test values."
2023-08-31 01:50:54 +00:00
class CPulseTestFuncs_LibraryA
{
private :
[[maybe_unused]] uint8_t __pad0000 [ 0x1 ] ; // 0x0
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
// Has VTable
2024-02-12 00:06:50 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
class CPulseCell_BaseFlow : public CPulseCell_Base
2024-02-12 00:06:50 +00:00
{
public :
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x20
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
struct PulseRegisterMap_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
KeyValues3 m_Inparams ; // 0x0
KeyValues3 m_Outparams ; // 0x10
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x4
2023-11-09 15:17:52 +00:00
// Has Trivial Destructor
//
// MIsBoxedIntegerType
2024-04-19 12:05:51 +00:00
struct PulseRuntimeVarIndex_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int32_t m_Value ; // 0x0
2023-08-31 01:50:54 +00:00
// Static fields:
2024-04-19 12:05:51 +00:00
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeVarIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x4
// Has Trivial Destructor
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MIsBoxedIntegerType
struct PulseRuntimeEntrypointIndex_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int32_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeEntrypointIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x2
// Has Trivial Destructor
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MIsBoxedIntegerType
struct PulseRuntimeDomainValueIndex_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int16_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeDomainValueIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2024-02-12 00:06:50 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x60
2024-02-12 00:06:50 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulse_Chunk
2024-02-12 00:06:50 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlLeanVector < PGDInstruction_t > m_Instructions ; // 0x0
CUtlLeanVector < CPulse_RegisterInfo > m_Registers ; // 0x10
CUtlLeanVector < PulseDocNodeID_t > m_InstructionEditorIDs ; // 0x20
2024-02-12 00:06:50 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x4
// Has Trivial Destructor
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MIsBoxedIntegerType
struct PulseRuntimeInvokeIndex_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int32_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeInvokeIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-19 12:05:51 +00:00
// Alignment: 4
// Size: 0x4
2023-11-09 15:17:52 +00:00
// Has Trivial Destructor
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
struct CPulseCell_Outflow_CycleOrdered__InstanceState_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int32_t m_nNextIndex ; // 0x0
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2023-08-31 01:50:54 +00:00
// Size: 0x4
2023-11-09 15:17:52 +00:00
// Has Trivial Destructor
//
// MIsBoxedIntegerType
2023-08-31 01:50:54 +00:00
struct PulseRuntimeChunkIndex_t
{
public :
int32_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeChunkIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x1
// Has Trivial Constructor
2023-11-09 15:17:52 +00:00
// Has Trivial Destructor
//
2024-04-19 12:05:51 +00:00
// MPulseLibraryBindings
// MPropertyDescription "Testing script helpers."
class CPulseTestScriptLib
2023-08-31 01:50:54 +00:00
{
private :
2024-04-19 12:05:51 +00:00
[[maybe_unused]] uint8_t __pad0000 [ 0x1 ] ; // 0x0
2023-08-31 01:50:54 +00:00
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x2
// Has Trivial Destructor
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MIsBoxedIntegerType
struct PulseRuntimeRegisterIndex_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int16_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeRegisterIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x30
class CPulse_OutflowConnection
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_SourceOutflowName ; // 0x0
PulseRuntimeChunkIndex_t m_nDestChunk ; // 0x8
int32_t m_nInstruction ; // 0xc
PulseRegisterMap_t m_OutflowRegisterMap ; // 0x10
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x30
class CPulse_ResumePoint : public CPulse_OutflowConnection
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// Static fields:
static CPulse_ResumePoint & Get_Invalid ( ) { return * reinterpret_cast < CPulse_ResumePoint * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " CPulse_ResumePoint " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
// No schema binary for binding
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2023-08-31 01:50:54 +00:00
// Size: 0x4
2023-11-09 15:17:52 +00:00
// Has Trivial Destructor
//
// MIsBoxedIntegerType
2024-04-19 12:05:51 +00:00
struct PulseCursorID_t
2023-08-31 01:50:54 +00:00
{
public :
int32_t m_Value ; // 0x0
// Static fields:
2024-04-19 12:05:51 +00:00
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseCursorID_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0xf8
// Has VTable
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MPulseInstanceDomainInfo
// MPulseDomainHiddenInTool
class CBasePulseGraphInstance
2023-08-31 01:50:54 +00:00
{
2024-04-19 12:05:51 +00:00
private :
[[maybe_unused]] uint8_t __pad0000 [ 0xf8 ] ; // 0x0
2023-08-31 01:50:54 +00:00
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
// Has VTable
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Destroy Fake Entity"
class CPulseCell_Step_TestDomainDestroyFakeEntity : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-19 12:05:51 +00:00
// Alignment: 4
2023-08-31 01:50:54 +00:00
// Size: 0x4
2023-11-09 15:17:52 +00:00
// Has Trivial Destructor
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
struct CPulseCell_Test_MultiOutflow_WithParams_Yielding__CursorState_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int32_t nTestStep ; // 0x0
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x1
// Has Trivial Constructor
2023-11-09 15:17:52 +00:00
// Has Trivial Destructor
//
2024-04-19 12:05:51 +00:00
// MPulseLibraryBindings
// MPropertyDescription "Test functions for the derived test domain."
class CPulseTestFuncs_DerivedDomain
2023-08-31 01:50:54 +00:00
{
2024-04-19 12:05:51 +00:00
private :
[[maybe_unused]] uint8_t __pad0000 [ 0x1 ] ; // 0x0
2023-08-31 01:50:54 +00:00
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
// Has VTable
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulseCell_BaseValue : public CPulseCell_Base
2023-08-31 01:50:54 +00:00
{
public :
} ;
2024-02-12 00:06:50 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
// Has VTable
// Is Abstract
2024-02-12 00:06:50 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
class CPulseCell_BaseYieldingInflow : public CPulseCell_BaseFlow
2024-02-12 00:06:50 +00:00
{
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x70
// Has VTable
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulseCell_Inflow_BaseEntrypoint : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
PulseRuntimeChunkIndex_t m_EntryChunk ; // 0x48
private :
[[maybe_unused]] uint8_t __pad004c [ 0x4 ] ; // 0x4c
public :
PulseRegisterMap_t m_RegisterMap ; // 0x50
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x78
// Has VTable
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Wait"
// MPropertyDescription "Causes each execution cursor to pause at this node for a fixed period of time. Each cursor will wake up and resume execution when the time expires, unless aborted or early-woken."
// MPulseEditorHeaderIcon
class CPulseCell_Inflow_Wait : public CPulseCell_BaseYieldingInflow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CPulse_ResumePoint m_WakeResume ; // 0x48
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x98
// Has VTable
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MPulseInternal_IsCursor
class CPulseExecCursor
2023-08-31 01:50:54 +00:00
{
private :
2024-04-19 12:05:51 +00:00
[[maybe_unused]] uint8_t __pad0000 [ 0x98 ] ; // 0x0
2023-08-31 01:50:54 +00:00
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x30
class SignatureOutflow_Continue : public CPulse_OutflowConnection
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// No schema binary for binding
2023-08-31 01:50:54 +00:00
} ;
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_system')
2023-11-09 15:17:52 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x80
// Has VTable
2024-02-12 00:06:50 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
class CPulseCell_WaitForCursorsWithTagBase : public CPulseCell_BaseYieldingInflow
2024-02-12 00:06:50 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// MPropertyDescription "Any extra waiting cursors will be terminated. -1 for infinite cursors."
int32_t m_nCursorsAllowedToWait ; // 0x48
private :
[[maybe_unused]] uint8_t __pad004c [ 0x4 ] ; // 0x4c
public :
CPulse_ResumePoint m_WaitComplete ; // 0x50
2024-02-12 00:06:50 +00:00
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x18
2024-02-12 00:06:50 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
struct PulseNodeDynamicOutflows_t
2024-02-12 00:06:50 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlVector < PulseNodeDynamicOutflows_t : : DynamicOutflow_t > m_Outflows ; // 0x0
2024-02-12 00:06:50 +00:00
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "[Test] Int Value 50"
// MPropertyDescription "Test node that just generates the integer 50. Nothing to see here!"
class CPulseCell_Value_TestValue50 : public CPulseCell_BaseValue
2024-02-12 00:06:50 +00:00
{
public :
2024-04-19 12:05:51 +00:00
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x48
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
class CPulseCell_Test_MultiInflow_WithDefault : public CPulseCell_BaseFlow
{
public :
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x8
// Has VTable
// Has Trivial Destructor
//
// MGapTypeQueriesForScopeSingleton
class CPulseTestGapTypeQueryRegistration
{
private :
[[maybe_unused]] uint8_t __pad0000 [ 0x8 ] ; // 0x0
public :
2024-02-12 00:06:50 +00:00
// Static fields:
2024-04-19 12:05:51 +00:00
static CPulseTestGapTypeQueryRegistration & Get_s_Instance ( ) { return * reinterpret_cast < CPulseTestGapTypeQueryRegistration * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " CPulseTestGapTypeQueryRegistration " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2024-02-12 00:06:50 +00:00
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x90
// Has VTable
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Outflow_StringSwitch : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CPulse_OutflowConnection m_DefaultCaseOutflow ; // 0x48
CUtlVector < CPulse_OutflowConnection > m_CaseOutflows ; // 0x78
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-02-12 00:06:50 +00:00
// Size: 0x48
2024-04-19 12:05:51 +00:00
// Has VTable
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
class CPulseCell_Test_NoInflow : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0xc8
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_FireCursors : public CPulseCell_BaseYieldingInflow
{
2023-08-31 01:50:54 +00:00
public :
2024-04-19 12:05:51 +00:00
CUtlVector < CPulse_OutflowConnection > m_Outflows ; // 0x48
bool m_bWaitForChildOutflows ; // 0x60
2023-08-31 01:50:54 +00:00
private :
2024-04-19 12:05:51 +00:00
[[maybe_unused]] uint8_t __pad0061 [ 0x7 ] ; // 0x61
2023-08-31 01:50:54 +00:00
public :
2024-04-19 12:05:51 +00:00
CPulse_ResumePoint m_OnFinished ; // 0x68
CPulse_ResumePoint m_OnCanceled ; // 0x98
// Static fields:
static char * & Get_m_pTagName ( ) { return * reinterpret_cast < char * * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " CPulseCell_FireCursors " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x28
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
struct CPulseCell_Outflow_CycleShuffled__InstanceState_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlVectorFixedGrowable < uint8 > m_Shuffle ; // 0x0
int32_t m_nNextShuffle ; // 0x20
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
// Has VTable
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Find Fake Entity"
class CPulseCell_Val_TestDomainFindEntityByName : public CPulseCell_BaseValue
2023-08-31 01:50:54 +00:00
{
public :
} ;
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_system')
2023-11-09 15:17:52 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x88
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Cursor Queue"
// MPropertyDescription "Causes each execution cursor to wait for the completion of all prior cursors that have visited this node. Use this to safely support multiple triggers to areas of the graph that take time to complete."
// MPulseEditorHeaderIcon
class CPulseCell_CursorQueue : public CPulseCell_WaitForCursorsWithTagBase
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// MPropertyDescription "Any cursors above this count will wait, up to the limit."
int32_t m_nCursorsAllowedToRunParallel ; // 0x80
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x60
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Outflow_CycleRandom : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlVector < CPulse_OutflowConnection > m_Outputs ; // 0x48
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x78
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Inflow_EventHandler : public CPulseCell_Inflow_BaseEntrypoint
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_EventName ; // 0x70
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x20
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulse_PublicOutput
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_Name ; // 0x0
CUtlString m_Description ; // 0x8
CPulseValueFullType m_ParamType ; // 0x10
} ;
// Registered binary: pulse_system.dll (project 'pulse_system')
// Alignment: 8
// Size: 0x1
// Has Trivial Constructor
// Has Trivial Destructor
//
// MPulseLibraryBindings
// MPropertyDescription "Library for interacting with pulse cursors."
class CPulseCursorFuncs
{
private :
[[maybe_unused]] uint8_t __pad0000 [ 0x1 ] ; // 0x0
public :
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0xc8
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
2023-11-09 15:17:52 +00:00
// MPulseCellWithCustomDocNode
2024-04-19 12:05:51 +00:00
class CPulseCell_Timeline : public CPulseCell_BaseYieldingInflow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlVector < CPulseCell_Timeline : : TimelineEvent_t > m_TimelineEvents ; // 0x48
bool m_bWaitForChildOutflows ; // 0x60
2023-08-31 01:50:54 +00:00
private :
2024-04-19 12:05:51 +00:00
[[maybe_unused]] uint8_t __pad0061 [ 0x7 ] ; // 0x61
2023-08-31 01:50:54 +00:00
public :
2024-04-19 12:05:51 +00:00
CPulse_ResumePoint m_OnFinished ; // 0x68
CPulse_ResumePoint m_OnCanceled ; // 0x98
// Static fields:
static char * & Get_m_pTagName ( ) { return * reinterpret_cast < char * * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " CPulseCell_Timeline " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x20
// Has Trivial Destructor
//
// MGetKV3ClassDefaults
class CPulse_OutputConnection
{
public :
CUtlSymbolLarge m_SourceOutput ; // 0x0
CUtlSymbolLarge m_TargetEntity ; // 0x8
CUtlSymbolLarge m_TargetInput ; // 0x10
CUtlSymbolLarge m_Param ; // 0x18
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x18
//
// MGetKV3ClassDefaults
struct PulseGraphExecutionHistoryNodeDesc_t
{
public :
CBufferString strCellDesc ; // 0x0
CUtlSymbolLarge strBindingName ; // 0x10
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x30
class SignatureOutflow_Resume : public CPulse_ResumePoint
{
public :
// No schema binary for binding
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x1
// Has Trivial Constructor
// Has Trivial Destructor
//
// MPulseProvideFeatureTag
// MPulseLibraryBindings
class FakeEntity_tAPI
{
private :
[[maybe_unused]] uint8_t __pad0000 [ 0x1 ] ; // 0x0
public :
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0xa0
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
2023-11-09 15:17:52 +00:00
// MPulseCellWithCustomDocNode
2024-04-19 12:05:51 +00:00
class CPulseCell_Step_CallExternalMethod : public CPulseCell_BaseYieldingInflow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_MethodName ; // 0x48
CUtlSymbolLarge m_GameBlackboard ; // 0x50
CUtlLeanVector < CPulseRuntimeMethodArg > m_ExpectedArgs ; // 0x58
PulseMethodCallMode_t m_nAsyncCallMode ; // 0x68
private :
[[maybe_unused]] uint8_t __pad006c [ 0x4 ] ; // 0x6c
public :
CPulse_ResumePoint m_OnFinished ; // 0x70
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x118
// Has VTable
//
// MPulseInstanceDomainInfo
// MPulseDomainHookInfo
// MPulseLibraryBindings
class CPulseGraphInstance_TurtleGraphics : public CBasePulseGraphInstance
{
public :
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x4
// Has Trivial Destructor
//
// MIsBoxedIntegerType
struct PulseRuntimeOutputIndex_t
{
public :
int32_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeOutputIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x18
// Has Trivial Destructor
//
// MGetKV3ClassDefaults
struct PulseGraphExecutionHistoryEntry_t
{
public :
PulseCursorID_t nCursorID ; // 0x0
PulseDocNodeID_t nEditorID ; // 0x4
float flExecTime ; // 0x8
uint32_t unFlags ; // 0xc
CUtlSymbolLarge tagName ; // 0x10
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x4
// Has Trivial Destructor
//
// MIsBoxedIntegerType
struct PulseCursorYieldToken_t
{
public :
int32_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseCursorYieldToken_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x4
// Has Trivial Destructor
//
// MIsBoxedIntegerType
struct PulseGraphInstanceID_t
{
public :
uint32_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseGraphInstanceID_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0xd8
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
class CPulseCell_TestWaitWithCursorState : public CPulseCell_BaseYieldingInflow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// MPulseCellOutflow_IsDefault
CPulse_ResumePoint m_WakeResume ; // 0x48
CPulse_ResumePoint m_WakeCancel ; // 0x78
CPulse_ResumePoint m_WakeFail ; // 0xa8
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0xf8
//
// MGetKV3ClassDefaults
class CPulse_BlackboardReference
{
public :
CResourceNameTyped < CWeakHandle < InfoForResourceTypeIPulseGraphDef > > m_hBlackboardResource ; // 0x0
CUtlSymbolLarge m_BlackboardResource ; // 0xe0
PulseDocNodeID_t m_nNodeID ; // 0xe8
private :
[[maybe_unused]] uint8_t __pad00ec [ 0x4 ] ; // 0xec
public :
CGlobalSymbol m_NodeName ; // 0xf0
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x78
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
2023-11-09 15:17:52 +00:00
// MPulseCellWithCustomDocNode
2024-04-19 12:05:51 +00:00
class CPulseCell_Inflow_Yield : public CPulseCell_BaseYieldingInflow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CPulse_ResumePoint m_UnyieldResume ; // 0x48
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x2
// Has Trivial Destructor
//
// MIsBoxedIntegerType
struct PulseRuntimeBlackboardReferenceIndex_t
{
public :
int16_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeBlackboardReferenceIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x4
// Has Trivial Destructor
//
// MIsBoxedIntegerType
struct PulseRuntimeCellIndex_t
{
public :
int32_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeCellIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x38
//
// MGetKV3ClassDefaults
class CPulse_Variable
{
public :
CUtlSymbolLarge m_Name ; // 0x0
CUtlString m_Description ; // 0x8
CPulseValueFullType m_Type ; // 0x10
KeyValues3 m_DefaultValue ; // 0x20
private :
[[maybe_unused]] uint8_t __pad0030 [ 0x2 ] ; // 0x30
public :
bool m_bIsPublic ; // 0x32
bool m_bIsObservable ; // 0x33
PulseDocNodeID_t m_nEditorNodeID ; // 0x34
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0xa8
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Inflow_Method : public CPulseCell_Inflow_BaseEntrypoint
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_MethodName ; // 0x70
CUtlString m_Description ; // 0x78
bool m_bIsPublic ; // 0x80
private :
[[maybe_unused]] uint8_t __pad0081 [ 0x7 ] ; // 0x81
public :
CPulseValueFullType m_ReturnType ; // 0x88
CUtlLeanVector < CPulseRuntimeMethodArg > m_Args ; // 0x98
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x120
2023-11-09 15:17:52 +00:00
// Has VTable
//
2024-04-19 12:05:51 +00:00
// MPulseInstanceDomainInfo
// MPulseDomainHookInfo
// MPulseLibraryBindings
// MPulseDomainOptInFeatureTag
class CPulseGraphInstance_TestDomain : public CBasePulseGraphInstance
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
bool m_bIsRunningUnitTests ; // 0xf8
bool m_bExplicitTimeStepping ; // 0xf9
bool m_bExpectingToDestroyWithYieldedCursors ; // 0xfa
private :
[[maybe_unused]] uint8_t __pad00fb [ 0x1 ] ; // 0xfb
public :
int32_t m_nNextValidateIndex ; // 0xfc
CUtlVector < CUtlString > m_Tracepoints ; // 0x100
bool m_bTestYesOrNoPath ; // 0x118
// Static fields:
static double & Get_s_flExplicitCurTime ( ) { return * reinterpret_cast < double * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " CPulseGraphInstance_TestDomain " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x1
// Has Trivial Constructor
// Has Trivial Destructor
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MPulseProvideFeatureTag
// MPulseLibraryBindings
class FakeEntityDerivedB_tAPI
2023-08-31 01:50:54 +00:00
{
2024-04-19 12:05:51 +00:00
private :
[[maybe_unused]] uint8_t __pad0000 [ 0x1 ] ; // 0x0
2023-08-31 01:50:54 +00:00
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x38
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
struct PulseNodeDynamicOutflows_t__DynamicOutflow_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CGlobalSymbol m_OutflowID ; // 0x0
// MFgdFromSchemaCompletelySkipField
CPulse_OutflowConnection m_Connection ; // 0x8
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x60
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Outflow_CycleShuffled : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlVector < CPulse_OutflowConnection > m_Outputs ; // 0x48
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x50
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
2023-11-09 15:17:52 +00:00
// MPulseCellWithCustomDocNode
2024-04-19 12:05:51 +00:00
class CPulseCell_Step_PublicOutput : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
PulseRuntimeOutputIndex_t m_OutputIndex ; // 0x48
2023-08-31 01:50:54 +00:00
} ;
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_system')
2023-11-09 15:17:52 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x30
struct CPulseCell_WaitForCursorsWithTagBase__CursorState_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_TagName ; // 0x0
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-19 12:05:51 +00:00
// Alignment: 4
// Size: 0x8
// Has Trivial Constructor
// Has Trivial Destructor
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
struct CPulseCell_TestWaitWithCursorState__CursorState_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
float flWaitValue ; // 0x0
bool bFailOnCancel ; // 0x4
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-19 12:05:51 +00:00
// Alignment: 8
// Size: 0x18
2023-11-09 15:17:52 +00:00
// Has Trivial Destructor
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulse_DomainValue
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
PulseDomainValueType_t m_nType ; // 0x0
CGlobalSymbol m_Value ; // 0x8
CGlobalSymbol m_ExpectedRuntimeType ; // 0x10
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Spawn Fake Entity"
class CPulseCell_Step_TestDomainCreateFakeEntity : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x50
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Fake Ent-Fire"
// MPulseEditorHeaderText
class CPulseCell_Step_TestDomainEntFire : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlString m_Input ; // 0x48
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x1
// Has Trivial Constructor
// Has Trivial Destructor
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MPulseLibraryBindings
// MPropertyDescription "Basic math support."
class CPulseMathlib
2023-08-31 01:50:54 +00:00
{
2024-04-19 12:05:51 +00:00
private :
[[maybe_unused]] uint8_t __pad0000 [ 0x1 ] ; // 0x0
2023-08-31 01:50:54 +00:00
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x2
// Has Trivial Destructor
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MIsBoxedIntegerType
struct PulseRuntimeConstantIndex_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int16_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeConstantIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0xa8
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
class CPulseCell_Test_MultiOutflow_WithParams : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// MPulseCellOutflow_IsDefault
SignatureOutflow_Continue m_Out1 ; // 0x48
SignatureOutflow_Continue m_Out2 ; // 0x78
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x138
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
class CPulseCell_Test_MultiOutflow_WithParams_Yielding : public CPulseCell_BaseYieldingInflow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// MPulseCellOutflow_IsDefault
SignatureOutflow_Continue m_Out1 ; // 0x48
SignatureOutflow_Continue m_AsyncChild1 ; // 0x78
SignatureOutflow_Continue m_AsyncChild2 ; // 0xa8
SignatureOutflow_Resume m_YieldResume1 ; // 0xd8
SignatureOutflow_Resume m_YieldResume2 ; // 0x108
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x128
2023-11-09 15:17:52 +00:00
// Has VTable
//
2024-04-19 12:05:51 +00:00
// MPulseInstanceDomainInfo
// MPulseDomainHookInfo
// MPulseLibraryBindings
// MPulseDomainHiddenInTool
class CPulseGraphInstance_TestDomain_Derived : public CPulseGraphInstance_TestDomain
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int32_t m_nInstanceValueX ; // 0x120
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x98
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
2023-11-09 15:17:52 +00:00
// MPulseCellWithCustomDocNode
2024-04-19 12:05:51 +00:00
class CPulseCell_Inflow_EntOutputHandler : public CPulseCell_Inflow_BaseEntrypoint
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_SourceEntity ; // 0x70
CUtlSymbolLarge m_SourceOutput ; // 0x78
CUtlSymbolLarge m_TargetInput ; // 0x80
CPulseValueFullType m_ExpectedParamType ; // 0x88
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x4
// Has Trivial Destructor
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MIsBoxedIntegerType
struct PulseRuntimeCallInfoIndex_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int32_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeCallInfoIndex_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x1
// Has Trivial Constructor
// Has Trivial Destructor
//
// MPulseProvideFeatureTag
// MPulseLibraryBindings
class FakeEntityDerivedA_tAPI
{
2024-02-12 00:06:50 +00:00
private :
2024-04-19 12:05:51 +00:00
[[maybe_unused]] uint8_t __pad0000 [ 0x1 ] ; // 0x0
2024-02-12 00:06:50 +00:00
public :
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
2024-02-12 00:06:50 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Tracepoint"
class CPulseCell_Step_TestDomainTracepoint : public CPulseCell_BaseFlow
2024-02-12 00:06:50 +00:00
{
public :
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x28
2024-02-12 00:06:50 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
struct PulseGraphExecutionHistoryCursorDesc_t
2024-02-12 00:06:50 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlVector < PulseCursorID_t > vecAncestorCursorIDs ; // 0x0
PulseDocNodeID_t nSpawnNodeID ; // 0x18
PulseDocNodeID_t nRetiredAtNodeID ; // 0x1c
float flLastReferenced ; // 0x20
int32_t nLastValidEntryIdx ; // 0x24
2024-02-12 00:06:50 +00:00
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x168
// Has VTable
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Inflow_ObservableVariableListener : public CPulseCell_Inflow_BaseEntrypoint
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// -> m_hBlackboardResource - 0x70
// -> m_BlackboardResource - 0x150
// -> m_nNodeID - 0x158
// -> m_NodeName - 0x160
CPulse_BlackboardReference m_BlackboardReference ; // 0x70
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Get Fake Entity Name"
class CPulseCell_Val_TestDomainGetEntityName : public CPulseCell_BaseValue
2023-08-31 01:50:54 +00:00
{
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x40
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
class CPulse_CallInfo
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_PortName ; // 0x0
PulseDocNodeID_t m_nEditorNodeID ; // 0x8
2023-08-31 01:50:54 +00:00
private :
2024-04-19 12:05:51 +00:00
[[maybe_unused]] uint8_t __pad000c [ 0x4 ] ; // 0xc
2023-08-31 01:50:54 +00:00
public :
2024-04-19 12:05:51 +00:00
PulseRegisterMap_t m_RegisterMap ; // 0x10
PulseDocNodeID_t m_CallMethodID ; // 0x30
PulseRuntimeChunkIndex_t m_nSrcChunk ; // 0x34
int32_t m_nSrcInstruction ; // 0x38
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x58
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulse_RegisterInfo
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
PulseRuntimeRegisterIndex_t m_nReg ; // 0x0
CPulseValueFullType m_Type ; // 0x8
CKV3MemberNameWithStorage m_OriginName ; // 0x18
int32_t m_nWrittenByInstruction ; // 0x50
int32_t m_nLastReadByInstruction ; // 0x54
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x88
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulse_InvokeBinding
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
PulseRegisterMap_t m_RegisterMap ; // 0x0
CUtlSymbolLarge m_FuncName ; // 0x20
PulseRuntimeCellIndex_t m_nCellIndex ; // 0x28
PulseRuntimeChunkIndex_t m_nSrcChunk ; // 0x2c
int32_t m_nSrcInstruction ; // 0x30
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0xa0
2023-11-09 15:17:52 +00:00
// Has VTable
//
2024-04-19 12:05:51 +00:00
// MPulseLibraryBindings
// MPulseInternal_IsCursor
class CTestDomainDerived_Cursor : public CPulseExecCursor
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
int32_t m_nCursorValueA ; // 0x98
int32_t m_nCursorValueB ; // 0x9c
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x78
2023-11-09 15:17:52 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulseGraphExecutionHistory
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
PulseGraphInstanceID_t m_nInstanceID ; // 0x0
CUtlString m_strFileName ; // 0x8
CUtlVector < PulseGraphExecutionHistoryEntry_t * > m_vecHistory ; // 0x10
CUtlOrderedMap < PulseDocNodeID_t , PulseGraphExecutionHistoryNodeDesc_t * > m_mapCellDesc ; // 0x28
CUtlOrderedMap < PulseCursorID_t , PulseGraphExecutionHistoryCursorDesc_t * > m_mapCursorDesc ; // 0x50
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x90
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Outflow_IntSwitch : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CPulse_OutflowConnection m_DefaultCaseOutflow ; // 0x48
CUtlVector < CPulse_OutflowConnection > m_CaseOutflows ; // 0x78
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x178
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulseGraphDef
2023-08-31 01:50:54 +00:00
{
2024-04-19 12:05:51 +00:00
private :
[[maybe_unused]] uint8_t __pad0000 [ 0x8 ] ; // 0x0
2023-08-31 01:50:54 +00:00
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_DomainIdentifier ; // 0x8
CUtlSymbolLarge m_ParentMapName ; // 0x10
CUtlSymbolLarge m_ParentXmlName ; // 0x18
CUtlVector < CUtlSymbolLarge > m_vecGameBlackboards ; // 0x20
CUtlVector < CPulse_Chunk * > m_Chunks ; // 0x38
CUtlVector < CPulseCell_Base * > m_Cells ; // 0x50
CUtlVector < CPulse_Variable > m_Vars ; // 0x68
CUtlVector < CPulse_PublicOutput > m_PublicOutputs ; // 0x80
CUtlVector < CPulse_InvokeBinding * > m_InvokeBindings ; // 0x98
CUtlVector < CPulse_CallInfo * > m_CallInfos ; // 0xb0
CUtlVector < CPulse_Constant > m_Constants ; // 0xc8
CUtlVector < CPulse_DomainValue > m_DomainValues ; // 0xe0
CUtlVector < CPulse_BlackboardReference > m_BlackboardReferences ; // 0xf8
CUtlVector < CPulse_OutputConnection * > m_OutputConnections ; // 0x110
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
2024-02-12 00:06:50 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
class CPulseCell_Test_MultiInflow_NoDefault : public CPulseCell_BaseFlow
2024-02-12 00:06:50 +00:00
{
public :
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-04-19 12:05:51 +00:00
// Alignment: 8
// Size: 0x28
2024-02-12 00:06:50 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulse_Constant
2024-02-12 00:06:50 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CPulseValueFullType m_Type ; // 0x0
KeyValues3 m_Value ; // 0x10
2024-02-12 00:06:50 +00:00
} ;
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_system')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x88
2023-11-09 15:17:52 +00:00
// Has VTable
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Wait For Cursors With Tag"
// MPropertyDescription "Causes this execution cursor to wait for the completion of other cursors with the given tag. Can optionally kill the tag while waiting."
// MPulseEditorHeaderIcon
class CPulseCell_WaitForCursorsWithTag : public CPulseCell_WaitForCursorsWithTagBase
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// MPropertyDescription "Apply the same tag we're waiting on to the resulting cursor upon wait completion. Can be used to wait on our result cursor with the same tag."
bool m_bTagSelfWhenComplete ; // 0x80
private :
[[maybe_unused]] uint8_t __pad0081 [ 0x3 ] ; // 0x81
public :
// MPropertyDescription "When we start waiting, how should we handle existing cursors?"
PulseCursorCancelPriority_t m_nDesiredKillPriority ; // 0x84
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x78
2023-11-09 15:17:52 +00:00
// Has VTable
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Inflow_GraphHook : public CPulseCell_Inflow_BaseEntrypoint
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlSymbolLarge m_HookName ; // 0x70
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x38
2023-11-09 15:17:52 +00:00
// Has Trivial Destructor
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
struct PGDInstruction_t
2023-08-31 01:50:54 +00:00
{
2024-04-19 12:05:51 +00:00
public :
PulseInstructionCode_t m_nCode ; // 0x0
PulseRuntimeVarIndex_t m_nVar ; // 0x4
PulseRuntimeRegisterIndex_t m_nReg0 ; // 0x8
PulseRuntimeRegisterIndex_t m_nReg1 ; // 0xa
PulseRuntimeRegisterIndex_t m_nReg2 ; // 0xc
2023-08-31 01:50:54 +00:00
private :
2024-04-19 12:05:51 +00:00
[[maybe_unused]] uint8_t __pad000e [ 0x2 ] ; // 0xe
2023-08-31 01:50:54 +00:00
public :
2024-04-19 12:05:51 +00:00
PulseRuntimeInvokeIndex_t m_nInvokeBindingIndex ; // 0x10
PulseRuntimeChunkIndex_t m_nChunk ; // 0x14
int32_t m_nDestInstruction ; // 0x18
PulseRuntimeCallInfoIndex_t m_nCallInfoIndex ; // 0x1c
PulseRuntimeConstantIndex_t m_nConstIdx ; // 0x20
PulseRuntimeDomainValueIndex_t m_nDomainValueIdx ; // 0x22
PulseRuntimeBlackboardReferenceIndex_t m_nBlackboardReferenceIdx ; // 0x24
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0xa8
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "[Test] Explicit Yes/No Outflow"
// MPropertyDescription "Test node that picks between two outflows as specified in the test domain."
class CPulseCell_Outflow_TestExplicitYesNo : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// MPropertyFriendlyName "Yes"
CPulse_OutflowConnection m_Yes ; // 0x48
// MPropertyFriendlyName "No"
CPulse_OutflowConnection m_No ; // 0x78
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0xa8
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "[Test] Random Yes/No Outflow"
// MPropertyDescription "Test node that randomly picks between two outflows."
class CPulseCell_Outflow_TestRandomYesNo : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
// MPropertyFriendlyName "Yes"
// MPropertyDescription "Randomly taken half of the time"
CPulse_OutflowConnection m_Yes ; // 0x48
// MPropertyFriendlyName "No"
// MPropertyDescription "Randomly taken half of the time"
CPulse_OutflowConnection m_No ; // 0x78
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2023-08-31 01:50:54 +00:00
// Size: 0x48
2023-11-09 15:17:52 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Step_DebugLog : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x38
2023-11-09 15:17:52 +00:00
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
struct CPulseCell_Timeline__TimelineEvent_t
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
float m_flTimeFromPrevious ; // 0x0
bool m_bPauseForPreviousEvents ; // 0x4
bool m_bCallModeSync ; // 0x5
private :
[[maybe_unused]] uint8_t __pad0006 [ 0x2 ] ; // 0x6
public :
CPulse_OutflowConnection m_EventOutflow ; // 0x8
2023-08-31 01:50:54 +00:00
} ;
2023-11-09 15:17:52 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x60
2023-11-09 15:17:52 +00:00
// Has VTable
//
2024-04-19 12:05:51 +00:00
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
// MPulseCellOutflowHookInfo
// MPulseCellWithCustomDocNode
class CPulseCell_Outflow_CycleOrdered : public CPulseCell_BaseFlow
2023-08-31 01:50:54 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CUtlVector < CPulse_OutflowConnection > m_Outputs ; // 0x48
2023-08-31 01:50:54 +00:00
} ;
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x50
2024-02-12 00:06:50 +00:00
//
// MGetKV3ClassDefaults
2024-04-19 12:05:51 +00:00
class CPulseRuntimeMethodArg
2024-02-12 00:06:50 +00:00
{
public :
2024-04-19 12:05:51 +00:00
CKV3MemberNameWithStorage m_Name ; // 0x0
CUtlString m_Description ; // 0x38
CPulseValueFullType m_Type ; // 0x40
} ;
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
// Alignment: 8
// Size: 0x2
// Has Trivial Destructor
//
// MIsBoxedIntegerType
struct PulseRuntimeStateOffset_t
{
2024-02-12 00:06:50 +00:00
public :
2024-04-19 12:05:51 +00:00
uint16_t m_Value ; // 0x0
// Static fields:
static bool & Get_IS_TYPESAFE_INTEGER ( ) { return * reinterpret_cast < bool * > ( interfaces : : g_schema - > FindTypeScopeForModule ( " pulse_system.dll " ) - > FindDeclaredClass ( " PulseRuntimeStateOffset_t " ) - > m_static_fields [ 0 ] - > m_instance ) ; } ;
2024-02-12 00:06:50 +00:00
} ;
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0x48
2024-02-12 00:06:50 +00:00
// Has VTable
//
// MGetKV3ClassDefaults
// MCellForDomain
// MPulseCellMethodBindings
2024-04-19 12:05:51 +00:00
// MPulseCellOutflowHookInfo
// MPropertyFriendlyName "Random Integer"
// MPropertyDescription "Generate a random integer between min and max (inclusive)"
2024-02-12 00:06:50 +00:00
// MPulseEditorHeaderIcon
2024-04-19 12:05:51 +00:00
class CPulseCell_Value_RandomInt : public CPulseCell_BaseValue
2024-02-12 00:06:50 +00:00
{
public :
} ;
2024-04-19 12:05:51 +00:00
// Registered binary: pulse_system.dll (project 'pulse_runtime_lib')
2024-02-12 00:06:50 +00:00
// Alignment: 8
2024-04-19 12:05:51 +00:00
// Size: 0xb0
2024-02-12 00:06:50 +00:00
// Has VTable
//
2024-04-19 12:05:51 +00:00
// MPulseLibraryBindings
// MPulseInternal_IsCursor
class CPulseTurtleGraphicsCursor : public CPulseExecCursor
2024-02-12 00:06:50 +00:00
{
public :
2024-04-19 12:05:51 +00:00
Color m_Color ; // 0x98
Vector2D m_vPos ; // 0x9c
float m_flHeadingDeg ; // 0xa4
bool m_bPenUp ; // 0xa8
2024-02-12 00:06:50 +00:00
} ;