mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-24 22:35:35 +08:00
Improve schema parsing
This commit is contained in:
parent
efe4775dc0
commit
ce0fb918ab
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper {
|
namespace CS2Dumper {
|
||||||
// Module: client.dll
|
// Module: client.dll
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ pub mod cs2_dumper {
|
|||||||
pub const sprint: usize = 0x172EF40;
|
pub const sprint: usize = 0x172EF40;
|
||||||
pub const turnleft: usize = 0x172F180;
|
pub const turnleft: usize = 0x172F180;
|
||||||
pub const turnright: usize = 0x172F210;
|
pub const turnright: usize = 0x172F210;
|
||||||
pub const use: usize = 0x172F4E0;
|
pub const r#use: usize = 0x172F4E0;
|
||||||
pub const zoom: usize = 0x192A440;
|
pub const zoom: usize = 0x192A440;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
9732
output/client.dll.cs
9732
output/client.dll.cs
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
9740
output/client.dll.rs
9740
output/client.dll.rs
File diff suppressed because it is too large
Load Diff
@ -1,11 +1,42 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
// Module: engine2.dll
|
// Module: engine2.dll
|
||||||
// Classes count: 15
|
// Classes count: 2
|
||||||
// Enums count: 0
|
// Enums count: 4
|
||||||
public static class Engine2Dll {
|
public static class Engine2Dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
public enum EntityDormancyType_t : uint {
|
||||||
|
ENTITY_NOT_DORMANT = 0x0,
|
||||||
|
ENTITY_DORMANT = 0x1,
|
||||||
|
ENTITY_SUSPENDED = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
public enum EntityIOTargetType_t : uint {
|
||||||
|
ENTITY_IO_TARGET_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
|
ENTITY_IO_TARGET_ENTITYNAME = 0x2,
|
||||||
|
ENTITY_IO_TARGET_EHANDLE = 0x6,
|
||||||
|
ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME = 0x7
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
public enum SpawnDebugOverrideState_t : uint {
|
||||||
|
SPAWN_DEBUG_OVERRIDE_NONE = 0x0,
|
||||||
|
SPAWN_DEBUG_OVERRIDE_FORCE_ENABLED = 0x1,
|
||||||
|
SPAWN_DEBUG_OVERRIDE_FORCE_DISABLED = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 5
|
||||||
|
public enum SpawnDebugRestrictionOverrideState_t : uint {
|
||||||
|
SPAWN_DEBUG_RESTRICT_NONE = 0x0,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_MANAGER_DISTANCE_REQS = 0x1,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_DISTANCE_LOS_REQS = 0x2,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_COOLDOWN_LIMITS = 0x4,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_TARGET_COOLDOWN_LIMITS = 0x8
|
||||||
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 11
|
// Fields count: 11
|
||||||
//
|
//
|
||||||
@ -36,106 +67,5 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_CScriptComponent = 0x28; // CScriptComponent*
|
public const nint m_CScriptComponent = 0x28; // CScriptComponent*
|
||||||
public const nint m_bVisibleinPVS = 0x30; // bool
|
public const nint m_bVisibleinPVS = 0x30; // bool
|
||||||
}
|
}
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class TestResource_t {
|
|
||||||
public const nint m_name = 0x0; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVoxelVisibility {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCRenderMesh {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CFuseSymbolTable {
|
|
||||||
public const nint m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
|
||||||
public const nint m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
|
||||||
public const nint m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
|
||||||
public const nint m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
public const nint m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
public const nint m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCJavaScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeIAnimGraphModelBinding {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCGcExportableExternalData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class ConstantInfo_t {
|
|
||||||
public const nint m_name = 0x0; // CUtlString
|
|
||||||
public const nint m_nameToken = 0x8; // CUtlStringToken
|
|
||||||
public const nint m_flValue = 0xC; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeManifestTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVSoundStackScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCChoreoSceneFileData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCMorphSetData {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -8,9 +8,40 @@
|
|||||||
namespace cs2_dumper {
|
namespace cs2_dumper {
|
||||||
namespace schemas {
|
namespace schemas {
|
||||||
// Module: engine2.dll
|
// Module: engine2.dll
|
||||||
// Classes count: 15
|
// Classes count: 2
|
||||||
// Enums count: 0
|
// Enums count: 4
|
||||||
namespace engine2_dll {
|
namespace engine2_dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
enum class EntityDormancyType_t : uint32_t {
|
||||||
|
ENTITY_NOT_DORMANT = 0x0,
|
||||||
|
ENTITY_DORMANT = 0x1,
|
||||||
|
ENTITY_SUSPENDED = 0x2
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
enum class EntityIOTargetType_t : uint32_t {
|
||||||
|
ENTITY_IO_TARGET_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
|
ENTITY_IO_TARGET_ENTITYNAME = 0x2,
|
||||||
|
ENTITY_IO_TARGET_EHANDLE = 0x6,
|
||||||
|
ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME = 0x7
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
enum class SpawnDebugOverrideState_t : uint32_t {
|
||||||
|
SPAWN_DEBUG_OVERRIDE_NONE = 0x0,
|
||||||
|
SPAWN_DEBUG_OVERRIDE_FORCE_ENABLED = 0x1,
|
||||||
|
SPAWN_DEBUG_OVERRIDE_FORCE_DISABLED = 0x2
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 5
|
||||||
|
enum class SpawnDebugRestrictionOverrideState_t : uint32_t {
|
||||||
|
SPAWN_DEBUG_RESTRICT_NONE = 0x0,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_MANAGER_DISTANCE_REQS = 0x1,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_DISTANCE_LOS_REQS = 0x2,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_COOLDOWN_LIMITS = 0x4,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_TARGET_COOLDOWN_LIMITS = 0x8
|
||||||
|
};
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 11
|
// Fields count: 11
|
||||||
//
|
//
|
||||||
@ -41,107 +72,6 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_CScriptComponent = 0x28; // CScriptComponent*
|
constexpr std::ptrdiff_t m_CScriptComponent = 0x28; // CScriptComponent*
|
||||||
constexpr std::ptrdiff_t m_bVisibleinPVS = 0x30; // bool
|
constexpr std::ptrdiff_t m_bVisibleinPVS = 0x30; // bool
|
||||||
}
|
}
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace TestResource_t {
|
|
||||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVoxelVisibility {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCRenderMesh {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CFuseSymbolTable {
|
|
||||||
constexpr std::ptrdiff_t m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
constexpr std::ptrdiff_t m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
constexpr std::ptrdiff_t m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCJavaScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeIAnimGraphModelBinding {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCGcExportableExternalData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace ConstantInfo_t {
|
|
||||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_nameToken = 0x8; // CUtlStringToken
|
|
||||||
constexpr std::ptrdiff_t m_flValue = 0xC; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeManifestTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVSoundStackScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCChoreoSceneFileData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCMorphSetData {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -18,8 +18,8 @@
|
|||||||
"metadata": [
|
"metadata": [
|
||||||
{
|
{
|
||||||
"name": "m_nameStringableIndex",
|
"name": "m_nameStringableIndex",
|
||||||
"ty": "int32",
|
"type": "NetworkVarNames",
|
||||||
"type": "NetworkVarNames"
|
"type_name": "int32"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
@ -34,161 +34,58 @@
|
|||||||
"metadata": [
|
"metadata": [
|
||||||
{
|
{
|
||||||
"name": "m_pEntity",
|
"name": "m_pEntity",
|
||||||
"ty": "CEntityIdentity*",
|
"type": "NetworkVarNames",
|
||||||
"type": "NetworkVarNames"
|
"type_name": "CEntityIdentity*"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "m_CScriptComponent",
|
"name": "m_CScriptComponent",
|
||||||
"ty": "CScriptComponent::Storage_t",
|
"type": "NetworkVarNames",
|
||||||
"type": "NetworkVarNames"
|
"type_name": "CScriptComponent::Storage_t"
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CFuseSymbolTable": {
|
|
||||||
"fields": {
|
|
||||||
"m_constantMap": 72,
|
|
||||||
"m_constants": 0,
|
|
||||||
"m_functionMap": 136,
|
|
||||||
"m_functions": 48,
|
|
||||||
"m_variableMap": 104,
|
|
||||||
"m_variables": 24
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"ConstantInfo_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_flValue": 12,
|
|
||||||
"m_name": 0,
|
|
||||||
"m_nameToken": 8
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCChoreoSceneFileData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCGcExportableExternalData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCJavaScriptResource": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCMorphSetData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCRenderMesh": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVPhysXSurfacePropertiesList": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVSoundStackScriptList": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVoxelVisibility": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeIAnimGraphModelBinding": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeManifestTestResource_t": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"TestResource_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_name": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"EntityDormancyType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"ENTITY_DORMANT": 1,
|
||||||
|
"ENTITY_NOT_DORMANT": 0,
|
||||||
|
"ENTITY_SUSPENDED": 2
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"EntityIOTargetType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"ENTITY_IO_TARGET_EHANDLE": 6,
|
||||||
|
"ENTITY_IO_TARGET_ENTITYNAME": 2,
|
||||||
|
"ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME": 7,
|
||||||
|
"ENTITY_IO_TARGET_INVALID": -1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"SpawnDebugOverrideState_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"SPAWN_DEBUG_OVERRIDE_FORCE_DISABLED": 2,
|
||||||
|
"SPAWN_DEBUG_OVERRIDE_FORCE_ENABLED": 1,
|
||||||
|
"SPAWN_DEBUG_OVERRIDE_NONE": 0
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"SpawnDebugRestrictionOverrideState_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"SPAWN_DEBUG_RESTRICT_IGNORE_MANAGER_DISTANCE_REQS": 1,
|
||||||
|
"SPAWN_DEBUG_RESTRICT_IGNORE_TARGET_COOLDOWN_LIMITS": 8,
|
||||||
|
"SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_COOLDOWN_LIMITS": 4,
|
||||||
|
"SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_DISTANCE_LOS_REQS": 2,
|
||||||
|
"SPAWN_DEBUG_RESTRICT_NONE": 0
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,14 +1,49 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
pub mod cs2_dumper {
|
pub mod cs2_dumper {
|
||||||
pub mod schemas {
|
pub mod schemas {
|
||||||
// Module: engine2.dll
|
// Module: engine2.dll
|
||||||
// Classes count: 15
|
// Classes count: 2
|
||||||
// Enums count: 0
|
// Enums count: 4
|
||||||
pub mod engine2_dll {
|
pub mod engine2_dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum EntityDormancyType_t {
|
||||||
|
ENTITY_NOT_DORMANT = 0x0,
|
||||||
|
ENTITY_DORMANT = 0x1,
|
||||||
|
ENTITY_SUSPENDED = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum EntityIOTargetType_t {
|
||||||
|
ENTITY_IO_TARGET_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
|
ENTITY_IO_TARGET_ENTITYNAME = 0x2,
|
||||||
|
ENTITY_IO_TARGET_EHANDLE = 0x6,
|
||||||
|
ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME = 0x7
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum SpawnDebugOverrideState_t {
|
||||||
|
SPAWN_DEBUG_OVERRIDE_NONE = 0x0,
|
||||||
|
SPAWN_DEBUG_OVERRIDE_FORCE_ENABLED = 0x1,
|
||||||
|
SPAWN_DEBUG_OVERRIDE_FORCE_DISABLED = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 5
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum SpawnDebugRestrictionOverrideState_t {
|
||||||
|
SPAWN_DEBUG_RESTRICT_NONE = 0x0,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_MANAGER_DISTANCE_REQS = 0x1,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_DISTANCE_LOS_REQS = 0x2,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_COOLDOWN_LIMITS = 0x4,
|
||||||
|
SPAWN_DEBUG_RESTRICT_IGNORE_TARGET_COOLDOWN_LIMITS = 0x8
|
||||||
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 11
|
// Fields count: 11
|
||||||
//
|
//
|
||||||
@ -39,107 +74,6 @@ pub mod cs2_dumper {
|
|||||||
pub const m_CScriptComponent: usize = 0x28; // CScriptComponent*
|
pub const m_CScriptComponent: usize = 0x28; // CScriptComponent*
|
||||||
pub const m_bVisibleinPVS: usize = 0x30; // bool
|
pub const m_bVisibleinPVS: usize = 0x30; // bool
|
||||||
}
|
}
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod TestResource_t {
|
|
||||||
pub const m_name: usize = 0x0; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVoxelVisibility {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCRenderMesh {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CFuseSymbolTable {
|
|
||||||
pub const m_constants: usize = 0x0; // CUtlVector<ConstantInfo_t>
|
|
||||||
pub const m_variables: usize = 0x18; // CUtlVector<VariableInfo_t>
|
|
||||||
pub const m_functions: usize = 0x30; // CUtlVector<FunctionInfo_t>
|
|
||||||
pub const m_constantMap: usize = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
pub const m_variableMap: usize = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
pub const m_functionMap: usize = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCJavaScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeIAnimGraphModelBinding {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCGcExportableExternalData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod ConstantInfo_t {
|
|
||||||
pub const m_name: usize = 0x0; // CUtlString
|
|
||||||
pub const m_nameToken: usize = 0x8; // CUtlStringToken
|
|
||||||
pub const m_flValue: usize = 0xC; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeManifestTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVSoundStackScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCChoreoSceneFileData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCMorphSetData {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"build_number": 14001,
|
"build_number": 14001,
|
||||||
"timestamp": "2024-04-04T13:40:42.514657500+00:00"
|
"timestamp": "2024-04-05T17:13:47.447480800+00:00"
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Interfaces {
|
namespace CS2Dumper.Interfaces {
|
||||||
// Module: animationsystem.dll
|
// Module: animationsystem.dll
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
|
@ -1,11 +1,48 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
// Module: materialsystem2.dll
|
// Module: materialsystem2.dll
|
||||||
// Classes count: 13
|
// Classes count: 13
|
||||||
// Enums count: 0
|
// Enums count: 5
|
||||||
public static class Materialsystem2Dll {
|
public static class Materialsystem2Dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
public enum VertJustification_e : uint {
|
||||||
|
VERT_JUSTIFICATION_TOP = 0x0,
|
||||||
|
VERT_JUSTIFICATION_CENTER = 0x1,
|
||||||
|
VERT_JUSTIFICATION_BOTTOM = 0x2,
|
||||||
|
VERT_JUSTIFICATION_NONE = 0x3
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
public enum LayoutPositionType_e : uint {
|
||||||
|
LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE = 0x0,
|
||||||
|
LAYOUTPOSITIONTYPE_FRACTIONAL = 0x1,
|
||||||
|
LAYOUTPOSITIONTYPE_NONE = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
public enum ViewFadeMode_t : uint {
|
||||||
|
VIEW_FADE_CONSTANT_COLOR = 0x0,
|
||||||
|
VIEW_FADE_MODULATE = 0x1,
|
||||||
|
VIEW_FADE_MOD2X = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
public enum BloomBlendMode_t : uint {
|
||||||
|
BLOOM_BLEND_ADD = 0x0,
|
||||||
|
BLOOM_BLEND_SCREEN = 0x1,
|
||||||
|
BLOOM_BLEND_BLUR = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
public enum HorizJustification_e : uint {
|
||||||
|
HORIZ_JUSTIFICATION_LEFT = 0x0,
|
||||||
|
HORIZ_JUSTIFICATION_CENTER = 0x1,
|
||||||
|
HORIZ_JUSTIFICATION_RIGHT = 0x2,
|
||||||
|
HORIZ_JUSTIFICATION_NONE = 0x3
|
||||||
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
@ -19,22 +56,6 @@ namespace CS2Dumper.Schemas {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class MaterialParamInt_t {
|
|
||||||
public const nint m_nValue = 0x8; // int32
|
|
||||||
}
|
|
||||||
// Parent: MaterialParam_t
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class MaterialParamFloat_t {
|
|
||||||
public const nint m_flValue = 0x8; // float32
|
|
||||||
}
|
|
||||||
// Parent: MaterialParam_t
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class MaterialParamVector_t {
|
public static class MaterialParamVector_t {
|
||||||
public const nint m_value = 0x8; // Vector4D
|
public const nint m_value = 0x8; // Vector4D
|
||||||
}
|
}
|
||||||
@ -43,16 +64,81 @@ namespace CS2Dumper.Schemas {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class MaterialParamTexture_t {
|
public static class MaterialParamString_t {
|
||||||
public const nint m_pValue = 0x8; // CStrongHandle<InfoForResourceTypeCTextureBase>
|
public const nint m_value = 0x8; // CUtlString
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 11
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class PostProcessingResource_t {
|
||||||
|
public const nint m_bHasTonemapParams = 0x0; // bool
|
||||||
|
public const nint m_toneMapParams = 0x4; // PostProcessingTonemapParameters_t
|
||||||
|
public const nint m_bHasBloomParams = 0x40; // bool
|
||||||
|
public const nint m_bloomParams = 0x44; // PostProcessingBloomParameters_t
|
||||||
|
public const nint m_bHasVignetteParams = 0xB4; // bool
|
||||||
|
public const nint m_vignetteParams = 0xB8; // PostProcessingVignetteParameters_t
|
||||||
|
public const nint m_bHasLocalContrastParams = 0xDC; // bool
|
||||||
|
public const nint m_localConstrastParams = 0xE0; // PostProcessingLocalContrastParameters_t
|
||||||
|
public const nint m_nColorCorrectionVolumeDim = 0xF4; // int32
|
||||||
|
public const nint m_colorCorrectionVolumeData = 0xF8; // CUtlBinaryBlock
|
||||||
|
public const nint m_bHasColorCorrection = 0x110; // bool
|
||||||
}
|
}
|
||||||
// Parent: MaterialParam_t
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class MaterialParamString_t {
|
public static class MaterialParamInt_t {
|
||||||
public const nint m_value = 0x8; // CUtlString
|
public const nint m_nValue = 0x8; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 6
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class PostProcessingVignetteParameters_t {
|
||||||
|
public const nint m_flVignetteStrength = 0x0; // float32
|
||||||
|
public const nint m_vCenter = 0x4; // Vector2D
|
||||||
|
public const nint m_flRadius = 0xC; // float32
|
||||||
|
public const nint m_flRoundness = 0x10; // float32
|
||||||
|
public const nint m_flFeather = 0x14; // float32
|
||||||
|
public const nint m_vColorTint = 0x18; //
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class PostProcessingLocalContrastParameters_t {
|
||||||
|
public const nint m_flLocalContrastStrength = 0x0; // float32
|
||||||
|
public const nint m_flLocalContrastEdgeStrength = 0x4; // float32
|
||||||
|
public const nint m_flLocalContrastVignetteStart = 0x8; // float32
|
||||||
|
public const nint m_flLocalContrastVignetteEnd = 0xC; // float32
|
||||||
|
public const nint m_flLocalContrastVignetteBlur = 0x10; // float32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 15
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class PostProcessingTonemapParameters_t {
|
||||||
|
public const nint m_flExposureBias = 0x0; // float32
|
||||||
|
public const nint m_flShoulderStrength = 0x4; // float32
|
||||||
|
public const nint m_flLinearStrength = 0x8; // float32
|
||||||
|
public const nint m_flLinearAngle = 0xC; // float32
|
||||||
|
public const nint m_flToeStrength = 0x10; // float32
|
||||||
|
public const nint m_flToeNum = 0x14; // float32
|
||||||
|
public const nint m_flToeDenom = 0x18; // float32
|
||||||
|
public const nint m_flWhitePoint = 0x1C; // float32
|
||||||
|
public const nint m_flLuminanceSource = 0x20; // float32
|
||||||
|
public const nint m_flExposureBiasShadows = 0x24; // float32
|
||||||
|
public const nint m_flExposureBiasHighlights = 0x28; // float32
|
||||||
|
public const nint m_flMinShadowLum = 0x2C; // float32
|
||||||
|
public const nint m_flMaxShadowLum = 0x30; // float32
|
||||||
|
public const nint m_flMinHighlightLum = 0x34; // float32
|
||||||
|
public const nint m_flMaxHighlightLum = 0x38; // float32
|
||||||
}
|
}
|
||||||
// Parent: MaterialParam_t
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
@ -84,28 +170,6 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_renderAttributesUsed = 0x118; // CUtlVector<CUtlString>
|
public const nint m_renderAttributesUsed = 0x118; // CUtlVector<CUtlString>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 15
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class PostProcessingTonemapParameters_t {
|
|
||||||
public const nint m_flExposureBias = 0x0; // float32
|
|
||||||
public const nint m_flShoulderStrength = 0x4; // float32
|
|
||||||
public const nint m_flLinearStrength = 0x8; // float32
|
|
||||||
public const nint m_flLinearAngle = 0xC; // float32
|
|
||||||
public const nint m_flToeStrength = 0x10; // float32
|
|
||||||
public const nint m_flToeNum = 0x14; // float32
|
|
||||||
public const nint m_flToeDenom = 0x18; // float32
|
|
||||||
public const nint m_flWhitePoint = 0x1C; // float32
|
|
||||||
public const nint m_flLuminanceSource = 0x20; // float32
|
|
||||||
public const nint m_flExposureBiasShadows = 0x24; // float32
|
|
||||||
public const nint m_flExposureBiasHighlights = 0x28; // float32
|
|
||||||
public const nint m_flMinShadowLum = 0x2C; // float32
|
|
||||||
public const nint m_flMaxShadowLum = 0x30; // float32
|
|
||||||
public const nint m_flMinHighlightLum = 0x34; // float32
|
|
||||||
public const nint m_flMaxHighlightLum = 0x38; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 10
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -122,48 +186,21 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_flBlurWeight = 0x20; // float32[5]
|
public const nint m_flBlurWeight = 0x20; // float32[5]
|
||||||
public const nint m_vBlurTint = 0x34; // Vector[5]
|
public const nint m_vBlurTint = 0x34; // Vector[5]
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 6
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class PostProcessingVignetteParameters_t {
|
public static class MaterialParamFloat_t {
|
||||||
public const nint m_flVignetteStrength = 0x0; // float32
|
public const nint m_flValue = 0x8; // float32
|
||||||
public const nint m_vCenter = 0x4; // Vector2D
|
|
||||||
public const nint m_flRadius = 0xC; // float32
|
|
||||||
public const nint m_flRoundness = 0x10; // float32
|
|
||||||
public const nint m_flFeather = 0x14; // float32
|
|
||||||
public const nint m_vColorTint = 0x18; //
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 5
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class PostProcessingLocalContrastParameters_t {
|
public static class MaterialParamTexture_t {
|
||||||
public const nint m_flLocalContrastStrength = 0x0; // float32
|
public const nint m_pValue = 0x8; //
|
||||||
public const nint m_flLocalContrastEdgeStrength = 0x4; // float32
|
|
||||||
public const nint m_flLocalContrastVignetteStart = 0x8; // float32
|
|
||||||
public const nint m_flLocalContrastVignetteEnd = 0xC; // float32
|
|
||||||
public const nint m_flLocalContrastVignetteBlur = 0x10; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 11
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class PostProcessingResource_t {
|
|
||||||
public const nint m_bHasTonemapParams = 0x0; // bool
|
|
||||||
public const nint m_toneMapParams = 0x4; // PostProcessingTonemapParameters_t
|
|
||||||
public const nint m_bHasBloomParams = 0x40; // bool
|
|
||||||
public const nint m_bloomParams = 0x44; // PostProcessingBloomParameters_t
|
|
||||||
public const nint m_bHasVignetteParams = 0xB4; // bool
|
|
||||||
public const nint m_vignetteParams = 0xB8; // PostProcessingVignetteParameters_t
|
|
||||||
public const nint m_bHasLocalContrastParams = 0xDC; // bool
|
|
||||||
public const nint m_localConstrastParams = 0xE0; // PostProcessingLocalContrastParameters_t
|
|
||||||
public const nint m_nColorCorrectionVolumeDim = 0xF4; // int32
|
|
||||||
public const nint m_colorCorrectionVolumeData = 0xF8; // CUtlBinaryBlock
|
|
||||||
public const nint m_bHasColorCorrection = 0x110; // bool
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -9,8 +9,45 @@ namespace cs2_dumper {
|
|||||||
namespace schemas {
|
namespace schemas {
|
||||||
// Module: materialsystem2.dll
|
// Module: materialsystem2.dll
|
||||||
// Classes count: 13
|
// Classes count: 13
|
||||||
// Enums count: 0
|
// Enums count: 5
|
||||||
namespace materialsystem2_dll {
|
namespace materialsystem2_dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
enum class VertJustification_e : uint32_t {
|
||||||
|
VERT_JUSTIFICATION_TOP = 0x0,
|
||||||
|
VERT_JUSTIFICATION_CENTER = 0x1,
|
||||||
|
VERT_JUSTIFICATION_BOTTOM = 0x2,
|
||||||
|
VERT_JUSTIFICATION_NONE = 0x3
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
enum class LayoutPositionType_e : uint32_t {
|
||||||
|
LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE = 0x0,
|
||||||
|
LAYOUTPOSITIONTYPE_FRACTIONAL = 0x1,
|
||||||
|
LAYOUTPOSITIONTYPE_NONE = 0x2
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
enum class ViewFadeMode_t : uint32_t {
|
||||||
|
VIEW_FADE_CONSTANT_COLOR = 0x0,
|
||||||
|
VIEW_FADE_MODULATE = 0x1,
|
||||||
|
VIEW_FADE_MOD2X = 0x2
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
enum class BloomBlendMode_t : uint32_t {
|
||||||
|
BLOOM_BLEND_ADD = 0x0,
|
||||||
|
BLOOM_BLEND_SCREEN = 0x1,
|
||||||
|
BLOOM_BLEND_BLUR = 0x2
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
enum class HorizJustification_e : uint32_t {
|
||||||
|
HORIZ_JUSTIFICATION_LEFT = 0x0,
|
||||||
|
HORIZ_JUSTIFICATION_CENTER = 0x1,
|
||||||
|
HORIZ_JUSTIFICATION_RIGHT = 0x2,
|
||||||
|
HORIZ_JUSTIFICATION_NONE = 0x3
|
||||||
|
};
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
@ -24,22 +61,6 @@ namespace cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace MaterialParamInt_t {
|
|
||||||
constexpr std::ptrdiff_t m_nValue = 0x8; // int32
|
|
||||||
}
|
|
||||||
// Parent: MaterialParam_t
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace MaterialParamFloat_t {
|
|
||||||
constexpr std::ptrdiff_t m_flValue = 0x8; // float32
|
|
||||||
}
|
|
||||||
// Parent: MaterialParam_t
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace MaterialParamVector_t {
|
namespace MaterialParamVector_t {
|
||||||
constexpr std::ptrdiff_t m_value = 0x8; // Vector4D
|
constexpr std::ptrdiff_t m_value = 0x8; // Vector4D
|
||||||
}
|
}
|
||||||
@ -48,16 +69,81 @@ namespace cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace MaterialParamTexture_t {
|
namespace MaterialParamString_t {
|
||||||
constexpr std::ptrdiff_t m_pValue = 0x8; // CStrongHandle<InfoForResourceTypeCTextureBase>
|
constexpr std::ptrdiff_t m_value = 0x8; // CUtlString
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 11
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace PostProcessingResource_t {
|
||||||
|
constexpr std::ptrdiff_t m_bHasTonemapParams = 0x0; // bool
|
||||||
|
constexpr std::ptrdiff_t m_toneMapParams = 0x4; // PostProcessingTonemapParameters_t
|
||||||
|
constexpr std::ptrdiff_t m_bHasBloomParams = 0x40; // bool
|
||||||
|
constexpr std::ptrdiff_t m_bloomParams = 0x44; // PostProcessingBloomParameters_t
|
||||||
|
constexpr std::ptrdiff_t m_bHasVignetteParams = 0xB4; // bool
|
||||||
|
constexpr std::ptrdiff_t m_vignetteParams = 0xB8; // PostProcessingVignetteParameters_t
|
||||||
|
constexpr std::ptrdiff_t m_bHasLocalContrastParams = 0xDC; // bool
|
||||||
|
constexpr std::ptrdiff_t m_localConstrastParams = 0xE0; // PostProcessingLocalContrastParameters_t
|
||||||
|
constexpr std::ptrdiff_t m_nColorCorrectionVolumeDim = 0xF4; // int32
|
||||||
|
constexpr std::ptrdiff_t m_colorCorrectionVolumeData = 0xF8; // CUtlBinaryBlock
|
||||||
|
constexpr std::ptrdiff_t m_bHasColorCorrection = 0x110; // bool
|
||||||
}
|
}
|
||||||
// Parent: MaterialParam_t
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace MaterialParamString_t {
|
namespace MaterialParamInt_t {
|
||||||
constexpr std::ptrdiff_t m_value = 0x8; // CUtlString
|
constexpr std::ptrdiff_t m_nValue = 0x8; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 6
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace PostProcessingVignetteParameters_t {
|
||||||
|
constexpr std::ptrdiff_t m_flVignetteStrength = 0x0; // float32
|
||||||
|
constexpr std::ptrdiff_t m_vCenter = 0x4; // Vector2D
|
||||||
|
constexpr std::ptrdiff_t m_flRadius = 0xC; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flRoundness = 0x10; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flFeather = 0x14; // float32
|
||||||
|
constexpr std::ptrdiff_t m_vColorTint = 0x18; //
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace PostProcessingLocalContrastParameters_t {
|
||||||
|
constexpr std::ptrdiff_t m_flLocalContrastStrength = 0x0; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flLocalContrastEdgeStrength = 0x4; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flLocalContrastVignetteStart = 0x8; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flLocalContrastVignetteEnd = 0xC; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flLocalContrastVignetteBlur = 0x10; // float32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 15
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace PostProcessingTonemapParameters_t {
|
||||||
|
constexpr std::ptrdiff_t m_flExposureBias = 0x0; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flShoulderStrength = 0x4; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flLinearStrength = 0x8; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flLinearAngle = 0xC; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flToeStrength = 0x10; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flToeNum = 0x14; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flToeDenom = 0x18; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flWhitePoint = 0x1C; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flLuminanceSource = 0x20; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flExposureBiasShadows = 0x24; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flExposureBiasHighlights = 0x28; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flMinShadowLum = 0x2C; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flMaxShadowLum = 0x30; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flMinHighlightLum = 0x34; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flMaxHighlightLum = 0x38; // float32
|
||||||
}
|
}
|
||||||
// Parent: MaterialParam_t
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
@ -89,28 +175,6 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_renderAttributesUsed = 0x118; // CUtlVector<CUtlString>
|
constexpr std::ptrdiff_t m_renderAttributesUsed = 0x118; // CUtlVector<CUtlString>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 15
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace PostProcessingTonemapParameters_t {
|
|
||||||
constexpr std::ptrdiff_t m_flExposureBias = 0x0; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flShoulderStrength = 0x4; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flLinearStrength = 0x8; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flLinearAngle = 0xC; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flToeStrength = 0x10; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flToeNum = 0x14; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flToeDenom = 0x18; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flWhitePoint = 0x1C; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flLuminanceSource = 0x20; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flExposureBiasShadows = 0x24; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flExposureBiasHighlights = 0x28; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flMinShadowLum = 0x2C; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flMaxShadowLum = 0x30; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flMinHighlightLum = 0x34; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flMaxHighlightLum = 0x38; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 10
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -127,48 +191,21 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_flBlurWeight = 0x20; // float32[5]
|
constexpr std::ptrdiff_t m_flBlurWeight = 0x20; // float32[5]
|
||||||
constexpr std::ptrdiff_t m_vBlurTint = 0x34; // Vector[5]
|
constexpr std::ptrdiff_t m_vBlurTint = 0x34; // Vector[5]
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 6
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace PostProcessingVignetteParameters_t {
|
namespace MaterialParamFloat_t {
|
||||||
constexpr std::ptrdiff_t m_flVignetteStrength = 0x0; // float32
|
constexpr std::ptrdiff_t m_flValue = 0x8; // float32
|
||||||
constexpr std::ptrdiff_t m_vCenter = 0x4; // Vector2D
|
|
||||||
constexpr std::ptrdiff_t m_flRadius = 0xC; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flRoundness = 0x10; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flFeather = 0x14; // float32
|
|
||||||
constexpr std::ptrdiff_t m_vColorTint = 0x18; //
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 5
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace PostProcessingLocalContrastParameters_t {
|
namespace MaterialParamTexture_t {
|
||||||
constexpr std::ptrdiff_t m_flLocalContrastStrength = 0x0; // float32
|
constexpr std::ptrdiff_t m_pValue = 0x8; //
|
||||||
constexpr std::ptrdiff_t m_flLocalContrastEdgeStrength = 0x4; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flLocalContrastVignetteStart = 0x8; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flLocalContrastVignetteEnd = 0xC; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flLocalContrastVignetteBlur = 0x10; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 11
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace PostProcessingResource_t {
|
|
||||||
constexpr std::ptrdiff_t m_bHasTonemapParams = 0x0; // bool
|
|
||||||
constexpr std::ptrdiff_t m_toneMapParams = 0x4; // PostProcessingTonemapParameters_t
|
|
||||||
constexpr std::ptrdiff_t m_bHasBloomParams = 0x40; // bool
|
|
||||||
constexpr std::ptrdiff_t m_bloomParams = 0x44; // PostProcessingBloomParameters_t
|
|
||||||
constexpr std::ptrdiff_t m_bHasVignetteParams = 0xB4; // bool
|
|
||||||
constexpr std::ptrdiff_t m_vignetteParams = 0xB8; // PostProcessingVignetteParameters_t
|
|
||||||
constexpr std::ptrdiff_t m_bHasLocalContrastParams = 0xDC; // bool
|
|
||||||
constexpr std::ptrdiff_t m_localConstrastParams = 0xE0; // PostProcessingLocalContrastParameters_t
|
|
||||||
constexpr std::ptrdiff_t m_nColorCorrectionVolumeDim = 0xF4; // int32
|
|
||||||
constexpr std::ptrdiff_t m_colorCorrectionVolumeData = 0xF8; // CUtlBinaryBlock
|
|
||||||
constexpr std::ptrdiff_t m_bHasColorCorrection = 0x110; // bool
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -213,6 +213,54 @@
|
|||||||
"parent": null
|
"parent": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"BloomBlendMode_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"BLOOM_BLEND_ADD": 0,
|
||||||
|
"BLOOM_BLEND_BLUR": 2,
|
||||||
|
"BLOOM_BLEND_SCREEN": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"HorizJustification_e": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"HORIZ_JUSTIFICATION_CENTER": 1,
|
||||||
|
"HORIZ_JUSTIFICATION_LEFT": 0,
|
||||||
|
"HORIZ_JUSTIFICATION_NONE": 3,
|
||||||
|
"HORIZ_JUSTIFICATION_RIGHT": 2
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"LayoutPositionType_e": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"LAYOUTPOSITIONTYPE_FRACTIONAL": 1,
|
||||||
|
"LAYOUTPOSITIONTYPE_NONE": 2,
|
||||||
|
"LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE": 0
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"VertJustification_e": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"VERT_JUSTIFICATION_BOTTOM": 2,
|
||||||
|
"VERT_JUSTIFICATION_CENTER": 1,
|
||||||
|
"VERT_JUSTIFICATION_NONE": 3,
|
||||||
|
"VERT_JUSTIFICATION_TOP": 0
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"ViewFadeMode_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"VIEW_FADE_CONSTANT_COLOR": 0,
|
||||||
|
"VIEW_FADE_MOD2X": 2,
|
||||||
|
"VIEW_FADE_MODULATE": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
@ -7,8 +7,50 @@ pub mod cs2_dumper {
|
|||||||
pub mod schemas {
|
pub mod schemas {
|
||||||
// Module: materialsystem2.dll
|
// Module: materialsystem2.dll
|
||||||
// Classes count: 13
|
// Classes count: 13
|
||||||
// Enums count: 0
|
// Enums count: 5
|
||||||
pub mod materialsystem2_dll {
|
pub mod materialsystem2_dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum VertJustification_e {
|
||||||
|
VERT_JUSTIFICATION_TOP = 0x0,
|
||||||
|
VERT_JUSTIFICATION_CENTER = 0x1,
|
||||||
|
VERT_JUSTIFICATION_BOTTOM = 0x2,
|
||||||
|
VERT_JUSTIFICATION_NONE = 0x3
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum LayoutPositionType_e {
|
||||||
|
LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE = 0x0,
|
||||||
|
LAYOUTPOSITIONTYPE_FRACTIONAL = 0x1,
|
||||||
|
LAYOUTPOSITIONTYPE_NONE = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum ViewFadeMode_t {
|
||||||
|
VIEW_FADE_CONSTANT_COLOR = 0x0,
|
||||||
|
VIEW_FADE_MODULATE = 0x1,
|
||||||
|
VIEW_FADE_MOD2X = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum BloomBlendMode_t {
|
||||||
|
BLOOM_BLEND_ADD = 0x0,
|
||||||
|
BLOOM_BLEND_SCREEN = 0x1,
|
||||||
|
BLOOM_BLEND_BLUR = 0x2
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum HorizJustification_e {
|
||||||
|
HORIZ_JUSTIFICATION_LEFT = 0x0,
|
||||||
|
HORIZ_JUSTIFICATION_CENTER = 0x1,
|
||||||
|
HORIZ_JUSTIFICATION_RIGHT = 0x2,
|
||||||
|
HORIZ_JUSTIFICATION_NONE = 0x3
|
||||||
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
@ -22,22 +64,6 @@ pub mod cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod MaterialParamInt_t {
|
|
||||||
pub const m_nValue: usize = 0x8; // int32
|
|
||||||
}
|
|
||||||
// Parent: MaterialParam_t
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod MaterialParamFloat_t {
|
|
||||||
pub const m_flValue: usize = 0x8; // float32
|
|
||||||
}
|
|
||||||
// Parent: MaterialParam_t
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod MaterialParamVector_t {
|
pub mod MaterialParamVector_t {
|
||||||
pub const m_value: usize = 0x8; // Vector4D
|
pub const m_value: usize = 0x8; // Vector4D
|
||||||
}
|
}
|
||||||
@ -46,16 +72,81 @@ pub mod cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod MaterialParamTexture_t {
|
pub mod MaterialParamString_t {
|
||||||
pub const m_pValue: usize = 0x8; // CStrongHandle<InfoForResourceTypeCTextureBase>
|
pub const m_value: usize = 0x8; // CUtlString
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 11
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod PostProcessingResource_t {
|
||||||
|
pub const m_bHasTonemapParams: usize = 0x0; // bool
|
||||||
|
pub const m_toneMapParams: usize = 0x4; // PostProcessingTonemapParameters_t
|
||||||
|
pub const m_bHasBloomParams: usize = 0x40; // bool
|
||||||
|
pub const m_bloomParams: usize = 0x44; // PostProcessingBloomParameters_t
|
||||||
|
pub const m_bHasVignetteParams: usize = 0xB4; // bool
|
||||||
|
pub const m_vignetteParams: usize = 0xB8; // PostProcessingVignetteParameters_t
|
||||||
|
pub const m_bHasLocalContrastParams: usize = 0xDC; // bool
|
||||||
|
pub const m_localConstrastParams: usize = 0xE0; // PostProcessingLocalContrastParameters_t
|
||||||
|
pub const m_nColorCorrectionVolumeDim: usize = 0xF4; // int32
|
||||||
|
pub const m_colorCorrectionVolumeData: usize = 0xF8; // CUtlBinaryBlock
|
||||||
|
pub const m_bHasColorCorrection: usize = 0x110; // bool
|
||||||
}
|
}
|
||||||
// Parent: MaterialParam_t
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod MaterialParamString_t {
|
pub mod MaterialParamInt_t {
|
||||||
pub const m_value: usize = 0x8; // CUtlString
|
pub const m_nValue: usize = 0x8; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 6
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod PostProcessingVignetteParameters_t {
|
||||||
|
pub const m_flVignetteStrength: usize = 0x0; // float32
|
||||||
|
pub const m_vCenter: usize = 0x4; // Vector2D
|
||||||
|
pub const m_flRadius: usize = 0xC; // float32
|
||||||
|
pub const m_flRoundness: usize = 0x10; // float32
|
||||||
|
pub const m_flFeather: usize = 0x14; // float32
|
||||||
|
pub const m_vColorTint: usize = 0x18; //
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod PostProcessingLocalContrastParameters_t {
|
||||||
|
pub const m_flLocalContrastStrength: usize = 0x0; // float32
|
||||||
|
pub const m_flLocalContrastEdgeStrength: usize = 0x4; // float32
|
||||||
|
pub const m_flLocalContrastVignetteStart: usize = 0x8; // float32
|
||||||
|
pub const m_flLocalContrastVignetteEnd: usize = 0xC; // float32
|
||||||
|
pub const m_flLocalContrastVignetteBlur: usize = 0x10; // float32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 15
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod PostProcessingTonemapParameters_t {
|
||||||
|
pub const m_flExposureBias: usize = 0x0; // float32
|
||||||
|
pub const m_flShoulderStrength: usize = 0x4; // float32
|
||||||
|
pub const m_flLinearStrength: usize = 0x8; // float32
|
||||||
|
pub const m_flLinearAngle: usize = 0xC; // float32
|
||||||
|
pub const m_flToeStrength: usize = 0x10; // float32
|
||||||
|
pub const m_flToeNum: usize = 0x14; // float32
|
||||||
|
pub const m_flToeDenom: usize = 0x18; // float32
|
||||||
|
pub const m_flWhitePoint: usize = 0x1C; // float32
|
||||||
|
pub const m_flLuminanceSource: usize = 0x20; // float32
|
||||||
|
pub const m_flExposureBiasShadows: usize = 0x24; // float32
|
||||||
|
pub const m_flExposureBiasHighlights: usize = 0x28; // float32
|
||||||
|
pub const m_flMinShadowLum: usize = 0x2C; // float32
|
||||||
|
pub const m_flMaxShadowLum: usize = 0x30; // float32
|
||||||
|
pub const m_flMinHighlightLum: usize = 0x34; // float32
|
||||||
|
pub const m_flMaxHighlightLum: usize = 0x38; // float32
|
||||||
}
|
}
|
||||||
// Parent: MaterialParam_t
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
@ -87,28 +178,6 @@ pub mod cs2_dumper {
|
|||||||
pub const m_renderAttributesUsed: usize = 0x118; // CUtlVector<CUtlString>
|
pub const m_renderAttributesUsed: usize = 0x118; // CUtlVector<CUtlString>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 15
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod PostProcessingTonemapParameters_t {
|
|
||||||
pub const m_flExposureBias: usize = 0x0; // float32
|
|
||||||
pub const m_flShoulderStrength: usize = 0x4; // float32
|
|
||||||
pub const m_flLinearStrength: usize = 0x8; // float32
|
|
||||||
pub const m_flLinearAngle: usize = 0xC; // float32
|
|
||||||
pub const m_flToeStrength: usize = 0x10; // float32
|
|
||||||
pub const m_flToeNum: usize = 0x14; // float32
|
|
||||||
pub const m_flToeDenom: usize = 0x18; // float32
|
|
||||||
pub const m_flWhitePoint: usize = 0x1C; // float32
|
|
||||||
pub const m_flLuminanceSource: usize = 0x20; // float32
|
|
||||||
pub const m_flExposureBiasShadows: usize = 0x24; // float32
|
|
||||||
pub const m_flExposureBiasHighlights: usize = 0x28; // float32
|
|
||||||
pub const m_flMinShadowLum: usize = 0x2C; // float32
|
|
||||||
pub const m_flMaxShadowLum: usize = 0x30; // float32
|
|
||||||
pub const m_flMinHighlightLum: usize = 0x34; // float32
|
|
||||||
pub const m_flMaxHighlightLum: usize = 0x38; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 10
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -125,48 +194,21 @@ pub mod cs2_dumper {
|
|||||||
pub const m_flBlurWeight: usize = 0x20; // float32[5]
|
pub const m_flBlurWeight: usize = 0x20; // float32[5]
|
||||||
pub const m_vBlurTint: usize = 0x34; // Vector[5]
|
pub const m_vBlurTint: usize = 0x34; // Vector[5]
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 6
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod PostProcessingVignetteParameters_t {
|
pub mod MaterialParamFloat_t {
|
||||||
pub const m_flVignetteStrength: usize = 0x0; // float32
|
pub const m_flValue: usize = 0x8; // float32
|
||||||
pub const m_vCenter: usize = 0x4; // Vector2D
|
|
||||||
pub const m_flRadius: usize = 0xC; // float32
|
|
||||||
pub const m_flRoundness: usize = 0x10; // float32
|
|
||||||
pub const m_flFeather: usize = 0x14; // float32
|
|
||||||
pub const m_vColorTint: usize = 0x18; //
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: MaterialParam_t
|
||||||
// Fields count: 5
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod PostProcessingLocalContrastParameters_t {
|
pub mod MaterialParamTexture_t {
|
||||||
pub const m_flLocalContrastStrength: usize = 0x0; // float32
|
pub const m_pValue: usize = 0x8; //
|
||||||
pub const m_flLocalContrastEdgeStrength: usize = 0x4; // float32
|
|
||||||
pub const m_flLocalContrastVignetteStart: usize = 0x8; // float32
|
|
||||||
pub const m_flLocalContrastVignetteEnd: usize = 0xC; // float32
|
|
||||||
pub const m_flLocalContrastVignetteBlur: usize = 0x10; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 11
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod PostProcessingResource_t {
|
|
||||||
pub const m_bHasTonemapParams: usize = 0x0; // bool
|
|
||||||
pub const m_toneMapParams: usize = 0x4; // PostProcessingTonemapParameters_t
|
|
||||||
pub const m_bHasBloomParams: usize = 0x40; // bool
|
|
||||||
pub const m_bloomParams: usize = 0x44; // PostProcessingBloomParameters_t
|
|
||||||
pub const m_bHasVignetteParams: usize = 0xB4; // bool
|
|
||||||
pub const m_vignetteParams: usize = 0xB8; // PostProcessingVignetteParameters_t
|
|
||||||
pub const m_bHasLocalContrastParams: usize = 0xDC; // bool
|
|
||||||
pub const m_localConstrastParams: usize = 0xE0; // PostProcessingLocalContrastParameters_t
|
|
||||||
pub const m_nColorCorrectionVolumeDim: usize = 0xF4; // int32
|
|
||||||
pub const m_colorCorrectionVolumeData: usize = 0xF8; // CUtlBinaryBlock
|
|
||||||
pub const m_bHasColorCorrection: usize = 0x110; // bool
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Offsets {
|
namespace CS2Dumper.Offsets {
|
||||||
// Module: client.dll
|
// Module: client.dll
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
|
@ -1,5 +1,46 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
|
// Module: panorama.dll
|
||||||
|
// Classes count: 0
|
||||||
|
// Enums count: 2
|
||||||
|
public static class PanoramaDll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 13
|
||||||
|
public enum ELayoutNodeType : uint {
|
||||||
|
ROOT = 0x0,
|
||||||
|
STYLES = 0x1,
|
||||||
|
SCRIPT_BODY = 0x2,
|
||||||
|
SCRIPTS = 0x3,
|
||||||
|
SNIPPETS = 0x4,
|
||||||
|
INCLUDE = 0x5,
|
||||||
|
SNIPPET = 0x6,
|
||||||
|
PANEL = 0x7,
|
||||||
|
PANEL_ATTRIBUTE = 0x8,
|
||||||
|
PANEL_ATTRIBUTE_VALUE = 0x9,
|
||||||
|
REFERENCE_CONTENT = 0xA,
|
||||||
|
REFERENCE_COMPILED = 0xB,
|
||||||
|
REFERENCE_PASSTHROUGH = 0xC
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 15
|
||||||
|
public enum EStyleNodeType : uint {
|
||||||
|
ROOT = 0x0,
|
||||||
|
EXPRESSION = 0x1,
|
||||||
|
PROPERTY = 0x2,
|
||||||
|
DEFINE = 0x3,
|
||||||
|
IMPORT = 0x4,
|
||||||
|
KEYFRAMES = 0x5,
|
||||||
|
KEYFRAME_SELECTOR = 0x6,
|
||||||
|
STYLE_SELECTOR = 0x7,
|
||||||
|
WHITESPACE = 0x8,
|
||||||
|
EXPRESSION_TEXT = 0x9,
|
||||||
|
EXPRESSION_URL = 0xA,
|
||||||
|
EXPRESSION_CONCAT = 0xB,
|
||||||
|
REFERENCE_CONTENT = 0xC,
|
||||||
|
REFERENCE_COMPILED = 0xD,
|
||||||
|
REFERENCE_PASSTHROUGH = 0xE
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -7,5 +7,46 @@
|
|||||||
|
|
||||||
namespace cs2_dumper {
|
namespace cs2_dumper {
|
||||||
namespace schemas {
|
namespace schemas {
|
||||||
|
// Module: panorama.dll
|
||||||
|
// Classes count: 0
|
||||||
|
// Enums count: 2
|
||||||
|
namespace panorama_dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 13
|
||||||
|
enum class ELayoutNodeType : uint32_t {
|
||||||
|
ROOT = 0x0,
|
||||||
|
STYLES = 0x1,
|
||||||
|
SCRIPT_BODY = 0x2,
|
||||||
|
SCRIPTS = 0x3,
|
||||||
|
SNIPPETS = 0x4,
|
||||||
|
INCLUDE = 0x5,
|
||||||
|
SNIPPET = 0x6,
|
||||||
|
PANEL = 0x7,
|
||||||
|
PANEL_ATTRIBUTE = 0x8,
|
||||||
|
PANEL_ATTRIBUTE_VALUE = 0x9,
|
||||||
|
REFERENCE_CONTENT = 0xA,
|
||||||
|
REFERENCE_COMPILED = 0xB,
|
||||||
|
REFERENCE_PASSTHROUGH = 0xC
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 15
|
||||||
|
enum class EStyleNodeType : uint32_t {
|
||||||
|
ROOT = 0x0,
|
||||||
|
EXPRESSION = 0x1,
|
||||||
|
PROPERTY = 0x2,
|
||||||
|
DEFINE = 0x3,
|
||||||
|
IMPORT = 0x4,
|
||||||
|
KEYFRAMES = 0x5,
|
||||||
|
KEYFRAME_SELECTOR = 0x6,
|
||||||
|
STYLE_SELECTOR = 0x7,
|
||||||
|
WHITESPACE = 0x8,
|
||||||
|
EXPRESSION_TEXT = 0x9,
|
||||||
|
EXPRESSION_URL = 0xA,
|
||||||
|
EXPRESSION_CONCAT = 0xB,
|
||||||
|
REFERENCE_CONTENT = 0xC,
|
||||||
|
REFERENCE_COMPILED = 0xD,
|
||||||
|
REFERENCE_PASSTHROUGH = 0xE
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,47 @@
|
|||||||
{
|
{
|
||||||
"panorama.dll": {
|
"panorama.dll": {
|
||||||
"classes": {},
|
"classes": {},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"ELayoutNodeType": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"INCLUDE": 5,
|
||||||
|
"PANEL": 7,
|
||||||
|
"PANEL_ATTRIBUTE": 8,
|
||||||
|
"PANEL_ATTRIBUTE_VALUE": 9,
|
||||||
|
"REFERENCE_COMPILED": 11,
|
||||||
|
"REFERENCE_CONTENT": 10,
|
||||||
|
"REFERENCE_PASSTHROUGH": 12,
|
||||||
|
"ROOT": 0,
|
||||||
|
"SCRIPTS": 3,
|
||||||
|
"SCRIPT_BODY": 2,
|
||||||
|
"SNIPPET": 6,
|
||||||
|
"SNIPPETS": 4,
|
||||||
|
"STYLES": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"EStyleNodeType": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"DEFINE": 3,
|
||||||
|
"EXPRESSION": 1,
|
||||||
|
"EXPRESSION_CONCAT": 11,
|
||||||
|
"EXPRESSION_TEXT": 9,
|
||||||
|
"EXPRESSION_URL": 10,
|
||||||
|
"IMPORT": 4,
|
||||||
|
"KEYFRAMES": 5,
|
||||||
|
"KEYFRAME_SELECTOR": 6,
|
||||||
|
"PROPERTY": 2,
|
||||||
|
"REFERENCE_COMPILED": 13,
|
||||||
|
"REFERENCE_CONTENT": 12,
|
||||||
|
"REFERENCE_PASSTHROUGH": 14,
|
||||||
|
"ROOT": 0,
|
||||||
|
"STYLE_SELECTOR": 7,
|
||||||
|
"WHITESPACE": 8
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,9 +1,52 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
pub mod cs2_dumper {
|
pub mod cs2_dumper {
|
||||||
pub mod schemas {
|
pub mod schemas {
|
||||||
|
// Module: panorama.dll
|
||||||
|
// Classes count: 0
|
||||||
|
// Enums count: 2
|
||||||
|
pub mod panorama_dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 13
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum ELayoutNodeType {
|
||||||
|
ROOT = 0x0,
|
||||||
|
STYLES = 0x1,
|
||||||
|
SCRIPT_BODY = 0x2,
|
||||||
|
SCRIPTS = 0x3,
|
||||||
|
SNIPPETS = 0x4,
|
||||||
|
INCLUDE = 0x5,
|
||||||
|
SNIPPET = 0x6,
|
||||||
|
PANEL = 0x7,
|
||||||
|
PANEL_ATTRIBUTE = 0x8,
|
||||||
|
PANEL_ATTRIBUTE_VALUE = 0x9,
|
||||||
|
REFERENCE_CONTENT = 0xA,
|
||||||
|
REFERENCE_COMPILED = 0xB,
|
||||||
|
REFERENCE_PASSTHROUGH = 0xC
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 15
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum EStyleNodeType {
|
||||||
|
ROOT = 0x0,
|
||||||
|
EXPRESSION = 0x1,
|
||||||
|
PROPERTY = 0x2,
|
||||||
|
DEFINE = 0x3,
|
||||||
|
IMPORT = 0x4,
|
||||||
|
KEYFRAMES = 0x5,
|
||||||
|
KEYFRAME_SELECTOR = 0x6,
|
||||||
|
STYLE_SELECTOR = 0x7,
|
||||||
|
WHITESPACE = 0x8,
|
||||||
|
EXPRESSION_TEXT = 0x9,
|
||||||
|
EXPRESSION_URL = 0xA,
|
||||||
|
EXPRESSION_CONCAT = 0xB,
|
||||||
|
REFERENCE_CONTENT = 0xC,
|
||||||
|
REFERENCE_COMPILED = 0xD,
|
||||||
|
REFERENCE_PASSTHROUGH = 0xE
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10338
output/particles.dll.cs
10338
output/particles.dll.cs
File diff suppressed because it is too large
Load Diff
10346
output/particles.dll.hpp
10346
output/particles.dll.hpp
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
10409
output/particles.dll.rs
10409
output/particles.dll.rs
File diff suppressed because it is too large
Load Diff
@ -1,46 +1,135 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
// Module: pulse_system.dll
|
// Module: pulse_system.dll
|
||||||
// Classes count: 49
|
// Classes count: 28
|
||||||
// Enums count: 0
|
// Enums count: 7
|
||||||
public static class PulseSystemDll {
|
public static class PulseSystemDll {
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 0
|
// Members count: 3
|
||||||
//
|
public enum PulseTestEnumShape_t : uint {
|
||||||
// Metadata:
|
CIRCLE = 0x64,
|
||||||
// MPulseLibraryBindings
|
SQUARE = 0xC8,
|
||||||
// MPropertyDescription
|
TRIANGLE = 0x12C
|
||||||
public static class CPulseCursorFuncs {
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 0
|
// Members count: 2
|
||||||
//
|
public enum PulseMethodCallMode_t : uint {
|
||||||
// Metadata:
|
SYNC_WAIT_FOR_COMPLETION = 0x0,
|
||||||
// MPulseLibraryBindings
|
ASYNC_FIRE_AND_FORGET = 0x1
|
||||||
// MPropertyDescription
|
|
||||||
public static class CPulseTestFuncs_LibraryA {
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 0
|
// Members count: 3
|
||||||
//
|
public enum PulseCursorExecResult_t : uint {
|
||||||
// Metadata:
|
Succeeded = 0x0,
|
||||||
// MPulseProvideFeatureTag
|
Canceled = 0x1,
|
||||||
// MPulseLibraryBindings
|
Failed = 0x2
|
||||||
public static class FakeEntity_tAPI {
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 5
|
// Members count: 19
|
||||||
//
|
public enum PulseValueType_t : uint {
|
||||||
// Metadata:
|
PVAL_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
// MGetKV3ClassDefaults
|
PVAL_BOOL = 0x0,
|
||||||
public static class CPulse_RegisterInfo {
|
PVAL_INT = 0x1,
|
||||||
public const nint m_nReg = 0x0; // PulseRuntimeRegisterIndex_t
|
PVAL_FLOAT = 0x2,
|
||||||
public const nint m_Type = 0x8; // CPulseValueFullType
|
PVAL_STRING = 0x3,
|
||||||
public const nint m_OriginName = 0x18; // CKV3MemberNameWithStorage
|
PVAL_VEC3 = 0x4,
|
||||||
public const nint m_nWrittenByInstruction = 0x50; // int32
|
PVAL_TRANSFORM = 0x5,
|
||||||
public const nint m_nLastReadByInstruction = 0x54; // int32
|
PVAL_COLOR_RGB = 0x6,
|
||||||
|
PVAL_EHANDLE = 0x7,
|
||||||
|
PVAL_RESOURCE = 0x8,
|
||||||
|
PVAL_SNDEVT_GUID = 0x9,
|
||||||
|
PVAL_ENTITY_NAME = 0xA,
|
||||||
|
PVAL_SCHEMA_PTR = 0xB,
|
||||||
|
PVAL_TYPESAFE_INT = 0xC,
|
||||||
|
PVAL_CURSOR_FLOW = 0xD,
|
||||||
|
PVAL_ANY = 0xE,
|
||||||
|
PVAL_SCHEMA_ENUM = 0xF,
|
||||||
|
PVAL_PANORAMA_PANEL_HANDLE = 0x10,
|
||||||
|
PVAL_COUNT = 0x11
|
||||||
|
}
|
||||||
|
// Alignment: 2
|
||||||
|
// Members count: 61
|
||||||
|
public enum PulseInstructionCode_t : ushort {
|
||||||
|
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,
|
||||||
|
SET_REGISTER_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,
|
||||||
|
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
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 5
|
||||||
|
public enum PulseTestEnumColor_t : uint {
|
||||||
|
BLACK = 0x0,
|
||||||
|
WHITE = 0x1,
|
||||||
|
RED = 0x2,
|
||||||
|
GREEN = 0x3,
|
||||||
|
BLUE = 0x4
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
public enum PulseCursorCancelPriority_t : uint {
|
||||||
|
None = 0x0,
|
||||||
|
CancelOnSucceeded = 0x1,
|
||||||
|
SoftCancel = 0x2,
|
||||||
|
HardCancel = 0x3
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 3
|
// Fields count: 3
|
||||||
@ -53,6 +142,129 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_InstructionEditorIDs = 0x20; // CUtlLeanVector<PulseDocNodeID_t>
|
public const nint m_InstructionEditorIDs = 0x20; // CUtlLeanVector<PulseDocNodeID_t>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
||||||
|
public const nint m_nNextIndex = 0x0; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulseCell_WaitForCursorsWithTagBase {
|
||||||
|
public const nint m_nCursorsAllowedToWait = 0x48; // int32
|
||||||
|
public const nint m_WaitComplete = 0x50; // CPulse_ResumePoint
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulseCell_Timeline__TimelineEvent_t {
|
||||||
|
public const nint m_flTimeFromPrevious = 0x0; // float32
|
||||||
|
public const nint m_bPauseForPreviousEvents = 0x4; // bool
|
||||||
|
public const nint m_bCallModeSync = 0x5; // bool
|
||||||
|
public const nint m_EventOutflow = 0x8; // CPulse_OutflowConnection
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulse_OutflowConnection {
|
||||||
|
public const nint m_SourceOutflowName = 0x0; // CUtlSymbolLarge
|
||||||
|
public const nint m_nDestChunk = 0x8; // PulseRuntimeChunkIndex_t
|
||||||
|
public const nint m_nInstruction = 0xC; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulseCell_Base {
|
||||||
|
public const nint m_nEditorNodeID = 0x8; // PulseDocNodeID_t
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPropertyDescription
|
||||||
|
// MPulseEditorHeaderIcon
|
||||||
|
public static class CPulseCell_Inflow_Wait {
|
||||||
|
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class PulseRegisterMap_t {
|
||||||
|
public const nint m_Inparams = 0x0; // KeyValues3
|
||||||
|
public const nint m_Outparams = 0x10; // KeyValues3
|
||||||
|
}
|
||||||
|
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPropertyDescription
|
||||||
|
// MPulseEditorHeaderIcon
|
||||||
|
public static class CPulseCell_CursorQueue {
|
||||||
|
public const nint m_nCursorsAllowedToRunParallel = 0x60; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
||||||
|
public const nint m_Shuffle = 0x0; // CUtlVectorFixedGrowable<uint8>
|
||||||
|
public const nint m_nNextShuffle = 0x20; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulse_PublicOutput {
|
||||||
|
public const nint m_Name = 0x0; // CUtlSymbolLarge
|
||||||
|
public const nint m_Description = 0x8; // CUtlString
|
||||||
|
public const nint m_ParamType = 0x10; // CPulseValueFullType
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulse_OutputConnection {
|
||||||
|
public const nint m_SourceOutput = 0x0; // CUtlSymbolLarge
|
||||||
|
public const nint m_TargetEntity = 0x8; // CUtlSymbolLarge
|
||||||
|
public const nint m_TargetInput = 0x10; // CUtlSymbolLarge
|
||||||
|
public const nint m_Param = 0x18; // CUtlSymbolLarge
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
public static class CPulseCell_TestWaitWithCursorState {
|
||||||
|
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||||
|
public const nint m_WakeCancel = 0x58; // CPulse_ResumePoint
|
||||||
|
public const nint m_WakeFail = 0x68; // CPulse_ResumePoint
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 11
|
// Fields count: 11
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -75,48 +287,6 @@ namespace CS2Dumper.Schemas {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CPulse_Variable {
|
|
||||||
public const nint m_Name = 0x0; // CUtlSymbolLarge
|
|
||||||
public const nint m_Description = 0x8; // CUtlString
|
|
||||||
public const nint m_Type = 0x10; // CPulseValueFullType
|
|
||||||
public const nint m_DefaultValue = 0x20; // KeyValues3
|
|
||||||
public const nint m_bIsPublic = 0x32; // bool
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulse_Constant {
|
|
||||||
public const nint m_Type = 0x0; // CPulseValueFullType
|
|
||||||
public const nint m_Value = 0x10; // KeyValues3
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulse_PublicOutput {
|
|
||||||
public const nint m_Name = 0x0; // CUtlSymbolLarge
|
|
||||||
public const nint m_Description = 0x8; // CUtlString
|
|
||||||
public const nint m_ParamType = 0x10; // CPulseValueFullType
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulse_OutputConnection {
|
|
||||||
public const nint m_SourceOutput = 0x0; // CUtlSymbolLarge
|
|
||||||
public const nint m_TargetEntity = 0x8; // CUtlSymbolLarge
|
|
||||||
public const nint m_TargetInput = 0x10; // CUtlSymbolLarge
|
|
||||||
public const nint m_Param = 0x18; // CUtlSymbolLarge
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulse_InvokeBinding {
|
public static class CPulse_InvokeBinding {
|
||||||
public const nint m_RegisterMap = 0x0; // PulseRegisterMap_t
|
public const nint m_RegisterMap = 0x0; // PulseRegisterMap_t
|
||||||
public const nint m_FuncName = 0x20; // CUtlSymbolLarge
|
public const nint m_FuncName = 0x20; // CUtlSymbolLarge
|
||||||
@ -125,13 +295,52 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_nSrcInstruction = 0x30; // int32
|
public const nint m_nSrcInstruction = 0x30; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulse_Variable {
|
||||||
|
public const nint m_Name = 0x0; // CUtlSymbolLarge
|
||||||
|
public const nint m_Description = 0x8; // CUtlString
|
||||||
|
public const nint m_Type = 0x10; // CPulseValueFullType
|
||||||
|
public const nint m_DefaultValue = 0x20; // KeyValues3
|
||||||
|
public const nint m_bIsPublic = 0x32; // bool
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 6
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MPulseInstanceDomainInfo
|
||||||
|
// MPulseLibraryBindings
|
||||||
|
// MPulseDomainOptInFeatureTag
|
||||||
|
public static class CPulseGraphInstance_TestDomain {
|
||||||
|
public const nint m_bIsRunningUnitTests = 0xD8; // bool
|
||||||
|
public const nint m_bExplicitTimeStepping = 0xD9; // bool
|
||||||
|
public const nint m_bExpectingToDestroyWithYieldedCursors = 0xDA; // bool
|
||||||
|
public const nint m_nNextValidateIndex = 0xDC; // int32
|
||||||
|
public const nint m_Tracepoints = 0xE0; // CUtlVector<CUtlString>
|
||||||
|
public const nint m_bTestYesOrNoPath = 0xF8; // bool
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class PulseRegisterMap_t {
|
public static class CPulseCell_TestWaitWithCursorState__CursorState_t {
|
||||||
public const nint m_Inparams = 0x0; // KeyValues3
|
public const nint flWaitValue = 0x0; // float32
|
||||||
public const nint m_Outparams = 0x10; // KeyValues3
|
public const nint bFailOnCancel = 0x4; // bool
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPulseEditorHeaderText
|
||||||
|
public static class CPulseCell_Step_TestDomainEntFire {
|
||||||
|
public const nint m_Input = 0x48; // CUtlString
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 6
|
// Fields count: 6
|
||||||
@ -147,6 +356,18 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_nSrcInstruction = 0x38; // int32
|
public const nint m_nSrcInstruction = 0x38; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulse_RegisterInfo {
|
||||||
|
public const nint m_nReg = 0x0; // PulseRuntimeRegisterIndex_t
|
||||||
|
public const nint m_Type = 0x8; // CPulseValueFullType
|
||||||
|
public const nint m_OriginName = 0x18; // CKV3MemberNameWithStorage
|
||||||
|
public const nint m_nWrittenByInstruction = 0x50; // int32
|
||||||
|
public const nint m_nLastReadByInstruction = 0x54; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 10
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -164,325 +385,13 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_OutputConnections = 0xC0; // CUtlVector<CPulse_OutputConnection*>
|
public const nint m_OutputConnections = 0xC0; // CUtlVector<CPulse_OutputConnection*>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseCell_Base {
|
|
||||||
public const nint m_nEditorNodeID = 0x8; // PulseDocNodeID_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPropertyDescription
|
|
||||||
public static class CPulseMathlib {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPropertyDescription
|
|
||||||
public static class CPulseTestScriptLib {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulse_OutflowConnection {
|
|
||||||
public const nint m_SourceOutflowName = 0x0; // CUtlSymbolLarge
|
|
||||||
public const nint m_nDestChunk = 0x8; // PulseRuntimeChunkIndex_t
|
|
||||||
public const nint m_nInstruction = 0xC; // int32
|
|
||||||
}
|
|
||||||
// Parent: CPulse_OutflowConnection
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulse_ResumePoint {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_Base
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseCell_BaseFlow {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CPulseCell_Inflow_BaseEntrypoint {
|
public static class CPulse_Constant {
|
||||||
public const nint m_EntryChunk = 0x48; // PulseRuntimeChunkIndex_t
|
public const nint m_Type = 0x0; // CPulseValueFullType
|
||||||
public const nint m_RegisterMap = 0x50; // PulseRegisterMap_t
|
public const nint m_Value = 0x10; // KeyValues3
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseRuntimeMethodArg {
|
|
||||||
public const nint m_Name = 0x0; // CKV3MemberNameWithStorage
|
|
||||||
public const nint m_Description = 0x38; // CUtlString
|
|
||||||
public const nint m_Type = 0x40; // CPulseValueFullType
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseCell_BaseYieldingInflow {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_Base
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseCell_BaseValue {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseYieldingInflow
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
// MPulseEditorHeaderIcon
|
|
||||||
public static class CPulseCell_Inflow_Wait {
|
|
||||||
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
|
||||||
public const nint m_nNextIndex = 0x0; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
|
||||||
public const nint m_Shuffle = 0x0; // CUtlVectorFixedGrowable<uint8>
|
|
||||||
public const nint m_nNextShuffle = 0x20; // int32
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
public static class CPulseCell_Outflow_TestRandomYesNo {
|
|
||||||
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
|
||||||
public const nint m_No = 0x58; // CPulse_OutflowConnection
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
public static class CPulseCell_Outflow_TestExplicitYesNo {
|
|
||||||
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
|
||||||
public const nint m_No = 0x58; // CPulse_OutflowConnection
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
public static class CPulseCell_Value_TestValue50 {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
// MPulseEditorHeaderIcon
|
|
||||||
public static class CPulseCell_Value_RandomInt {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseCell_Timeline__TimelineEvent_t {
|
|
||||||
public const nint m_flTimeFromPrevious = 0x0; // float32
|
|
||||||
public const nint m_bPauseForPreviousEvents = 0x4; // bool
|
|
||||||
public const nint m_bCallModeSync = 0x5; // bool
|
|
||||||
public const nint m_EventOutflow = 0x8; // CPulse_OutflowConnection
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseInstanceDomainInfo
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPulseDomainOptInFeatureTag
|
|
||||||
public static class CPulseGraphInstance_TestDomain {
|
|
||||||
public const nint m_bIsRunningUnitTests = 0xD8; // bool
|
|
||||||
public const nint m_bExplicitTimeStepping = 0xD9; // bool
|
|
||||||
public const nint m_bExpectingToDestroyWithYieldedCursors = 0xDA; // bool
|
|
||||||
public const nint m_nNextValidateIndex = 0xDC; // int32
|
|
||||||
public const nint m_Tracepoints = 0xE0; // CUtlVector<CUtlString>
|
|
||||||
public const nint m_bTestYesOrNoPath = 0xF8; // bool
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
public static class CPulseCell_Step_TestDomainTracepoint {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
public static class CPulseCell_Step_TestDomainCreateFakeEntity {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
public static class CPulseCell_Step_TestDomainDestroyFakeEntity {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPulseEditorHeaderText
|
|
||||||
public static class CPulseCell_Step_TestDomainEntFire {
|
|
||||||
public const nint m_Input = 0x48; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
public static class CPulseCell_Val_TestDomainGetEntityName {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
public static class CPulseCell_Val_TestDomainFindEntityByName {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseYieldingInflow
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
public static class CPulseCell_TestWaitWithCursorState {
|
|
||||||
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
|
||||||
public const nint m_WakeCancel = 0x58; // CPulse_ResumePoint
|
|
||||||
public const nint m_WakeFail = 0x68; // CPulse_ResumePoint
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseCell_TestWaitWithCursorState__CursorState_t {
|
|
||||||
public const nint flWaitValue = 0x0; // float32
|
|
||||||
public const nint bFailOnCancel = 0x4; // bool
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPropertyDescription
|
|
||||||
public static class CPulseTestFuncs_DerivedDomain {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
public static class CPulseCell_Test_NoInflow {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
public static class CPulseCell_Test_MultiInflow_WithDefault {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
public static class CPulseCell_Test_MultiInflow_NoDefault {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseInstanceDomainInfo
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
public static class CPulseGraphInstance_TurtleGraphics {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseYieldingInflow
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CPulseCell_WaitForCursorsWithTagBase {
|
|
||||||
public const nint m_nCursorsAllowedToWait = 0x48; // int32
|
|
||||||
public const nint m_WaitComplete = 0x50; // CPulse_ResumePoint
|
|
||||||
}
|
}
|
||||||
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
@ -498,8 +407,17 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_bTagSelfWhenComplete = 0x60; // bool
|
public const nint m_bTagSelfWhenComplete = 0x60; // bool
|
||||||
public const nint m_nDesiredKillPriority = 0x64; // PulseCursorCancelPriority_t
|
public const nint m_nDesiredKillPriority = 0x64; // PulseCursorCancelPriority_t
|
||||||
}
|
}
|
||||||
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulseCell_Inflow_BaseEntrypoint {
|
||||||
|
public const nint m_EntryChunk = 0x48; // PulseRuntimeChunkIndex_t
|
||||||
|
public const nint m_RegisterMap = 0x50; // PulseRegisterMap_t
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
@ -507,9 +425,32 @@ namespace CS2Dumper.Schemas {
|
|||||||
// MPulseCellMethodBindings
|
// MPulseCellMethodBindings
|
||||||
// MPropertyFriendlyName
|
// MPropertyFriendlyName
|
||||||
// MPropertyDescription
|
// MPropertyDescription
|
||||||
// MPulseEditorHeaderIcon
|
public static class CPulseCell_Outflow_TestExplicitYesNo {
|
||||||
public static class CPulseCell_CursorQueue {
|
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
||||||
public const nint m_nCursorsAllowedToRunParallel = 0x60; // int32
|
public const nint m_No = 0x58; // CPulse_OutflowConnection
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPropertyDescription
|
||||||
|
public static class CPulseCell_Outflow_TestRandomYesNo {
|
||||||
|
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
||||||
|
public const nint m_No = 0x58; // CPulse_OutflowConnection
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CPulseRuntimeMethodArg {
|
||||||
|
public const nint m_Name = 0x0; // CKV3MemberNameWithStorage
|
||||||
|
public const nint m_Description = 0x38; // CUtlString
|
||||||
|
public const nint m_Type = 0x40; // CPulseValueFullType
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -8,45 +8,134 @@
|
|||||||
namespace cs2_dumper {
|
namespace cs2_dumper {
|
||||||
namespace schemas {
|
namespace schemas {
|
||||||
// Module: pulse_system.dll
|
// Module: pulse_system.dll
|
||||||
// Classes count: 49
|
// Classes count: 28
|
||||||
// Enums count: 0
|
// Enums count: 7
|
||||||
namespace pulse_system_dll {
|
namespace pulse_system_dll {
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 0
|
// Members count: 3
|
||||||
//
|
enum class PulseTestEnumShape_t : uint32_t {
|
||||||
// Metadata:
|
CIRCLE = 0x64,
|
||||||
// MPulseLibraryBindings
|
SQUARE = 0xC8,
|
||||||
// MPropertyDescription
|
TRIANGLE = 0x12C
|
||||||
namespace CPulseCursorFuncs {
|
};
|
||||||
}
|
// Alignment: 4
|
||||||
// Parent: None
|
// Members count: 2
|
||||||
// Fields count: 0
|
enum class PulseMethodCallMode_t : uint32_t {
|
||||||
//
|
SYNC_WAIT_FOR_COMPLETION = 0x0,
|
||||||
// Metadata:
|
ASYNC_FIRE_AND_FORGET = 0x1
|
||||||
// MPulseLibraryBindings
|
};
|
||||||
// MPropertyDescription
|
// Alignment: 4
|
||||||
namespace CPulseTestFuncs_LibraryA {
|
// Members count: 3
|
||||||
}
|
enum class PulseCursorExecResult_t : uint32_t {
|
||||||
// Parent: None
|
Succeeded = 0x0,
|
||||||
// Fields count: 0
|
Canceled = 0x1,
|
||||||
//
|
Failed = 0x2
|
||||||
// Metadata:
|
};
|
||||||
// MPulseProvideFeatureTag
|
// Alignment: 4
|
||||||
// MPulseLibraryBindings
|
// Members count: 19
|
||||||
namespace FakeEntity_tAPI {
|
enum class PulseValueType_t : uint32_t {
|
||||||
}
|
PVAL_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
// Parent: None
|
PVAL_BOOL = 0x0,
|
||||||
// Fields count: 5
|
PVAL_INT = 0x1,
|
||||||
//
|
PVAL_FLOAT = 0x2,
|
||||||
// Metadata:
|
PVAL_STRING = 0x3,
|
||||||
// MGetKV3ClassDefaults
|
PVAL_VEC3 = 0x4,
|
||||||
namespace CPulse_RegisterInfo {
|
PVAL_TRANSFORM = 0x5,
|
||||||
constexpr std::ptrdiff_t m_nReg = 0x0; // PulseRuntimeRegisterIndex_t
|
PVAL_COLOR_RGB = 0x6,
|
||||||
constexpr std::ptrdiff_t m_Type = 0x8; // CPulseValueFullType
|
PVAL_EHANDLE = 0x7,
|
||||||
constexpr std::ptrdiff_t m_OriginName = 0x18; // CKV3MemberNameWithStorage
|
PVAL_RESOURCE = 0x8,
|
||||||
constexpr std::ptrdiff_t m_nWrittenByInstruction = 0x50; // int32
|
PVAL_SNDEVT_GUID = 0x9,
|
||||||
constexpr std::ptrdiff_t m_nLastReadByInstruction = 0x54; // int32
|
PVAL_ENTITY_NAME = 0xA,
|
||||||
}
|
PVAL_SCHEMA_PTR = 0xB,
|
||||||
|
PVAL_TYPESAFE_INT = 0xC,
|
||||||
|
PVAL_CURSOR_FLOW = 0xD,
|
||||||
|
PVAL_ANY = 0xE,
|
||||||
|
PVAL_SCHEMA_ENUM = 0xF,
|
||||||
|
PVAL_PANORAMA_PANEL_HANDLE = 0x10,
|
||||||
|
PVAL_COUNT = 0x11
|
||||||
|
};
|
||||||
|
// Alignment: 2
|
||||||
|
// Members count: 61
|
||||||
|
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,
|
||||||
|
SET_REGISTER_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,
|
||||||
|
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
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 5
|
||||||
|
enum class PulseTestEnumColor_t : uint32_t {
|
||||||
|
BLACK = 0x0,
|
||||||
|
WHITE = 0x1,
|
||||||
|
RED = 0x2,
|
||||||
|
GREEN = 0x3,
|
||||||
|
BLUE = 0x4
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
enum class PulseCursorCancelPriority_t : uint32_t {
|
||||||
|
None = 0x0,
|
||||||
|
CancelOnSucceeded = 0x1,
|
||||||
|
SoftCancel = 0x2,
|
||||||
|
HardCancel = 0x3
|
||||||
|
};
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 3
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
@ -58,6 +147,129 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_InstructionEditorIDs = 0x20; // CUtlLeanVector<PulseDocNodeID_t>
|
constexpr std::ptrdiff_t m_InstructionEditorIDs = 0x20; // CUtlLeanVector<PulseDocNodeID_t>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
||||||
|
constexpr std::ptrdiff_t m_nNextIndex = 0x0; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulseCell_WaitForCursorsWithTagBase {
|
||||||
|
constexpr std::ptrdiff_t m_nCursorsAllowedToWait = 0x48; // int32
|
||||||
|
constexpr std::ptrdiff_t m_WaitComplete = 0x50; // CPulse_ResumePoint
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulseCell_Timeline__TimelineEvent_t {
|
||||||
|
constexpr std::ptrdiff_t m_flTimeFromPrevious = 0x0; // float32
|
||||||
|
constexpr std::ptrdiff_t m_bPauseForPreviousEvents = 0x4; // bool
|
||||||
|
constexpr std::ptrdiff_t m_bCallModeSync = 0x5; // bool
|
||||||
|
constexpr std::ptrdiff_t m_EventOutflow = 0x8; // CPulse_OutflowConnection
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulse_OutflowConnection {
|
||||||
|
constexpr std::ptrdiff_t m_SourceOutflowName = 0x0; // CUtlSymbolLarge
|
||||||
|
constexpr std::ptrdiff_t m_nDestChunk = 0x8; // PulseRuntimeChunkIndex_t
|
||||||
|
constexpr std::ptrdiff_t m_nInstruction = 0xC; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulseCell_Base {
|
||||||
|
constexpr std::ptrdiff_t m_nEditorNodeID = 0x8; // PulseDocNodeID_t
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPropertyDescription
|
||||||
|
// MPulseEditorHeaderIcon
|
||||||
|
namespace CPulseCell_Inflow_Wait {
|
||||||
|
constexpr std::ptrdiff_t m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace PulseRegisterMap_t {
|
||||||
|
constexpr std::ptrdiff_t m_Inparams = 0x0; // KeyValues3
|
||||||
|
constexpr std::ptrdiff_t m_Outparams = 0x10; // KeyValues3
|
||||||
|
}
|
||||||
|
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPropertyDescription
|
||||||
|
// MPulseEditorHeaderIcon
|
||||||
|
namespace CPulseCell_CursorQueue {
|
||||||
|
constexpr std::ptrdiff_t m_nCursorsAllowedToRunParallel = 0x60; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
||||||
|
constexpr std::ptrdiff_t m_Shuffle = 0x0; // CUtlVectorFixedGrowable<uint8>
|
||||||
|
constexpr std::ptrdiff_t m_nNextShuffle = 0x20; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulse_PublicOutput {
|
||||||
|
constexpr std::ptrdiff_t m_Name = 0x0; // CUtlSymbolLarge
|
||||||
|
constexpr std::ptrdiff_t m_Description = 0x8; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_ParamType = 0x10; // CPulseValueFullType
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulse_OutputConnection {
|
||||||
|
constexpr std::ptrdiff_t m_SourceOutput = 0x0; // CUtlSymbolLarge
|
||||||
|
constexpr std::ptrdiff_t m_TargetEntity = 0x8; // CUtlSymbolLarge
|
||||||
|
constexpr std::ptrdiff_t m_TargetInput = 0x10; // CUtlSymbolLarge
|
||||||
|
constexpr std::ptrdiff_t m_Param = 0x18; // CUtlSymbolLarge
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
namespace CPulseCell_TestWaitWithCursorState {
|
||||||
|
constexpr std::ptrdiff_t m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||||
|
constexpr std::ptrdiff_t m_WakeCancel = 0x58; // CPulse_ResumePoint
|
||||||
|
constexpr std::ptrdiff_t m_WakeFail = 0x68; // CPulse_ResumePoint
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 11
|
// Fields count: 11
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -80,48 +292,6 @@ namespace cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CPulse_Variable {
|
|
||||||
constexpr std::ptrdiff_t m_Name = 0x0; // CUtlSymbolLarge
|
|
||||||
constexpr std::ptrdiff_t m_Description = 0x8; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_Type = 0x10; // CPulseValueFullType
|
|
||||||
constexpr std::ptrdiff_t m_DefaultValue = 0x20; // KeyValues3
|
|
||||||
constexpr std::ptrdiff_t m_bIsPublic = 0x32; // bool
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulse_Constant {
|
|
||||||
constexpr std::ptrdiff_t m_Type = 0x0; // CPulseValueFullType
|
|
||||||
constexpr std::ptrdiff_t m_Value = 0x10; // KeyValues3
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulse_PublicOutput {
|
|
||||||
constexpr std::ptrdiff_t m_Name = 0x0; // CUtlSymbolLarge
|
|
||||||
constexpr std::ptrdiff_t m_Description = 0x8; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_ParamType = 0x10; // CPulseValueFullType
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulse_OutputConnection {
|
|
||||||
constexpr std::ptrdiff_t m_SourceOutput = 0x0; // CUtlSymbolLarge
|
|
||||||
constexpr std::ptrdiff_t m_TargetEntity = 0x8; // CUtlSymbolLarge
|
|
||||||
constexpr std::ptrdiff_t m_TargetInput = 0x10; // CUtlSymbolLarge
|
|
||||||
constexpr std::ptrdiff_t m_Param = 0x18; // CUtlSymbolLarge
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulse_InvokeBinding {
|
namespace CPulse_InvokeBinding {
|
||||||
constexpr std::ptrdiff_t m_RegisterMap = 0x0; // PulseRegisterMap_t
|
constexpr std::ptrdiff_t m_RegisterMap = 0x0; // PulseRegisterMap_t
|
||||||
constexpr std::ptrdiff_t m_FuncName = 0x20; // CUtlSymbolLarge
|
constexpr std::ptrdiff_t m_FuncName = 0x20; // CUtlSymbolLarge
|
||||||
@ -130,13 +300,52 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_nSrcInstruction = 0x30; // int32
|
constexpr std::ptrdiff_t m_nSrcInstruction = 0x30; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulse_Variable {
|
||||||
|
constexpr std::ptrdiff_t m_Name = 0x0; // CUtlSymbolLarge
|
||||||
|
constexpr std::ptrdiff_t m_Description = 0x8; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_Type = 0x10; // CPulseValueFullType
|
||||||
|
constexpr std::ptrdiff_t m_DefaultValue = 0x20; // KeyValues3
|
||||||
|
constexpr std::ptrdiff_t m_bIsPublic = 0x32; // bool
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 6
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MPulseInstanceDomainInfo
|
||||||
|
// MPulseLibraryBindings
|
||||||
|
// MPulseDomainOptInFeatureTag
|
||||||
|
namespace CPulseGraphInstance_TestDomain {
|
||||||
|
constexpr std::ptrdiff_t m_bIsRunningUnitTests = 0xD8; // bool
|
||||||
|
constexpr std::ptrdiff_t m_bExplicitTimeStepping = 0xD9; // bool
|
||||||
|
constexpr std::ptrdiff_t m_bExpectingToDestroyWithYieldedCursors = 0xDA; // bool
|
||||||
|
constexpr std::ptrdiff_t m_nNextValidateIndex = 0xDC; // int32
|
||||||
|
constexpr std::ptrdiff_t m_Tracepoints = 0xE0; // CUtlVector<CUtlString>
|
||||||
|
constexpr std::ptrdiff_t m_bTestYesOrNoPath = 0xF8; // bool
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace PulseRegisterMap_t {
|
namespace CPulseCell_TestWaitWithCursorState__CursorState_t {
|
||||||
constexpr std::ptrdiff_t m_Inparams = 0x0; // KeyValues3
|
constexpr std::ptrdiff_t flWaitValue = 0x0; // float32
|
||||||
constexpr std::ptrdiff_t m_Outparams = 0x10; // KeyValues3
|
constexpr std::ptrdiff_t bFailOnCancel = 0x4; // bool
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPulseEditorHeaderText
|
||||||
|
namespace CPulseCell_Step_TestDomainEntFire {
|
||||||
|
constexpr std::ptrdiff_t m_Input = 0x48; // CUtlString
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 6
|
// Fields count: 6
|
||||||
@ -152,6 +361,18 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_nSrcInstruction = 0x38; // int32
|
constexpr std::ptrdiff_t m_nSrcInstruction = 0x38; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulse_RegisterInfo {
|
||||||
|
constexpr std::ptrdiff_t m_nReg = 0x0; // PulseRuntimeRegisterIndex_t
|
||||||
|
constexpr std::ptrdiff_t m_Type = 0x8; // CPulseValueFullType
|
||||||
|
constexpr std::ptrdiff_t m_OriginName = 0x18; // CKV3MemberNameWithStorage
|
||||||
|
constexpr std::ptrdiff_t m_nWrittenByInstruction = 0x50; // int32
|
||||||
|
constexpr std::ptrdiff_t m_nLastReadByInstruction = 0x54; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 10
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -169,325 +390,13 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_OutputConnections = 0xC0; // CUtlVector<CPulse_OutputConnection*>
|
constexpr std::ptrdiff_t m_OutputConnections = 0xC0; // CUtlVector<CPulse_OutputConnection*>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseCell_Base {
|
|
||||||
constexpr std::ptrdiff_t m_nEditorNodeID = 0x8; // PulseDocNodeID_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPropertyDescription
|
|
||||||
namespace CPulseMathlib {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPropertyDescription
|
|
||||||
namespace CPulseTestScriptLib {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulse_OutflowConnection {
|
|
||||||
constexpr std::ptrdiff_t m_SourceOutflowName = 0x0; // CUtlSymbolLarge
|
|
||||||
constexpr std::ptrdiff_t m_nDestChunk = 0x8; // PulseRuntimeChunkIndex_t
|
|
||||||
constexpr std::ptrdiff_t m_nInstruction = 0xC; // int32
|
|
||||||
}
|
|
||||||
// Parent: CPulse_OutflowConnection
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulse_ResumePoint {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_Base
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseCell_BaseFlow {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CPulseCell_Inflow_BaseEntrypoint {
|
namespace CPulse_Constant {
|
||||||
constexpr std::ptrdiff_t m_EntryChunk = 0x48; // PulseRuntimeChunkIndex_t
|
constexpr std::ptrdiff_t m_Type = 0x0; // CPulseValueFullType
|
||||||
constexpr std::ptrdiff_t m_RegisterMap = 0x50; // PulseRegisterMap_t
|
constexpr std::ptrdiff_t m_Value = 0x10; // KeyValues3
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseRuntimeMethodArg {
|
|
||||||
constexpr std::ptrdiff_t m_Name = 0x0; // CKV3MemberNameWithStorage
|
|
||||||
constexpr std::ptrdiff_t m_Description = 0x38; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_Type = 0x40; // CPulseValueFullType
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseCell_BaseYieldingInflow {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_Base
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseCell_BaseValue {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseYieldingInflow
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
// MPulseEditorHeaderIcon
|
|
||||||
namespace CPulseCell_Inflow_Wait {
|
|
||||||
constexpr std::ptrdiff_t m_WakeResume = 0x48; // CPulse_ResumePoint
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
|
||||||
constexpr std::ptrdiff_t m_nNextIndex = 0x0; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
|
||||||
constexpr std::ptrdiff_t m_Shuffle = 0x0; // CUtlVectorFixedGrowable<uint8>
|
|
||||||
constexpr std::ptrdiff_t m_nNextShuffle = 0x20; // int32
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
namespace CPulseCell_Outflow_TestRandomYesNo {
|
|
||||||
constexpr std::ptrdiff_t m_Yes = 0x48; // CPulse_OutflowConnection
|
|
||||||
constexpr std::ptrdiff_t m_No = 0x58; // CPulse_OutflowConnection
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
namespace CPulseCell_Outflow_TestExplicitYesNo {
|
|
||||||
constexpr std::ptrdiff_t m_Yes = 0x48; // CPulse_OutflowConnection
|
|
||||||
constexpr std::ptrdiff_t m_No = 0x58; // CPulse_OutflowConnection
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
namespace CPulseCell_Value_TestValue50 {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
// MPulseEditorHeaderIcon
|
|
||||||
namespace CPulseCell_Value_RandomInt {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseCell_Timeline__TimelineEvent_t {
|
|
||||||
constexpr std::ptrdiff_t m_flTimeFromPrevious = 0x0; // float32
|
|
||||||
constexpr std::ptrdiff_t m_bPauseForPreviousEvents = 0x4; // bool
|
|
||||||
constexpr std::ptrdiff_t m_bCallModeSync = 0x5; // bool
|
|
||||||
constexpr std::ptrdiff_t m_EventOutflow = 0x8; // CPulse_OutflowConnection
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseInstanceDomainInfo
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPulseDomainOptInFeatureTag
|
|
||||||
namespace CPulseGraphInstance_TestDomain {
|
|
||||||
constexpr std::ptrdiff_t m_bIsRunningUnitTests = 0xD8; // bool
|
|
||||||
constexpr std::ptrdiff_t m_bExplicitTimeStepping = 0xD9; // bool
|
|
||||||
constexpr std::ptrdiff_t m_bExpectingToDestroyWithYieldedCursors = 0xDA; // bool
|
|
||||||
constexpr std::ptrdiff_t m_nNextValidateIndex = 0xDC; // int32
|
|
||||||
constexpr std::ptrdiff_t m_Tracepoints = 0xE0; // CUtlVector<CUtlString>
|
|
||||||
constexpr std::ptrdiff_t m_bTestYesOrNoPath = 0xF8; // bool
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
namespace CPulseCell_Step_TestDomainTracepoint {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
namespace CPulseCell_Step_TestDomainCreateFakeEntity {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
namespace CPulseCell_Step_TestDomainDestroyFakeEntity {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPulseEditorHeaderText
|
|
||||||
namespace CPulseCell_Step_TestDomainEntFire {
|
|
||||||
constexpr std::ptrdiff_t m_Input = 0x48; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
namespace CPulseCell_Val_TestDomainGetEntityName {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
namespace CPulseCell_Val_TestDomainFindEntityByName {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseYieldingInflow
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
namespace CPulseCell_TestWaitWithCursorState {
|
|
||||||
constexpr std::ptrdiff_t m_WakeResume = 0x48; // CPulse_ResumePoint
|
|
||||||
constexpr std::ptrdiff_t m_WakeCancel = 0x58; // CPulse_ResumePoint
|
|
||||||
constexpr std::ptrdiff_t m_WakeFail = 0x68; // CPulse_ResumePoint
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseCell_TestWaitWithCursorState__CursorState_t {
|
|
||||||
constexpr std::ptrdiff_t flWaitValue = 0x0; // float32
|
|
||||||
constexpr std::ptrdiff_t bFailOnCancel = 0x4; // bool
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPropertyDescription
|
|
||||||
namespace CPulseTestFuncs_DerivedDomain {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
namespace CPulseCell_Test_NoInflow {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
namespace CPulseCell_Test_MultiInflow_WithDefault {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
namespace CPulseCell_Test_MultiInflow_NoDefault {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseInstanceDomainInfo
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
namespace CPulseGraphInstance_TurtleGraphics {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseYieldingInflow
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CPulseCell_WaitForCursorsWithTagBase {
|
|
||||||
constexpr std::ptrdiff_t m_nCursorsAllowedToWait = 0x48; // int32
|
|
||||||
constexpr std::ptrdiff_t m_WaitComplete = 0x50; // CPulse_ResumePoint
|
|
||||||
}
|
}
|
||||||
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
@ -503,8 +412,17 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_bTagSelfWhenComplete = 0x60; // bool
|
constexpr std::ptrdiff_t m_bTagSelfWhenComplete = 0x60; // bool
|
||||||
constexpr std::ptrdiff_t m_nDesiredKillPriority = 0x64; // PulseCursorCancelPriority_t
|
constexpr std::ptrdiff_t m_nDesiredKillPriority = 0x64; // PulseCursorCancelPriority_t
|
||||||
}
|
}
|
||||||
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulseCell_Inflow_BaseEntrypoint {
|
||||||
|
constexpr std::ptrdiff_t m_EntryChunk = 0x48; // PulseRuntimeChunkIndex_t
|
||||||
|
constexpr std::ptrdiff_t m_RegisterMap = 0x50; // PulseRegisterMap_t
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
@ -512,9 +430,32 @@ namespace cs2_dumper {
|
|||||||
// MPulseCellMethodBindings
|
// MPulseCellMethodBindings
|
||||||
// MPropertyFriendlyName
|
// MPropertyFriendlyName
|
||||||
// MPropertyDescription
|
// MPropertyDescription
|
||||||
// MPulseEditorHeaderIcon
|
namespace CPulseCell_Outflow_TestExplicitYesNo {
|
||||||
namespace CPulseCell_CursorQueue {
|
constexpr std::ptrdiff_t m_Yes = 0x48; // CPulse_OutflowConnection
|
||||||
constexpr std::ptrdiff_t m_nCursorsAllowedToRunParallel = 0x60; // int32
|
constexpr std::ptrdiff_t m_No = 0x58; // CPulse_OutflowConnection
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPropertyDescription
|
||||||
|
namespace CPulseCell_Outflow_TestRandomYesNo {
|
||||||
|
constexpr std::ptrdiff_t m_Yes = 0x48; // CPulse_OutflowConnection
|
||||||
|
constexpr std::ptrdiff_t m_No = 0x58; // CPulse_OutflowConnection
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CPulseRuntimeMethodArg {
|
||||||
|
constexpr std::ptrdiff_t m_Name = 0x0; // CKV3MemberNameWithStorage
|
||||||
|
constexpr std::ptrdiff_t m_Description = 0x38; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_Type = 0x40; // CPulseValueFullType
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,36 +13,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseCell_BaseFlow": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_Base"
|
|
||||||
},
|
|
||||||
"CPulseCell_BaseValue": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_Base"
|
|
||||||
},
|
|
||||||
"CPulseCell_BaseYieldingInflow": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseFlow"
|
|
||||||
},
|
|
||||||
"CPulseCell_CursorQueue": {
|
"CPulseCell_CursorQueue": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_nCursorsAllowedToRunParallel": 96
|
"m_nCursorsAllowedToRunParallel": 96
|
||||||
@ -86,7 +56,7 @@
|
|||||||
"type": "Unknown"
|
"type": "Unknown"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": "CPulseCell_BaseFlow"
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseCell_Inflow_Wait": {
|
"CPulseCell_Inflow_Wait": {
|
||||||
"fields": {
|
"fields": {
|
||||||
@ -118,7 +88,7 @@
|
|||||||
"type": "Unknown"
|
"type": "Unknown"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": "CPulseCell_BaseYieldingInflow"
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseCell_Outflow_CycleOrdered__InstanceState_t": {
|
"CPulseCell_Outflow_CycleOrdered__InstanceState_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
@ -172,7 +142,7 @@
|
|||||||
"type": "Unknown"
|
"type": "Unknown"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": "CPulseCell_BaseFlow"
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseCell_Outflow_TestRandomYesNo": {
|
"CPulseCell_Outflow_TestRandomYesNo": {
|
||||||
"fields": {
|
"fields": {
|
||||||
@ -201,51 +171,7 @@
|
|||||||
"type": "Unknown"
|
"type": "Unknown"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": "CPulseCell_BaseFlow"
|
"parent": null
|
||||||
},
|
|
||||||
"CPulseCell_Step_TestDomainCreateFakeEntity": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyFriendlyName",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseFlow"
|
|
||||||
},
|
|
||||||
"CPulseCell_Step_TestDomainDestroyFakeEntity": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyFriendlyName",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseFlow"
|
|
||||||
},
|
},
|
||||||
"CPulseCell_Step_TestDomainEntFire": {
|
"CPulseCell_Step_TestDomainEntFire": {
|
||||||
"fields": {
|
"fields": {
|
||||||
@ -273,29 +199,7 @@
|
|||||||
"type": "Unknown"
|
"type": "Unknown"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": "CPulseCell_BaseFlow"
|
"parent": null
|
||||||
},
|
|
||||||
"CPulseCell_Step_TestDomainTracepoint": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyFriendlyName",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseFlow"
|
|
||||||
},
|
},
|
||||||
"CPulseCell_TestWaitWithCursorState": {
|
"CPulseCell_TestWaitWithCursorState": {
|
||||||
"fields": {
|
"fields": {
|
||||||
@ -317,7 +221,7 @@
|
|||||||
"type": "Unknown"
|
"type": "Unknown"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": "CPulseCell_BaseYieldingInflow"
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseCell_TestWaitWithCursorState__CursorState_t": {
|
"CPulseCell_TestWaitWithCursorState__CursorState_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
@ -332,60 +236,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseCell_Test_MultiInflow_NoDefault": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseFlow"
|
|
||||||
},
|
|
||||||
"CPulseCell_Test_MultiInflow_WithDefault": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseFlow"
|
|
||||||
},
|
|
||||||
"CPulseCell_Test_NoInflow": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseFlow"
|
|
||||||
},
|
|
||||||
"CPulseCell_Timeline__TimelineEvent_t": {
|
"CPulseCell_Timeline__TimelineEvent_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_EventOutflow": 8,
|
"m_EventOutflow": 8,
|
||||||
@ -401,106 +251,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseCell_Val_TestDomainFindEntityByName": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyFriendlyName",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseValue"
|
|
||||||
},
|
|
||||||
"CPulseCell_Val_TestDomainGetEntityName": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyFriendlyName",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseValue"
|
|
||||||
},
|
|
||||||
"CPulseCell_Value_RandomInt": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyFriendlyName",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyDescription",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseEditorHeaderIcon",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseValue"
|
|
||||||
},
|
|
||||||
"CPulseCell_Value_TestValue50": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MCellForDomain",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseCellMethodBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyFriendlyName",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyDescription",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulseCell_BaseValue"
|
|
||||||
},
|
|
||||||
"CPulseCell_WaitForCursorsWithTag": {
|
"CPulseCell_WaitForCursorsWithTag": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_bTagSelfWhenComplete": 96,
|
"m_bTagSelfWhenComplete": 96,
|
||||||
@ -545,20 +295,6 @@
|
|||||||
"type": "Unknown"
|
"type": "Unknown"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": "CPulseCell_BaseYieldingInflow"
|
|
||||||
},
|
|
||||||
"CPulseCursorFuncs": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MPulseLibraryBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyDescription",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseGraphDef": {
|
"CPulseGraphDef": {
|
||||||
@ -607,34 +343,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseGraphInstance_TurtleGraphics": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MPulseInstanceDomainInfo",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseLibraryBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CPulseMathlib": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MPulseLibraryBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyDescription",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CPulseRuntimeMethodArg": {
|
"CPulseRuntimeMethodArg": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_Description": 56,
|
"m_Description": 56,
|
||||||
@ -649,48 +357,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulseTestFuncs_DerivedDomain": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MPulseLibraryBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyDescription",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CPulseTestFuncs_LibraryA": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MPulseLibraryBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyDescription",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CPulseTestScriptLib": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MPulseLibraryBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyDescription",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CPulse_CallInfo": {
|
"CPulse_CallInfo": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_CallMethodID": 48,
|
"m_CallMethodID": 48,
|
||||||
@ -810,16 +476,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CPulse_ResumePoint": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CPulse_OutflowConnection"
|
|
||||||
},
|
|
||||||
"CPulse_Variable": {
|
"CPulse_Variable": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_DefaultValue": 32,
|
"m_DefaultValue": 32,
|
||||||
@ -836,20 +492,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"FakeEntity_tAPI": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MPulseProvideFeatureTag",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPulseLibraryBindings",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"PGDInstruction_t": {
|
"PGDInstruction_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_DomainValue": 40,
|
"m_DomainValue": 40,
|
||||||
@ -886,6 +528,146 @@
|
|||||||
"parent": null
|
"parent": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"PulseCursorCancelPriority_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"CancelOnSucceeded": 1,
|
||||||
|
"HardCancel": 3,
|
||||||
|
"None": 0,
|
||||||
|
"SoftCancel": 2
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"PulseCursorExecResult_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"Canceled": 1,
|
||||||
|
"Failed": 2,
|
||||||
|
"Succeeded": 0
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"PulseInstructionCode_t": {
|
||||||
|
"alignment": 2,
|
||||||
|
"members": {
|
||||||
|
"ADD": 20,
|
||||||
|
"ADD_FLOAT": 36,
|
||||||
|
"ADD_INT": 35,
|
||||||
|
"ADD_STRING": 37,
|
||||||
|
"AND": 29,
|
||||||
|
"CELL_INVOKE": 11,
|
||||||
|
"CHUNK_LEAP": 7,
|
||||||
|
"CHUNK_LEAP_COND": 8,
|
||||||
|
"CONVERT_VALUE": 31,
|
||||||
|
"COPY": 17,
|
||||||
|
"DIV": 23,
|
||||||
|
"DIV_FLOAT": 43,
|
||||||
|
"DIV_INT": 42,
|
||||||
|
"EQ": 27,
|
||||||
|
"EQ_BOOL": 50,
|
||||||
|
"EQ_ENTITY_NAME": 54,
|
||||||
|
"EQ_FLOAT": 52,
|
||||||
|
"EQ_INT": 51,
|
||||||
|
"EQ_STRING": 53,
|
||||||
|
"GET_CONST": 15,
|
||||||
|
"GET_CONST_INLINE_STORAGE": 60,
|
||||||
|
"GET_VAR": 14,
|
||||||
|
"IMMEDIATE_HALT": 1,
|
||||||
|
"INVALID": 0,
|
||||||
|
"JUMP": 5,
|
||||||
|
"JUMP_COND": 6,
|
||||||
|
"LAST_SERIALIZED_CODE": 32,
|
||||||
|
"LIBRARY_INVOKE": 12,
|
||||||
|
"LT": 25,
|
||||||
|
"LTE": 26,
|
||||||
|
"LTE_FLOAT": 49,
|
||||||
|
"LTE_INT": 48,
|
||||||
|
"LT_FLOAT": 47,
|
||||||
|
"LT_INT": 46,
|
||||||
|
"MOD": 24,
|
||||||
|
"MOD_FLOAT": 45,
|
||||||
|
"MOD_INT": 44,
|
||||||
|
"MUL": 22,
|
||||||
|
"MUL_FLOAT": 41,
|
||||||
|
"MUL_INT": 40,
|
||||||
|
"NE": 28,
|
||||||
|
"NEGATE": 19,
|
||||||
|
"NEGATE_FLOAT": 34,
|
||||||
|
"NEGATE_INT": 33,
|
||||||
|
"NE_BOOL": 55,
|
||||||
|
"NE_ENTITY_NAME": 59,
|
||||||
|
"NE_FLOAT": 57,
|
||||||
|
"NE_INT": 56,
|
||||||
|
"NE_STRING": 58,
|
||||||
|
"NOP": 4,
|
||||||
|
"NOT": 18,
|
||||||
|
"OR": 30,
|
||||||
|
"PULSE_CALL_ASYNC_FIRE": 10,
|
||||||
|
"PULSE_CALL_SYNC": 9,
|
||||||
|
"RETURN_VALUE": 3,
|
||||||
|
"RETURN_VOID": 2,
|
||||||
|
"SET_REGISTER_DOMAIN_VALUE": 16,
|
||||||
|
"SET_VAR": 13,
|
||||||
|
"SUB": 21,
|
||||||
|
"SUB_FLOAT": 39,
|
||||||
|
"SUB_INT": 38
|
||||||
|
},
|
||||||
|
"type": "uint16"
|
||||||
|
},
|
||||||
|
"PulseMethodCallMode_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"ASYNC_FIRE_AND_FORGET": 1,
|
||||||
|
"SYNC_WAIT_FOR_COMPLETION": 0
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"PulseTestEnumColor_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"BLACK": 0,
|
||||||
|
"BLUE": 4,
|
||||||
|
"GREEN": 3,
|
||||||
|
"RED": 2,
|
||||||
|
"WHITE": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"PulseTestEnumShape_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"CIRCLE": 100,
|
||||||
|
"SQUARE": 200,
|
||||||
|
"TRIANGLE": 300
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"PulseValueType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"PVAL_ANY": 14,
|
||||||
|
"PVAL_BOOL": 0,
|
||||||
|
"PVAL_COLOR_RGB": 6,
|
||||||
|
"PVAL_COUNT": 17,
|
||||||
|
"PVAL_CURSOR_FLOW": 13,
|
||||||
|
"PVAL_EHANDLE": 7,
|
||||||
|
"PVAL_ENTITY_NAME": 10,
|
||||||
|
"PVAL_FLOAT": 2,
|
||||||
|
"PVAL_INT": 1,
|
||||||
|
"PVAL_INVALID": -1,
|
||||||
|
"PVAL_PANORAMA_PANEL_HANDLE": 16,
|
||||||
|
"PVAL_RESOURCE": 8,
|
||||||
|
"PVAL_SCHEMA_ENUM": 15,
|
||||||
|
"PVAL_SCHEMA_PTR": 11,
|
||||||
|
"PVAL_SNDEVT_GUID": 9,
|
||||||
|
"PVAL_STRING": 3,
|
||||||
|
"PVAL_TRANSFORM": 5,
|
||||||
|
"PVAL_TYPESAFE_INT": 12,
|
||||||
|
"PVAL_VEC3": 4
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,49 +1,145 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
pub mod cs2_dumper {
|
pub mod cs2_dumper {
|
||||||
pub mod schemas {
|
pub mod schemas {
|
||||||
// Module: pulse_system.dll
|
// Module: pulse_system.dll
|
||||||
// Classes count: 49
|
// Classes count: 28
|
||||||
// Enums count: 0
|
// Enums count: 7
|
||||||
pub mod pulse_system_dll {
|
pub mod pulse_system_dll {
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 0
|
// Members count: 3
|
||||||
//
|
#[repr(u32)]
|
||||||
// Metadata:
|
pub enum PulseTestEnumShape_t {
|
||||||
// MPulseLibraryBindings
|
CIRCLE = 0x64,
|
||||||
// MPropertyDescription
|
SQUARE = 0xC8,
|
||||||
pub mod CPulseCursorFuncs {
|
TRIANGLE = 0x12C
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 0
|
// Members count: 2
|
||||||
//
|
#[repr(u32)]
|
||||||
// Metadata:
|
pub enum PulseMethodCallMode_t {
|
||||||
// MPulseLibraryBindings
|
SYNC_WAIT_FOR_COMPLETION = 0x0,
|
||||||
// MPropertyDescription
|
ASYNC_FIRE_AND_FORGET = 0x1
|
||||||
pub mod CPulseTestFuncs_LibraryA {
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 0
|
// Members count: 3
|
||||||
//
|
#[repr(u32)]
|
||||||
// Metadata:
|
pub enum PulseCursorExecResult_t {
|
||||||
// MPulseProvideFeatureTag
|
Succeeded = 0x0,
|
||||||
// MPulseLibraryBindings
|
Canceled = 0x1,
|
||||||
pub mod FakeEntity_tAPI {
|
Failed = 0x2
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 5
|
// Members count: 19
|
||||||
//
|
#[repr(u32)]
|
||||||
// Metadata:
|
pub enum PulseValueType_t {
|
||||||
// MGetKV3ClassDefaults
|
PVAL_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
pub mod CPulse_RegisterInfo {
|
PVAL_BOOL = 0x0,
|
||||||
pub const m_nReg: usize = 0x0; // PulseRuntimeRegisterIndex_t
|
PVAL_INT = 0x1,
|
||||||
pub const m_Type: usize = 0x8; // CPulseValueFullType
|
PVAL_FLOAT = 0x2,
|
||||||
pub const m_OriginName: usize = 0x18; // CKV3MemberNameWithStorage
|
PVAL_STRING = 0x3,
|
||||||
pub const m_nWrittenByInstruction: usize = 0x50; // int32
|
PVAL_VEC3 = 0x4,
|
||||||
pub const m_nLastReadByInstruction: usize = 0x54; // int32
|
PVAL_TRANSFORM = 0x5,
|
||||||
|
PVAL_COLOR_RGB = 0x6,
|
||||||
|
PVAL_EHANDLE = 0x7,
|
||||||
|
PVAL_RESOURCE = 0x8,
|
||||||
|
PVAL_SNDEVT_GUID = 0x9,
|
||||||
|
PVAL_ENTITY_NAME = 0xA,
|
||||||
|
PVAL_SCHEMA_PTR = 0xB,
|
||||||
|
PVAL_TYPESAFE_INT = 0xC,
|
||||||
|
PVAL_CURSOR_FLOW = 0xD,
|
||||||
|
PVAL_ANY = 0xE,
|
||||||
|
PVAL_SCHEMA_ENUM = 0xF,
|
||||||
|
PVAL_PANORAMA_PANEL_HANDLE = 0x10,
|
||||||
|
PVAL_COUNT = 0x11
|
||||||
|
}
|
||||||
|
// Alignment: 2
|
||||||
|
// Members count: 61
|
||||||
|
#[repr(u16)]
|
||||||
|
pub enum PulseInstructionCode_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,
|
||||||
|
SET_REGISTER_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,
|
||||||
|
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
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 5
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum PulseTestEnumColor_t {
|
||||||
|
BLACK = 0x0,
|
||||||
|
WHITE = 0x1,
|
||||||
|
RED = 0x2,
|
||||||
|
GREEN = 0x3,
|
||||||
|
BLUE = 0x4
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum PulseCursorCancelPriority_t {
|
||||||
|
None = 0x0,
|
||||||
|
CancelOnSucceeded = 0x1,
|
||||||
|
SoftCancel = 0x2,
|
||||||
|
HardCancel = 0x3
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 3
|
// Fields count: 3
|
||||||
@ -56,6 +152,129 @@ pub mod cs2_dumper {
|
|||||||
pub const m_InstructionEditorIDs: usize = 0x20; // CUtlLeanVector<PulseDocNodeID_t>
|
pub const m_InstructionEditorIDs: usize = 0x20; // CUtlLeanVector<PulseDocNodeID_t>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
||||||
|
pub const m_nNextIndex: usize = 0x0; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulseCell_WaitForCursorsWithTagBase {
|
||||||
|
pub const m_nCursorsAllowedToWait: usize = 0x48; // int32
|
||||||
|
pub const m_WaitComplete: usize = 0x50; // CPulse_ResumePoint
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulseCell_Timeline__TimelineEvent_t {
|
||||||
|
pub const m_flTimeFromPrevious: usize = 0x0; // float32
|
||||||
|
pub const m_bPauseForPreviousEvents: usize = 0x4; // bool
|
||||||
|
pub const m_bCallModeSync: usize = 0x5; // bool
|
||||||
|
pub const m_EventOutflow: usize = 0x8; // CPulse_OutflowConnection
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
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
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulseCell_Base {
|
||||||
|
pub const m_nEditorNodeID: usize = 0x8; // PulseDocNodeID_t
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPropertyDescription
|
||||||
|
// MPulseEditorHeaderIcon
|
||||||
|
pub mod CPulseCell_Inflow_Wait {
|
||||||
|
pub const m_WakeResume: usize = 0x48; // CPulse_ResumePoint
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod PulseRegisterMap_t {
|
||||||
|
pub const m_Inparams: usize = 0x0; // KeyValues3
|
||||||
|
pub const m_Outparams: usize = 0x10; // KeyValues3
|
||||||
|
}
|
||||||
|
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPropertyDescription
|
||||||
|
// MPulseEditorHeaderIcon
|
||||||
|
pub mod CPulseCell_CursorQueue {
|
||||||
|
pub const m_nCursorsAllowedToRunParallel: usize = 0x60; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
||||||
|
pub const m_Shuffle: usize = 0x0; // CUtlVectorFixedGrowable<uint8>
|
||||||
|
pub const m_nNextShuffle: usize = 0x20; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulse_PublicOutput {
|
||||||
|
pub const m_Name: usize = 0x0; // CUtlSymbolLarge
|
||||||
|
pub const m_Description: usize = 0x8; // CUtlString
|
||||||
|
pub const m_ParamType: usize = 0x10; // CPulseValueFullType
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulse_OutputConnection {
|
||||||
|
pub const m_SourceOutput: usize = 0x0; // CUtlSymbolLarge
|
||||||
|
pub const m_TargetEntity: usize = 0x8; // CUtlSymbolLarge
|
||||||
|
pub const m_TargetInput: usize = 0x10; // CUtlSymbolLarge
|
||||||
|
pub const m_Param: usize = 0x18; // CUtlSymbolLarge
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
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
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 11
|
// Fields count: 11
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -78,48 +297,6 @@ pub mod cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CPulse_Variable {
|
|
||||||
pub const m_Name: usize = 0x0; // CUtlSymbolLarge
|
|
||||||
pub const m_Description: usize = 0x8; // CUtlString
|
|
||||||
pub const m_Type: usize = 0x10; // CPulseValueFullType
|
|
||||||
pub const m_DefaultValue: usize = 0x20; // KeyValues3
|
|
||||||
pub const m_bIsPublic: usize = 0x32; // bool
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulse_Constant {
|
|
||||||
pub const m_Type: usize = 0x0; // CPulseValueFullType
|
|
||||||
pub const m_Value: usize = 0x10; // KeyValues3
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulse_PublicOutput {
|
|
||||||
pub const m_Name: usize = 0x0; // CUtlSymbolLarge
|
|
||||||
pub const m_Description: usize = 0x8; // CUtlString
|
|
||||||
pub const m_ParamType: usize = 0x10; // CPulseValueFullType
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulse_OutputConnection {
|
|
||||||
pub const m_SourceOutput: usize = 0x0; // CUtlSymbolLarge
|
|
||||||
pub const m_TargetEntity: usize = 0x8; // CUtlSymbolLarge
|
|
||||||
pub const m_TargetInput: usize = 0x10; // CUtlSymbolLarge
|
|
||||||
pub const m_Param: usize = 0x18; // CUtlSymbolLarge
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulse_InvokeBinding {
|
pub mod CPulse_InvokeBinding {
|
||||||
pub const m_RegisterMap: usize = 0x0; // PulseRegisterMap_t
|
pub const m_RegisterMap: usize = 0x0; // PulseRegisterMap_t
|
||||||
pub const m_FuncName: usize = 0x20; // CUtlSymbolLarge
|
pub const m_FuncName: usize = 0x20; // CUtlSymbolLarge
|
||||||
@ -128,13 +305,52 @@ pub mod cs2_dumper {
|
|||||||
pub const m_nSrcInstruction: usize = 0x30; // int32
|
pub const m_nSrcInstruction: usize = 0x30; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulse_Variable {
|
||||||
|
pub const m_Name: usize = 0x0; // CUtlSymbolLarge
|
||||||
|
pub const m_Description: usize = 0x8; // CUtlString
|
||||||
|
pub const m_Type: usize = 0x10; // CPulseValueFullType
|
||||||
|
pub const m_DefaultValue: usize = 0x20; // KeyValues3
|
||||||
|
pub const m_bIsPublic: usize = 0x32; // bool
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 6
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MPulseInstanceDomainInfo
|
||||||
|
// 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
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod PulseRegisterMap_t {
|
pub mod CPulseCell_TestWaitWithCursorState__CursorState_t {
|
||||||
pub const m_Inparams: usize = 0x0; // KeyValues3
|
pub const flWaitValue: usize = 0x0; // float32
|
||||||
pub const m_Outparams: usize = 0x10; // KeyValues3
|
pub const bFailOnCancel: usize = 0x4; // bool
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPulseEditorHeaderText
|
||||||
|
pub mod CPulseCell_Step_TestDomainEntFire {
|
||||||
|
pub const m_Input: usize = 0x48; // CUtlString
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 6
|
// Fields count: 6
|
||||||
@ -150,6 +366,18 @@ pub mod cs2_dumper {
|
|||||||
pub const m_nSrcInstruction: usize = 0x38; // int32
|
pub const m_nSrcInstruction: usize = 0x38; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulse_RegisterInfo {
|
||||||
|
pub const m_nReg: usize = 0x0; // PulseRuntimeRegisterIndex_t
|
||||||
|
pub const m_Type: usize = 0x8; // CPulseValueFullType
|
||||||
|
pub const m_OriginName: usize = 0x18; // CKV3MemberNameWithStorage
|
||||||
|
pub const m_nWrittenByInstruction: usize = 0x50; // int32
|
||||||
|
pub const m_nLastReadByInstruction: usize = 0x54; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 10
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -167,325 +395,13 @@ pub mod cs2_dumper {
|
|||||||
pub const m_OutputConnections: usize = 0xC0; // CUtlVector<CPulse_OutputConnection*>
|
pub const m_OutputConnections: usize = 0xC0; // CUtlVector<CPulse_OutputConnection*>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseCell_Base {
|
|
||||||
pub const m_nEditorNodeID: usize = 0x8; // PulseDocNodeID_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPropertyDescription
|
|
||||||
pub mod CPulseMathlib {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPropertyDescription
|
|
||||||
pub mod CPulseTestScriptLib {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
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
|
|
||||||
}
|
|
||||||
// Parent: CPulse_OutflowConnection
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulse_ResumePoint {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_Base
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseCell_BaseFlow {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CPulseCell_Inflow_BaseEntrypoint {
|
pub mod CPulse_Constant {
|
||||||
pub const m_EntryChunk: usize = 0x48; // PulseRuntimeChunkIndex_t
|
pub const m_Type: usize = 0x0; // CPulseValueFullType
|
||||||
pub const m_RegisterMap: usize = 0x50; // PulseRegisterMap_t
|
pub const m_Value: usize = 0x10; // KeyValues3
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseRuntimeMethodArg {
|
|
||||||
pub const m_Name: usize = 0x0; // CKV3MemberNameWithStorage
|
|
||||||
pub const m_Description: usize = 0x38; // CUtlString
|
|
||||||
pub const m_Type: usize = 0x40; // CPulseValueFullType
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseCell_BaseYieldingInflow {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_Base
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseCell_BaseValue {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseYieldingInflow
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
// MPulseEditorHeaderIcon
|
|
||||||
pub mod CPulseCell_Inflow_Wait {
|
|
||||||
pub const m_WakeResume: usize = 0x48; // CPulse_ResumePoint
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
|
||||||
pub const m_nNextIndex: usize = 0x0; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
|
||||||
pub const m_Shuffle: usize = 0x0; // CUtlVectorFixedGrowable<uint8>
|
|
||||||
pub const m_nNextShuffle: usize = 0x20; // int32
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
pub mod CPulseCell_Outflow_TestRandomYesNo {
|
|
||||||
pub const m_Yes: usize = 0x48; // CPulse_OutflowConnection
|
|
||||||
pub const m_No: usize = 0x58; // CPulse_OutflowConnection
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// 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
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
pub mod CPulseCell_Value_TestValue50 {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPropertyDescription
|
|
||||||
// MPulseEditorHeaderIcon
|
|
||||||
pub mod CPulseCell_Value_RandomInt {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseCell_Timeline__TimelineEvent_t {
|
|
||||||
pub const m_flTimeFromPrevious: usize = 0x0; // float32
|
|
||||||
pub const m_bPauseForPreviousEvents: usize = 0x4; // bool
|
|
||||||
pub const m_bCallModeSync: usize = 0x5; // bool
|
|
||||||
pub const m_EventOutflow: usize = 0x8; // CPulse_OutflowConnection
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseInstanceDomainInfo
|
|
||||||
// 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
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
pub mod CPulseCell_Step_TestDomainTracepoint {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
pub mod CPulseCell_Step_TestDomainCreateFakeEntity {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
pub mod CPulseCell_Step_TestDomainDestroyFakeEntity {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
// MPulseEditorHeaderText
|
|
||||||
pub mod CPulseCell_Step_TestDomainEntFire {
|
|
||||||
pub const m_Input: usize = 0x48; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
pub mod CPulseCell_Val_TestDomainGetEntityName {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseValue
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
// MPropertyFriendlyName
|
|
||||||
pub mod CPulseCell_Val_TestDomainFindEntityByName {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseYieldingInflow
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
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
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseCell_TestWaitWithCursorState__CursorState_t {
|
|
||||||
pub const flWaitValue: usize = 0x0; // float32
|
|
||||||
pub const bFailOnCancel: usize = 0x4; // bool
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
// MPropertyDescription
|
|
||||||
pub mod CPulseTestFuncs_DerivedDomain {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
pub mod CPulseCell_Test_NoInflow {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
pub mod CPulseCell_Test_MultiInflow_WithDefault {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseFlow
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MCellForDomain
|
|
||||||
// MPulseCellMethodBindings
|
|
||||||
pub mod CPulseCell_Test_MultiInflow_NoDefault {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MPulseInstanceDomainInfo
|
|
||||||
// MPulseLibraryBindings
|
|
||||||
pub mod CPulseGraphInstance_TurtleGraphics {
|
|
||||||
}
|
|
||||||
// Parent: CPulseCell_BaseYieldingInflow
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CPulseCell_WaitForCursorsWithTagBase {
|
|
||||||
pub const m_nCursorsAllowedToWait: usize = 0x48; // int32
|
|
||||||
pub const m_WaitComplete: usize = 0x50; // CPulse_ResumePoint
|
|
||||||
}
|
}
|
||||||
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
@ -501,8 +417,17 @@ pub mod cs2_dumper {
|
|||||||
pub const m_bTagSelfWhenComplete: usize = 0x60; // bool
|
pub const m_bTagSelfWhenComplete: usize = 0x60; // bool
|
||||||
pub const m_nDesiredKillPriority: usize = 0x64; // PulseCursorCancelPriority_t
|
pub const m_nDesiredKillPriority: usize = 0x64; // PulseCursorCancelPriority_t
|
||||||
}
|
}
|
||||||
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulseCell_Inflow_BaseEntrypoint {
|
||||||
|
pub const m_EntryChunk: usize = 0x48; // PulseRuntimeChunkIndex_t
|
||||||
|
pub const m_RegisterMap: usize = 0x50; // PulseRegisterMap_t
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
@ -510,9 +435,32 @@ pub mod cs2_dumper {
|
|||||||
// MPulseCellMethodBindings
|
// MPulseCellMethodBindings
|
||||||
// MPropertyFriendlyName
|
// MPropertyFriendlyName
|
||||||
// MPropertyDescription
|
// MPropertyDescription
|
||||||
// MPulseEditorHeaderIcon
|
pub mod CPulseCell_Outflow_TestExplicitYesNo {
|
||||||
pub mod CPulseCell_CursorQueue {
|
pub const m_Yes: usize = 0x48; // CPulse_OutflowConnection
|
||||||
pub const m_nCursorsAllowedToRunParallel: usize = 0x60; // int32
|
pub const m_No: usize = 0x58; // CPulse_OutflowConnection
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
// MCellForDomain
|
||||||
|
// MPulseCellMethodBindings
|
||||||
|
// MPropertyFriendlyName
|
||||||
|
// MPropertyDescription
|
||||||
|
pub mod CPulseCell_Outflow_TestRandomYesNo {
|
||||||
|
pub const m_Yes: usize = 0x48; // CPulse_OutflowConnection
|
||||||
|
pub const m_No: usize = 0x58; // CPulse_OutflowConnection
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 3
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CPulseRuntimeMethodArg {
|
||||||
|
pub const m_Name: usize = 0x0; // CKV3MemberNameWithStorage
|
||||||
|
pub const m_Description: usize = 0x38; // CUtlString
|
||||||
|
pub const m_Type: usize = 0x40; // CPulseValueFullType
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,70 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
|
// Module: rendersystemdx11.dll
|
||||||
|
// Classes count: 0
|
||||||
|
// Enums count: 5
|
||||||
|
public static class Rendersystemdx11Dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 13
|
||||||
|
public enum RenderPrimitiveType_t : uint {
|
||||||
|
RENDER_PRIM_POINTS = 0x0,
|
||||||
|
RENDER_PRIM_LINES = 0x1,
|
||||||
|
RENDER_PRIM_LINES_WITH_ADJACENCY = 0x2,
|
||||||
|
RENDER_PRIM_LINE_STRIP = 0x3,
|
||||||
|
RENDER_PRIM_LINE_STRIP_WITH_ADJACENCY = 0x4,
|
||||||
|
RENDER_PRIM_TRIANGLES = 0x5,
|
||||||
|
RENDER_PRIM_TRIANGLES_WITH_ADJACENCY = 0x6,
|
||||||
|
RENDER_PRIM_TRIANGLE_STRIP = 0x7,
|
||||||
|
RENDER_PRIM_TRIANGLE_STRIP_WITH_ADJACENCY = 0x8,
|
||||||
|
RENDER_PRIM_INSTANCED_QUADS = 0x9,
|
||||||
|
RENDER_PRIM_HETEROGENOUS = 0xA,
|
||||||
|
RENDER_PRIM_COMPUTE_SHADER = 0xB,
|
||||||
|
RENDER_PRIM_TYPE_COUNT = 0xC
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 12
|
||||||
|
public enum RenderBufferFlags_t : uint {
|
||||||
|
RENDER_BUFFER_USAGE_VERTEX_BUFFER = 0x1,
|
||||||
|
RENDER_BUFFER_USAGE_INDEX_BUFFER = 0x2,
|
||||||
|
RENDER_BUFFER_USAGE_SHADER_RESOURCE = 0x4,
|
||||||
|
RENDER_BUFFER_USAGE_UNORDERED_ACCESS = 0x8,
|
||||||
|
RENDER_BUFFER_BYTEADDRESS_BUFFER = 0x10,
|
||||||
|
RENDER_BUFFER_STRUCTURED_BUFFER = 0x20,
|
||||||
|
RENDER_BUFFER_APPEND_CONSUME_BUFFER = 0x40,
|
||||||
|
RENDER_BUFFER_UAV_COUNTER = 0x80,
|
||||||
|
RENDER_BUFFER_UAV_DRAW_INDIRECT_ARGS = 0x100,
|
||||||
|
RENDER_BUFFER_ACCELERATION_STRUCTURE = 0x200,
|
||||||
|
RENDER_BUFFER_SHADER_BINDING_TABLE = 0x400,
|
||||||
|
RENDER_BUFFER_PER_FRAME_WRITE_ONCE = 0x800
|
||||||
|
}
|
||||||
|
// Alignment: 1
|
||||||
|
// Members count: 8
|
||||||
|
public enum RenderMultisampleType_t : byte {
|
||||||
|
RENDER_MULTISAMPLE_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
|
RENDER_MULTISAMPLE_NONE = 0x0,
|
||||||
|
RENDER_MULTISAMPLE_2X = 0x1,
|
||||||
|
RENDER_MULTISAMPLE_4X = 0x2,
|
||||||
|
RENDER_MULTISAMPLE_6X = 0x3,
|
||||||
|
RENDER_MULTISAMPLE_8X = 0x4,
|
||||||
|
RENDER_MULTISAMPLE_16X = 0x5,
|
||||||
|
RENDER_MULTISAMPLE_TYPE_COUNT = 0x6
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
public enum InputLayoutVariation_t : uint {
|
||||||
|
INPUT_LAYOUT_VARIATION_DEFAULT = 0x0,
|
||||||
|
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID = 0x1,
|
||||||
|
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID_MORPH_VERT_ID = 0x2,
|
||||||
|
INPUT_LAYOUT_VARIATION_MAX = 0x3
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
public enum RenderSlotType_t : uint {
|
||||||
|
RENDER_SLOT_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
|
RENDER_SLOT_PER_VERTEX = 0x0,
|
||||||
|
RENDER_SLOT_PER_INSTANCE = 0x1
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -7,5 +7,70 @@
|
|||||||
|
|
||||||
namespace cs2_dumper {
|
namespace cs2_dumper {
|
||||||
namespace schemas {
|
namespace schemas {
|
||||||
|
// Module: rendersystemdx11.dll
|
||||||
|
// Classes count: 0
|
||||||
|
// Enums count: 5
|
||||||
|
namespace rendersystemdx11_dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 13
|
||||||
|
enum class RenderPrimitiveType_t : uint32_t {
|
||||||
|
RENDER_PRIM_POINTS = 0x0,
|
||||||
|
RENDER_PRIM_LINES = 0x1,
|
||||||
|
RENDER_PRIM_LINES_WITH_ADJACENCY = 0x2,
|
||||||
|
RENDER_PRIM_LINE_STRIP = 0x3,
|
||||||
|
RENDER_PRIM_LINE_STRIP_WITH_ADJACENCY = 0x4,
|
||||||
|
RENDER_PRIM_TRIANGLES = 0x5,
|
||||||
|
RENDER_PRIM_TRIANGLES_WITH_ADJACENCY = 0x6,
|
||||||
|
RENDER_PRIM_TRIANGLE_STRIP = 0x7,
|
||||||
|
RENDER_PRIM_TRIANGLE_STRIP_WITH_ADJACENCY = 0x8,
|
||||||
|
RENDER_PRIM_INSTANCED_QUADS = 0x9,
|
||||||
|
RENDER_PRIM_HETEROGENOUS = 0xA,
|
||||||
|
RENDER_PRIM_COMPUTE_SHADER = 0xB,
|
||||||
|
RENDER_PRIM_TYPE_COUNT = 0xC
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 12
|
||||||
|
enum class RenderBufferFlags_t : uint32_t {
|
||||||
|
RENDER_BUFFER_USAGE_VERTEX_BUFFER = 0x1,
|
||||||
|
RENDER_BUFFER_USAGE_INDEX_BUFFER = 0x2,
|
||||||
|
RENDER_BUFFER_USAGE_SHADER_RESOURCE = 0x4,
|
||||||
|
RENDER_BUFFER_USAGE_UNORDERED_ACCESS = 0x8,
|
||||||
|
RENDER_BUFFER_BYTEADDRESS_BUFFER = 0x10,
|
||||||
|
RENDER_BUFFER_STRUCTURED_BUFFER = 0x20,
|
||||||
|
RENDER_BUFFER_APPEND_CONSUME_BUFFER = 0x40,
|
||||||
|
RENDER_BUFFER_UAV_COUNTER = 0x80,
|
||||||
|
RENDER_BUFFER_UAV_DRAW_INDIRECT_ARGS = 0x100,
|
||||||
|
RENDER_BUFFER_ACCELERATION_STRUCTURE = 0x200,
|
||||||
|
RENDER_BUFFER_SHADER_BINDING_TABLE = 0x400,
|
||||||
|
RENDER_BUFFER_PER_FRAME_WRITE_ONCE = 0x800
|
||||||
|
};
|
||||||
|
// Alignment: 1
|
||||||
|
// Members count: 8
|
||||||
|
enum class RenderMultisampleType_t : uint8_t {
|
||||||
|
RENDER_MULTISAMPLE_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
|
RENDER_MULTISAMPLE_NONE = 0x0,
|
||||||
|
RENDER_MULTISAMPLE_2X = 0x1,
|
||||||
|
RENDER_MULTISAMPLE_4X = 0x2,
|
||||||
|
RENDER_MULTISAMPLE_6X = 0x3,
|
||||||
|
RENDER_MULTISAMPLE_8X = 0x4,
|
||||||
|
RENDER_MULTISAMPLE_16X = 0x5,
|
||||||
|
RENDER_MULTISAMPLE_TYPE_COUNT = 0x6
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
enum class InputLayoutVariation_t : uint32_t {
|
||||||
|
INPUT_LAYOUT_VARIATION_DEFAULT = 0x0,
|
||||||
|
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID = 0x1,
|
||||||
|
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID_MORPH_VERT_ID = 0x2,
|
||||||
|
INPUT_LAYOUT_VARIATION_MAX = 0x3
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
enum class RenderSlotType_t : uint32_t {
|
||||||
|
RENDER_SLOT_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
|
RENDER_SLOT_PER_VERTEX = 0x0,
|
||||||
|
RENDER_SLOT_PER_INSTANCE = 0x1
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,77 @@
|
|||||||
{
|
{
|
||||||
"rendersystemdx11.dll": {
|
"rendersystemdx11.dll": {
|
||||||
"classes": {},
|
"classes": {},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"InputLayoutVariation_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"INPUT_LAYOUT_VARIATION_DEFAULT": 0,
|
||||||
|
"INPUT_LAYOUT_VARIATION_MAX": 3,
|
||||||
|
"INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID": 1,
|
||||||
|
"INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID_MORPH_VERT_ID": 2
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"RenderBufferFlags_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"RENDER_BUFFER_ACCELERATION_STRUCTURE": 512,
|
||||||
|
"RENDER_BUFFER_APPEND_CONSUME_BUFFER": 64,
|
||||||
|
"RENDER_BUFFER_BYTEADDRESS_BUFFER": 16,
|
||||||
|
"RENDER_BUFFER_PER_FRAME_WRITE_ONCE": 2048,
|
||||||
|
"RENDER_BUFFER_SHADER_BINDING_TABLE": 1024,
|
||||||
|
"RENDER_BUFFER_STRUCTURED_BUFFER": 32,
|
||||||
|
"RENDER_BUFFER_UAV_COUNTER": 128,
|
||||||
|
"RENDER_BUFFER_UAV_DRAW_INDIRECT_ARGS": 256,
|
||||||
|
"RENDER_BUFFER_USAGE_INDEX_BUFFER": 2,
|
||||||
|
"RENDER_BUFFER_USAGE_SHADER_RESOURCE": 4,
|
||||||
|
"RENDER_BUFFER_USAGE_UNORDERED_ACCESS": 8,
|
||||||
|
"RENDER_BUFFER_USAGE_VERTEX_BUFFER": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"RenderMultisampleType_t": {
|
||||||
|
"alignment": 1,
|
||||||
|
"members": {
|
||||||
|
"RENDER_MULTISAMPLE_16X": 5,
|
||||||
|
"RENDER_MULTISAMPLE_2X": 1,
|
||||||
|
"RENDER_MULTISAMPLE_4X": 2,
|
||||||
|
"RENDER_MULTISAMPLE_6X": 3,
|
||||||
|
"RENDER_MULTISAMPLE_8X": 4,
|
||||||
|
"RENDER_MULTISAMPLE_INVALID": -1,
|
||||||
|
"RENDER_MULTISAMPLE_NONE": 0,
|
||||||
|
"RENDER_MULTISAMPLE_TYPE_COUNT": 6
|
||||||
|
},
|
||||||
|
"type": "uint8"
|
||||||
|
},
|
||||||
|
"RenderPrimitiveType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"RENDER_PRIM_COMPUTE_SHADER": 11,
|
||||||
|
"RENDER_PRIM_HETEROGENOUS": 10,
|
||||||
|
"RENDER_PRIM_INSTANCED_QUADS": 9,
|
||||||
|
"RENDER_PRIM_LINES": 1,
|
||||||
|
"RENDER_PRIM_LINES_WITH_ADJACENCY": 2,
|
||||||
|
"RENDER_PRIM_LINE_STRIP": 3,
|
||||||
|
"RENDER_PRIM_LINE_STRIP_WITH_ADJACENCY": 4,
|
||||||
|
"RENDER_PRIM_POINTS": 0,
|
||||||
|
"RENDER_PRIM_TRIANGLES": 5,
|
||||||
|
"RENDER_PRIM_TRIANGLES_WITH_ADJACENCY": 6,
|
||||||
|
"RENDER_PRIM_TRIANGLE_STRIP": 7,
|
||||||
|
"RENDER_PRIM_TRIANGLE_STRIP_WITH_ADJACENCY": 8,
|
||||||
|
"RENDER_PRIM_TYPE_COUNT": 12
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"RenderSlotType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"RENDER_SLOT_INVALID": -1,
|
||||||
|
"RENDER_SLOT_PER_INSTANCE": 1,
|
||||||
|
"RENDER_SLOT_PER_VERTEX": 0
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,9 +1,79 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
pub mod cs2_dumper {
|
pub mod cs2_dumper {
|
||||||
pub mod schemas {
|
pub mod schemas {
|
||||||
|
// Module: rendersystemdx11.dll
|
||||||
|
// Classes count: 0
|
||||||
|
// Enums count: 5
|
||||||
|
pub mod rendersystemdx11_dll {
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 13
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum RenderPrimitiveType_t {
|
||||||
|
RENDER_PRIM_POINTS = 0x0,
|
||||||
|
RENDER_PRIM_LINES = 0x1,
|
||||||
|
RENDER_PRIM_LINES_WITH_ADJACENCY = 0x2,
|
||||||
|
RENDER_PRIM_LINE_STRIP = 0x3,
|
||||||
|
RENDER_PRIM_LINE_STRIP_WITH_ADJACENCY = 0x4,
|
||||||
|
RENDER_PRIM_TRIANGLES = 0x5,
|
||||||
|
RENDER_PRIM_TRIANGLES_WITH_ADJACENCY = 0x6,
|
||||||
|
RENDER_PRIM_TRIANGLE_STRIP = 0x7,
|
||||||
|
RENDER_PRIM_TRIANGLE_STRIP_WITH_ADJACENCY = 0x8,
|
||||||
|
RENDER_PRIM_INSTANCED_QUADS = 0x9,
|
||||||
|
RENDER_PRIM_HETEROGENOUS = 0xA,
|
||||||
|
RENDER_PRIM_COMPUTE_SHADER = 0xB,
|
||||||
|
RENDER_PRIM_TYPE_COUNT = 0xC
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 12
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum RenderBufferFlags_t {
|
||||||
|
RENDER_BUFFER_USAGE_VERTEX_BUFFER = 0x1,
|
||||||
|
RENDER_BUFFER_USAGE_INDEX_BUFFER = 0x2,
|
||||||
|
RENDER_BUFFER_USAGE_SHADER_RESOURCE = 0x4,
|
||||||
|
RENDER_BUFFER_USAGE_UNORDERED_ACCESS = 0x8,
|
||||||
|
RENDER_BUFFER_BYTEADDRESS_BUFFER = 0x10,
|
||||||
|
RENDER_BUFFER_STRUCTURED_BUFFER = 0x20,
|
||||||
|
RENDER_BUFFER_APPEND_CONSUME_BUFFER = 0x40,
|
||||||
|
RENDER_BUFFER_UAV_COUNTER = 0x80,
|
||||||
|
RENDER_BUFFER_UAV_DRAW_INDIRECT_ARGS = 0x100,
|
||||||
|
RENDER_BUFFER_ACCELERATION_STRUCTURE = 0x200,
|
||||||
|
RENDER_BUFFER_SHADER_BINDING_TABLE = 0x400,
|
||||||
|
RENDER_BUFFER_PER_FRAME_WRITE_ONCE = 0x800
|
||||||
|
}
|
||||||
|
// Alignment: 1
|
||||||
|
// Members count: 8
|
||||||
|
#[repr(u8)]
|
||||||
|
pub enum RenderMultisampleType_t {
|
||||||
|
RENDER_MULTISAMPLE_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
|
RENDER_MULTISAMPLE_NONE = 0x0,
|
||||||
|
RENDER_MULTISAMPLE_2X = 0x1,
|
||||||
|
RENDER_MULTISAMPLE_4X = 0x2,
|
||||||
|
RENDER_MULTISAMPLE_6X = 0x3,
|
||||||
|
RENDER_MULTISAMPLE_8X = 0x4,
|
||||||
|
RENDER_MULTISAMPLE_16X = 0x5,
|
||||||
|
RENDER_MULTISAMPLE_TYPE_COUNT = 0x6
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 4
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum InputLayoutVariation_t {
|
||||||
|
INPUT_LAYOUT_VARIATION_DEFAULT = 0x0,
|
||||||
|
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID = 0x1,
|
||||||
|
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID_MORPH_VERT_ID = 0x2,
|
||||||
|
INPUT_LAYOUT_VARIATION_MAX = 0x3
|
||||||
|
}
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum RenderSlotType_t {
|
||||||
|
RENDER_SLOT_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||||
|
RENDER_SLOT_PER_VERTEX = 0x0,
|
||||||
|
RENDER_SLOT_PER_INSTANCE = 0x1
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,356 +1,29 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
// Module: resourcesystem.dll
|
// Module: resourcesystem.dll
|
||||||
// Classes count: 69
|
// Classes count: 7
|
||||||
// Enums count: 0
|
// Enums count: 2
|
||||||
public static class ResourcesystemDll {
|
public static class ResourcesystemDll {
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 1
|
// Members count: 9
|
||||||
//
|
public enum FuseVariableType_t : byte {
|
||||||
// Metadata:
|
INVALID = 0x0,
|
||||||
// MGetKV3ClassDefaults
|
BOOL = 0x1,
|
||||||
public static class TestResource_t {
|
INT8 = 0x2,
|
||||||
public const nint m_name = 0x0; // CUtlString
|
INT16 = 0x3,
|
||||||
|
INT32 = 0x4,
|
||||||
|
UINT8 = 0x5,
|
||||||
|
UINT16 = 0x6,
|
||||||
|
UINT32 = 0x7,
|
||||||
|
FLOAT32 = 0x8
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 0
|
// Members count: 2
|
||||||
//
|
public enum FuseVariableAccess_t : byte {
|
||||||
// Metadata:
|
WRITABLE = 0x0,
|
||||||
// MResourceTypeForInfoType
|
READ_ONLY = 0x1
|
||||||
public static class InfoForResourceTypeTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeProceduralTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeManifestTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class ManifestTestResource_t {
|
|
||||||
public const nint m_name = 0x0; // CUtlString
|
|
||||||
public const nint m_child = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVDataResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeIPulseGraphDef {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCTypeScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCJavaScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeIParticleSystemDefinition {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeIParticleSnapshot {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCAnimData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCAnimationGroup {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCSequenceGroupData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeIMaterial2 {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCMorphSetData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCRenderMesh {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCModel {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCTextureBase {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeIVectorGraphic {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVSoundEventScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVSoundStackScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVoiceContainerBase {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVMixListResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCPhysAggregateData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCEntityLump {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCWorldNode {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeWorld_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVoxelVisibility {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCPostProcessingResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCPanoramaStyle {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCPanoramaLayout {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCPanoramaDynamicImages {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCDotaItemDefinitionResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCDOTAPatchNotesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCDOTANovelsList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeIAnimGraphModelBinding {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCChoreoSceneFileData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCDACGameDefsData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCCompositeMaterialKit {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCGcExportableExternalData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCSmartProp {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCCSGOEconItem {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCResponseRulesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCNmSkeleton {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCNmClip {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCNmGraph {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCNmGraphDataSet {
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 3
|
// Fields count: 3
|
||||||
@ -367,6 +40,27 @@ namespace CS2Dumper.Schemas {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CFuseSymbolTable {
|
||||||
|
public const nint m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
||||||
|
public const nint m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
||||||
|
public const nint m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
||||||
|
public const nint m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
||||||
|
public const nint m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
||||||
|
public const nint m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class TestResource_t {
|
||||||
|
public const nint m_name = 0x0; // CUtlString
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 6
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
public static class VariableInfo_t {
|
public static class VariableInfo_t {
|
||||||
public const nint m_name = 0x0; // CUtlString
|
public const nint m_name = 0x0; // CUtlString
|
||||||
public const nint m_nameToken = 0x8; // CUtlStringToken
|
public const nint m_nameToken = 0x8; // CUtlStringToken
|
||||||
@ -376,6 +70,17 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_eAccess = 0x10; // FuseVariableAccess_t
|
public const nint m_eAccess = 0x10; // FuseVariableAccess_t
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CFuseProgram {
|
||||||
|
public const nint m_programBuffer = 0x0; // CUtlVector<uint8>
|
||||||
|
public const nint m_variablesRead = 0x18; // CUtlVector<FuseVariableIndex_t>
|
||||||
|
public const nint m_variablesWritten = 0x30; // CUtlVector<FuseVariableIndex_t>
|
||||||
|
public const nint m_nMaxTempVarsUsed = 0x48; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 5
|
// Fields count: 5
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -388,159 +93,13 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_bIsPure = 0x1A; // bool
|
public const nint m_bIsPure = 0x1A; // bool
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 4
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CFuseProgram {
|
public static class ManifestTestResource_t {
|
||||||
public const nint m_programBuffer = 0x0; // CUtlVector<uint8>
|
|
||||||
public const nint m_variablesRead = 0x18; // CUtlVector<FuseVariableIndex_t>
|
|
||||||
public const nint m_variablesWritten = 0x30; // CUtlVector<FuseVariableIndex_t>
|
|
||||||
public const nint m_nMaxTempVarsUsed = 0x48; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CFuseSymbolTable {
|
|
||||||
public const nint m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
|
||||||
public const nint m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
|
||||||
public const nint m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
|
||||||
public const nint m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
public const nint m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
public const nint m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 11
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// NetworkVarNames: m_nameStringableIndex (int32)
|
|
||||||
public static class CEntityIdentity {
|
|
||||||
public const nint m_nameStringableIndex = 0x14; // int32
|
|
||||||
public const nint m_name = 0x18; // CUtlSymbolLarge
|
|
||||||
public const nint m_designerName = 0x20; // CUtlSymbolLarge
|
|
||||||
public const nint m_flags = 0x30; // uint32
|
|
||||||
public const nint m_worldGroupId = 0x38; // WorldGroupId_t
|
|
||||||
public const nint m_fDataObjectTypes = 0x3C; // uint32
|
|
||||||
public const nint m_PathIndex = 0x40; // ChangeAccessorFieldPathIndex_t
|
|
||||||
public const nint m_pPrev = 0x58; // CEntityIdentity*
|
|
||||||
public const nint m_pNext = 0x60; // CEntityIdentity*
|
|
||||||
public const nint m_pPrevByClass = 0x68; // CEntityIdentity*
|
|
||||||
public const nint m_pNextByClass = 0x70; // CEntityIdentity*
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// NetworkVarNames: m_pEntity (CEntityIdentity*)
|
|
||||||
// NetworkVarNames: m_CScriptComponent (CScriptComponent::Storage_t)
|
|
||||||
public static class CEntityInstance {
|
|
||||||
public const nint m_iszPrivateVScripts = 0x8; // CUtlSymbolLarge
|
|
||||||
public const nint m_pEntity = 0x10; // CEntityIdentity*
|
|
||||||
public const nint m_CScriptComponent = 0x28; // CScriptComponent*
|
|
||||||
public const nint m_bVisibleinPVS = 0x30; // bool
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class TestResource_t {
|
|
||||||
public const nint m_name = 0x0; // CUtlString
|
public const nint m_name = 0x0; // CUtlString
|
||||||
}
|
public const nint m_child = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVoxelVisibility {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCRenderMesh {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CFuseSymbolTable {
|
|
||||||
public const nint m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
|
||||||
public const nint m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
|
||||||
public const nint m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
|
||||||
public const nint m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
public const nint m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
public const nint m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCJavaScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeIAnimGraphModelBinding {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCGcExportableExternalData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class ConstantInfo_t {
|
|
||||||
public const nint m_name = 0x0; // CUtlString
|
|
||||||
public const nint m_nameToken = 0x8; // CUtlStringToken
|
|
||||||
public const nint m_flValue = 0xC; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeManifestTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCVSoundStackScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCChoreoSceneFileData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCMorphSetData {
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -8,355 +8,28 @@
|
|||||||
namespace cs2_dumper {
|
namespace cs2_dumper {
|
||||||
namespace schemas {
|
namespace schemas {
|
||||||
// Module: resourcesystem.dll
|
// Module: resourcesystem.dll
|
||||||
// Classes count: 69
|
// Classes count: 7
|
||||||
// Enums count: 0
|
// Enums count: 2
|
||||||
namespace resourcesystem_dll {
|
namespace resourcesystem_dll {
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 1
|
// Members count: 9
|
||||||
//
|
enum class FuseVariableType_t : uint8_t {
|
||||||
// Metadata:
|
INVALID = 0x0,
|
||||||
// MGetKV3ClassDefaults
|
BOOL = 0x1,
|
||||||
namespace TestResource_t {
|
INT8 = 0x2,
|
||||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
INT16 = 0x3,
|
||||||
}
|
INT32 = 0x4,
|
||||||
// Parent: None
|
UINT8 = 0x5,
|
||||||
// Fields count: 0
|
UINT16 = 0x6,
|
||||||
//
|
UINT32 = 0x7,
|
||||||
// Metadata:
|
FLOAT32 = 0x8
|
||||||
// MResourceTypeForInfoType
|
};
|
||||||
namespace InfoForResourceTypeTestResource_t {
|
// Alignment: 1
|
||||||
}
|
// Members count: 2
|
||||||
// Parent: None
|
enum class FuseVariableAccess_t : uint8_t {
|
||||||
// Fields count: 0
|
WRITABLE = 0x0,
|
||||||
//
|
READ_ONLY = 0x1
|
||||||
// Metadata:
|
};
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeProceduralTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeManifestTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace ManifestTestResource_t {
|
|
||||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_child = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVDataResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeIPulseGraphDef {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCTypeScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCJavaScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeIParticleSystemDefinition {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeIParticleSnapshot {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCAnimData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCAnimationGroup {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCSequenceGroupData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeIMaterial2 {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCMorphSetData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCRenderMesh {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCModel {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCTextureBase {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeIVectorGraphic {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVSoundEventScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVSoundStackScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVoiceContainerBase {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVMixListResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCPhysAggregateData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCEntityLump {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCWorldNode {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeWorld_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVoxelVisibility {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCPostProcessingResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCPanoramaStyle {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCPanoramaLayout {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCPanoramaDynamicImages {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCDotaItemDefinitionResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCDOTAPatchNotesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCDOTANovelsList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeIAnimGraphModelBinding {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCChoreoSceneFileData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCDACGameDefsData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCCompositeMaterialKit {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCGcExportableExternalData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCSmartProp {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCCSGOEconItem {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCResponseRulesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCNmSkeleton {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCNmClip {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCNmGraph {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCNmGraphDataSet {
|
|
||||||
}
|
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 3
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
@ -372,6 +45,27 @@ namespace cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CFuseSymbolTable {
|
||||||
|
constexpr std::ptrdiff_t m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
||||||
|
constexpr std::ptrdiff_t m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
||||||
|
constexpr std::ptrdiff_t m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
||||||
|
constexpr std::ptrdiff_t m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
||||||
|
constexpr std::ptrdiff_t m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
||||||
|
constexpr std::ptrdiff_t m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace TestResource_t {
|
||||||
|
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 6
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
namespace VariableInfo_t {
|
namespace VariableInfo_t {
|
||||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||||
constexpr std::ptrdiff_t m_nameToken = 0x8; // CUtlStringToken
|
constexpr std::ptrdiff_t m_nameToken = 0x8; // CUtlStringToken
|
||||||
@ -381,6 +75,17 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_eAccess = 0x10; // FuseVariableAccess_t
|
constexpr std::ptrdiff_t m_eAccess = 0x10; // FuseVariableAccess_t
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CFuseProgram {
|
||||||
|
constexpr std::ptrdiff_t m_programBuffer = 0x0; // CUtlVector<uint8>
|
||||||
|
constexpr std::ptrdiff_t m_variablesRead = 0x18; // CUtlVector<FuseVariableIndex_t>
|
||||||
|
constexpr std::ptrdiff_t m_variablesWritten = 0x30; // CUtlVector<FuseVariableIndex_t>
|
||||||
|
constexpr std::ptrdiff_t m_nMaxTempVarsUsed = 0x48; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 5
|
// Fields count: 5
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -393,159 +98,13 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_bIsPure = 0x1A; // bool
|
constexpr std::ptrdiff_t m_bIsPure = 0x1A; // bool
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 4
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CFuseProgram {
|
namespace ManifestTestResource_t {
|
||||||
constexpr std::ptrdiff_t m_programBuffer = 0x0; // CUtlVector<uint8>
|
|
||||||
constexpr std::ptrdiff_t m_variablesRead = 0x18; // CUtlVector<FuseVariableIndex_t>
|
|
||||||
constexpr std::ptrdiff_t m_variablesWritten = 0x30; // CUtlVector<FuseVariableIndex_t>
|
|
||||||
constexpr std::ptrdiff_t m_nMaxTempVarsUsed = 0x48; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CFuseSymbolTable {
|
|
||||||
constexpr std::ptrdiff_t m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
constexpr std::ptrdiff_t m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
constexpr std::ptrdiff_t m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 11
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// NetworkVarNames: m_nameStringableIndex (int32)
|
|
||||||
namespace CEntityIdentity {
|
|
||||||
constexpr std::ptrdiff_t m_nameStringableIndex = 0x14; // int32
|
|
||||||
constexpr std::ptrdiff_t m_name = 0x18; // CUtlSymbolLarge
|
|
||||||
constexpr std::ptrdiff_t m_designerName = 0x20; // CUtlSymbolLarge
|
|
||||||
constexpr std::ptrdiff_t m_flags = 0x30; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_worldGroupId = 0x38; // WorldGroupId_t
|
|
||||||
constexpr std::ptrdiff_t m_fDataObjectTypes = 0x3C; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_PathIndex = 0x40; // ChangeAccessorFieldPathIndex_t
|
|
||||||
constexpr std::ptrdiff_t m_pPrev = 0x58; // CEntityIdentity*
|
|
||||||
constexpr std::ptrdiff_t m_pNext = 0x60; // CEntityIdentity*
|
|
||||||
constexpr std::ptrdiff_t m_pPrevByClass = 0x68; // CEntityIdentity*
|
|
||||||
constexpr std::ptrdiff_t m_pNextByClass = 0x70; // CEntityIdentity*
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// NetworkVarNames: m_pEntity (CEntityIdentity*)
|
|
||||||
// NetworkVarNames: m_CScriptComponent (CScriptComponent::Storage_t)
|
|
||||||
namespace CEntityInstance {
|
|
||||||
constexpr std::ptrdiff_t m_iszPrivateVScripts = 0x8; // CUtlSymbolLarge
|
|
||||||
constexpr std::ptrdiff_t m_pEntity = 0x10; // CEntityIdentity*
|
|
||||||
constexpr std::ptrdiff_t m_CScriptComponent = 0x28; // CScriptComponent*
|
|
||||||
constexpr std::ptrdiff_t m_bVisibleinPVS = 0x30; // bool
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace TestResource_t {
|
|
||||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||||
}
|
constexpr std::ptrdiff_t m_child = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVoxelVisibility {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCRenderMesh {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CFuseSymbolTable {
|
|
||||||
constexpr std::ptrdiff_t m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
constexpr std::ptrdiff_t m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
constexpr std::ptrdiff_t m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCJavaScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeIAnimGraphModelBinding {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCGcExportableExternalData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace ConstantInfo_t {
|
|
||||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_nameToken = 0x8; // CUtlStringToken
|
|
||||||
constexpr std::ptrdiff_t m_flValue = 0xC; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeManifestTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCVSoundStackScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCChoreoSceneFileData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCMorphSetData {
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,50 +1,6 @@
|
|||||||
{
|
{
|
||||||
"resourcesystem.dll": {
|
"resourcesystem.dll": {
|
||||||
"classes": {
|
"classes": {
|
||||||
"CEntityIdentity": {
|
|
||||||
"fields": {
|
|
||||||
"m_PathIndex": 64,
|
|
||||||
"m_designerName": 32,
|
|
||||||
"m_fDataObjectTypes": 60,
|
|
||||||
"m_flags": 48,
|
|
||||||
"m_name": 24,
|
|
||||||
"m_nameStringableIndex": 20,
|
|
||||||
"m_pNext": 96,
|
|
||||||
"m_pNextByClass": 112,
|
|
||||||
"m_pPrev": 88,
|
|
||||||
"m_pPrevByClass": 104,
|
|
||||||
"m_worldGroupId": 56
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "m_nameStringableIndex",
|
|
||||||
"ty": "int32",
|
|
||||||
"type": "NetworkVarNames"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CEntityInstance": {
|
|
||||||
"fields": {
|
|
||||||
"m_CScriptComponent": 40,
|
|
||||||
"m_bVisibleinPVS": 48,
|
|
||||||
"m_iszPrivateVScripts": 8,
|
|
||||||
"m_pEntity": 16
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "m_pEntity",
|
|
||||||
"ty": "CEntityIdentity*",
|
|
||||||
"type": "NetworkVarNames"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "m_CScriptComponent",
|
|
||||||
"ty": "CScriptComponent::Storage_t",
|
|
||||||
"type": "NetworkVarNames"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CFuseProgram": {
|
"CFuseProgram": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_nMaxTempVarsUsed": 72,
|
"m_nMaxTempVarsUsed": 72,
|
||||||
@ -107,476 +63,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"InfoForResourceTypeCAnimData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCAnimationGroup": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCCSGOEconItem": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCChoreoSceneFileData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCCompositeMaterialKit": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCDACGameDefsData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCDOTANovelsList": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCDOTAPatchNotesList": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCDotaItemDefinitionResource": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCEntityLump": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCGcExportableExternalData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCJavaScriptResource": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCModel": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCMorphSetData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCNmClip": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCNmGraph": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCNmGraphDataSet": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCNmSkeleton": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCPanoramaDynamicImages": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCPanoramaLayout": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCPanoramaStyle": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCPhysAggregateData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCPostProcessingResource": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCRenderMesh": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCResponseRulesList": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCSequenceGroupData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCSmartProp": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCTextureBase": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCTypeScriptResource": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVDataResource": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVMixListResource": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVPhysXSurfacePropertiesList": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVSoundEventScriptList": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVSoundStackScriptList": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVoiceContainerBase": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCVoxelVisibility": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCWorldNode": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeIAnimGraphModelBinding": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeIMaterial2": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeIParticleSnapshot": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeIParticleSystemDefinition": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeIPulseGraphDef": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeIVectorGraphic": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeManifestTestResource_t": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeProceduralTestResource_t": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeTestResource_t": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeWorld_t": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"ManifestTestResource_t": {
|
"ManifestTestResource_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_child": 8,
|
"m_child": 8,
|
||||||
@ -620,6 +106,30 @@
|
|||||||
"parent": null
|
"parent": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"FuseVariableAccess_t": {
|
||||||
|
"alignment": 1,
|
||||||
|
"members": {
|
||||||
|
"READ_ONLY": 1,
|
||||||
|
"WRITABLE": 0
|
||||||
|
},
|
||||||
|
"type": "uint8"
|
||||||
|
},
|
||||||
|
"FuseVariableType_t": {
|
||||||
|
"alignment": 1,
|
||||||
|
"members": {
|
||||||
|
"BOOL": 1,
|
||||||
|
"FLOAT32": 8,
|
||||||
|
"INT16": 3,
|
||||||
|
"INT32": 4,
|
||||||
|
"INT8": 2,
|
||||||
|
"INVALID": 0,
|
||||||
|
"UINT16": 6,
|
||||||
|
"UINT32": 7,
|
||||||
|
"UINT8": 5
|
||||||
|
},
|
||||||
|
"type": "uint8"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,359 +1,34 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
pub mod cs2_dumper {
|
pub mod cs2_dumper {
|
||||||
pub mod schemas {
|
pub mod schemas {
|
||||||
// Module: resourcesystem.dll
|
// Module: resourcesystem.dll
|
||||||
// Classes count: 69
|
// Classes count: 7
|
||||||
// Enums count: 0
|
// Enums count: 2
|
||||||
pub mod resourcesystem_dll {
|
pub mod resourcesystem_dll {
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 1
|
// Members count: 9
|
||||||
//
|
#[repr(u8)]
|
||||||
// Metadata:
|
pub enum FuseVariableType_t {
|
||||||
// MGetKV3ClassDefaults
|
INVALID = 0x0,
|
||||||
pub mod TestResource_t {
|
BOOL = 0x1,
|
||||||
pub const m_name: usize = 0x0; // CUtlString
|
INT8 = 0x2,
|
||||||
|
INT16 = 0x3,
|
||||||
|
INT32 = 0x4,
|
||||||
|
UINT8 = 0x5,
|
||||||
|
UINT16 = 0x6,
|
||||||
|
UINT32 = 0x7,
|
||||||
|
FLOAT32 = 0x8
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 0
|
// Members count: 2
|
||||||
//
|
#[repr(u8)]
|
||||||
// Metadata:
|
pub enum FuseVariableAccess_t {
|
||||||
// MResourceTypeForInfoType
|
WRITABLE = 0x0,
|
||||||
pub mod InfoForResourceTypeTestResource_t {
|
READ_ONLY = 0x1
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeProceduralTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeManifestTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod ManifestTestResource_t {
|
|
||||||
pub const m_name: usize = 0x0; // CUtlString
|
|
||||||
pub const m_child: usize = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVDataResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeIPulseGraphDef {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCTypeScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCJavaScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeIParticleSystemDefinition {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeIParticleSnapshot {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCAnimData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCAnimationGroup {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCSequenceGroupData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeIMaterial2 {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCMorphSetData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCRenderMesh {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCModel {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCTextureBase {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeIVectorGraphic {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVSoundEventScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVSoundStackScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVoiceContainerBase {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVMixListResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCPhysAggregateData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCEntityLump {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCWorldNode {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeWorld_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVoxelVisibility {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCPostProcessingResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCPanoramaStyle {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCPanoramaLayout {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCPanoramaDynamicImages {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCDotaItemDefinitionResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCDOTAPatchNotesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCDOTANovelsList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeIAnimGraphModelBinding {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCChoreoSceneFileData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCDACGameDefsData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCCompositeMaterialKit {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCGcExportableExternalData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCSmartProp {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCCSGOEconItem {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCResponseRulesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCNmSkeleton {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCNmClip {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCNmGraph {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCNmGraphDataSet {
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 3
|
// Fields count: 3
|
||||||
@ -370,6 +45,27 @@ pub mod cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CFuseSymbolTable {
|
||||||
|
pub const m_constants: usize = 0x0; // CUtlVector<ConstantInfo_t>
|
||||||
|
pub const m_variables: usize = 0x18; // CUtlVector<VariableInfo_t>
|
||||||
|
pub const m_functions: usize = 0x30; // CUtlVector<FunctionInfo_t>
|
||||||
|
pub const m_constantMap: usize = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
||||||
|
pub const m_variableMap: usize = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
||||||
|
pub const m_functionMap: usize = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod TestResource_t {
|
||||||
|
pub const m_name: usize = 0x0; // CUtlString
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 6
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
pub mod VariableInfo_t {
|
pub mod VariableInfo_t {
|
||||||
pub const m_name: usize = 0x0; // CUtlString
|
pub const m_name: usize = 0x0; // CUtlString
|
||||||
pub const m_nameToken: usize = 0x8; // CUtlStringToken
|
pub const m_nameToken: usize = 0x8; // CUtlStringToken
|
||||||
@ -379,6 +75,17 @@ pub mod cs2_dumper {
|
|||||||
pub const m_eAccess: usize = 0x10; // FuseVariableAccess_t
|
pub const m_eAccess: usize = 0x10; // FuseVariableAccess_t
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CFuseProgram {
|
||||||
|
pub const m_programBuffer: usize = 0x0; // CUtlVector<uint8>
|
||||||
|
pub const m_variablesRead: usize = 0x18; // CUtlVector<FuseVariableIndex_t>
|
||||||
|
pub const m_variablesWritten: usize = 0x30; // CUtlVector<FuseVariableIndex_t>
|
||||||
|
pub const m_nMaxTempVarsUsed: usize = 0x48; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
// Fields count: 5
|
// Fields count: 5
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
@ -391,159 +98,13 @@ pub mod cs2_dumper {
|
|||||||
pub const m_bIsPure: usize = 0x1A; // bool
|
pub const m_bIsPure: usize = 0x1A; // bool
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 4
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CFuseProgram {
|
pub mod ManifestTestResource_t {
|
||||||
pub const m_programBuffer: usize = 0x0; // CUtlVector<uint8>
|
|
||||||
pub const m_variablesRead: usize = 0x18; // CUtlVector<FuseVariableIndex_t>
|
|
||||||
pub const m_variablesWritten: usize = 0x30; // CUtlVector<FuseVariableIndex_t>
|
|
||||||
pub const m_nMaxTempVarsUsed: usize = 0x48; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CFuseSymbolTable {
|
|
||||||
pub const m_constants: usize = 0x0; // CUtlVector<ConstantInfo_t>
|
|
||||||
pub const m_variables: usize = 0x18; // CUtlVector<VariableInfo_t>
|
|
||||||
pub const m_functions: usize = 0x30; // CUtlVector<FunctionInfo_t>
|
|
||||||
pub const m_constantMap: usize = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
pub const m_variableMap: usize = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
pub const m_functionMap: usize = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 11
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// NetworkVarNames: m_nameStringableIndex (int32)
|
|
||||||
pub mod CEntityIdentity {
|
|
||||||
pub const m_nameStringableIndex: usize = 0x14; // int32
|
|
||||||
pub const m_name: usize = 0x18; // CUtlSymbolLarge
|
|
||||||
pub const m_designerName: usize = 0x20; // CUtlSymbolLarge
|
|
||||||
pub const m_flags: usize = 0x30; // uint32
|
|
||||||
pub const m_worldGroupId: usize = 0x38; // WorldGroupId_t
|
|
||||||
pub const m_fDataObjectTypes: usize = 0x3C; // uint32
|
|
||||||
pub const m_PathIndex: usize = 0x40; // ChangeAccessorFieldPathIndex_t
|
|
||||||
pub const m_pPrev: usize = 0x58; // CEntityIdentity*
|
|
||||||
pub const m_pNext: usize = 0x60; // CEntityIdentity*
|
|
||||||
pub const m_pPrevByClass: usize = 0x68; // CEntityIdentity*
|
|
||||||
pub const m_pNextByClass: usize = 0x70; // CEntityIdentity*
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// NetworkVarNames: m_pEntity (CEntityIdentity*)
|
|
||||||
// NetworkVarNames: m_CScriptComponent (CScriptComponent::Storage_t)
|
|
||||||
pub mod CEntityInstance {
|
|
||||||
pub const m_iszPrivateVScripts: usize = 0x8; // CUtlSymbolLarge
|
|
||||||
pub const m_pEntity: usize = 0x10; // CEntityIdentity*
|
|
||||||
pub const m_CScriptComponent: usize = 0x28; // CScriptComponent*
|
|
||||||
pub const m_bVisibleinPVS: usize = 0x30; // bool
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod TestResource_t {
|
|
||||||
pub const m_name: usize = 0x0; // CUtlString
|
pub const m_name: usize = 0x0; // CUtlString
|
||||||
}
|
pub const m_child: usize = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVoxelVisibility {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCRenderMesh {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CFuseSymbolTable {
|
|
||||||
pub const m_constants: usize = 0x0; // CUtlVector<ConstantInfo_t>
|
|
||||||
pub const m_variables: usize = 0x18; // CUtlVector<VariableInfo_t>
|
|
||||||
pub const m_functions: usize = 0x30; // CUtlVector<FunctionInfo_t>
|
|
||||||
pub const m_constantMap: usize = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
pub const m_variableMap: usize = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
pub const m_functionMap: usize = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCJavaScriptResource {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeIAnimGraphModelBinding {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCGcExportableExternalData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod ConstantInfo_t {
|
|
||||||
pub const m_name: usize = 0x0; // CUtlString
|
|
||||||
pub const m_nameToken: usize = 0x8; // CUtlStringToken
|
|
||||||
pub const m_flValue: usize = 0xC; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeManifestTestResource_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCVSoundStackScriptList {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCChoreoSceneFileData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCMorphSetData {
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
|
@ -1,58 +1,18 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
// Module: scenesystem.dll
|
// Module: scenesystem.dll
|
||||||
// Classes count: 17
|
// Classes count: 7
|
||||||
// Enums count: 0
|
// Enums count: 1
|
||||||
public static class ScenesystemDll {
|
public static class ScenesystemDll {
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 2
|
// Members count: 4
|
||||||
//
|
public enum DisableShadows_t : byte {
|
||||||
// Metadata:
|
kDisableShadows_None = 0x0,
|
||||||
// MGetKV3ClassDefaults
|
kDisableShadows_All = 0x1,
|
||||||
public static class CSSDSEndFrameViewInfo {
|
kDisableShadows_Baked = 0x2,
|
||||||
public const nint m_nViewId = 0x0; // uint64
|
kDisableShadows_Realtime = 0x3
|
||||||
public const nint m_ViewName = 0x8; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CSSDSMsg_EndFrame {
|
|
||||||
public const nint m_Views = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class SceneViewId_t {
|
|
||||||
public const nint m_nViewId = 0x0; // uint64
|
|
||||||
public const nint m_nFrameCount = 0x8; // uint64
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CSSDSMsg_ViewRender {
|
|
||||||
public const nint m_viewId = 0x0; //
|
|
||||||
public const nint m_ViewName = 0x10; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CSSDSMsg_LayerBase {
|
|
||||||
public const nint m_viewId = 0x0; //
|
|
||||||
public const nint m_ViewName = 0x10; // CUtlString
|
|
||||||
public const nint m_nLayerIndex = 0x18; // int32
|
|
||||||
public const nint m_nLayerId = 0x20; // uint64
|
|
||||||
public const nint m_LayerName = 0x28; // CUtlString
|
|
||||||
public const nint m_displayText = 0x30; // CUtlString
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 10
|
// Fields count: 10
|
||||||
@ -72,118 +32,62 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_nFormat = 0x2C; // int32
|
public const nint m_nFormat = 0x2C; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 3
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CSSDSMsg_ViewTargetList {
|
public static class SceneViewId_t {
|
||||||
public const nint m_viewId = 0x0; //
|
public const nint m_nViewId = 0x0; // uint64
|
||||||
public const nint m_ViewName = 0x10; // CUtlString
|
public const nint m_nFrameCount = 0x8; // uint64
|
||||||
public const nint m_Targets = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
|
||||||
}
|
|
||||||
// Parent: CSSDSMsg_LayerBase
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CSSDSMsg_PreLayer {
|
|
||||||
}
|
|
||||||
// Parent: CSSDSMsg_LayerBase
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CSSDSMsg_PostLayer {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CSosSoundEventGroupListSchema {
|
|
||||||
public const nint m_groupList = 0x0; // CUtlVector<CSosSoundEventGroupSchema>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class SosEditItemInfo_t {
|
|
||||||
public const nint itemType = 0x0; // SosEditItemType_t
|
|
||||||
public const nint itemName = 0x8; // CUtlString
|
|
||||||
public const nint itemTypeName = 0x10; // CUtlString
|
|
||||||
public const nint itemKVString = 0x20; // CUtlString
|
|
||||||
public const nint itemPos = 0x28; // Vector2D
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class SelectedEditItemInfo_t {
|
|
||||||
public const nint m_EditItems = 0x0; // CUtlVector<SosEditItemInfo_t>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CSoundEventMetaData {
|
|
||||||
public const nint m_soundEventVMix = 0x0; // CStrongHandle<InfoForResourceTypeCVMixListResource>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CDSPMixgroupModifier {
|
|
||||||
public const nint m_mixgroup = 0x0; // CUtlString
|
|
||||||
public const nint m_flModifier = 0x8; // float32
|
|
||||||
public const nint m_flModifierMin = 0xC; // float32
|
|
||||||
public const nint m_flSourceModifier = 0x10; // float32
|
|
||||||
public const nint m_flSourceModifierMin = 0x14; // float32
|
|
||||||
public const nint m_flListenerReverbModifierWhenSourceReverbIsActive = 0x18; // float32
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CDspPresetModifierList {
|
public static class CSSDSEndFrameViewInfo {
|
||||||
public const nint m_dspName = 0x0; // CUtlString
|
public const nint m_nViewId = 0x0; // uint64
|
||||||
public const nint m_modifiers = 0x8; // CUtlVector<CDSPMixgroupModifier>
|
public const nint m_ViewName = 0x8; // CUtlString
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 0
|
// Fields count: 6
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class IParticleSystemDefinition {
|
public static class CSSDSMsg_LayerBase {
|
||||||
|
public const nint m_viewId = 0x0; // SceneViewId_t
|
||||||
|
public const nint m_ViewName = 0x10; // CUtlString
|
||||||
|
public const nint m_nLayerIndex = 0x18; // int32
|
||||||
|
public const nint m_nLayerId = 0x20; // uint64
|
||||||
|
public const nint m_LayerName = 0x28; // CUtlString
|
||||||
|
public const nint m_displayText = 0x30; // CUtlString
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 18
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CParticleVisibilityInputs {
|
public static class CSSDSMsg_ViewTargetList {
|
||||||
public const nint m_flCameraBias = 0x0; // float32
|
public const nint m_viewId = 0x0; // SceneViewId_t
|
||||||
public const nint m_nCPin = 0x4; // int32
|
public const nint m_ViewName = 0x10; // CUtlString
|
||||||
public const nint m_flProxyRadius = 0x8; // float32
|
public const nint m_Targets = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
||||||
public const nint m_flInputMin = 0xC; // float32
|
}
|
||||||
public const nint m_flInputMax = 0x10; // float32
|
// Parent: None
|
||||||
public const nint m_flNoPixelVisibilityFallback = 0x14; // float32
|
// Fields count: 2
|
||||||
public const nint m_flDistanceInputMin = 0x18; // float32
|
//
|
||||||
public const nint m_flDistanceInputMax = 0x1C; // float32
|
// Metadata:
|
||||||
public const nint m_flDotInputMin = 0x20; // float32
|
// MGetKV3ClassDefaults
|
||||||
public const nint m_flDotInputMax = 0x24; // float32
|
public static class CSSDSMsg_ViewRender {
|
||||||
public const nint m_bDotCPAngles = 0x28; // bool
|
public const nint m_viewId = 0x0; // SceneViewId_t
|
||||||
public const nint m_bDotCameraAngles = 0x29; // bool
|
public const nint m_ViewName = 0x10; // CUtlString
|
||||||
public const nint m_flAlphaScaleMin = 0x2C; // float32
|
}
|
||||||
public const nint m_flAlphaScaleMax = 0x30; // float32
|
// Parent: None
|
||||||
public const nint m_flRadiusScaleMin = 0x34; // float32
|
// Fields count: 1
|
||||||
public const nint m_flRadiusScaleMax = 0x38; // float32
|
//
|
||||||
public const nint m_flRadiusScaleFOVBase = 0x3C; // float32
|
// Metadata:
|
||||||
public const nint m_bRightEye = 0x40; // bool
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CSSDSMsg_EndFrame {
|
||||||
|
public const nint m_Views = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -8,57 +8,17 @@
|
|||||||
namespace cs2_dumper {
|
namespace cs2_dumper {
|
||||||
namespace schemas {
|
namespace schemas {
|
||||||
// Module: scenesystem.dll
|
// Module: scenesystem.dll
|
||||||
// Classes count: 17
|
// Classes count: 7
|
||||||
// Enums count: 0
|
// Enums count: 1
|
||||||
namespace scenesystem_dll {
|
namespace scenesystem_dll {
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 2
|
// Members count: 4
|
||||||
//
|
enum class DisableShadows_t : uint8_t {
|
||||||
// Metadata:
|
kDisableShadows_None = 0x0,
|
||||||
// MGetKV3ClassDefaults
|
kDisableShadows_All = 0x1,
|
||||||
namespace CSSDSEndFrameViewInfo {
|
kDisableShadows_Baked = 0x2,
|
||||||
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64
|
kDisableShadows_Realtime = 0x3
|
||||||
constexpr std::ptrdiff_t m_ViewName = 0x8; // CUtlString
|
};
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CSSDSMsg_EndFrame {
|
|
||||||
constexpr std::ptrdiff_t m_Views = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace SceneViewId_t {
|
|
||||||
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64
|
|
||||||
constexpr std::ptrdiff_t m_nFrameCount = 0x8; // uint64
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CSSDSMsg_ViewRender {
|
|
||||||
constexpr std::ptrdiff_t m_viewId = 0x0; //
|
|
||||||
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CSSDSMsg_LayerBase {
|
|
||||||
constexpr std::ptrdiff_t m_viewId = 0x0; //
|
|
||||||
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_nLayerIndex = 0x18; // int32
|
|
||||||
constexpr std::ptrdiff_t m_nLayerId = 0x20; // uint64
|
|
||||||
constexpr std::ptrdiff_t m_LayerName = 0x28; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_displayText = 0x30; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 10
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
@ -77,118 +37,62 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_nFormat = 0x2C; // int32
|
constexpr std::ptrdiff_t m_nFormat = 0x2C; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 3
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CSSDSMsg_ViewTargetList {
|
namespace SceneViewId_t {
|
||||||
constexpr std::ptrdiff_t m_viewId = 0x0; //
|
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64
|
||||||
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
constexpr std::ptrdiff_t m_nFrameCount = 0x8; // uint64
|
||||||
constexpr std::ptrdiff_t m_Targets = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
|
||||||
}
|
|
||||||
// Parent: CSSDSMsg_LayerBase
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CSSDSMsg_PreLayer {
|
|
||||||
}
|
|
||||||
// Parent: CSSDSMsg_LayerBase
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CSSDSMsg_PostLayer {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CSosSoundEventGroupListSchema {
|
|
||||||
constexpr std::ptrdiff_t m_groupList = 0x0; // CUtlVector<CSosSoundEventGroupSchema>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace SosEditItemInfo_t {
|
|
||||||
constexpr std::ptrdiff_t itemType = 0x0; // SosEditItemType_t
|
|
||||||
constexpr std::ptrdiff_t itemName = 0x8; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t itemTypeName = 0x10; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t itemKVString = 0x20; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t itemPos = 0x28; // Vector2D
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace SelectedEditItemInfo_t {
|
|
||||||
constexpr std::ptrdiff_t m_EditItems = 0x0; // CUtlVector<SosEditItemInfo_t>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CSoundEventMetaData {
|
|
||||||
constexpr std::ptrdiff_t m_soundEventVMix = 0x0; // CStrongHandle<InfoForResourceTypeCVMixListResource>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CDSPMixgroupModifier {
|
|
||||||
constexpr std::ptrdiff_t m_mixgroup = 0x0; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_flModifier = 0x8; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flModifierMin = 0xC; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flSourceModifier = 0x10; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flSourceModifierMin = 0x14; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flListenerReverbModifierWhenSourceReverbIsActive = 0x18; // float32
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CDspPresetModifierList {
|
namespace CSSDSEndFrameViewInfo {
|
||||||
constexpr std::ptrdiff_t m_dspName = 0x0; // CUtlString
|
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64
|
||||||
constexpr std::ptrdiff_t m_modifiers = 0x8; // CUtlVector<CDSPMixgroupModifier>
|
constexpr std::ptrdiff_t m_ViewName = 0x8; // CUtlString
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 0
|
// Fields count: 6
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace IParticleSystemDefinition {
|
namespace CSSDSMsg_LayerBase {
|
||||||
|
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
|
||||||
|
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_nLayerIndex = 0x18; // int32
|
||||||
|
constexpr std::ptrdiff_t m_nLayerId = 0x20; // uint64
|
||||||
|
constexpr std::ptrdiff_t m_LayerName = 0x28; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_displayText = 0x30; // CUtlString
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 18
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CParticleVisibilityInputs {
|
namespace CSSDSMsg_ViewTargetList {
|
||||||
constexpr std::ptrdiff_t m_flCameraBias = 0x0; // float32
|
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
|
||||||
constexpr std::ptrdiff_t m_nCPin = 0x4; // int32
|
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
||||||
constexpr std::ptrdiff_t m_flProxyRadius = 0x8; // float32
|
constexpr std::ptrdiff_t m_Targets = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
||||||
constexpr std::ptrdiff_t m_flInputMin = 0xC; // float32
|
}
|
||||||
constexpr std::ptrdiff_t m_flInputMax = 0x10; // float32
|
// Parent: None
|
||||||
constexpr std::ptrdiff_t m_flNoPixelVisibilityFallback = 0x14; // float32
|
// Fields count: 2
|
||||||
constexpr std::ptrdiff_t m_flDistanceInputMin = 0x18; // float32
|
//
|
||||||
constexpr std::ptrdiff_t m_flDistanceInputMax = 0x1C; // float32
|
// Metadata:
|
||||||
constexpr std::ptrdiff_t m_flDotInputMin = 0x20; // float32
|
// MGetKV3ClassDefaults
|
||||||
constexpr std::ptrdiff_t m_flDotInputMax = 0x24; // float32
|
namespace CSSDSMsg_ViewRender {
|
||||||
constexpr std::ptrdiff_t m_bDotCPAngles = 0x28; // bool
|
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
|
||||||
constexpr std::ptrdiff_t m_bDotCameraAngles = 0x29; // bool
|
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
||||||
constexpr std::ptrdiff_t m_flAlphaScaleMin = 0x2C; // float32
|
}
|
||||||
constexpr std::ptrdiff_t m_flAlphaScaleMax = 0x30; // float32
|
// Parent: None
|
||||||
constexpr std::ptrdiff_t m_flRadiusScaleMin = 0x34; // float32
|
// Fields count: 1
|
||||||
constexpr std::ptrdiff_t m_flRadiusScaleMax = 0x38; // float32
|
//
|
||||||
constexpr std::ptrdiff_t m_flRadiusScaleFOVBase = 0x3C; // float32
|
// Metadata:
|
||||||
constexpr std::ptrdiff_t m_bRightEye = 0x40; // bool
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CSSDSMsg_EndFrame {
|
||||||
|
constexpr std::ptrdiff_t m_Views = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,65 +1,6 @@
|
|||||||
{
|
{
|
||||||
"scenesystem.dll": {
|
"scenesystem.dll": {
|
||||||
"classes": {
|
"classes": {
|
||||||
"CDSPMixgroupModifier": {
|
|
||||||
"fields": {
|
|
||||||
"m_flListenerReverbModifierWhenSourceReverbIsActive": 24,
|
|
||||||
"m_flModifier": 8,
|
|
||||||
"m_flModifierMin": 12,
|
|
||||||
"m_flSourceModifier": 16,
|
|
||||||
"m_flSourceModifierMin": 20,
|
|
||||||
"m_mixgroup": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CDspPresetModifierList": {
|
|
||||||
"fields": {
|
|
||||||
"m_dspName": 0,
|
|
||||||
"m_modifiers": 8
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CParticleVisibilityInputs": {
|
|
||||||
"fields": {
|
|
||||||
"m_bDotCPAngles": 40,
|
|
||||||
"m_bDotCameraAngles": 41,
|
|
||||||
"m_bRightEye": 64,
|
|
||||||
"m_flAlphaScaleMax": 48,
|
|
||||||
"m_flAlphaScaleMin": 44,
|
|
||||||
"m_flCameraBias": 0,
|
|
||||||
"m_flDistanceInputMax": 28,
|
|
||||||
"m_flDistanceInputMin": 24,
|
|
||||||
"m_flDotInputMax": 36,
|
|
||||||
"m_flDotInputMin": 32,
|
|
||||||
"m_flInputMax": 16,
|
|
||||||
"m_flInputMin": 12,
|
|
||||||
"m_flNoPixelVisibilityFallback": 20,
|
|
||||||
"m_flProxyRadius": 8,
|
|
||||||
"m_flRadiusScaleFOVBase": 60,
|
|
||||||
"m_flRadiusScaleMax": 56,
|
|
||||||
"m_flRadiusScaleMin": 52,
|
|
||||||
"m_nCPin": 4
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CSSDSEndFrameViewInfo": {
|
"CSSDSEndFrameViewInfo": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_ViewName": 8,
|
"m_ViewName": 8,
|
||||||
@ -102,26 +43,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CSSDSMsg_PostLayer": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CSSDSMsg_LayerBase"
|
|
||||||
},
|
|
||||||
"CSSDSMsg_PreLayer": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CSSDSMsg_LayerBase"
|
|
||||||
},
|
|
||||||
"CSSDSMsg_ViewRender": {
|
"CSSDSMsg_ViewRender": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_ViewName": 16,
|
"m_ViewName": 16,
|
||||||
@ -170,40 +91,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CSosSoundEventGroupListSchema": {
|
|
||||||
"fields": {
|
|
||||||
"m_groupList": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CSoundEventMetaData": {
|
|
||||||
"fields": {
|
|
||||||
"m_soundEventVMix": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"IParticleSystemDefinition": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"SceneViewId_t": {
|
"SceneViewId_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_nFrameCount": 8,
|
"m_nFrameCount": 8,
|
||||||
@ -216,36 +103,19 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
|
||||||
"SelectedEditItemInfo_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_EditItems": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"SosEditItemInfo_t": {
|
|
||||||
"fields": {
|
|
||||||
"itemKVString": 32,
|
|
||||||
"itemName": 8,
|
|
||||||
"itemPos": 40,
|
|
||||||
"itemType": 0,
|
|
||||||
"itemTypeName": 16
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"DisableShadows_t": {
|
||||||
|
"alignment": 1,
|
||||||
|
"members": {
|
||||||
|
"kDisableShadows_All": 1,
|
||||||
|
"kDisableShadows_Baked": 2,
|
||||||
|
"kDisableShadows_None": 0,
|
||||||
|
"kDisableShadows_Realtime": 3
|
||||||
|
},
|
||||||
|
"type": "uint8"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,61 +1,22 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
pub mod cs2_dumper {
|
pub mod cs2_dumper {
|
||||||
pub mod schemas {
|
pub mod schemas {
|
||||||
// Module: scenesystem.dll
|
// Module: scenesystem.dll
|
||||||
// Classes count: 17
|
// Classes count: 7
|
||||||
// Enums count: 0
|
// Enums count: 1
|
||||||
pub mod scenesystem_dll {
|
pub mod scenesystem_dll {
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 2
|
// Members count: 4
|
||||||
//
|
#[repr(u8)]
|
||||||
// Metadata:
|
pub enum DisableShadows_t {
|
||||||
// MGetKV3ClassDefaults
|
kDisableShadows_None = 0x0,
|
||||||
pub mod CSSDSEndFrameViewInfo {
|
kDisableShadows_All = 0x1,
|
||||||
pub const m_nViewId: usize = 0x0; // uint64
|
kDisableShadows_Baked = 0x2,
|
||||||
pub const m_ViewName: usize = 0x8; // CUtlString
|
kDisableShadows_Realtime = 0x3
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CSSDSMsg_EndFrame {
|
|
||||||
pub const m_Views: usize = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod SceneViewId_t {
|
|
||||||
pub const m_nViewId: usize = 0x0; // uint64
|
|
||||||
pub const m_nFrameCount: usize = 0x8; // uint64
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CSSDSMsg_ViewRender {
|
|
||||||
pub const m_viewId: usize = 0x0; //
|
|
||||||
pub const m_ViewName: usize = 0x10; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CSSDSMsg_LayerBase {
|
|
||||||
pub const m_viewId: usize = 0x0; //
|
|
||||||
pub const m_ViewName: usize = 0x10; // CUtlString
|
|
||||||
pub const m_nLayerIndex: usize = 0x18; // int32
|
|
||||||
pub const m_nLayerId: usize = 0x20; // uint64
|
|
||||||
pub const m_LayerName: usize = 0x28; // CUtlString
|
|
||||||
pub const m_displayText: usize = 0x30; // CUtlString
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 10
|
// Fields count: 10
|
||||||
@ -75,118 +36,62 @@ pub mod cs2_dumper {
|
|||||||
pub const m_nFormat: usize = 0x2C; // int32
|
pub const m_nFormat: usize = 0x2C; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 3
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CSSDSMsg_ViewTargetList {
|
pub mod SceneViewId_t {
|
||||||
pub const m_viewId: usize = 0x0; //
|
pub const m_nViewId: usize = 0x0; // uint64
|
||||||
pub const m_ViewName: usize = 0x10; // CUtlString
|
pub const m_nFrameCount: usize = 0x8; // uint64
|
||||||
pub const m_Targets: usize = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
|
||||||
}
|
|
||||||
// Parent: CSSDSMsg_LayerBase
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CSSDSMsg_PreLayer {
|
|
||||||
}
|
|
||||||
// Parent: CSSDSMsg_LayerBase
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CSSDSMsg_PostLayer {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CSosSoundEventGroupListSchema {
|
|
||||||
pub const m_groupList: usize = 0x0; // CUtlVector<CSosSoundEventGroupSchema>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod SosEditItemInfo_t {
|
|
||||||
pub const itemType: usize = 0x0; // SosEditItemType_t
|
|
||||||
pub const itemName: usize = 0x8; // CUtlString
|
|
||||||
pub const itemTypeName: usize = 0x10; // CUtlString
|
|
||||||
pub const itemKVString: usize = 0x20; // CUtlString
|
|
||||||
pub const itemPos: usize = 0x28; // Vector2D
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod SelectedEditItemInfo_t {
|
|
||||||
pub const m_EditItems: usize = 0x0; // CUtlVector<SosEditItemInfo_t>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CSoundEventMetaData {
|
|
||||||
pub const m_soundEventVMix: usize = 0x0; // CStrongHandle<InfoForResourceTypeCVMixListResource>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CDSPMixgroupModifier {
|
|
||||||
pub const m_mixgroup: usize = 0x0; // CUtlString
|
|
||||||
pub const m_flModifier: usize = 0x8; // float32
|
|
||||||
pub const m_flModifierMin: usize = 0xC; // float32
|
|
||||||
pub const m_flSourceModifier: usize = 0x10; // float32
|
|
||||||
pub const m_flSourceModifierMin: usize = 0x14; // float32
|
|
||||||
pub const m_flListenerReverbModifierWhenSourceReverbIsActive: usize = 0x18; // float32
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CDspPresetModifierList {
|
pub mod CSSDSEndFrameViewInfo {
|
||||||
pub const m_dspName: usize = 0x0; // CUtlString
|
pub const m_nViewId: usize = 0x0; // uint64
|
||||||
pub const m_modifiers: usize = 0x8; // CUtlVector<CDSPMixgroupModifier>
|
pub const m_ViewName: usize = 0x8; // CUtlString
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 0
|
// Fields count: 6
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod IParticleSystemDefinition {
|
pub mod CSSDSMsg_LayerBase {
|
||||||
|
pub const m_viewId: usize = 0x0; // SceneViewId_t
|
||||||
|
pub const m_ViewName: usize = 0x10; // CUtlString
|
||||||
|
pub const m_nLayerIndex: usize = 0x18; // int32
|
||||||
|
pub const m_nLayerId: usize = 0x20; // uint64
|
||||||
|
pub const m_LayerName: usize = 0x28; // CUtlString
|
||||||
|
pub const m_displayText: usize = 0x30; // CUtlString
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 18
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CParticleVisibilityInputs {
|
pub mod CSSDSMsg_ViewTargetList {
|
||||||
pub const m_flCameraBias: usize = 0x0; // float32
|
pub const m_viewId: usize = 0x0; // SceneViewId_t
|
||||||
pub const m_nCPin: usize = 0x4; // int32
|
pub const m_ViewName: usize = 0x10; // CUtlString
|
||||||
pub const m_flProxyRadius: usize = 0x8; // float32
|
pub const m_Targets: usize = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
||||||
pub const m_flInputMin: usize = 0xC; // float32
|
}
|
||||||
pub const m_flInputMax: usize = 0x10; // float32
|
// Parent: None
|
||||||
pub const m_flNoPixelVisibilityFallback: usize = 0x14; // float32
|
// Fields count: 2
|
||||||
pub const m_flDistanceInputMin: usize = 0x18; // float32
|
//
|
||||||
pub const m_flDistanceInputMax: usize = 0x1C; // float32
|
// Metadata:
|
||||||
pub const m_flDotInputMin: usize = 0x20; // float32
|
// MGetKV3ClassDefaults
|
||||||
pub const m_flDotInputMax: usize = 0x24; // float32
|
pub mod CSSDSMsg_ViewRender {
|
||||||
pub const m_bDotCPAngles: usize = 0x28; // bool
|
pub const m_viewId: usize = 0x0; // SceneViewId_t
|
||||||
pub const m_bDotCameraAngles: usize = 0x29; // bool
|
pub const m_ViewName: usize = 0x10; // CUtlString
|
||||||
pub const m_flAlphaScaleMin: usize = 0x2C; // float32
|
}
|
||||||
pub const m_flAlphaScaleMax: usize = 0x30; // float32
|
// Parent: None
|
||||||
pub const m_flRadiusScaleMin: usize = 0x34; // float32
|
// Fields count: 1
|
||||||
pub const m_flRadiusScaleMax: usize = 0x38; // float32
|
//
|
||||||
pub const m_flRadiusScaleFOVBase: usize = 0x3C; // float32
|
// Metadata:
|
||||||
pub const m_bRightEye: usize = 0x40; // bool
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CSSDSMsg_EndFrame {
|
||||||
|
pub const m_Views: usize = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,26 +1,110 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
// Module: schemasystem.dll
|
// Module: schemasystem.dll
|
||||||
// Classes count: 7
|
// Classes count: 4
|
||||||
// Enums count: 0
|
// Enums count: 2
|
||||||
public static class SchemasystemDll {
|
public static class SchemasystemDll {
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 0
|
// Members count: 81
|
||||||
//
|
public enum fieldtype_t : byte {
|
||||||
// Metadata:
|
FIELD_VOID = 0x0,
|
||||||
// MResourceTypeForInfoType
|
FIELD_FLOAT32 = 0x1,
|
||||||
public static class InfoForResourceTypeCResourceManifestInternal {
|
FIELD_STRING = 0x2,
|
||||||
|
FIELD_VECTOR = 0x3,
|
||||||
|
FIELD_QUATERNION = 0x4,
|
||||||
|
FIELD_INT32 = 0x5,
|
||||||
|
FIELD_BOOLEAN = 0x6,
|
||||||
|
FIELD_INT16 = 0x7,
|
||||||
|
FIELD_CHARACTER = 0x8,
|
||||||
|
FIELD_COLOR32 = 0x9,
|
||||||
|
FIELD_EMBEDDED = 0xA,
|
||||||
|
FIELD_CUSTOM = 0xB,
|
||||||
|
FIELD_CLASSPTR = 0xC,
|
||||||
|
FIELD_EHANDLE = 0xD,
|
||||||
|
FIELD_POSITION_VECTOR = 0xE,
|
||||||
|
FIELD_TIME = 0xF,
|
||||||
|
FIELD_TICK = 0x10,
|
||||||
|
FIELD_SOUNDNAME = 0x11,
|
||||||
|
FIELD_INPUT = 0x12,
|
||||||
|
FIELD_FUNCTION = 0x13,
|
||||||
|
FIELD_VMATRIX = 0x14,
|
||||||
|
FIELD_VMATRIX_WORLDSPACE = 0x15,
|
||||||
|
FIELD_MATRIX3X4_WORLDSPACE = 0x16,
|
||||||
|
FIELD_INTERVAL = 0x17,
|
||||||
|
FIELD_UNUSED = 0x18,
|
||||||
|
FIELD_VECTOR2D = 0x19,
|
||||||
|
FIELD_INT64 = 0x1A,
|
||||||
|
FIELD_VECTOR4D = 0x1B,
|
||||||
|
FIELD_RESOURCE = 0x1C,
|
||||||
|
FIELD_TYPEUNKNOWN = 0x1D,
|
||||||
|
FIELD_CSTRING = 0x1E,
|
||||||
|
FIELD_HSCRIPT = 0x1F,
|
||||||
|
FIELD_VARIANT = 0x20,
|
||||||
|
FIELD_UINT64 = 0x21,
|
||||||
|
FIELD_FLOAT64 = 0x22,
|
||||||
|
FIELD_POSITIVEINTEGER_OR_NULL = 0x23,
|
||||||
|
FIELD_HSCRIPT_NEW_INSTANCE = 0x24,
|
||||||
|
FIELD_UINT32 = 0x25,
|
||||||
|
FIELD_UTLSTRINGTOKEN = 0x26,
|
||||||
|
FIELD_QANGLE = 0x27,
|
||||||
|
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_VECTOR = 0x28,
|
||||||
|
FIELD_HMATERIAL = 0x29,
|
||||||
|
FIELD_HMODEL = 0x2A,
|
||||||
|
FIELD_NETWORK_QUANTIZED_VECTOR = 0x2B,
|
||||||
|
FIELD_NETWORK_QUANTIZED_FLOAT = 0x2C,
|
||||||
|
FIELD_DIRECTION_VECTOR_WORLDSPACE = 0x2D,
|
||||||
|
FIELD_QANGLE_WORLDSPACE = 0x2E,
|
||||||
|
FIELD_QUATERNION_WORLDSPACE = 0x2F,
|
||||||
|
FIELD_HSCRIPT_LIGHTBINDING = 0x30,
|
||||||
|
FIELD_V8_VALUE = 0x31,
|
||||||
|
FIELD_V8_OBJECT = 0x32,
|
||||||
|
FIELD_V8_ARRAY = 0x33,
|
||||||
|
FIELD_V8_CALLBACK_INFO = 0x34,
|
||||||
|
FIELD_UTLSTRING = 0x35,
|
||||||
|
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_POSITION_VECTOR = 0x36,
|
||||||
|
FIELD_HRENDERTEXTURE = 0x37,
|
||||||
|
FIELD_HPARTICLESYSTEMDEFINITION = 0x38,
|
||||||
|
FIELD_UINT8 = 0x39,
|
||||||
|
FIELD_UINT16 = 0x3A,
|
||||||
|
FIELD_CTRANSFORM = 0x3B,
|
||||||
|
FIELD_CTRANSFORM_WORLDSPACE = 0x3C,
|
||||||
|
FIELD_HPOSTPROCESSING = 0x3D,
|
||||||
|
FIELD_MATRIX3X4 = 0x3E,
|
||||||
|
FIELD_SHIM = 0x3F,
|
||||||
|
FIELD_CMOTIONTRANSFORM = 0x40,
|
||||||
|
FIELD_CMOTIONTRANSFORM_WORLDSPACE = 0x41,
|
||||||
|
FIELD_ATTACHMENT_HANDLE = 0x42,
|
||||||
|
FIELD_AMMO_INDEX = 0x43,
|
||||||
|
FIELD_CONDITION_ID = 0x44,
|
||||||
|
FIELD_AI_SCHEDULE_BITS = 0x45,
|
||||||
|
FIELD_MODIFIER_HANDLE = 0x46,
|
||||||
|
FIELD_ROTATION_VECTOR = 0x47,
|
||||||
|
FIELD_ROTATION_VECTOR_WORLDSPACE = 0x48,
|
||||||
|
FIELD_HVDATA = 0x49,
|
||||||
|
FIELD_SCALE32 = 0x4A,
|
||||||
|
FIELD_STRING_AND_TOKEN = 0x4B,
|
||||||
|
FIELD_ENGINE_TIME = 0x4C,
|
||||||
|
FIELD_ENGINE_TICK = 0x4D,
|
||||||
|
FIELD_WORLD_GROUP_ID = 0x4E,
|
||||||
|
FIELD_GLOBALSYMBOL = 0x4F,
|
||||||
|
FIELD_TYPECOUNT = 0x50
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 2
|
// Members count: 3
|
||||||
|
public enum ThreeState_t : uint {
|
||||||
|
TRS_FALSE = 0x0,
|
||||||
|
TRS_TRUE = 0x1,
|
||||||
|
TRS_NONE = 0x2
|
||||||
|
}
|
||||||
|
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||||
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CExampleSchemaVData_Monomorphic {
|
public static class CExampleSchemaVData_PolymorphicDerivedA {
|
||||||
public const nint m_nExample1 = 0x0; // int32
|
public const nint m_nDerivedA = 0x10; // int32
|
||||||
public const nint m_nExample2 = 0x4; // int32
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
@ -35,30 +119,17 @@ namespace CS2Dumper.Schemas {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CExampleSchemaVData_PolymorphicDerivedA {
|
|
||||||
public const nint m_nDerivedA = 0x10; // int32
|
|
||||||
}
|
|
||||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CExampleSchemaVData_PolymorphicDerivedB {
|
public static class CExampleSchemaVData_PolymorphicDerivedB {
|
||||||
public const nint m_nDerivedB = 0x10; // int32
|
public const nint m_nDerivedB = 0x10; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 0
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MResourceTypeForInfoType
|
// MGetKV3ClassDefaults
|
||||||
public static class InfoForResourceTypeCResourceManifestInternal {
|
public static class CExampleSchemaVData_Monomorphic {
|
||||||
}
|
public const nint m_nExample1 = 0x0; // int32
|
||||||
// Parent: None
|
public const nint m_nExample2 = 0x4; // int32
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCDOTAPatchNotesList {
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -8,24 +8,108 @@
|
|||||||
namespace cs2_dumper {
|
namespace cs2_dumper {
|
||||||
namespace schemas {
|
namespace schemas {
|
||||||
// Module: schemasystem.dll
|
// Module: schemasystem.dll
|
||||||
// Classes count: 7
|
// Classes count: 4
|
||||||
// Enums count: 0
|
// Enums count: 2
|
||||||
namespace schemasystem_dll {
|
namespace schemasystem_dll {
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 0
|
// Members count: 81
|
||||||
//
|
enum class fieldtype_t : uint8_t {
|
||||||
// Metadata:
|
FIELD_VOID = 0x0,
|
||||||
// MResourceTypeForInfoType
|
FIELD_FLOAT32 = 0x1,
|
||||||
namespace InfoForResourceTypeCResourceManifestInternal {
|
FIELD_STRING = 0x2,
|
||||||
}
|
FIELD_VECTOR = 0x3,
|
||||||
// Parent: None
|
FIELD_QUATERNION = 0x4,
|
||||||
// Fields count: 2
|
FIELD_INT32 = 0x5,
|
||||||
|
FIELD_BOOLEAN = 0x6,
|
||||||
|
FIELD_INT16 = 0x7,
|
||||||
|
FIELD_CHARACTER = 0x8,
|
||||||
|
FIELD_COLOR32 = 0x9,
|
||||||
|
FIELD_EMBEDDED = 0xA,
|
||||||
|
FIELD_CUSTOM = 0xB,
|
||||||
|
FIELD_CLASSPTR = 0xC,
|
||||||
|
FIELD_EHANDLE = 0xD,
|
||||||
|
FIELD_POSITION_VECTOR = 0xE,
|
||||||
|
FIELD_TIME = 0xF,
|
||||||
|
FIELD_TICK = 0x10,
|
||||||
|
FIELD_SOUNDNAME = 0x11,
|
||||||
|
FIELD_INPUT = 0x12,
|
||||||
|
FIELD_FUNCTION = 0x13,
|
||||||
|
FIELD_VMATRIX = 0x14,
|
||||||
|
FIELD_VMATRIX_WORLDSPACE = 0x15,
|
||||||
|
FIELD_MATRIX3X4_WORLDSPACE = 0x16,
|
||||||
|
FIELD_INTERVAL = 0x17,
|
||||||
|
FIELD_UNUSED = 0x18,
|
||||||
|
FIELD_VECTOR2D = 0x19,
|
||||||
|
FIELD_INT64 = 0x1A,
|
||||||
|
FIELD_VECTOR4D = 0x1B,
|
||||||
|
FIELD_RESOURCE = 0x1C,
|
||||||
|
FIELD_TYPEUNKNOWN = 0x1D,
|
||||||
|
FIELD_CSTRING = 0x1E,
|
||||||
|
FIELD_HSCRIPT = 0x1F,
|
||||||
|
FIELD_VARIANT = 0x20,
|
||||||
|
FIELD_UINT64 = 0x21,
|
||||||
|
FIELD_FLOAT64 = 0x22,
|
||||||
|
FIELD_POSITIVEINTEGER_OR_NULL = 0x23,
|
||||||
|
FIELD_HSCRIPT_NEW_INSTANCE = 0x24,
|
||||||
|
FIELD_UINT32 = 0x25,
|
||||||
|
FIELD_UTLSTRINGTOKEN = 0x26,
|
||||||
|
FIELD_QANGLE = 0x27,
|
||||||
|
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_VECTOR = 0x28,
|
||||||
|
FIELD_HMATERIAL = 0x29,
|
||||||
|
FIELD_HMODEL = 0x2A,
|
||||||
|
FIELD_NETWORK_QUANTIZED_VECTOR = 0x2B,
|
||||||
|
FIELD_NETWORK_QUANTIZED_FLOAT = 0x2C,
|
||||||
|
FIELD_DIRECTION_VECTOR_WORLDSPACE = 0x2D,
|
||||||
|
FIELD_QANGLE_WORLDSPACE = 0x2E,
|
||||||
|
FIELD_QUATERNION_WORLDSPACE = 0x2F,
|
||||||
|
FIELD_HSCRIPT_LIGHTBINDING = 0x30,
|
||||||
|
FIELD_V8_VALUE = 0x31,
|
||||||
|
FIELD_V8_OBJECT = 0x32,
|
||||||
|
FIELD_V8_ARRAY = 0x33,
|
||||||
|
FIELD_V8_CALLBACK_INFO = 0x34,
|
||||||
|
FIELD_UTLSTRING = 0x35,
|
||||||
|
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_POSITION_VECTOR = 0x36,
|
||||||
|
FIELD_HRENDERTEXTURE = 0x37,
|
||||||
|
FIELD_HPARTICLESYSTEMDEFINITION = 0x38,
|
||||||
|
FIELD_UINT8 = 0x39,
|
||||||
|
FIELD_UINT16 = 0x3A,
|
||||||
|
FIELD_CTRANSFORM = 0x3B,
|
||||||
|
FIELD_CTRANSFORM_WORLDSPACE = 0x3C,
|
||||||
|
FIELD_HPOSTPROCESSING = 0x3D,
|
||||||
|
FIELD_MATRIX3X4 = 0x3E,
|
||||||
|
FIELD_SHIM = 0x3F,
|
||||||
|
FIELD_CMOTIONTRANSFORM = 0x40,
|
||||||
|
FIELD_CMOTIONTRANSFORM_WORLDSPACE = 0x41,
|
||||||
|
FIELD_ATTACHMENT_HANDLE = 0x42,
|
||||||
|
FIELD_AMMO_INDEX = 0x43,
|
||||||
|
FIELD_CONDITION_ID = 0x44,
|
||||||
|
FIELD_AI_SCHEDULE_BITS = 0x45,
|
||||||
|
FIELD_MODIFIER_HANDLE = 0x46,
|
||||||
|
FIELD_ROTATION_VECTOR = 0x47,
|
||||||
|
FIELD_ROTATION_VECTOR_WORLDSPACE = 0x48,
|
||||||
|
FIELD_HVDATA = 0x49,
|
||||||
|
FIELD_SCALE32 = 0x4A,
|
||||||
|
FIELD_STRING_AND_TOKEN = 0x4B,
|
||||||
|
FIELD_ENGINE_TIME = 0x4C,
|
||||||
|
FIELD_ENGINE_TICK = 0x4D,
|
||||||
|
FIELD_WORLD_GROUP_ID = 0x4E,
|
||||||
|
FIELD_GLOBALSYMBOL = 0x4F,
|
||||||
|
FIELD_TYPECOUNT = 0x50
|
||||||
|
};
|
||||||
|
// Alignment: 4
|
||||||
|
// Members count: 3
|
||||||
|
enum class ThreeState_t : uint32_t {
|
||||||
|
TRS_FALSE = 0x0,
|
||||||
|
TRS_TRUE = 0x1,
|
||||||
|
TRS_NONE = 0x2
|
||||||
|
};
|
||||||
|
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||||
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CExampleSchemaVData_Monomorphic {
|
namespace CExampleSchemaVData_PolymorphicDerivedA {
|
||||||
constexpr std::ptrdiff_t m_nExample1 = 0x0; // int32
|
constexpr std::ptrdiff_t m_nDerivedA = 0x10; // int32
|
||||||
constexpr std::ptrdiff_t m_nExample2 = 0x4; // int32
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
@ -40,30 +124,17 @@ namespace cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CExampleSchemaVData_PolymorphicDerivedA {
|
|
||||||
constexpr std::ptrdiff_t m_nDerivedA = 0x10; // int32
|
|
||||||
}
|
|
||||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CExampleSchemaVData_PolymorphicDerivedB {
|
namespace CExampleSchemaVData_PolymorphicDerivedB {
|
||||||
constexpr std::ptrdiff_t m_nDerivedB = 0x10; // int32
|
constexpr std::ptrdiff_t m_nDerivedB = 0x10; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 0
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MResourceTypeForInfoType
|
// MGetKV3ClassDefaults
|
||||||
namespace InfoForResourceTypeCResourceManifestInternal {
|
namespace CExampleSchemaVData_Monomorphic {
|
||||||
}
|
constexpr std::ptrdiff_t m_nExample1 = 0x0; // int32
|
||||||
// Parent: None
|
constexpr std::ptrdiff_t m_nExample2 = 0x4; // int32
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCDOTAPatchNotesList {
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -49,28 +49,105 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": "CExampleSchemaVData_PolymorphicBase"
|
"parent": "CExampleSchemaVData_PolymorphicBase"
|
||||||
},
|
|
||||||
"InfoForResourceTypeCDOTAPatchNotesList": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCResourceManifestInternal": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"ThreeState_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"TRS_FALSE": 0,
|
||||||
|
"TRS_NONE": 2,
|
||||||
|
"TRS_TRUE": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"fieldtype_t": {
|
||||||
|
"alignment": 1,
|
||||||
|
"members": {
|
||||||
|
"FIELD_AI_SCHEDULE_BITS": 69,
|
||||||
|
"FIELD_AMMO_INDEX": 67,
|
||||||
|
"FIELD_ATTACHMENT_HANDLE": 66,
|
||||||
|
"FIELD_BOOLEAN": 6,
|
||||||
|
"FIELD_CHARACTER": 8,
|
||||||
|
"FIELD_CLASSPTR": 12,
|
||||||
|
"FIELD_CMOTIONTRANSFORM": 64,
|
||||||
|
"FIELD_CMOTIONTRANSFORM_WORLDSPACE": 65,
|
||||||
|
"FIELD_COLOR32": 9,
|
||||||
|
"FIELD_CONDITION_ID": 68,
|
||||||
|
"FIELD_CSTRING": 30,
|
||||||
|
"FIELD_CTRANSFORM": 59,
|
||||||
|
"FIELD_CTRANSFORM_WORLDSPACE": 60,
|
||||||
|
"FIELD_CUSTOM": 11,
|
||||||
|
"FIELD_DIRECTION_VECTOR_WORLDSPACE": 45,
|
||||||
|
"FIELD_EHANDLE": 13,
|
||||||
|
"FIELD_EMBEDDED": 10,
|
||||||
|
"FIELD_ENGINE_TICK": 77,
|
||||||
|
"FIELD_ENGINE_TIME": 76,
|
||||||
|
"FIELD_FLOAT32": 1,
|
||||||
|
"FIELD_FLOAT64": 34,
|
||||||
|
"FIELD_FUNCTION": 19,
|
||||||
|
"FIELD_GLOBALSYMBOL": 79,
|
||||||
|
"FIELD_HMATERIAL": 41,
|
||||||
|
"FIELD_HMODEL": 42,
|
||||||
|
"FIELD_HPARTICLESYSTEMDEFINITION": 56,
|
||||||
|
"FIELD_HPOSTPROCESSING": 61,
|
||||||
|
"FIELD_HRENDERTEXTURE": 55,
|
||||||
|
"FIELD_HSCRIPT": 31,
|
||||||
|
"FIELD_HSCRIPT_LIGHTBINDING": 48,
|
||||||
|
"FIELD_HSCRIPT_NEW_INSTANCE": 36,
|
||||||
|
"FIELD_HVDATA": 73,
|
||||||
|
"FIELD_INPUT": 18,
|
||||||
|
"FIELD_INT16": 7,
|
||||||
|
"FIELD_INT32": 5,
|
||||||
|
"FIELD_INT64": 26,
|
||||||
|
"FIELD_INTERVAL": 23,
|
||||||
|
"FIELD_MATRIX3X4": 62,
|
||||||
|
"FIELD_MATRIX3X4_WORLDSPACE": 22,
|
||||||
|
"FIELD_MODIFIER_HANDLE": 70,
|
||||||
|
"FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_POSITION_VECTOR": 54,
|
||||||
|
"FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_VECTOR": 40,
|
||||||
|
"FIELD_NETWORK_QUANTIZED_FLOAT": 44,
|
||||||
|
"FIELD_NETWORK_QUANTIZED_VECTOR": 43,
|
||||||
|
"FIELD_POSITION_VECTOR": 14,
|
||||||
|
"FIELD_POSITIVEINTEGER_OR_NULL": 35,
|
||||||
|
"FIELD_QANGLE": 39,
|
||||||
|
"FIELD_QANGLE_WORLDSPACE": 46,
|
||||||
|
"FIELD_QUATERNION": 4,
|
||||||
|
"FIELD_QUATERNION_WORLDSPACE": 47,
|
||||||
|
"FIELD_RESOURCE": 28,
|
||||||
|
"FIELD_ROTATION_VECTOR": 71,
|
||||||
|
"FIELD_ROTATION_VECTOR_WORLDSPACE": 72,
|
||||||
|
"FIELD_SCALE32": 74,
|
||||||
|
"FIELD_SHIM": 63,
|
||||||
|
"FIELD_SOUNDNAME": 17,
|
||||||
|
"FIELD_STRING": 2,
|
||||||
|
"FIELD_STRING_AND_TOKEN": 75,
|
||||||
|
"FIELD_TICK": 16,
|
||||||
|
"FIELD_TIME": 15,
|
||||||
|
"FIELD_TYPECOUNT": 80,
|
||||||
|
"FIELD_TYPEUNKNOWN": 29,
|
||||||
|
"FIELD_UINT16": 58,
|
||||||
|
"FIELD_UINT32": 37,
|
||||||
|
"FIELD_UINT64": 33,
|
||||||
|
"FIELD_UINT8": 57,
|
||||||
|
"FIELD_UNUSED": 24,
|
||||||
|
"FIELD_UTLSTRING": 53,
|
||||||
|
"FIELD_UTLSTRINGTOKEN": 38,
|
||||||
|
"FIELD_V8_ARRAY": 51,
|
||||||
|
"FIELD_V8_CALLBACK_INFO": 52,
|
||||||
|
"FIELD_V8_OBJECT": 50,
|
||||||
|
"FIELD_V8_VALUE": 49,
|
||||||
|
"FIELD_VARIANT": 32,
|
||||||
|
"FIELD_VECTOR": 3,
|
||||||
|
"FIELD_VECTOR2D": 25,
|
||||||
|
"FIELD_VECTOR4D": 27,
|
||||||
|
"FIELD_VMATRIX": 20,
|
||||||
|
"FIELD_VMATRIX_WORLDSPACE": 21,
|
||||||
|
"FIELD_VOID": 0,
|
||||||
|
"FIELD_WORLD_GROUP_ID": 78
|
||||||
|
},
|
||||||
|
"type": "uint8"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,29 +1,115 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
pub mod cs2_dumper {
|
pub mod cs2_dumper {
|
||||||
pub mod schemas {
|
pub mod schemas {
|
||||||
// Module: schemasystem.dll
|
// Module: schemasystem.dll
|
||||||
// Classes count: 7
|
// Classes count: 4
|
||||||
// Enums count: 0
|
// Enums count: 2
|
||||||
pub mod schemasystem_dll {
|
pub mod schemasystem_dll {
|
||||||
// Parent: None
|
// Alignment: 1
|
||||||
// Fields count: 0
|
// Members count: 81
|
||||||
//
|
#[repr(u8)]
|
||||||
// Metadata:
|
pub enum fieldtype_t {
|
||||||
// MResourceTypeForInfoType
|
FIELD_VOID = 0x0,
|
||||||
pub mod InfoForResourceTypeCResourceManifestInternal {
|
FIELD_FLOAT32 = 0x1,
|
||||||
|
FIELD_STRING = 0x2,
|
||||||
|
FIELD_VECTOR = 0x3,
|
||||||
|
FIELD_QUATERNION = 0x4,
|
||||||
|
FIELD_INT32 = 0x5,
|
||||||
|
FIELD_BOOLEAN = 0x6,
|
||||||
|
FIELD_INT16 = 0x7,
|
||||||
|
FIELD_CHARACTER = 0x8,
|
||||||
|
FIELD_COLOR32 = 0x9,
|
||||||
|
FIELD_EMBEDDED = 0xA,
|
||||||
|
FIELD_CUSTOM = 0xB,
|
||||||
|
FIELD_CLASSPTR = 0xC,
|
||||||
|
FIELD_EHANDLE = 0xD,
|
||||||
|
FIELD_POSITION_VECTOR = 0xE,
|
||||||
|
FIELD_TIME = 0xF,
|
||||||
|
FIELD_TICK = 0x10,
|
||||||
|
FIELD_SOUNDNAME = 0x11,
|
||||||
|
FIELD_INPUT = 0x12,
|
||||||
|
FIELD_FUNCTION = 0x13,
|
||||||
|
FIELD_VMATRIX = 0x14,
|
||||||
|
FIELD_VMATRIX_WORLDSPACE = 0x15,
|
||||||
|
FIELD_MATRIX3X4_WORLDSPACE = 0x16,
|
||||||
|
FIELD_INTERVAL = 0x17,
|
||||||
|
FIELD_UNUSED = 0x18,
|
||||||
|
FIELD_VECTOR2D = 0x19,
|
||||||
|
FIELD_INT64 = 0x1A,
|
||||||
|
FIELD_VECTOR4D = 0x1B,
|
||||||
|
FIELD_RESOURCE = 0x1C,
|
||||||
|
FIELD_TYPEUNKNOWN = 0x1D,
|
||||||
|
FIELD_CSTRING = 0x1E,
|
||||||
|
FIELD_HSCRIPT = 0x1F,
|
||||||
|
FIELD_VARIANT = 0x20,
|
||||||
|
FIELD_UINT64 = 0x21,
|
||||||
|
FIELD_FLOAT64 = 0x22,
|
||||||
|
FIELD_POSITIVEINTEGER_OR_NULL = 0x23,
|
||||||
|
FIELD_HSCRIPT_NEW_INSTANCE = 0x24,
|
||||||
|
FIELD_UINT32 = 0x25,
|
||||||
|
FIELD_UTLSTRINGTOKEN = 0x26,
|
||||||
|
FIELD_QANGLE = 0x27,
|
||||||
|
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_VECTOR = 0x28,
|
||||||
|
FIELD_HMATERIAL = 0x29,
|
||||||
|
FIELD_HMODEL = 0x2A,
|
||||||
|
FIELD_NETWORK_QUANTIZED_VECTOR = 0x2B,
|
||||||
|
FIELD_NETWORK_QUANTIZED_FLOAT = 0x2C,
|
||||||
|
FIELD_DIRECTION_VECTOR_WORLDSPACE = 0x2D,
|
||||||
|
FIELD_QANGLE_WORLDSPACE = 0x2E,
|
||||||
|
FIELD_QUATERNION_WORLDSPACE = 0x2F,
|
||||||
|
FIELD_HSCRIPT_LIGHTBINDING = 0x30,
|
||||||
|
FIELD_V8_VALUE = 0x31,
|
||||||
|
FIELD_V8_OBJECT = 0x32,
|
||||||
|
FIELD_V8_ARRAY = 0x33,
|
||||||
|
FIELD_V8_CALLBACK_INFO = 0x34,
|
||||||
|
FIELD_UTLSTRING = 0x35,
|
||||||
|
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_POSITION_VECTOR = 0x36,
|
||||||
|
FIELD_HRENDERTEXTURE = 0x37,
|
||||||
|
FIELD_HPARTICLESYSTEMDEFINITION = 0x38,
|
||||||
|
FIELD_UINT8 = 0x39,
|
||||||
|
FIELD_UINT16 = 0x3A,
|
||||||
|
FIELD_CTRANSFORM = 0x3B,
|
||||||
|
FIELD_CTRANSFORM_WORLDSPACE = 0x3C,
|
||||||
|
FIELD_HPOSTPROCESSING = 0x3D,
|
||||||
|
FIELD_MATRIX3X4 = 0x3E,
|
||||||
|
FIELD_SHIM = 0x3F,
|
||||||
|
FIELD_CMOTIONTRANSFORM = 0x40,
|
||||||
|
FIELD_CMOTIONTRANSFORM_WORLDSPACE = 0x41,
|
||||||
|
FIELD_ATTACHMENT_HANDLE = 0x42,
|
||||||
|
FIELD_AMMO_INDEX = 0x43,
|
||||||
|
FIELD_CONDITION_ID = 0x44,
|
||||||
|
FIELD_AI_SCHEDULE_BITS = 0x45,
|
||||||
|
FIELD_MODIFIER_HANDLE = 0x46,
|
||||||
|
FIELD_ROTATION_VECTOR = 0x47,
|
||||||
|
FIELD_ROTATION_VECTOR_WORLDSPACE = 0x48,
|
||||||
|
FIELD_HVDATA = 0x49,
|
||||||
|
FIELD_SCALE32 = 0x4A,
|
||||||
|
FIELD_STRING_AND_TOKEN = 0x4B,
|
||||||
|
FIELD_ENGINE_TIME = 0x4C,
|
||||||
|
FIELD_ENGINE_TICK = 0x4D,
|
||||||
|
FIELD_WORLD_GROUP_ID = 0x4E,
|
||||||
|
FIELD_GLOBALSYMBOL = 0x4F,
|
||||||
|
FIELD_TYPECOUNT = 0x50
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 2
|
// Members count: 3
|
||||||
|
#[repr(u32)]
|
||||||
|
pub enum ThreeState_t {
|
||||||
|
TRS_FALSE = 0x0,
|
||||||
|
TRS_TRUE = 0x1,
|
||||||
|
TRS_NONE = 0x2
|
||||||
|
}
|
||||||
|
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||||
|
// Fields count: 1
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CExampleSchemaVData_Monomorphic {
|
pub mod CExampleSchemaVData_PolymorphicDerivedA {
|
||||||
pub const m_nExample1: usize = 0x0; // int32
|
pub const m_nDerivedA: usize = 0x10; // int32
|
||||||
pub const m_nExample2: usize = 0x4; // int32
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 1
|
||||||
@ -38,30 +124,17 @@ pub mod cs2_dumper {
|
|||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CExampleSchemaVData_PolymorphicDerivedA {
|
|
||||||
pub const m_nDerivedA: usize = 0x10; // int32
|
|
||||||
}
|
|
||||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CExampleSchemaVData_PolymorphicDerivedB {
|
pub mod CExampleSchemaVData_PolymorphicDerivedB {
|
||||||
pub const m_nDerivedB: usize = 0x10; // int32
|
pub const m_nDerivedB: usize = 0x10; // int32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 0
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MResourceTypeForInfoType
|
// MGetKV3ClassDefaults
|
||||||
pub mod InfoForResourceTypeCResourceManifestInternal {
|
pub mod CExampleSchemaVData_Monomorphic {
|
||||||
}
|
pub const m_nExample1: usize = 0x0; // int32
|
||||||
// Parent: None
|
pub const m_nExample2: usize = 0x4; // int32
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCDOTAPatchNotesList {
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
11047
output/server.dll.cs
11047
output/server.dll.cs
File diff suppressed because it is too large
Load Diff
11047
output/server.dll.hpp
11047
output/server.dll.hpp
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
11175
output/server.dll.rs
11175
output/server.dll.rs
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,41 +1,6 @@
|
|||||||
{
|
{
|
||||||
"soundsystem.dll": {
|
"soundsystem.dll": {
|
||||||
"classes": {
|
"classes": {
|
||||||
"CCompressor__Color__": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CCompressor__QuaternionStorage__": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CCompressor__Vector2D__": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CCompressor__Vector4D__": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CCompressor__Vector__": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CCompressor__bool__": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CCompressor__int32__": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CDSPMixgroupModifier": {
|
"CDSPMixgroupModifier": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_flListenerReverbModifierWhenSourceReverbIsActive": 24,
|
"m_flListenerReverbModifierWhenSourceReverbIsActive": 24,
|
||||||
@ -66,36 +31,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CFeMorphLayer": {
|
|
||||||
"fields": {
|
|
||||||
"m_GoalDamping": 112,
|
|
||||||
"m_GoalStrength": 88,
|
|
||||||
"m_Gravity": 64,
|
|
||||||
"m_InitPos": 40,
|
|
||||||
"m_Name": 0,
|
|
||||||
"m_Nodes": 16,
|
|
||||||
"m_nNameHash": 8
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CFeVertexMapBuildArray": {
|
|
||||||
"fields": {
|
|
||||||
"m_Array": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CSosGroupActionLimitSchema": {
|
"CSosGroupActionLimitSchema": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_nMaxCount": 24,
|
"m_nMaxCount": 24,
|
||||||
@ -315,16 +250,6 @@
|
|||||||
],
|
],
|
||||||
"parent": "CVoiceContainerBase"
|
"parent": "CVoiceContainerBase"
|
||||||
},
|
},
|
||||||
"CVoiceContainerDefault": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CVoiceContainerBase"
|
|
||||||
},
|
|
||||||
"CVoiceContainerEngineSound": {
|
"CVoiceContainerEngineSound": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_SoundToPlay": 96,
|
"m_SoundToPlay": 96,
|
||||||
@ -421,267 +346,6 @@
|
|||||||
],
|
],
|
||||||
"parent": "CVoiceContainerBase"
|
"parent": "CVoiceContainerBase"
|
||||||
},
|
},
|
||||||
"C_OP_CollideWithParentParticles": {
|
|
||||||
"fields": {
|
|
||||||
"m_flParentRadiusScale": 448,
|
|
||||||
"m_flRadiusScale": 792
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunctionConstraint"
|
|
||||||
},
|
|
||||||
"C_OP_CollideWithSelf": {
|
|
||||||
"fields": {
|
|
||||||
"m_flMinimumSpeed": 792,
|
|
||||||
"m_flRadiusScale": 448
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunctionConstraint"
|
|
||||||
},
|
|
||||||
"C_OP_ConstrainDistance": {
|
|
||||||
"fields": {
|
|
||||||
"m_CenterOffset": 1140,
|
|
||||||
"m_bGlobalCenter": 1152,
|
|
||||||
"m_fMaxDistance": 792,
|
|
||||||
"m_fMinDistance": 448,
|
|
||||||
"m_nControlPointNumber": 1136
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunctionConstraint"
|
|
||||||
},
|
|
||||||
"C_OP_ConstrainDistanceToPath": {
|
|
||||||
"fields": {
|
|
||||||
"m_PathParameters": 464,
|
|
||||||
"m_fMinDistance": 448,
|
|
||||||
"m_flMaxDistance0": 452,
|
|
||||||
"m_flMaxDistance1": 460,
|
|
||||||
"m_flMaxDistanceMid": 456,
|
|
||||||
"m_flTravelTime": 528,
|
|
||||||
"m_nFieldScale": 532,
|
|
||||||
"m_nManualTField": 536
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunctionConstraint"
|
|
||||||
},
|
|
||||||
"C_OP_ConstrainDistanceToUserSpecifiedPath": {
|
|
||||||
"fields": {
|
|
||||||
"m_bLoopedPath": 460,
|
|
||||||
"m_fMinDistance": 448,
|
|
||||||
"m_flMaxDistance": 452,
|
|
||||||
"m_flTimeScale": 456,
|
|
||||||
"m_pointList": 464
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunctionConstraint"
|
|
||||||
},
|
|
||||||
"C_OP_PlanarConstraint": {
|
|
||||||
"fields": {
|
|
||||||
"m_PlaneNormal": 460,
|
|
||||||
"m_PointOnPlane": 448,
|
|
||||||
"m_bGlobalNormal": 477,
|
|
||||||
"m_bGlobalOrigin": 476,
|
|
||||||
"m_bUseOldCode": 1168,
|
|
||||||
"m_flMaximumDistanceToCP": 824,
|
|
||||||
"m_flRadiusScale": 480,
|
|
||||||
"m_nControlPointNumber": 472
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunctionConstraint"
|
|
||||||
},
|
|
||||||
"C_OP_WorldCollideConstraint": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunctionConstraint"
|
|
||||||
},
|
|
||||||
"CovMatrix3": {
|
|
||||||
"fields": {
|
|
||||||
"m_flXY": 12,
|
|
||||||
"m_flXZ": 16,
|
|
||||||
"m_flYZ": 20,
|
|
||||||
"m_vDiag": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"Dop26_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_flSupport": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"FeBuildBoxRigid_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_nPriority": 64,
|
|
||||||
"m_nVertexMapHash": 68
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "FeBoxRigid_t"
|
|
||||||
},
|
|
||||||
"FeBuildSphereRigid_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_nPriority": 32,
|
|
||||||
"m_nVertexMapHash": 36
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "FeSphereRigid_t"
|
|
||||||
},
|
|
||||||
"FeBuildTaperedCapsuleRigid_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_nPriority": 48,
|
|
||||||
"m_nVertexMapHash": 52
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "FeTaperedCapsuleRigid_t"
|
|
||||||
},
|
|
||||||
"FeFitInfluence_t": {
|
|
||||||
"fields": {
|
|
||||||
"flWeight": 4,
|
|
||||||
"nMatrixNode": 8,
|
|
||||||
"nVertexNode": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"FeProxyVertexMap_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_Name": 0,
|
|
||||||
"m_flWeight": 8
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"FeSourceEdge_t": {
|
|
||||||
"fields": {
|
|
||||||
"nNode": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"FeVertexMapBuild_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_Color": 12,
|
|
||||||
"m_VertexMapName": 0,
|
|
||||||
"m_Weights": 24,
|
|
||||||
"m_flVolumetricSolveStrength": 16,
|
|
||||||
"m_nNameHash": 8,
|
|
||||||
"m_nScaleSourceNode": 20
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"FourCovMatrices3": {
|
|
||||||
"fields": {
|
|
||||||
"m_flXY": 48,
|
|
||||||
"m_flXZ": 64,
|
|
||||||
"m_flYZ": 80,
|
|
||||||
"m_vDiag": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"KeyValues": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"RnCapsule_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_flRadius": 24,
|
|
||||||
"m_vCenter": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"SelectedEditItemInfo_t": {
|
"SelectedEditItemInfo_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_EditItems": 0
|
"m_EditItems": 0
|
||||||
@ -1113,6 +777,199 @@
|
|||||||
"parent": null
|
"parent": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"ActionType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"SOS_ACTION_LIMITER": 1,
|
||||||
|
"SOS_ACTION_NONE": 0,
|
||||||
|
"SOS_ACTION_SET_SOUNDEVENT_PARAM": 4,
|
||||||
|
"SOS_ACTION_SOUNDEVENT_CLUSTER": 5,
|
||||||
|
"SOS_ACTION_TIME_BLOCK_LIMITER": 3,
|
||||||
|
"SOS_ACTION_TIME_LIMIT": 2
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"SosActionSortType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"SOS_SORTTYPE_HIGHEST": 0,
|
||||||
|
"SOS_SORTTYPE_LOWEST": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"SosActionStopType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"SOS_STOPTYPE_NONE": 0,
|
||||||
|
"SOS_STOPTYPE_OPVAR": 2,
|
||||||
|
"SOS_STOPTYPE_TIME": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"SosEditItemType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"SOS_EDIT_ITEM_TYPE_FIELD": 5,
|
||||||
|
"SOS_EDIT_ITEM_TYPE_LIBRARYSTACKS": 2,
|
||||||
|
"SOS_EDIT_ITEM_TYPE_OPERATOR": 4,
|
||||||
|
"SOS_EDIT_ITEM_TYPE_SOUNDEVENT": 1,
|
||||||
|
"SOS_EDIT_ITEM_TYPE_SOUNDEVENTS": 0,
|
||||||
|
"SOS_EDIT_ITEM_TYPE_STACK": 3
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"SosGroupType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"SOS_GROUPTYPE_DYNAMIC": 0,
|
||||||
|
"SOS_GROUPTYPE_STATIC": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"VMixChannelOperation_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"VMIX_CHAN_LEFT": 1,
|
||||||
|
"VMIX_CHAN_MID_SIDE": 5,
|
||||||
|
"VMIX_CHAN_MONO": 4,
|
||||||
|
"VMIX_CHAN_RIGHT": 2,
|
||||||
|
"VMIX_CHAN_STEREO": 0,
|
||||||
|
"VMIX_CHAN_SWAP": 3
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"VMixFilterSlope_t": {
|
||||||
|
"alignment": 1,
|
||||||
|
"members": {
|
||||||
|
"FILTER_SLOPE_12dB": 4,
|
||||||
|
"FILTER_SLOPE_1POLE_12dB": 1,
|
||||||
|
"FILTER_SLOPE_1POLE_18dB": 2,
|
||||||
|
"FILTER_SLOPE_1POLE_24dB": 3,
|
||||||
|
"FILTER_SLOPE_1POLE_6dB": 0,
|
||||||
|
"FILTER_SLOPE_24dB": 5,
|
||||||
|
"FILTER_SLOPE_36dB": 6,
|
||||||
|
"FILTER_SLOPE_48dB": 7,
|
||||||
|
"FILTER_SLOPE_MAX": 7
|
||||||
|
},
|
||||||
|
"type": "uint8"
|
||||||
|
},
|
||||||
|
"VMixFilterType_t": {
|
||||||
|
"alignment": 2,
|
||||||
|
"members": {
|
||||||
|
"FILTER_ALLPASS": 7,
|
||||||
|
"FILTER_BANDPASS": 2,
|
||||||
|
"FILTER_HIGHPASS": 1,
|
||||||
|
"FILTER_HIGH_SHELF": 6,
|
||||||
|
"FILTER_LOWPASS": 0,
|
||||||
|
"FILTER_LOW_SHELF": 5,
|
||||||
|
"FILTER_NOTCH": 3,
|
||||||
|
"FILTER_PASSTHROUGH": 8,
|
||||||
|
"FILTER_PEAKING_EQ": 4,
|
||||||
|
"FILTER_UNKNOWN": -1
|
||||||
|
},
|
||||||
|
"type": "uint16"
|
||||||
|
},
|
||||||
|
"VMixLFOShape_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"LFO_SHAPE_NOISE": 4,
|
||||||
|
"LFO_SHAPE_SAW": 3,
|
||||||
|
"LFO_SHAPE_SINE": 0,
|
||||||
|
"LFO_SHAPE_SQUARE": 1,
|
||||||
|
"LFO_SHAPE_TRI": 2
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"VMixPannerType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"PANNER_TYPE_EQUAL_POWER": 1,
|
||||||
|
"PANNER_TYPE_LINEAR": 0
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"VMixProcessorType_t": {
|
||||||
|
"alignment": 2,
|
||||||
|
"members": {
|
||||||
|
"VPROCESSOR_AUTOFILTER": 24,
|
||||||
|
"VPROCESSOR_BOXVERB": 9,
|
||||||
|
"VPROCESSOR_CONVOLUTION": 18,
|
||||||
|
"VPROCESSOR_DELAY": 6,
|
||||||
|
"VPROCESSOR_DIFFUSOR": 8,
|
||||||
|
"VPROCESSOR_DYNAMICS": 4,
|
||||||
|
"VPROCESSOR_DYNAMICS_3BAND": 19,
|
||||||
|
"VPROCESSOR_DYNAMICS_COMPRESSOR": 20,
|
||||||
|
"VPROCESSOR_EFFECT_CHAIN": 27,
|
||||||
|
"VPROCESSOR_ENVELOPE": 16,
|
||||||
|
"VPROCESSOR_EQ8": 15,
|
||||||
|
"VPROCESSOR_FILTER": 13,
|
||||||
|
"VPROCESSOR_FREEVERB": 10,
|
||||||
|
"VPROCESSOR_FULLWAVE_INTEGRATOR": 12,
|
||||||
|
"VPROCESSOR_MOD_DELAY": 7,
|
||||||
|
"VPROCESSOR_OSC": 25,
|
||||||
|
"VPROCESSOR_PANNER": 22,
|
||||||
|
"VPROCESSOR_PLATEVERB": 11,
|
||||||
|
"VPROCESSOR_PRESETDSP": 5,
|
||||||
|
"VPROCESSOR_RT_PITCH": 2,
|
||||||
|
"VPROCESSOR_SHAPER": 21,
|
||||||
|
"VPROCESSOR_STEAMAUDIO_DIRECT": 29,
|
||||||
|
"VPROCESSOR_STEAMAUDIO_HRTF": 3,
|
||||||
|
"VPROCESSOR_STEAMAUDIO_PATHING": 14,
|
||||||
|
"VPROCESSOR_STEAMAUDIO_REVERB": 1,
|
||||||
|
"VPROCESSOR_STEREODELAY": 26,
|
||||||
|
"VPROCESSOR_SUBGRAPH_SWITCH": 28,
|
||||||
|
"VPROCESSOR_UNKNOWN": 0,
|
||||||
|
"VPROCESSOR_UTILITY": 23,
|
||||||
|
"VPROCESSOR_VOCODER": 17
|
||||||
|
},
|
||||||
|
"type": "uint16"
|
||||||
|
},
|
||||||
|
"VMixSubgraphSwitchInterpolationType_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"SUBGRAPH_INTERPOLATION_KEEP_LAST_SUBGRAPH_RUNNING": 2,
|
||||||
|
"SUBGRAPH_INTERPOLATION_TEMPORAL_CROSSFADE": 0,
|
||||||
|
"SUBGRAPH_INTERPOLATION_TEMPORAL_FADE_OUT": 1
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
},
|
||||||
|
"soundlevel_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"SNDLVL_100dB": 100,
|
||||||
|
"SNDLVL_105dB": 105,
|
||||||
|
"SNDLVL_110dB": 110,
|
||||||
|
"SNDLVL_120dB": 120,
|
||||||
|
"SNDLVL_130dB": 130,
|
||||||
|
"SNDLVL_140dB": 140,
|
||||||
|
"SNDLVL_150dB": 150,
|
||||||
|
"SNDLVL_180dB": 180,
|
||||||
|
"SNDLVL_20dB": 20,
|
||||||
|
"SNDLVL_25dB": 25,
|
||||||
|
"SNDLVL_30dB": 30,
|
||||||
|
"SNDLVL_35dB": 35,
|
||||||
|
"SNDLVL_40dB": 40,
|
||||||
|
"SNDLVL_45dB": 45,
|
||||||
|
"SNDLVL_50dB": 50,
|
||||||
|
"SNDLVL_55dB": 55,
|
||||||
|
"SNDLVL_60dB": 60,
|
||||||
|
"SNDLVL_65dB": 65,
|
||||||
|
"SNDLVL_70dB": 70,
|
||||||
|
"SNDLVL_75dB": 75,
|
||||||
|
"SNDLVL_80dB": 80,
|
||||||
|
"SNDLVL_85dB": 85,
|
||||||
|
"SNDLVL_90dB": 90,
|
||||||
|
"SNDLVL_95dB": 95,
|
||||||
|
"SNDLVL_GUNFIRE": 140,
|
||||||
|
"SNDLVL_IDLE": 60,
|
||||||
|
"SNDLVL_NONE": 0,
|
||||||
|
"SNDLVL_NORM": 75,
|
||||||
|
"SNDLVL_STATIC": 66,
|
||||||
|
"SNDLVL_TALKING": 80
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,293 +1,27 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
namespace CS2Dumper.Schemas {
|
namespace CS2Dumper.Schemas {
|
||||||
// Module: worldrenderer.dll
|
// Module: worldrenderer.dll
|
||||||
// Classes count: 47
|
// Classes count: 23
|
||||||
// Enums count: 0
|
// Enums count: 1
|
||||||
public static class WorldrendererDll {
|
public static class WorldrendererDll {
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 7
|
// Members count: 13
|
||||||
//
|
public enum ObjectTypeFlags_t : uint {
|
||||||
// Metadata:
|
OBJECT_TYPE_NONE = 0x0,
|
||||||
// MGetKV3ClassDefaults
|
OBJECT_TYPE_MODEL = 0x8,
|
||||||
public static class EntityIOConnectionData_t {
|
OBJECT_TYPE_BLOCK_LIGHT = 0x10,
|
||||||
public const nint m_outputName = 0x0; // CUtlString
|
OBJECT_TYPE_NO_SHADOWS = 0x20,
|
||||||
public const nint m_targetType = 0x8; // uint32
|
OBJECT_TYPE_WORLDSPACE_TEXURE_BLEND = 0x40,
|
||||||
public const nint m_targetName = 0x10; // CUtlString
|
OBJECT_TYPE_DISABLED_IN_LOW_QUALITY = 0x80,
|
||||||
public const nint m_inputName = 0x18; // CUtlString
|
OBJECT_TYPE_NO_SUN_SHADOWS = 0x100,
|
||||||
public const nint m_overrideParam = 0x20; // CUtlString
|
OBJECT_TYPE_RENDER_WITH_DYNAMIC = 0x200,
|
||||||
public const nint m_flDelay = 0x28; // float32
|
OBJECT_TYPE_RENDER_TO_CUBEMAPS = 0x400,
|
||||||
public const nint m_nTimesToFire = 0x2C; // int32
|
OBJECT_TYPE_MODEL_HAS_LODS = 0x800,
|
||||||
}
|
OBJECT_TYPE_OVERLAY = 0x2000,
|
||||||
// Parent: None
|
OBJECT_TYPE_PRECOMPUTED_VISMEMBERS = 0x4000,
|
||||||
// Fields count: 2
|
OBJECT_TYPE_STATIC_CUBE_MAP = 0x8000
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class EntityKeyValueData_t {
|
|
||||||
public const nint m_connections = 0x8; // CUtlVector<EntityIOConnectionData_t>
|
|
||||||
public const nint m_keyValuesData = 0x20; // CUtlBinaryBlock
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class PermEntityLumpData_t {
|
|
||||||
public const nint m_name = 0x8; // CUtlString
|
|
||||||
public const nint m_hammerUniqueId = 0x10; // CUtlString
|
|
||||||
public const nint m_childLumps = 0x18; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
|
||||||
public const nint m_entityKeyValues = 0x30; // CUtlLeanVector<EntityKeyValueData_t>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 14
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class SceneObject_t {
|
|
||||||
public const nint m_nObjectID = 0x0; // uint32
|
|
||||||
public const nint m_vTransform = 0x4; // Vector4D[3]
|
|
||||||
public const nint m_flFadeStartDistance = 0x34; // float32
|
|
||||||
public const nint m_flFadeEndDistance = 0x38; // float32
|
|
||||||
public const nint m_vTintColor = 0x3C; // Vector4D
|
|
||||||
public const nint m_skin = 0x50; // CUtlString
|
|
||||||
public const nint m_nObjectTypeFlags = 0x58; // ObjectTypeFlags_t
|
|
||||||
public const nint m_vLightingOrigin = 0x5C; //
|
|
||||||
public const nint m_nOverlayRenderOrder = 0x68; // int16
|
|
||||||
public const nint m_nLODOverride = 0x6A; // int16
|
|
||||||
public const nint m_nCubeMapPrecomputedHandshake = 0x6C; // int32
|
|
||||||
public const nint m_nLightProbeVolumePrecomputedHandshake = 0x70; // int32
|
|
||||||
public const nint m_renderableModel = 0x78; // CStrongHandle<InfoForResourceTypeCModel>
|
|
||||||
public const nint m_renderable = 0x80; // CStrongHandle<InfoForResourceTypeCRenderMesh>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class BaseSceneObjectOverride_t {
|
|
||||||
public const nint m_nSceneObjectIndex = 0x0; // uint32
|
|
||||||
}
|
|
||||||
// Parent: BaseSceneObjectOverride_t
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class ExtraVertexStreamOverride_t {
|
|
||||||
public const nint m_nSubSceneObject = 0x4; // uint32
|
|
||||||
public const nint m_nDrawCallIndex = 0x8; // uint32
|
|
||||||
public const nint m_nAdditionalMeshDrawPrimitiveFlags = 0xC; // MeshDrawPrimitiveFlags_t
|
|
||||||
public const nint m_extraBufferBinding = 0x10; // CRenderBufferBinding
|
|
||||||
}
|
|
||||||
// Parent: BaseSceneObjectOverride_t
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class MaterialOverride_t {
|
|
||||||
public const nint m_nSubSceneObject = 0x4; // uint32
|
|
||||||
public const nint m_nDrawCallIndex = 0x8; // uint32
|
|
||||||
public const nint m_pMaterial = 0x10; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 10
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class InfoOverlayData_t {
|
|
||||||
public const nint m_transform = 0x0; // matrix3x4_t
|
|
||||||
public const nint m_flWidth = 0x30; // float32
|
|
||||||
public const nint m_flHeight = 0x34; // float32
|
|
||||||
public const nint m_flDepth = 0x38; // float32
|
|
||||||
public const nint m_vUVStart = 0x3C; // Vector2D
|
|
||||||
public const nint m_vUVEnd = 0x44; // Vector2D
|
|
||||||
public const nint m_pMaterial = 0x50; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
|
||||||
public const nint m_nRenderOrder = 0x58; // int32
|
|
||||||
public const nint m_vTintColor = 0x5C; // Vector4D
|
|
||||||
public const nint m_nSequenceOverride = 0x6C; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class BakedLightingInfo_t {
|
|
||||||
public const nint m_nLightmapVersionNumber = 0x0; // uint32
|
|
||||||
public const nint m_nLightmapGameVersionNumber = 0x4; // uint32
|
|
||||||
public const nint m_vLightmapUvScale = 0x8; // Vector2D
|
|
||||||
public const nint m_bHasLightmaps = 0x10; // bool
|
|
||||||
public const nint m_lightMaps = 0x18; // CUtlVector<CStrongHandle<InfoForResourceTypeCTextureBase>>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class WorldNodeOnDiskBufferData_t {
|
|
||||||
public const nint m_nElementCount = 0x0; // int32
|
|
||||||
public const nint m_nElementSizeInBytes = 0x4; // int32
|
|
||||||
public const nint m_inputLayoutFields = 0x8; // CUtlVector<RenderInputLayoutField_t>
|
|
||||||
public const nint m_pData = 0x20; // CUtlVector<uint8>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 9
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class AggregateMeshInfo_t {
|
|
||||||
public const nint m_nVisClusterMemberOffset = 0x0; // uint32
|
|
||||||
public const nint m_nVisClusterMemberCount = 0x4; // uint8
|
|
||||||
public const nint m_bHasTransform = 0x5; // bool
|
|
||||||
public const nint m_nDrawCallIndex = 0x6; // int16
|
|
||||||
public const nint m_nLODSetupIndex = 0x8; // int16
|
|
||||||
public const nint m_nLODGroupMask = 0xA; // uint8
|
|
||||||
public const nint m_vTintColor = 0xB; // Color
|
|
||||||
public const nint m_objectFlags = 0x10; // ObjectTypeFlags_t
|
|
||||||
public const nint m_nLightProbeVolumePrecomputedHandshake = 0x14; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class AggregateLODSetup_t {
|
|
||||||
public const nint m_vLODOrigin = 0x0; //
|
|
||||||
public const nint m_fMaxObjectScale = 0xC; // float32
|
|
||||||
public const nint m_fSwitchDistances = 0x10; // CUtlVectorFixedGrowable<float32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 8
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class AggregateSceneObject_t {
|
|
||||||
public const nint m_allFlags = 0x0; // ObjectTypeFlags_t
|
|
||||||
public const nint m_anyFlags = 0x4; // ObjectTypeFlags_t
|
|
||||||
public const nint m_nLayer = 0x8; // int16
|
|
||||||
public const nint m_aggregateMeshes = 0x10; // CUtlVector<AggregateMeshInfo_t>
|
|
||||||
public const nint m_lodSetups = 0x28; // CUtlVector<AggregateLODSetup_t>
|
|
||||||
public const nint m_visClusterMembership = 0x40; // CUtlVector<uint16>
|
|
||||||
public const nint m_fragmentTransforms = 0x58; // CUtlVector<matrix3x4_t>
|
|
||||||
public const nint m_renderableModel = 0x70; // CStrongHandle<InfoForResourceTypeCModel>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class ClutterTile_t {
|
|
||||||
public const nint m_nFirstInstance = 0x0; // uint32
|
|
||||||
public const nint m_nLastInstance = 0x4; // uint32
|
|
||||||
public const nint m_BoundsWs = 0x8; // AABB_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 8
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class ClutterSceneObject_t {
|
|
||||||
public const nint m_Bounds = 0x0; // AABB_t
|
|
||||||
public const nint m_flags = 0x18; // ObjectTypeFlags_t
|
|
||||||
public const nint m_nLayer = 0x1C; // int16
|
|
||||||
public const nint m_instancePositions = 0x20; // CUtlVector<Vector>
|
|
||||||
public const nint m_instanceScales = 0x50; // CUtlVector<float32>
|
|
||||||
public const nint m_instanceTintSrgb = 0x68; // CUtlVector<Color>
|
|
||||||
public const nint m_tiles = 0x80; // CUtlVector<ClutterTile_t>
|
|
||||||
public const nint m_renderableModel = 0x98; // CStrongHandle<InfoForResourceTypeCModel>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 13
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class WorldNode_t {
|
|
||||||
public const nint m_sceneObjects = 0x0; // CUtlVector<SceneObject_t>
|
|
||||||
public const nint m_infoOverlays = 0x18; // CUtlVector<InfoOverlayData_t>
|
|
||||||
public const nint m_visClusterMembership = 0x30; // CUtlVector<uint16>
|
|
||||||
public const nint m_aggregateSceneObjects = 0x48; // CUtlVector<AggregateSceneObject_t>
|
|
||||||
public const nint m_clutterSceneObjects = 0x60; // CUtlVector<ClutterSceneObject_t>
|
|
||||||
public const nint m_extraVertexStreamOverrides = 0x78; // CUtlVector<ExtraVertexStreamOverride_t>
|
|
||||||
public const nint m_materialOverrides = 0x90; // CUtlVector<MaterialOverride_t>
|
|
||||||
public const nint m_extraVertexStreams = 0xA8; // CUtlVector<WorldNodeOnDiskBufferData_t>
|
|
||||||
public const nint m_layerNames = 0xC0; // CUtlVector<CUtlString>
|
|
||||||
public const nint m_sceneObjectLayerIndices = 0xD8; // CUtlVector<uint8>
|
|
||||||
public const nint m_overlayLayerIndices = 0xF0; // CUtlVector<uint8>
|
|
||||||
public const nint m_grassFileName = 0x108; // CUtlString
|
|
||||||
public const nint m_nodeLightingInfo = 0x110; // BakedLightingInfo_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class WorldBuilderParams_t {
|
|
||||||
public const nint m_flMinDrawVolumeSize = 0x0; // float32
|
|
||||||
public const nint m_bBuildBakedLighting = 0x4; // bool
|
|
||||||
public const nint m_vLightmapUvScale = 0x8; // Vector2D
|
|
||||||
public const nint m_nCompileTimestamp = 0x10; // uint64
|
|
||||||
public const nint m_nCompileFingerprint = 0x18; // uint64
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 7
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class NodeData_t {
|
|
||||||
public const nint m_nParent = 0x0; // int32
|
|
||||||
public const nint m_vOrigin = 0x4; //
|
|
||||||
public const nint m_vMinBounds = 0x10; //
|
|
||||||
public const nint m_vMaxBounds = 0x1C; //
|
|
||||||
public const nint m_flMinimumDistance = 0x28; // float32
|
|
||||||
public const nint m_ChildNodeIndices = 0x30; // CUtlVector<int32>
|
|
||||||
public const nint m_worldNodePrefix = 0x48; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class World_t {
|
|
||||||
public const nint m_builderParams = 0x0; // WorldBuilderParams_t
|
|
||||||
public const nint m_worldNodes = 0x20; // CUtlVector<NodeData_t>
|
|
||||||
public const nint m_worldLightingInfo = 0x38; // BakedLightingInfo_t
|
|
||||||
public const nint m_entityLumps = 0x68; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class VoxelVisBlockOffset_t {
|
|
||||||
public const nint m_nOffset = 0x0; // uint32
|
|
||||||
public const nint m_nElementCount = 0x4; // uint32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 13
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CVoxelVisibility {
|
|
||||||
public const nint m_nBaseClusterCount = 0x40; // uint32
|
|
||||||
public const nint m_nPVSBytesPerCluster = 0x44; // uint32
|
|
||||||
public const nint m_vMinBounds = 0x48; //
|
|
||||||
public const nint m_vMaxBounds = 0x54; //
|
|
||||||
public const nint m_flGridSize = 0x60; // float32
|
|
||||||
public const nint m_nSkyVisibilityCluster = 0x64; // uint32
|
|
||||||
public const nint m_nSunVisibilityCluster = 0x68; // uint32
|
|
||||||
public const nint m_NodeBlock = 0x6C; // VoxelVisBlockOffset_t
|
|
||||||
public const nint m_RegionBlock = 0x74; // VoxelVisBlockOffset_t
|
|
||||||
public const nint m_EnclosedClusterListBlock = 0x7C; // VoxelVisBlockOffset_t
|
|
||||||
public const nint m_EnclosedClustersBlock = 0x84; // VoxelVisBlockOffset_t
|
|
||||||
public const nint m_MasksBlock = 0x8C; // VoxelVisBlockOffset_t
|
|
||||||
public const nint m_nVisBlocks = 0x94; // VoxelVisBlockOffset_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeVMapResourceData_t {
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 11
|
// Fields count: 11
|
||||||
@ -319,255 +53,281 @@ namespace CS2Dumper.Schemas {
|
|||||||
public const nint m_CScriptComponent = 0x28; // CScriptComponent*
|
public const nint m_CScriptComponent = 0x28; // CScriptComponent*
|
||||||
public const nint m_bVisibleinPVS = 0x30; // bool
|
public const nint m_bVisibleinPVS = 0x30; // bool
|
||||||
}
|
}
|
||||||
// Parent: CVoiceContainerBase
|
// Parent: None
|
||||||
// Fields count: 7
|
// Fields count: 14
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CVoiceContainerRandomSampler {
|
public static class SceneObject_t {
|
||||||
public const nint m_flLoudAmplitude = 0x60; // float32
|
public const nint m_nObjectID = 0x0; // uint32
|
||||||
public const nint m_flLoudAmplitudeJitter = 0x64; // float32
|
public const nint m_vTransform = 0x4; // Vector4D[3]
|
||||||
public const nint m_flSoftAmplitude = 0x68; // float32
|
public const nint m_flFadeStartDistance = 0x34; // float32
|
||||||
public const nint m_flSoftAmplitudeJitter = 0x6C; // float32
|
public const nint m_flFadeEndDistance = 0x38; // float32
|
||||||
public const nint m_flLoudTimeJitter = 0x70; // float32
|
public const nint m_vTintColor = 0x3C; // Vector4D
|
||||||
public const nint m_flSoftTimeJitter = 0x74; // float32
|
public const nint m_skin = 0x50; // CUtlString
|
||||||
public const nint m_grainResources = 0x78; // CUtlVector<CStrongHandle<InfoForResourceTypeCVoiceContainerBase>>
|
public const nint m_nObjectTypeFlags = 0x58; // ObjectTypeFlags_t
|
||||||
|
public const nint m_vLightingOrigin = 0x5C; //
|
||||||
|
public const nint m_nOverlayRenderOrder = 0x68; // int16
|
||||||
|
public const nint m_nLODOverride = 0x6A; // int16
|
||||||
|
public const nint m_nCubeMapPrecomputedHandshake = 0x6C; // int32
|
||||||
|
public const nint m_nLightProbeVolumePrecomputedHandshake = 0x70; // int32
|
||||||
|
public const nint m_renderableModel = 0x78; // CStrongHandle<InfoForResourceTypeCModel>
|
||||||
|
public const nint m_renderable = 0x80; // CStrongHandle<InfoForResourceTypeCRenderMesh>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 6
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class VMixFilterDesc_t {
|
public static class AggregateLODSetup_t {
|
||||||
public const nint m_nFilterType = 0x0; // VMixFilterType_t
|
public const nint m_vLODOrigin = 0x0; //
|
||||||
public const nint m_nFilterSlope = 0x2; // VMixFilterSlope_t
|
public const nint m_fMaxObjectScale = 0xC; // float32
|
||||||
public const nint m_bEnabled = 0x3; // bool
|
public const nint m_fSwitchDistances = 0x10; // CUtlVectorFixedGrowable<float32>
|
||||||
public const nint m_fldbGain = 0x4; // float32
|
|
||||||
public const nint m_flCutoffFreq = 0x8; // float32
|
|
||||||
public const nint m_flQ = 0xC; // float32
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: BaseSceneObjectOverride_t
|
||||||
// Fields count: 1
|
// Fields count: 4
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class VMixEQ8Desc_t {
|
public static class ExtraVertexStreamOverride_t {
|
||||||
public const nint m_stages = 0x0; // VMixFilterDesc_t[8]
|
public const nint m_nSubSceneObject = 0x4; // uint32
|
||||||
|
public const nint m_nDrawCallIndex = 0x8; // uint32
|
||||||
|
public const nint m_nAdditionalMeshDrawPrimitiveFlags = 0xC; // MeshDrawPrimitiveFlags_t
|
||||||
|
public const nint m_extraBufferBinding = 0x10; // CRenderBufferBinding
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 7
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class VMixDelayDesc_t {
|
public static class ClutterTile_t {
|
||||||
public const nint m_feedbackFilter = 0x0; // VMixFilterDesc_t
|
public const nint m_nFirstInstance = 0x0; // uint32
|
||||||
public const nint m_bEnableFilter = 0x10; // bool
|
public const nint m_nLastInstance = 0x4; // uint32
|
||||||
public const nint m_flDelay = 0x14; // float32
|
public const nint m_BoundsWs = 0x8; // AABB_t
|
||||||
public const nint m_flDirectGain = 0x18; // float32
|
|
||||||
public const nint m_flDelayGain = 0x1C; // float32
|
|
||||||
public const nint m_flFeedbackGain = 0x20; // float32
|
|
||||||
public const nint m_flWidth = 0x24; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class VMixPannerDesc_t {
|
|
||||||
public const nint m_type = 0x0; // VMixPannerType_t
|
|
||||||
public const nint m_flStrength = 0x4; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCWorldNode {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCPanoramaStyle {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
public static class InfoForResourceTypeCDACGameDefsData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MPropertyCustomEditor
|
|
||||||
public static class CParticleCollectionFloatInput {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class ParticlePreviewBodyGroup_t {
|
|
||||||
public const nint m_bodyGroupName = 0x0; // CUtlString
|
|
||||||
public const nint m_nValue = 0x8; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 16
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class ParticlePreviewState_t {
|
|
||||||
public const nint m_previewModel = 0x0; // CUtlString
|
|
||||||
public const nint m_nModSpecificData = 0x8; // uint32
|
|
||||||
public const nint m_groundType = 0xC; // PetGroundType_t
|
|
||||||
public const nint m_sequenceName = 0x10; // CUtlString
|
|
||||||
public const nint m_nFireParticleOnSequenceFrame = 0x18; // int32
|
|
||||||
public const nint m_hitboxSetName = 0x20; // CUtlString
|
|
||||||
public const nint m_materialGroupName = 0x28; // CUtlString
|
|
||||||
public const nint m_vecBodyGroups = 0x30; // CUtlVector<ParticlePreviewBodyGroup_t>
|
|
||||||
public const nint m_flPlaybackSpeed = 0x48; // float32
|
|
||||||
public const nint m_flParticleSimulationRate = 0x4C; // float32
|
|
||||||
public const nint m_bShouldDrawHitboxes = 0x50; // bool
|
|
||||||
public const nint m_bShouldDrawAttachments = 0x51; // bool
|
|
||||||
public const nint m_bShouldDrawAttachmentNames = 0x52; // bool
|
|
||||||
public const nint m_bShouldDrawControlPointAxes = 0x53; // bool
|
|
||||||
public const nint m_bAnimationNonLooping = 0x54; // bool
|
|
||||||
public const nint m_vecPreviewGravity = 0x58; //
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class ParticleControlPointDriver_t {
|
|
||||||
public const nint m_iControlPoint = 0x0; // int32
|
|
||||||
public const nint m_iAttachType = 0x4; // ParticleAttachment_t
|
|
||||||
public const nint m_attachmentName = 0x8; // CUtlString
|
|
||||||
public const nint m_vecOffset = 0x10; //
|
|
||||||
public const nint m_angOffset = 0x1C; // QAngle
|
|
||||||
public const nint m_entityName = 0x28; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class IParticleSystemDefinition {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 18
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CParticleVisibilityInputs {
|
|
||||||
public const nint m_flCameraBias = 0x0; // float32
|
|
||||||
public const nint m_nCPin = 0x4; // int32
|
|
||||||
public const nint m_flProxyRadius = 0x8; // float32
|
|
||||||
public const nint m_flInputMin = 0xC; // float32
|
|
||||||
public const nint m_flInputMax = 0x10; // float32
|
|
||||||
public const nint m_flNoPixelVisibilityFallback = 0x14; // float32
|
|
||||||
public const nint m_flDistanceInputMin = 0x18; // float32
|
|
||||||
public const nint m_flDistanceInputMax = 0x1C; // float32
|
|
||||||
public const nint m_flDotInputMin = 0x20; // float32
|
|
||||||
public const nint m_flDotInputMax = 0x24; // float32
|
|
||||||
public const nint m_bDotCPAngles = 0x28; // bool
|
|
||||||
public const nint m_bDotCameraAngles = 0x29; // bool
|
|
||||||
public const nint m_flAlphaScaleMin = 0x2C; // float32
|
|
||||||
public const nint m_flAlphaScaleMax = 0x30; // float32
|
|
||||||
public const nint m_flRadiusScaleMin = 0x34; // float32
|
|
||||||
public const nint m_flRadiusScaleMax = 0x38; // float32
|
|
||||||
public const nint m_flRadiusScaleFOVBase = 0x3C; // float32
|
|
||||||
public const nint m_bRightEye = 0x40; // bool
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 8
|
// Fields count: 8
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CPathParameters {
|
public static class AggregateSceneObject_t {
|
||||||
public const nint m_nStartControlPointNumber = 0x0; // int32
|
public const nint m_allFlags = 0x0; // ObjectTypeFlags_t
|
||||||
public const nint m_nEndControlPointNumber = 0x4; // int32
|
public const nint m_anyFlags = 0x4; // ObjectTypeFlags_t
|
||||||
public const nint m_nBulgeControl = 0x8; // int32
|
public const nint m_nLayer = 0x8; // int16
|
||||||
public const nint m_flBulge = 0xC; // float32
|
public const nint m_aggregateMeshes = 0x10; // CUtlVector<AggregateMeshInfo_t>
|
||||||
public const nint m_flMidPoint = 0x10; // float32
|
public const nint m_lodSetups = 0x28; // CUtlVector<AggregateLODSetup_t>
|
||||||
public const nint m_vStartPointOffset = 0x14; //
|
public const nint m_visClusterMembership = 0x40; // CUtlVector<uint16>
|
||||||
public const nint m_vMidPointOffset = 0x20; //
|
public const nint m_fragmentTransforms = 0x58; // CUtlVector<matrix3x4_t>
|
||||||
public const nint m_vEndOffset = 0x2C; //
|
public const nint m_renderableModel = 0x70; // CStrongHandle<InfoForResourceTypeCModel>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 7
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class NodeData_t {
|
||||||
|
public const nint m_nParent = 0x0; // int32
|
||||||
|
public const nint m_vOrigin = 0x4; //
|
||||||
|
public const nint m_vMinBounds = 0x10; //
|
||||||
|
public const nint m_vMaxBounds = 0x1C; //
|
||||||
|
public const nint m_flMinimumDistance = 0x28; // float32
|
||||||
|
public const nint m_ChildNodeIndices = 0x30; // CUtlVector<int32>
|
||||||
|
public const nint m_worldNodePrefix = 0x48; // CUtlString
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 8
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class ClutterSceneObject_t {
|
||||||
|
public const nint m_Bounds = 0x0; // AABB_t
|
||||||
|
public const nint m_flags = 0x18; // ObjectTypeFlags_t
|
||||||
|
public const nint m_nLayer = 0x1C; // int16
|
||||||
|
public const nint m_instancePositions = 0x20; // CUtlVector<Vector>
|
||||||
|
public const nint m_instanceScales = 0x50; // CUtlVector<float32>
|
||||||
|
public const nint m_instanceTintSrgb = 0x68; // CUtlVector<Color>
|
||||||
|
public const nint m_tiles = 0x80; // CUtlVector<ClutterTile_t>
|
||||||
|
public const nint m_renderableModel = 0x98; // CStrongHandle<InfoForResourceTypeCModel>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 5
|
// Fields count: 5
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class ParticleChildrenInfo_t {
|
public static class WorldBuilderParams_t {
|
||||||
public const nint m_ChildRef = 0x0; // CStrongHandle<InfoForResourceTypeIParticleSystemDefinition>
|
public const nint m_flMinDrawVolumeSize = 0x0; // float32
|
||||||
public const nint m_flDelay = 0x8; // float32
|
public const nint m_bBuildBakedLighting = 0x4; // bool
|
||||||
public const nint m_bEndCap = 0xC; // bool
|
public const nint m_vLightmapUvScale = 0x8; // Vector2D
|
||||||
public const nint m_bDisableChild = 0xD; // bool
|
public const nint m_nCompileTimestamp = 0x10; // uint64
|
||||||
public const nint m_nDetailLevel = 0x10; // ParticleDetailLevel_t
|
public const nint m_nCompileFingerprint = 0x18; // uint64
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class PermEntityLumpData_t {
|
||||||
|
public const nint m_name = 0x8; // CUtlString
|
||||||
|
public const nint m_hammerUniqueId = 0x10; // CUtlString
|
||||||
|
public const nint m_childLumps = 0x18; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||||
|
public const nint m_entityKeyValues = 0x30; // CUtlLeanVector<EntityKeyValueData_t>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 13
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class WorldNode_t {
|
||||||
|
public const nint m_sceneObjects = 0x0; // CUtlVector<SceneObject_t>
|
||||||
|
public const nint m_infoOverlays = 0x18; // CUtlVector<InfoOverlayData_t>
|
||||||
|
public const nint m_visClusterMembership = 0x30; // CUtlVector<uint16>
|
||||||
|
public const nint m_aggregateSceneObjects = 0x48; // CUtlVector<AggregateSceneObject_t>
|
||||||
|
public const nint m_clutterSceneObjects = 0x60; // CUtlVector<ClutterSceneObject_t>
|
||||||
|
public const nint m_extraVertexStreamOverrides = 0x78; // CUtlVector<ExtraVertexStreamOverride_t>
|
||||||
|
public const nint m_materialOverrides = 0x90; // CUtlVector<MaterialOverride_t>
|
||||||
|
public const nint m_extraVertexStreams = 0xA8; // CUtlVector<WorldNodeOnDiskBufferData_t>
|
||||||
|
public const nint m_layerNames = 0xC0; // CUtlVector<CUtlString>
|
||||||
|
public const nint m_sceneObjectLayerIndices = 0xD8; // CUtlVector<uint8>
|
||||||
|
public const nint m_overlayLayerIndices = 0xF0; // CUtlVector<uint8>
|
||||||
|
public const nint m_grassFileName = 0x108; // CUtlString
|
||||||
|
public const nint m_nodeLightingInfo = 0x110; // BakedLightingInfo_t
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class BaseSceneObjectOverride_t {
|
||||||
|
public const nint m_nSceneObjectIndex = 0x0; // uint32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 7
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class EntityIOConnectionData_t {
|
||||||
|
public const nint m_outputName = 0x0; // CUtlString
|
||||||
|
public const nint m_targetType = 0x8; // uint32
|
||||||
|
public const nint m_targetName = 0x10; // CUtlString
|
||||||
|
public const nint m_inputName = 0x18; // CUtlString
|
||||||
|
public const nint m_overrideParam = 0x20; // CUtlString
|
||||||
|
public const nint m_flDelay = 0x28; // float32
|
||||||
|
public const nint m_nTimesToFire = 0x2C; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class BakedLightingInfo_t {
|
||||||
|
public const nint m_nLightmapVersionNumber = 0x0; // uint32
|
||||||
|
public const nint m_nLightmapGameVersionNumber = 0x4; // uint32
|
||||||
|
public const nint m_vLightmapUvScale = 0x8; // Vector2D
|
||||||
|
public const nint m_bHasLightmaps = 0x10; // bool
|
||||||
|
public const nint m_lightMaps = 0x18; // CUtlVector<CStrongHandle<InfoForResourceTypeCTextureBase>>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class ModelReference_t {
|
public static class VoxelVisBlockOffset_t {
|
||||||
public const nint m_model = 0x0; // CStrongHandle<InfoForResourceTypeCModel>
|
public const nint m_nOffset = 0x0; // uint32
|
||||||
public const nint m_flRelativeProbabilityOfSpawn = 0x8; // float32
|
public const nint m_nElementCount = 0x4; // uint32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 4
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class SequenceWeightedList_t {
|
public static class WorldNodeOnDiskBufferData_t {
|
||||||
public const nint m_nSequence = 0x0; // int32
|
public const nint m_nElementCount = 0x0; // int32
|
||||||
public const nint m_flRelativeWeight = 0x4; // float32
|
public const nint m_nElementSizeInBytes = 0x4; // int32
|
||||||
|
public const nint m_inputLayoutFields = 0x8; // CUtlVector<RenderInputLayoutField_t>
|
||||||
|
public const nint m_pData = 0x20; // CUtlVector<uint8>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 9
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CollisionGroupContext_t {
|
public static class AggregateMeshInfo_t {
|
||||||
public const nint m_nCollisionGroupNumber = 0x0; // int32
|
public const nint m_nVisClusterMemberOffset = 0x0; // uint32
|
||||||
|
public const nint m_nVisClusterMemberCount = 0x4; // uint8
|
||||||
|
public const nint m_bHasTransform = 0x5; // bool
|
||||||
|
public const nint m_nDrawCallIndex = 0x6; // int16
|
||||||
|
public const nint m_nLODSetupIndex = 0x8; // int16
|
||||||
|
public const nint m_nLODGroupMask = 0xA; // uint8
|
||||||
|
public const nint m_vTintColor = 0xB; // Color
|
||||||
|
public const nint m_objectFlags = 0x10; // ObjectTypeFlags_t
|
||||||
|
public const nint m_nLightProbeVolumePrecomputedHandshake = 0x14; // int32
|
||||||
}
|
}
|
||||||
// Parent: CParticleFunctionOperator
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 4
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CParticleFunctionPreEmission {
|
public static class World_t {
|
||||||
public const nint m_bRunOnce = 0x1C0; // bool
|
public const nint m_builderParams = 0x0; // WorldBuilderParams_t
|
||||||
|
public const nint m_worldNodes = 0x20; // CUtlVector<NodeData_t>
|
||||||
|
public const nint m_worldLightingInfo = 0x38; // BakedLightingInfo_t
|
||||||
|
public const nint m_entityLumps = 0x68; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||||
}
|
}
|
||||||
// Parent: CParticleFunction
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CParticleFunctionInitializer {
|
public static class InfoOverlayData_t {
|
||||||
public const nint m_nAssociatedEmitterIndex = 0x1B8; // int32
|
public const nint m_transform = 0x0; // matrix3x4_t
|
||||||
|
public const nint m_flWidth = 0x30; // float32
|
||||||
|
public const nint m_flHeight = 0x34; // float32
|
||||||
|
public const nint m_flDepth = 0x38; // float32
|
||||||
|
public const nint m_vUVStart = 0x3C; // Vector2D
|
||||||
|
public const nint m_vUVEnd = 0x44; // Vector2D
|
||||||
|
public const nint m_pMaterial = 0x50; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
||||||
|
public const nint m_nRenderOrder = 0x58; // int32
|
||||||
|
public const nint m_vTintColor = 0x5C; // Vector4D
|
||||||
|
public const nint m_nSequenceOverride = 0x6C; // int32
|
||||||
}
|
}
|
||||||
// Parent: CParticleFunction
|
// Parent: BaseSceneObjectOverride_t
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
public static class CParticleFunctionForce {
|
|
||||||
}
|
|
||||||
// Parent: CParticleFunction
|
|
||||||
// Fields count: 3
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
public static class CParticleFunctionRenderer {
|
public static class MaterialOverride_t {
|
||||||
public const nint VisibilityInputs = 0x1B8; // CParticleVisibilityInputs
|
public const nint m_nSubSceneObject = 0x4; // uint32
|
||||||
public const nint m_bCannotBeRefracted = 0x1FC; // bool
|
public const nint m_nDrawCallIndex = 0x8; // uint32
|
||||||
public const nint m_bSkipRenderingOnMobile = 0x1FD; // bool
|
public const nint m_pMaterial = 0x10; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class EntityKeyValueData_t {
|
||||||
|
public const nint m_connections = 0x8; // CUtlVector<EntityIOConnectionData_t>
|
||||||
|
public const nint m_keyValuesData = 0x20; // CUtlBinaryBlock
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 13
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
public static class CVoxelVisibility {
|
||||||
|
public const nint m_nBaseClusterCount = 0x40; // uint32
|
||||||
|
public const nint m_nPVSBytesPerCluster = 0x44; // uint32
|
||||||
|
public const nint m_vMinBounds = 0x48; //
|
||||||
|
public const nint m_vMaxBounds = 0x54; //
|
||||||
|
public const nint m_flGridSize = 0x60; // float32
|
||||||
|
public const nint m_nSkyVisibilityCluster = 0x64; // uint32
|
||||||
|
public const nint m_nSunVisibilityCluster = 0x68; // uint32
|
||||||
|
public const nint m_NodeBlock = 0x6C; // VoxelVisBlockOffset_t
|
||||||
|
public const nint m_RegionBlock = 0x74; // VoxelVisBlockOffset_t
|
||||||
|
public const nint m_EnclosedClusterListBlock = 0x7C; // VoxelVisBlockOffset_t
|
||||||
|
public const nint m_EnclosedClustersBlock = 0x84; // VoxelVisBlockOffset_t
|
||||||
|
public const nint m_MasksBlock = 0x8C; // VoxelVisBlockOffset_t
|
||||||
|
public const nint m_nVisBlocks = 0x94; // VoxelVisBlockOffset_t
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -8,292 +8,26 @@
|
|||||||
namespace cs2_dumper {
|
namespace cs2_dumper {
|
||||||
namespace schemas {
|
namespace schemas {
|
||||||
// Module: worldrenderer.dll
|
// Module: worldrenderer.dll
|
||||||
// Classes count: 47
|
// Classes count: 23
|
||||||
// Enums count: 0
|
// Enums count: 1
|
||||||
namespace worldrenderer_dll {
|
namespace worldrenderer_dll {
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 7
|
// Members count: 13
|
||||||
//
|
enum class ObjectTypeFlags_t : uint32_t {
|
||||||
// Metadata:
|
OBJECT_TYPE_NONE = 0x0,
|
||||||
// MGetKV3ClassDefaults
|
OBJECT_TYPE_MODEL = 0x8,
|
||||||
namespace EntityIOConnectionData_t {
|
OBJECT_TYPE_BLOCK_LIGHT = 0x10,
|
||||||
constexpr std::ptrdiff_t m_outputName = 0x0; // CUtlString
|
OBJECT_TYPE_NO_SHADOWS = 0x20,
|
||||||
constexpr std::ptrdiff_t m_targetType = 0x8; // uint32
|
OBJECT_TYPE_WORLDSPACE_TEXURE_BLEND = 0x40,
|
||||||
constexpr std::ptrdiff_t m_targetName = 0x10; // CUtlString
|
OBJECT_TYPE_DISABLED_IN_LOW_QUALITY = 0x80,
|
||||||
constexpr std::ptrdiff_t m_inputName = 0x18; // CUtlString
|
OBJECT_TYPE_NO_SUN_SHADOWS = 0x100,
|
||||||
constexpr std::ptrdiff_t m_overrideParam = 0x20; // CUtlString
|
OBJECT_TYPE_RENDER_WITH_DYNAMIC = 0x200,
|
||||||
constexpr std::ptrdiff_t m_flDelay = 0x28; // float32
|
OBJECT_TYPE_RENDER_TO_CUBEMAPS = 0x400,
|
||||||
constexpr std::ptrdiff_t m_nTimesToFire = 0x2C; // int32
|
OBJECT_TYPE_MODEL_HAS_LODS = 0x800,
|
||||||
}
|
OBJECT_TYPE_OVERLAY = 0x2000,
|
||||||
// Parent: None
|
OBJECT_TYPE_PRECOMPUTED_VISMEMBERS = 0x4000,
|
||||||
// Fields count: 2
|
OBJECT_TYPE_STATIC_CUBE_MAP = 0x8000
|
||||||
//
|
};
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace EntityKeyValueData_t {
|
|
||||||
constexpr std::ptrdiff_t m_connections = 0x8; // CUtlVector<EntityIOConnectionData_t>
|
|
||||||
constexpr std::ptrdiff_t m_keyValuesData = 0x20; // CUtlBinaryBlock
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace PermEntityLumpData_t {
|
|
||||||
constexpr std::ptrdiff_t m_name = 0x8; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_hammerUniqueId = 0x10; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_childLumps = 0x18; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
|
||||||
constexpr std::ptrdiff_t m_entityKeyValues = 0x30; // CUtlLeanVector<EntityKeyValueData_t>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 14
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace SceneObject_t {
|
|
||||||
constexpr std::ptrdiff_t m_nObjectID = 0x0; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_vTransform = 0x4; // Vector4D[3]
|
|
||||||
constexpr std::ptrdiff_t m_flFadeStartDistance = 0x34; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flFadeEndDistance = 0x38; // float32
|
|
||||||
constexpr std::ptrdiff_t m_vTintColor = 0x3C; // Vector4D
|
|
||||||
constexpr std::ptrdiff_t m_skin = 0x50; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_nObjectTypeFlags = 0x58; // ObjectTypeFlags_t
|
|
||||||
constexpr std::ptrdiff_t m_vLightingOrigin = 0x5C; //
|
|
||||||
constexpr std::ptrdiff_t m_nOverlayRenderOrder = 0x68; // int16
|
|
||||||
constexpr std::ptrdiff_t m_nLODOverride = 0x6A; // int16
|
|
||||||
constexpr std::ptrdiff_t m_nCubeMapPrecomputedHandshake = 0x6C; // int32
|
|
||||||
constexpr std::ptrdiff_t m_nLightProbeVolumePrecomputedHandshake = 0x70; // int32
|
|
||||||
constexpr std::ptrdiff_t m_renderableModel = 0x78; // CStrongHandle<InfoForResourceTypeCModel>
|
|
||||||
constexpr std::ptrdiff_t m_renderable = 0x80; // CStrongHandle<InfoForResourceTypeCRenderMesh>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace BaseSceneObjectOverride_t {
|
|
||||||
constexpr std::ptrdiff_t m_nSceneObjectIndex = 0x0; // uint32
|
|
||||||
}
|
|
||||||
// Parent: BaseSceneObjectOverride_t
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace ExtraVertexStreamOverride_t {
|
|
||||||
constexpr std::ptrdiff_t m_nSubSceneObject = 0x4; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_nDrawCallIndex = 0x8; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_nAdditionalMeshDrawPrimitiveFlags = 0xC; // MeshDrawPrimitiveFlags_t
|
|
||||||
constexpr std::ptrdiff_t m_extraBufferBinding = 0x10; // CRenderBufferBinding
|
|
||||||
}
|
|
||||||
// Parent: BaseSceneObjectOverride_t
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace MaterialOverride_t {
|
|
||||||
constexpr std::ptrdiff_t m_nSubSceneObject = 0x4; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_nDrawCallIndex = 0x8; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_pMaterial = 0x10; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 10
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace InfoOverlayData_t {
|
|
||||||
constexpr std::ptrdiff_t m_transform = 0x0; // matrix3x4_t
|
|
||||||
constexpr std::ptrdiff_t m_flWidth = 0x30; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flHeight = 0x34; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flDepth = 0x38; // float32
|
|
||||||
constexpr std::ptrdiff_t m_vUVStart = 0x3C; // Vector2D
|
|
||||||
constexpr std::ptrdiff_t m_vUVEnd = 0x44; // Vector2D
|
|
||||||
constexpr std::ptrdiff_t m_pMaterial = 0x50; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
|
||||||
constexpr std::ptrdiff_t m_nRenderOrder = 0x58; // int32
|
|
||||||
constexpr std::ptrdiff_t m_vTintColor = 0x5C; // Vector4D
|
|
||||||
constexpr std::ptrdiff_t m_nSequenceOverride = 0x6C; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace BakedLightingInfo_t {
|
|
||||||
constexpr std::ptrdiff_t m_nLightmapVersionNumber = 0x0; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_nLightmapGameVersionNumber = 0x4; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_vLightmapUvScale = 0x8; // Vector2D
|
|
||||||
constexpr std::ptrdiff_t m_bHasLightmaps = 0x10; // bool
|
|
||||||
constexpr std::ptrdiff_t m_lightMaps = 0x18; // CUtlVector<CStrongHandle<InfoForResourceTypeCTextureBase>>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace WorldNodeOnDiskBufferData_t {
|
|
||||||
constexpr std::ptrdiff_t m_nElementCount = 0x0; // int32
|
|
||||||
constexpr std::ptrdiff_t m_nElementSizeInBytes = 0x4; // int32
|
|
||||||
constexpr std::ptrdiff_t m_inputLayoutFields = 0x8; // CUtlVector<RenderInputLayoutField_t>
|
|
||||||
constexpr std::ptrdiff_t m_pData = 0x20; // CUtlVector<uint8>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 9
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace AggregateMeshInfo_t {
|
|
||||||
constexpr std::ptrdiff_t m_nVisClusterMemberOffset = 0x0; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_nVisClusterMemberCount = 0x4; // uint8
|
|
||||||
constexpr std::ptrdiff_t m_bHasTransform = 0x5; // bool
|
|
||||||
constexpr std::ptrdiff_t m_nDrawCallIndex = 0x6; // int16
|
|
||||||
constexpr std::ptrdiff_t m_nLODSetupIndex = 0x8; // int16
|
|
||||||
constexpr std::ptrdiff_t m_nLODGroupMask = 0xA; // uint8
|
|
||||||
constexpr std::ptrdiff_t m_vTintColor = 0xB; // Color
|
|
||||||
constexpr std::ptrdiff_t m_objectFlags = 0x10; // ObjectTypeFlags_t
|
|
||||||
constexpr std::ptrdiff_t m_nLightProbeVolumePrecomputedHandshake = 0x14; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace AggregateLODSetup_t {
|
|
||||||
constexpr std::ptrdiff_t m_vLODOrigin = 0x0; //
|
|
||||||
constexpr std::ptrdiff_t m_fMaxObjectScale = 0xC; // float32
|
|
||||||
constexpr std::ptrdiff_t m_fSwitchDistances = 0x10; // CUtlVectorFixedGrowable<float32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 8
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace AggregateSceneObject_t {
|
|
||||||
constexpr std::ptrdiff_t m_allFlags = 0x0; // ObjectTypeFlags_t
|
|
||||||
constexpr std::ptrdiff_t m_anyFlags = 0x4; // ObjectTypeFlags_t
|
|
||||||
constexpr std::ptrdiff_t m_nLayer = 0x8; // int16
|
|
||||||
constexpr std::ptrdiff_t m_aggregateMeshes = 0x10; // CUtlVector<AggregateMeshInfo_t>
|
|
||||||
constexpr std::ptrdiff_t m_lodSetups = 0x28; // CUtlVector<AggregateLODSetup_t>
|
|
||||||
constexpr std::ptrdiff_t m_visClusterMembership = 0x40; // CUtlVector<uint16>
|
|
||||||
constexpr std::ptrdiff_t m_fragmentTransforms = 0x58; // CUtlVector<matrix3x4_t>
|
|
||||||
constexpr std::ptrdiff_t m_renderableModel = 0x70; // CStrongHandle<InfoForResourceTypeCModel>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace ClutterTile_t {
|
|
||||||
constexpr std::ptrdiff_t m_nFirstInstance = 0x0; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_nLastInstance = 0x4; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_BoundsWs = 0x8; // AABB_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 8
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace ClutterSceneObject_t {
|
|
||||||
constexpr std::ptrdiff_t m_Bounds = 0x0; // AABB_t
|
|
||||||
constexpr std::ptrdiff_t m_flags = 0x18; // ObjectTypeFlags_t
|
|
||||||
constexpr std::ptrdiff_t m_nLayer = 0x1C; // int16
|
|
||||||
constexpr std::ptrdiff_t m_instancePositions = 0x20; // CUtlVector<Vector>
|
|
||||||
constexpr std::ptrdiff_t m_instanceScales = 0x50; // CUtlVector<float32>
|
|
||||||
constexpr std::ptrdiff_t m_instanceTintSrgb = 0x68; // CUtlVector<Color>
|
|
||||||
constexpr std::ptrdiff_t m_tiles = 0x80; // CUtlVector<ClutterTile_t>
|
|
||||||
constexpr std::ptrdiff_t m_renderableModel = 0x98; // CStrongHandle<InfoForResourceTypeCModel>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 13
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace WorldNode_t {
|
|
||||||
constexpr std::ptrdiff_t m_sceneObjects = 0x0; // CUtlVector<SceneObject_t>
|
|
||||||
constexpr std::ptrdiff_t m_infoOverlays = 0x18; // CUtlVector<InfoOverlayData_t>
|
|
||||||
constexpr std::ptrdiff_t m_visClusterMembership = 0x30; // CUtlVector<uint16>
|
|
||||||
constexpr std::ptrdiff_t m_aggregateSceneObjects = 0x48; // CUtlVector<AggregateSceneObject_t>
|
|
||||||
constexpr std::ptrdiff_t m_clutterSceneObjects = 0x60; // CUtlVector<ClutterSceneObject_t>
|
|
||||||
constexpr std::ptrdiff_t m_extraVertexStreamOverrides = 0x78; // CUtlVector<ExtraVertexStreamOverride_t>
|
|
||||||
constexpr std::ptrdiff_t m_materialOverrides = 0x90; // CUtlVector<MaterialOverride_t>
|
|
||||||
constexpr std::ptrdiff_t m_extraVertexStreams = 0xA8; // CUtlVector<WorldNodeOnDiskBufferData_t>
|
|
||||||
constexpr std::ptrdiff_t m_layerNames = 0xC0; // CUtlVector<CUtlString>
|
|
||||||
constexpr std::ptrdiff_t m_sceneObjectLayerIndices = 0xD8; // CUtlVector<uint8>
|
|
||||||
constexpr std::ptrdiff_t m_overlayLayerIndices = 0xF0; // CUtlVector<uint8>
|
|
||||||
constexpr std::ptrdiff_t m_grassFileName = 0x108; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_nodeLightingInfo = 0x110; // BakedLightingInfo_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace WorldBuilderParams_t {
|
|
||||||
constexpr std::ptrdiff_t m_flMinDrawVolumeSize = 0x0; // float32
|
|
||||||
constexpr std::ptrdiff_t m_bBuildBakedLighting = 0x4; // bool
|
|
||||||
constexpr std::ptrdiff_t m_vLightmapUvScale = 0x8; // Vector2D
|
|
||||||
constexpr std::ptrdiff_t m_nCompileTimestamp = 0x10; // uint64
|
|
||||||
constexpr std::ptrdiff_t m_nCompileFingerprint = 0x18; // uint64
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 7
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace NodeData_t {
|
|
||||||
constexpr std::ptrdiff_t m_nParent = 0x0; // int32
|
|
||||||
constexpr std::ptrdiff_t m_vOrigin = 0x4; //
|
|
||||||
constexpr std::ptrdiff_t m_vMinBounds = 0x10; //
|
|
||||||
constexpr std::ptrdiff_t m_vMaxBounds = 0x1C; //
|
|
||||||
constexpr std::ptrdiff_t m_flMinimumDistance = 0x28; // float32
|
|
||||||
constexpr std::ptrdiff_t m_ChildNodeIndices = 0x30; // CUtlVector<int32>
|
|
||||||
constexpr std::ptrdiff_t m_worldNodePrefix = 0x48; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace World_t {
|
|
||||||
constexpr std::ptrdiff_t m_builderParams = 0x0; // WorldBuilderParams_t
|
|
||||||
constexpr std::ptrdiff_t m_worldNodes = 0x20; // CUtlVector<NodeData_t>
|
|
||||||
constexpr std::ptrdiff_t m_worldLightingInfo = 0x38; // BakedLightingInfo_t
|
|
||||||
constexpr std::ptrdiff_t m_entityLumps = 0x68; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace VoxelVisBlockOffset_t {
|
|
||||||
constexpr std::ptrdiff_t m_nOffset = 0x0; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_nElementCount = 0x4; // uint32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 13
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CVoxelVisibility {
|
|
||||||
constexpr std::ptrdiff_t m_nBaseClusterCount = 0x40; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_nPVSBytesPerCluster = 0x44; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_vMinBounds = 0x48; //
|
|
||||||
constexpr std::ptrdiff_t m_vMaxBounds = 0x54; //
|
|
||||||
constexpr std::ptrdiff_t m_flGridSize = 0x60; // float32
|
|
||||||
constexpr std::ptrdiff_t m_nSkyVisibilityCluster = 0x64; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_nSunVisibilityCluster = 0x68; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_NodeBlock = 0x6C; // VoxelVisBlockOffset_t
|
|
||||||
constexpr std::ptrdiff_t m_RegionBlock = 0x74; // VoxelVisBlockOffset_t
|
|
||||||
constexpr std::ptrdiff_t m_EnclosedClusterListBlock = 0x7C; // VoxelVisBlockOffset_t
|
|
||||||
constexpr std::ptrdiff_t m_EnclosedClustersBlock = 0x84; // VoxelVisBlockOffset_t
|
|
||||||
constexpr std::ptrdiff_t m_MasksBlock = 0x8C; // VoxelVisBlockOffset_t
|
|
||||||
constexpr std::ptrdiff_t m_nVisBlocks = 0x94; // VoxelVisBlockOffset_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeVMapResourceData_t {
|
|
||||||
}
|
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 11
|
// Fields count: 11
|
||||||
//
|
//
|
||||||
@ -324,255 +58,281 @@ namespace cs2_dumper {
|
|||||||
constexpr std::ptrdiff_t m_CScriptComponent = 0x28; // CScriptComponent*
|
constexpr std::ptrdiff_t m_CScriptComponent = 0x28; // CScriptComponent*
|
||||||
constexpr std::ptrdiff_t m_bVisibleinPVS = 0x30; // bool
|
constexpr std::ptrdiff_t m_bVisibleinPVS = 0x30; // bool
|
||||||
}
|
}
|
||||||
// Parent: CVoiceContainerBase
|
// Parent: None
|
||||||
// Fields count: 7
|
// Fields count: 14
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CVoiceContainerRandomSampler {
|
namespace SceneObject_t {
|
||||||
constexpr std::ptrdiff_t m_flLoudAmplitude = 0x60; // float32
|
constexpr std::ptrdiff_t m_nObjectID = 0x0; // uint32
|
||||||
constexpr std::ptrdiff_t m_flLoudAmplitudeJitter = 0x64; // float32
|
constexpr std::ptrdiff_t m_vTransform = 0x4; // Vector4D[3]
|
||||||
constexpr std::ptrdiff_t m_flSoftAmplitude = 0x68; // float32
|
constexpr std::ptrdiff_t m_flFadeStartDistance = 0x34; // float32
|
||||||
constexpr std::ptrdiff_t m_flSoftAmplitudeJitter = 0x6C; // float32
|
constexpr std::ptrdiff_t m_flFadeEndDistance = 0x38; // float32
|
||||||
constexpr std::ptrdiff_t m_flLoudTimeJitter = 0x70; // float32
|
constexpr std::ptrdiff_t m_vTintColor = 0x3C; // Vector4D
|
||||||
constexpr std::ptrdiff_t m_flSoftTimeJitter = 0x74; // float32
|
constexpr std::ptrdiff_t m_skin = 0x50; // CUtlString
|
||||||
constexpr std::ptrdiff_t m_grainResources = 0x78; // CUtlVector<CStrongHandle<InfoForResourceTypeCVoiceContainerBase>>
|
constexpr std::ptrdiff_t m_nObjectTypeFlags = 0x58; // ObjectTypeFlags_t
|
||||||
|
constexpr std::ptrdiff_t m_vLightingOrigin = 0x5C; //
|
||||||
|
constexpr std::ptrdiff_t m_nOverlayRenderOrder = 0x68; // int16
|
||||||
|
constexpr std::ptrdiff_t m_nLODOverride = 0x6A; // int16
|
||||||
|
constexpr std::ptrdiff_t m_nCubeMapPrecomputedHandshake = 0x6C; // int32
|
||||||
|
constexpr std::ptrdiff_t m_nLightProbeVolumePrecomputedHandshake = 0x70; // int32
|
||||||
|
constexpr std::ptrdiff_t m_renderableModel = 0x78; // CStrongHandle<InfoForResourceTypeCModel>
|
||||||
|
constexpr std::ptrdiff_t m_renderable = 0x80; // CStrongHandle<InfoForResourceTypeCRenderMesh>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 6
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace VMixFilterDesc_t {
|
namespace AggregateLODSetup_t {
|
||||||
constexpr std::ptrdiff_t m_nFilterType = 0x0; // VMixFilterType_t
|
constexpr std::ptrdiff_t m_vLODOrigin = 0x0; //
|
||||||
constexpr std::ptrdiff_t m_nFilterSlope = 0x2; // VMixFilterSlope_t
|
constexpr std::ptrdiff_t m_fMaxObjectScale = 0xC; // float32
|
||||||
constexpr std::ptrdiff_t m_bEnabled = 0x3; // bool
|
constexpr std::ptrdiff_t m_fSwitchDistances = 0x10; // CUtlVectorFixedGrowable<float32>
|
||||||
constexpr std::ptrdiff_t m_fldbGain = 0x4; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flCutoffFreq = 0x8; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flQ = 0xC; // float32
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: BaseSceneObjectOverride_t
|
||||||
// Fields count: 1
|
// Fields count: 4
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace VMixEQ8Desc_t {
|
namespace ExtraVertexStreamOverride_t {
|
||||||
constexpr std::ptrdiff_t m_stages = 0x0; // VMixFilterDesc_t[8]
|
constexpr std::ptrdiff_t m_nSubSceneObject = 0x4; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_nDrawCallIndex = 0x8; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_nAdditionalMeshDrawPrimitiveFlags = 0xC; // MeshDrawPrimitiveFlags_t
|
||||||
|
constexpr std::ptrdiff_t m_extraBufferBinding = 0x10; // CRenderBufferBinding
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 7
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace VMixDelayDesc_t {
|
namespace ClutterTile_t {
|
||||||
constexpr std::ptrdiff_t m_feedbackFilter = 0x0; // VMixFilterDesc_t
|
constexpr std::ptrdiff_t m_nFirstInstance = 0x0; // uint32
|
||||||
constexpr std::ptrdiff_t m_bEnableFilter = 0x10; // bool
|
constexpr std::ptrdiff_t m_nLastInstance = 0x4; // uint32
|
||||||
constexpr std::ptrdiff_t m_flDelay = 0x14; // float32
|
constexpr std::ptrdiff_t m_BoundsWs = 0x8; // AABB_t
|
||||||
constexpr std::ptrdiff_t m_flDirectGain = 0x18; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flDelayGain = 0x1C; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flFeedbackGain = 0x20; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flWidth = 0x24; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace VMixPannerDesc_t {
|
|
||||||
constexpr std::ptrdiff_t m_type = 0x0; // VMixPannerType_t
|
|
||||||
constexpr std::ptrdiff_t m_flStrength = 0x4; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCWorldNode {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCPanoramaStyle {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
namespace InfoForResourceTypeCDACGameDefsData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MPropertyCustomEditor
|
|
||||||
namespace CParticleCollectionFloatInput {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace ParticlePreviewBodyGroup_t {
|
|
||||||
constexpr std::ptrdiff_t m_bodyGroupName = 0x0; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_nValue = 0x8; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 16
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace ParticlePreviewState_t {
|
|
||||||
constexpr std::ptrdiff_t m_previewModel = 0x0; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_nModSpecificData = 0x8; // uint32
|
|
||||||
constexpr std::ptrdiff_t m_groundType = 0xC; // PetGroundType_t
|
|
||||||
constexpr std::ptrdiff_t m_sequenceName = 0x10; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_nFireParticleOnSequenceFrame = 0x18; // int32
|
|
||||||
constexpr std::ptrdiff_t m_hitboxSetName = 0x20; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_materialGroupName = 0x28; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_vecBodyGroups = 0x30; // CUtlVector<ParticlePreviewBodyGroup_t>
|
|
||||||
constexpr std::ptrdiff_t m_flPlaybackSpeed = 0x48; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flParticleSimulationRate = 0x4C; // float32
|
|
||||||
constexpr std::ptrdiff_t m_bShouldDrawHitboxes = 0x50; // bool
|
|
||||||
constexpr std::ptrdiff_t m_bShouldDrawAttachments = 0x51; // bool
|
|
||||||
constexpr std::ptrdiff_t m_bShouldDrawAttachmentNames = 0x52; // bool
|
|
||||||
constexpr std::ptrdiff_t m_bShouldDrawControlPointAxes = 0x53; // bool
|
|
||||||
constexpr std::ptrdiff_t m_bAnimationNonLooping = 0x54; // bool
|
|
||||||
constexpr std::ptrdiff_t m_vecPreviewGravity = 0x58; //
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace ParticleControlPointDriver_t {
|
|
||||||
constexpr std::ptrdiff_t m_iControlPoint = 0x0; // int32
|
|
||||||
constexpr std::ptrdiff_t m_iAttachType = 0x4; // ParticleAttachment_t
|
|
||||||
constexpr std::ptrdiff_t m_attachmentName = 0x8; // CUtlString
|
|
||||||
constexpr std::ptrdiff_t m_vecOffset = 0x10; //
|
|
||||||
constexpr std::ptrdiff_t m_angOffset = 0x1C; // QAngle
|
|
||||||
constexpr std::ptrdiff_t m_entityName = 0x28; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace IParticleSystemDefinition {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 18
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CParticleVisibilityInputs {
|
|
||||||
constexpr std::ptrdiff_t m_flCameraBias = 0x0; // float32
|
|
||||||
constexpr std::ptrdiff_t m_nCPin = 0x4; // int32
|
|
||||||
constexpr std::ptrdiff_t m_flProxyRadius = 0x8; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flInputMin = 0xC; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flInputMax = 0x10; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flNoPixelVisibilityFallback = 0x14; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flDistanceInputMin = 0x18; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flDistanceInputMax = 0x1C; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flDotInputMin = 0x20; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flDotInputMax = 0x24; // float32
|
|
||||||
constexpr std::ptrdiff_t m_bDotCPAngles = 0x28; // bool
|
|
||||||
constexpr std::ptrdiff_t m_bDotCameraAngles = 0x29; // bool
|
|
||||||
constexpr std::ptrdiff_t m_flAlphaScaleMin = 0x2C; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flAlphaScaleMax = 0x30; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flRadiusScaleMin = 0x34; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flRadiusScaleMax = 0x38; // float32
|
|
||||||
constexpr std::ptrdiff_t m_flRadiusScaleFOVBase = 0x3C; // float32
|
|
||||||
constexpr std::ptrdiff_t m_bRightEye = 0x40; // bool
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 8
|
// Fields count: 8
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CPathParameters {
|
namespace AggregateSceneObject_t {
|
||||||
constexpr std::ptrdiff_t m_nStartControlPointNumber = 0x0; // int32
|
constexpr std::ptrdiff_t m_allFlags = 0x0; // ObjectTypeFlags_t
|
||||||
constexpr std::ptrdiff_t m_nEndControlPointNumber = 0x4; // int32
|
constexpr std::ptrdiff_t m_anyFlags = 0x4; // ObjectTypeFlags_t
|
||||||
constexpr std::ptrdiff_t m_nBulgeControl = 0x8; // int32
|
constexpr std::ptrdiff_t m_nLayer = 0x8; // int16
|
||||||
constexpr std::ptrdiff_t m_flBulge = 0xC; // float32
|
constexpr std::ptrdiff_t m_aggregateMeshes = 0x10; // CUtlVector<AggregateMeshInfo_t>
|
||||||
constexpr std::ptrdiff_t m_flMidPoint = 0x10; // float32
|
constexpr std::ptrdiff_t m_lodSetups = 0x28; // CUtlVector<AggregateLODSetup_t>
|
||||||
constexpr std::ptrdiff_t m_vStartPointOffset = 0x14; //
|
constexpr std::ptrdiff_t m_visClusterMembership = 0x40; // CUtlVector<uint16>
|
||||||
constexpr std::ptrdiff_t m_vMidPointOffset = 0x20; //
|
constexpr std::ptrdiff_t m_fragmentTransforms = 0x58; // CUtlVector<matrix3x4_t>
|
||||||
constexpr std::ptrdiff_t m_vEndOffset = 0x2C; //
|
constexpr std::ptrdiff_t m_renderableModel = 0x70; // CStrongHandle<InfoForResourceTypeCModel>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 7
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace NodeData_t {
|
||||||
|
constexpr std::ptrdiff_t m_nParent = 0x0; // int32
|
||||||
|
constexpr std::ptrdiff_t m_vOrigin = 0x4; //
|
||||||
|
constexpr std::ptrdiff_t m_vMinBounds = 0x10; //
|
||||||
|
constexpr std::ptrdiff_t m_vMaxBounds = 0x1C; //
|
||||||
|
constexpr std::ptrdiff_t m_flMinimumDistance = 0x28; // float32
|
||||||
|
constexpr std::ptrdiff_t m_ChildNodeIndices = 0x30; // CUtlVector<int32>
|
||||||
|
constexpr std::ptrdiff_t m_worldNodePrefix = 0x48; // CUtlString
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 8
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace ClutterSceneObject_t {
|
||||||
|
constexpr std::ptrdiff_t m_Bounds = 0x0; // AABB_t
|
||||||
|
constexpr std::ptrdiff_t m_flags = 0x18; // ObjectTypeFlags_t
|
||||||
|
constexpr std::ptrdiff_t m_nLayer = 0x1C; // int16
|
||||||
|
constexpr std::ptrdiff_t m_instancePositions = 0x20; // CUtlVector<Vector>
|
||||||
|
constexpr std::ptrdiff_t m_instanceScales = 0x50; // CUtlVector<float32>
|
||||||
|
constexpr std::ptrdiff_t m_instanceTintSrgb = 0x68; // CUtlVector<Color>
|
||||||
|
constexpr std::ptrdiff_t m_tiles = 0x80; // CUtlVector<ClutterTile_t>
|
||||||
|
constexpr std::ptrdiff_t m_renderableModel = 0x98; // CStrongHandle<InfoForResourceTypeCModel>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 5
|
// Fields count: 5
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace ParticleChildrenInfo_t {
|
namespace WorldBuilderParams_t {
|
||||||
constexpr std::ptrdiff_t m_ChildRef = 0x0; // CStrongHandle<InfoForResourceTypeIParticleSystemDefinition>
|
constexpr std::ptrdiff_t m_flMinDrawVolumeSize = 0x0; // float32
|
||||||
constexpr std::ptrdiff_t m_flDelay = 0x8; // float32
|
constexpr std::ptrdiff_t m_bBuildBakedLighting = 0x4; // bool
|
||||||
constexpr std::ptrdiff_t m_bEndCap = 0xC; // bool
|
constexpr std::ptrdiff_t m_vLightmapUvScale = 0x8; // Vector2D
|
||||||
constexpr std::ptrdiff_t m_bDisableChild = 0xD; // bool
|
constexpr std::ptrdiff_t m_nCompileTimestamp = 0x10; // uint64
|
||||||
constexpr std::ptrdiff_t m_nDetailLevel = 0x10; // ParticleDetailLevel_t
|
constexpr std::ptrdiff_t m_nCompileFingerprint = 0x18; // uint64
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace PermEntityLumpData_t {
|
||||||
|
constexpr std::ptrdiff_t m_name = 0x8; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_hammerUniqueId = 0x10; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_childLumps = 0x18; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||||
|
constexpr std::ptrdiff_t m_entityKeyValues = 0x30; // CUtlLeanVector<EntityKeyValueData_t>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 13
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace WorldNode_t {
|
||||||
|
constexpr std::ptrdiff_t m_sceneObjects = 0x0; // CUtlVector<SceneObject_t>
|
||||||
|
constexpr std::ptrdiff_t m_infoOverlays = 0x18; // CUtlVector<InfoOverlayData_t>
|
||||||
|
constexpr std::ptrdiff_t m_visClusterMembership = 0x30; // CUtlVector<uint16>
|
||||||
|
constexpr std::ptrdiff_t m_aggregateSceneObjects = 0x48; // CUtlVector<AggregateSceneObject_t>
|
||||||
|
constexpr std::ptrdiff_t m_clutterSceneObjects = 0x60; // CUtlVector<ClutterSceneObject_t>
|
||||||
|
constexpr std::ptrdiff_t m_extraVertexStreamOverrides = 0x78; // CUtlVector<ExtraVertexStreamOverride_t>
|
||||||
|
constexpr std::ptrdiff_t m_materialOverrides = 0x90; // CUtlVector<MaterialOverride_t>
|
||||||
|
constexpr std::ptrdiff_t m_extraVertexStreams = 0xA8; // CUtlVector<WorldNodeOnDiskBufferData_t>
|
||||||
|
constexpr std::ptrdiff_t m_layerNames = 0xC0; // CUtlVector<CUtlString>
|
||||||
|
constexpr std::ptrdiff_t m_sceneObjectLayerIndices = 0xD8; // CUtlVector<uint8>
|
||||||
|
constexpr std::ptrdiff_t m_overlayLayerIndices = 0xF0; // CUtlVector<uint8>
|
||||||
|
constexpr std::ptrdiff_t m_grassFileName = 0x108; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_nodeLightingInfo = 0x110; // BakedLightingInfo_t
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace BaseSceneObjectOverride_t {
|
||||||
|
constexpr std::ptrdiff_t m_nSceneObjectIndex = 0x0; // uint32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 7
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace EntityIOConnectionData_t {
|
||||||
|
constexpr std::ptrdiff_t m_outputName = 0x0; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_targetType = 0x8; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_targetName = 0x10; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_inputName = 0x18; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_overrideParam = 0x20; // CUtlString
|
||||||
|
constexpr std::ptrdiff_t m_flDelay = 0x28; // float32
|
||||||
|
constexpr std::ptrdiff_t m_nTimesToFire = 0x2C; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace BakedLightingInfo_t {
|
||||||
|
constexpr std::ptrdiff_t m_nLightmapVersionNumber = 0x0; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_nLightmapGameVersionNumber = 0x4; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_vLightmapUvScale = 0x8; // Vector2D
|
||||||
|
constexpr std::ptrdiff_t m_bHasLightmaps = 0x10; // bool
|
||||||
|
constexpr std::ptrdiff_t m_lightMaps = 0x18; // CUtlVector<CStrongHandle<InfoForResourceTypeCTextureBase>>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace ModelReference_t {
|
namespace VoxelVisBlockOffset_t {
|
||||||
constexpr std::ptrdiff_t m_model = 0x0; // CStrongHandle<InfoForResourceTypeCModel>
|
constexpr std::ptrdiff_t m_nOffset = 0x0; // uint32
|
||||||
constexpr std::ptrdiff_t m_flRelativeProbabilityOfSpawn = 0x8; // float32
|
constexpr std::ptrdiff_t m_nElementCount = 0x4; // uint32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 4
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace SequenceWeightedList_t {
|
namespace WorldNodeOnDiskBufferData_t {
|
||||||
constexpr std::ptrdiff_t m_nSequence = 0x0; // int32
|
constexpr std::ptrdiff_t m_nElementCount = 0x0; // int32
|
||||||
constexpr std::ptrdiff_t m_flRelativeWeight = 0x4; // float32
|
constexpr std::ptrdiff_t m_nElementSizeInBytes = 0x4; // int32
|
||||||
|
constexpr std::ptrdiff_t m_inputLayoutFields = 0x8; // CUtlVector<RenderInputLayoutField_t>
|
||||||
|
constexpr std::ptrdiff_t m_pData = 0x20; // CUtlVector<uint8>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 9
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CollisionGroupContext_t {
|
namespace AggregateMeshInfo_t {
|
||||||
constexpr std::ptrdiff_t m_nCollisionGroupNumber = 0x0; // int32
|
constexpr std::ptrdiff_t m_nVisClusterMemberOffset = 0x0; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_nVisClusterMemberCount = 0x4; // uint8
|
||||||
|
constexpr std::ptrdiff_t m_bHasTransform = 0x5; // bool
|
||||||
|
constexpr std::ptrdiff_t m_nDrawCallIndex = 0x6; // int16
|
||||||
|
constexpr std::ptrdiff_t m_nLODSetupIndex = 0x8; // int16
|
||||||
|
constexpr std::ptrdiff_t m_nLODGroupMask = 0xA; // uint8
|
||||||
|
constexpr std::ptrdiff_t m_vTintColor = 0xB; // Color
|
||||||
|
constexpr std::ptrdiff_t m_objectFlags = 0x10; // ObjectTypeFlags_t
|
||||||
|
constexpr std::ptrdiff_t m_nLightProbeVolumePrecomputedHandshake = 0x14; // int32
|
||||||
}
|
}
|
||||||
// Parent: CParticleFunctionOperator
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 4
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CParticleFunctionPreEmission {
|
namespace World_t {
|
||||||
constexpr std::ptrdiff_t m_bRunOnce = 0x1C0; // bool
|
constexpr std::ptrdiff_t m_builderParams = 0x0; // WorldBuilderParams_t
|
||||||
|
constexpr std::ptrdiff_t m_worldNodes = 0x20; // CUtlVector<NodeData_t>
|
||||||
|
constexpr std::ptrdiff_t m_worldLightingInfo = 0x38; // BakedLightingInfo_t
|
||||||
|
constexpr std::ptrdiff_t m_entityLumps = 0x68; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||||
}
|
}
|
||||||
// Parent: CParticleFunction
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CParticleFunctionInitializer {
|
namespace InfoOverlayData_t {
|
||||||
constexpr std::ptrdiff_t m_nAssociatedEmitterIndex = 0x1B8; // int32
|
constexpr std::ptrdiff_t m_transform = 0x0; // matrix3x4_t
|
||||||
|
constexpr std::ptrdiff_t m_flWidth = 0x30; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flHeight = 0x34; // float32
|
||||||
|
constexpr std::ptrdiff_t m_flDepth = 0x38; // float32
|
||||||
|
constexpr std::ptrdiff_t m_vUVStart = 0x3C; // Vector2D
|
||||||
|
constexpr std::ptrdiff_t m_vUVEnd = 0x44; // Vector2D
|
||||||
|
constexpr std::ptrdiff_t m_pMaterial = 0x50; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
||||||
|
constexpr std::ptrdiff_t m_nRenderOrder = 0x58; // int32
|
||||||
|
constexpr std::ptrdiff_t m_vTintColor = 0x5C; // Vector4D
|
||||||
|
constexpr std::ptrdiff_t m_nSequenceOverride = 0x6C; // int32
|
||||||
}
|
}
|
||||||
// Parent: CParticleFunction
|
// Parent: BaseSceneObjectOverride_t
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
namespace CParticleFunctionForce {
|
|
||||||
}
|
|
||||||
// Parent: CParticleFunction
|
|
||||||
// Fields count: 3
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
namespace CParticleFunctionRenderer {
|
namespace MaterialOverride_t {
|
||||||
constexpr std::ptrdiff_t VisibilityInputs = 0x1B8; // CParticleVisibilityInputs
|
constexpr std::ptrdiff_t m_nSubSceneObject = 0x4; // uint32
|
||||||
constexpr std::ptrdiff_t m_bCannotBeRefracted = 0x1FC; // bool
|
constexpr std::ptrdiff_t m_nDrawCallIndex = 0x8; // uint32
|
||||||
constexpr std::ptrdiff_t m_bSkipRenderingOnMobile = 0x1FD; // bool
|
constexpr std::ptrdiff_t m_pMaterial = 0x10; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace EntityKeyValueData_t {
|
||||||
|
constexpr std::ptrdiff_t m_connections = 0x8; // CUtlVector<EntityIOConnectionData_t>
|
||||||
|
constexpr std::ptrdiff_t m_keyValuesData = 0x20; // CUtlBinaryBlock
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 13
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
namespace CVoxelVisibility {
|
||||||
|
constexpr std::ptrdiff_t m_nBaseClusterCount = 0x40; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_nPVSBytesPerCluster = 0x44; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_vMinBounds = 0x48; //
|
||||||
|
constexpr std::ptrdiff_t m_vMaxBounds = 0x54; //
|
||||||
|
constexpr std::ptrdiff_t m_flGridSize = 0x60; // float32
|
||||||
|
constexpr std::ptrdiff_t m_nSkyVisibilityCluster = 0x64; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_nSunVisibilityCluster = 0x68; // uint32
|
||||||
|
constexpr std::ptrdiff_t m_NodeBlock = 0x6C; // VoxelVisBlockOffset_t
|
||||||
|
constexpr std::ptrdiff_t m_RegionBlock = 0x74; // VoxelVisBlockOffset_t
|
||||||
|
constexpr std::ptrdiff_t m_EnclosedClusterListBlock = 0x7C; // VoxelVisBlockOffset_t
|
||||||
|
constexpr std::ptrdiff_t m_EnclosedClustersBlock = 0x84; // VoxelVisBlockOffset_t
|
||||||
|
constexpr std::ptrdiff_t m_MasksBlock = 0x8C; // VoxelVisBlockOffset_t
|
||||||
|
constexpr std::ptrdiff_t m_nVisBlocks = 0x94; // VoxelVisBlockOffset_t
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -99,8 +99,8 @@
|
|||||||
"metadata": [
|
"metadata": [
|
||||||
{
|
{
|
||||||
"name": "m_nameStringableIndex",
|
"name": "m_nameStringableIndex",
|
||||||
"ty": "int32",
|
"type": "NetworkVarNames",
|
||||||
"type": "NetworkVarNames"
|
"type_name": "int32"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
@ -115,145 +115,17 @@
|
|||||||
"metadata": [
|
"metadata": [
|
||||||
{
|
{
|
||||||
"name": "m_pEntity",
|
"name": "m_pEntity",
|
||||||
"ty": "CEntityIdentity*",
|
"type": "NetworkVarNames",
|
||||||
"type": "NetworkVarNames"
|
"type_name": "CEntityIdentity*"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "m_CScriptComponent",
|
"name": "m_CScriptComponent",
|
||||||
"ty": "CScriptComponent::Storage_t",
|
"type": "NetworkVarNames",
|
||||||
"type": "NetworkVarNames"
|
"type_name": "CScriptComponent::Storage_t"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CParticleCollectionFloatInput": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MPropertyCustomEditor",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CParticleFunctionForce": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunction"
|
|
||||||
},
|
|
||||||
"CParticleFunctionInitializer": {
|
|
||||||
"fields": {
|
|
||||||
"m_nAssociatedEmitterIndex": 440
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunction"
|
|
||||||
},
|
|
||||||
"CParticleFunctionPreEmission": {
|
|
||||||
"fields": {
|
|
||||||
"m_bRunOnce": 448
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunctionOperator"
|
|
||||||
},
|
|
||||||
"CParticleFunctionRenderer": {
|
|
||||||
"fields": {
|
|
||||||
"VisibilityInputs": 440,
|
|
||||||
"m_bCannotBeRefracted": 508,
|
|
||||||
"m_bSkipRenderingOnMobile": 509
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CParticleFunction"
|
|
||||||
},
|
|
||||||
"CParticleVisibilityInputs": {
|
|
||||||
"fields": {
|
|
||||||
"m_bDotCPAngles": 40,
|
|
||||||
"m_bDotCameraAngles": 41,
|
|
||||||
"m_bRightEye": 64,
|
|
||||||
"m_flAlphaScaleMax": 48,
|
|
||||||
"m_flAlphaScaleMin": 44,
|
|
||||||
"m_flCameraBias": 0,
|
|
||||||
"m_flDistanceInputMax": 28,
|
|
||||||
"m_flDistanceInputMin": 24,
|
|
||||||
"m_flDotInputMax": 36,
|
|
||||||
"m_flDotInputMin": 32,
|
|
||||||
"m_flInputMax": 16,
|
|
||||||
"m_flInputMin": 12,
|
|
||||||
"m_flNoPixelVisibilityFallback": 20,
|
|
||||||
"m_flProxyRadius": 8,
|
|
||||||
"m_flRadiusScaleFOVBase": 60,
|
|
||||||
"m_flRadiusScaleMax": 56,
|
|
||||||
"m_flRadiusScaleMin": 52,
|
|
||||||
"m_nCPin": 4
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CPathParameters": {
|
|
||||||
"fields": {
|
|
||||||
"m_flBulge": 12,
|
|
||||||
"m_flMidPoint": 16,
|
|
||||||
"m_nBulgeControl": 8,
|
|
||||||
"m_nEndControlPointNumber": 4,
|
|
||||||
"m_nStartControlPointNumber": 0,
|
|
||||||
"m_vEndOffset": 44,
|
|
||||||
"m_vMidPointOffset": 32,
|
|
||||||
"m_vStartPointOffset": 20
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"CVoiceContainerRandomSampler": {
|
|
||||||
"fields": {
|
|
||||||
"m_flLoudAmplitude": 96,
|
|
||||||
"m_flLoudAmplitudeJitter": 100,
|
|
||||||
"m_flLoudTimeJitter": 112,
|
|
||||||
"m_flSoftAmplitude": 104,
|
|
||||||
"m_flSoftAmplitudeJitter": 108,
|
|
||||||
"m_flSoftTimeJitter": 116,
|
|
||||||
"m_grainResources": 120
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": "CVoiceContainerBase"
|
|
||||||
},
|
|
||||||
"CVoxelVisibility": {
|
"CVoxelVisibility": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_EnclosedClusterListBlock": 124,
|
"m_EnclosedClusterListBlock": 124,
|
||||||
@ -311,18 +183,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"CollisionGroupContext_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_nCollisionGroupNumber": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"EntityIOConnectionData_t": {
|
"EntityIOConnectionData_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_flDelay": 40,
|
"m_flDelay": 40,
|
||||||
@ -369,56 +229,6 @@
|
|||||||
],
|
],
|
||||||
"parent": "BaseSceneObjectOverride_t"
|
"parent": "BaseSceneObjectOverride_t"
|
||||||
},
|
},
|
||||||
"IParticleSystemDefinition": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCDACGameDefsData": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCPanoramaStyle": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeCWorldNode": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoForResourceTypeVMapResourceData_t": {
|
|
||||||
"fields": {},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MResourceTypeForInfoType",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"InfoOverlayData_t": {
|
"InfoOverlayData_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_flDepth": 56,
|
"m_flDepth": 56,
|
||||||
@ -454,19 +264,6 @@
|
|||||||
],
|
],
|
||||||
"parent": "BaseSceneObjectOverride_t"
|
"parent": "BaseSceneObjectOverride_t"
|
||||||
},
|
},
|
||||||
"ModelReference_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_flRelativeProbabilityOfSpawn": 8,
|
|
||||||
"m_model": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"NodeData_t": {
|
"NodeData_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_ChildNodeIndices": 48,
|
"m_ChildNodeIndices": 48,
|
||||||
@ -485,79 +282,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"ParticleChildrenInfo_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_ChildRef": 0,
|
|
||||||
"m_bDisableChild": 13,
|
|
||||||
"m_bEndCap": 12,
|
|
||||||
"m_flDelay": 8,
|
|
||||||
"m_nDetailLevel": 16
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"ParticleControlPointDriver_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_angOffset": 28,
|
|
||||||
"m_attachmentName": 8,
|
|
||||||
"m_entityName": 40,
|
|
||||||
"m_iAttachType": 4,
|
|
||||||
"m_iControlPoint": 0,
|
|
||||||
"m_vecOffset": 16
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"ParticlePreviewBodyGroup_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_bodyGroupName": 0,
|
|
||||||
"m_nValue": 8
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"ParticlePreviewState_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_bAnimationNonLooping": 84,
|
|
||||||
"m_bShouldDrawAttachmentNames": 82,
|
|
||||||
"m_bShouldDrawAttachments": 81,
|
|
||||||
"m_bShouldDrawControlPointAxes": 83,
|
|
||||||
"m_bShouldDrawHitboxes": 80,
|
|
||||||
"m_flParticleSimulationRate": 76,
|
|
||||||
"m_flPlaybackSpeed": 72,
|
|
||||||
"m_groundType": 12,
|
|
||||||
"m_hitboxSetName": 32,
|
|
||||||
"m_materialGroupName": 40,
|
|
||||||
"m_nFireParticleOnSequenceFrame": 24,
|
|
||||||
"m_nModSpecificData": 8,
|
|
||||||
"m_previewModel": 0,
|
|
||||||
"m_sequenceName": 16,
|
|
||||||
"m_vecBodyGroups": 48,
|
|
||||||
"m_vecPreviewGravity": 88
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"PermEntityLumpData_t": {
|
"PermEntityLumpData_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_childLumps": 24,
|
"m_childLumps": 24,
|
||||||
@ -598,79 +322,6 @@
|
|||||||
],
|
],
|
||||||
"parent": null
|
"parent": null
|
||||||
},
|
},
|
||||||
"SequenceWeightedList_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_flRelativeWeight": 4,
|
|
||||||
"m_nSequence": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"VMixDelayDesc_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_bEnableFilter": 16,
|
|
||||||
"m_feedbackFilter": 0,
|
|
||||||
"m_flDelay": 20,
|
|
||||||
"m_flDelayGain": 28,
|
|
||||||
"m_flDirectGain": 24,
|
|
||||||
"m_flFeedbackGain": 32,
|
|
||||||
"m_flWidth": 36
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"VMixEQ8Desc_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_stages": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"VMixFilterDesc_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_bEnabled": 3,
|
|
||||||
"m_flCutoffFreq": 8,
|
|
||||||
"m_flQ": 12,
|
|
||||||
"m_fldbGain": 4,
|
|
||||||
"m_nFilterSlope": 2,
|
|
||||||
"m_nFilterType": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"VMixPannerDesc_t": {
|
|
||||||
"fields": {
|
|
||||||
"m_flStrength": 4,
|
|
||||||
"m_type": 0
|
|
||||||
},
|
|
||||||
"metadata": [
|
|
||||||
{
|
|
||||||
"name": "MGetKV3ClassDefaults",
|
|
||||||
"type": "Unknown"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parent": null
|
|
||||||
},
|
|
||||||
"VoxelVisBlockOffset_t": {
|
"VoxelVisBlockOffset_t": {
|
||||||
"fields": {
|
"fields": {
|
||||||
"m_nElementCount": 4,
|
"m_nElementCount": 4,
|
||||||
@ -755,6 +406,26 @@
|
|||||||
"parent": null
|
"parent": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enums": {}
|
"enums": {
|
||||||
|
"ObjectTypeFlags_t": {
|
||||||
|
"alignment": 4,
|
||||||
|
"members": {
|
||||||
|
"OBJECT_TYPE_BLOCK_LIGHT": 16,
|
||||||
|
"OBJECT_TYPE_DISABLED_IN_LOW_QUALITY": 128,
|
||||||
|
"OBJECT_TYPE_MODEL": 8,
|
||||||
|
"OBJECT_TYPE_MODEL_HAS_LODS": 2048,
|
||||||
|
"OBJECT_TYPE_NONE": 0,
|
||||||
|
"OBJECT_TYPE_NO_SHADOWS": 32,
|
||||||
|
"OBJECT_TYPE_NO_SUN_SHADOWS": 256,
|
||||||
|
"OBJECT_TYPE_OVERLAY": 8192,
|
||||||
|
"OBJECT_TYPE_PRECOMPUTED_VISMEMBERS": 16384,
|
||||||
|
"OBJECT_TYPE_RENDER_TO_CUBEMAPS": 1024,
|
||||||
|
"OBJECT_TYPE_RENDER_WITH_DYNAMIC": 512,
|
||||||
|
"OBJECT_TYPE_STATIC_CUBE_MAP": 32768,
|
||||||
|
"OBJECT_TYPE_WORLDSPACE_TEXURE_BLEND": 64
|
||||||
|
},
|
||||||
|
"type": "uint32"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,296 +1,31 @@
|
|||||||
// Generated using https://github.com/a2x/cs2-dumper
|
// Generated using https://github.com/a2x/cs2-dumper
|
||||||
// 2024-04-04 13:40:42.514657500 UTC
|
// 2024-04-05 17:13:47.447480800 UTC
|
||||||
|
|
||||||
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
#![allow(non_upper_case_globals, non_camel_case_types, unused)]
|
||||||
|
|
||||||
pub mod cs2_dumper {
|
pub mod cs2_dumper {
|
||||||
pub mod schemas {
|
pub mod schemas {
|
||||||
// Module: worldrenderer.dll
|
// Module: worldrenderer.dll
|
||||||
// Classes count: 47
|
// Classes count: 23
|
||||||
// Enums count: 0
|
// Enums count: 1
|
||||||
pub mod worldrenderer_dll {
|
pub mod worldrenderer_dll {
|
||||||
// Parent: None
|
// Alignment: 4
|
||||||
// Fields count: 7
|
// Members count: 13
|
||||||
//
|
#[repr(u32)]
|
||||||
// Metadata:
|
pub enum ObjectTypeFlags_t {
|
||||||
// MGetKV3ClassDefaults
|
OBJECT_TYPE_NONE = 0x0,
|
||||||
pub mod EntityIOConnectionData_t {
|
OBJECT_TYPE_MODEL = 0x8,
|
||||||
pub const m_outputName: usize = 0x0; // CUtlString
|
OBJECT_TYPE_BLOCK_LIGHT = 0x10,
|
||||||
pub const m_targetType: usize = 0x8; // uint32
|
OBJECT_TYPE_NO_SHADOWS = 0x20,
|
||||||
pub const m_targetName: usize = 0x10; // CUtlString
|
OBJECT_TYPE_WORLDSPACE_TEXURE_BLEND = 0x40,
|
||||||
pub const m_inputName: usize = 0x18; // CUtlString
|
OBJECT_TYPE_DISABLED_IN_LOW_QUALITY = 0x80,
|
||||||
pub const m_overrideParam: usize = 0x20; // CUtlString
|
OBJECT_TYPE_NO_SUN_SHADOWS = 0x100,
|
||||||
pub const m_flDelay: usize = 0x28; // float32
|
OBJECT_TYPE_RENDER_WITH_DYNAMIC = 0x200,
|
||||||
pub const m_nTimesToFire: usize = 0x2C; // int32
|
OBJECT_TYPE_RENDER_TO_CUBEMAPS = 0x400,
|
||||||
}
|
OBJECT_TYPE_MODEL_HAS_LODS = 0x800,
|
||||||
// Parent: None
|
OBJECT_TYPE_OVERLAY = 0x2000,
|
||||||
// Fields count: 2
|
OBJECT_TYPE_PRECOMPUTED_VISMEMBERS = 0x4000,
|
||||||
//
|
OBJECT_TYPE_STATIC_CUBE_MAP = 0x8000
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod EntityKeyValueData_t {
|
|
||||||
pub const m_connections: usize = 0x8; // CUtlVector<EntityIOConnectionData_t>
|
|
||||||
pub const m_keyValuesData: usize = 0x20; // CUtlBinaryBlock
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod PermEntityLumpData_t {
|
|
||||||
pub const m_name: usize = 0x8; // CUtlString
|
|
||||||
pub const m_hammerUniqueId: usize = 0x10; // CUtlString
|
|
||||||
pub const m_childLumps: usize = 0x18; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
|
||||||
pub const m_entityKeyValues: usize = 0x30; // CUtlLeanVector<EntityKeyValueData_t>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 14
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod SceneObject_t {
|
|
||||||
pub const m_nObjectID: usize = 0x0; // uint32
|
|
||||||
pub const m_vTransform: usize = 0x4; // Vector4D[3]
|
|
||||||
pub const m_flFadeStartDistance: usize = 0x34; // float32
|
|
||||||
pub const m_flFadeEndDistance: usize = 0x38; // float32
|
|
||||||
pub const m_vTintColor: usize = 0x3C; // Vector4D
|
|
||||||
pub const m_skin: usize = 0x50; // CUtlString
|
|
||||||
pub const m_nObjectTypeFlags: usize = 0x58; // ObjectTypeFlags_t
|
|
||||||
pub const m_vLightingOrigin: usize = 0x5C; //
|
|
||||||
pub const m_nOverlayRenderOrder: usize = 0x68; // int16
|
|
||||||
pub const m_nLODOverride: usize = 0x6A; // int16
|
|
||||||
pub const m_nCubeMapPrecomputedHandshake: usize = 0x6C; // int32
|
|
||||||
pub const m_nLightProbeVolumePrecomputedHandshake: usize = 0x70; // int32
|
|
||||||
pub const m_renderableModel: usize = 0x78; // CStrongHandle<InfoForResourceTypeCModel>
|
|
||||||
pub const m_renderable: usize = 0x80; // CStrongHandle<InfoForResourceTypeCRenderMesh>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 1
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod BaseSceneObjectOverride_t {
|
|
||||||
pub const m_nSceneObjectIndex: usize = 0x0; // uint32
|
|
||||||
}
|
|
||||||
// Parent: BaseSceneObjectOverride_t
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod ExtraVertexStreamOverride_t {
|
|
||||||
pub const m_nSubSceneObject: usize = 0x4; // uint32
|
|
||||||
pub const m_nDrawCallIndex: usize = 0x8; // uint32
|
|
||||||
pub const m_nAdditionalMeshDrawPrimitiveFlags: usize = 0xC; // MeshDrawPrimitiveFlags_t
|
|
||||||
pub const m_extraBufferBinding: usize = 0x10; // CRenderBufferBinding
|
|
||||||
}
|
|
||||||
// Parent: BaseSceneObjectOverride_t
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod MaterialOverride_t {
|
|
||||||
pub const m_nSubSceneObject: usize = 0x4; // uint32
|
|
||||||
pub const m_nDrawCallIndex: usize = 0x8; // uint32
|
|
||||||
pub const m_pMaterial: usize = 0x10; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 10
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod InfoOverlayData_t {
|
|
||||||
pub const m_transform: usize = 0x0; // matrix3x4_t
|
|
||||||
pub const m_flWidth: usize = 0x30; // float32
|
|
||||||
pub const m_flHeight: usize = 0x34; // float32
|
|
||||||
pub const m_flDepth: usize = 0x38; // float32
|
|
||||||
pub const m_vUVStart: usize = 0x3C; // Vector2D
|
|
||||||
pub const m_vUVEnd: usize = 0x44; // Vector2D
|
|
||||||
pub const m_pMaterial: usize = 0x50; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
|
||||||
pub const m_nRenderOrder: usize = 0x58; // int32
|
|
||||||
pub const m_vTintColor: usize = 0x5C; // Vector4D
|
|
||||||
pub const m_nSequenceOverride: usize = 0x6C; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod BakedLightingInfo_t {
|
|
||||||
pub const m_nLightmapVersionNumber: usize = 0x0; // uint32
|
|
||||||
pub const m_nLightmapGameVersionNumber: usize = 0x4; // uint32
|
|
||||||
pub const m_vLightmapUvScale: usize = 0x8; // Vector2D
|
|
||||||
pub const m_bHasLightmaps: usize = 0x10; // bool
|
|
||||||
pub const m_lightMaps: usize = 0x18; // CUtlVector<CStrongHandle<InfoForResourceTypeCTextureBase>>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod WorldNodeOnDiskBufferData_t {
|
|
||||||
pub const m_nElementCount: usize = 0x0; // int32
|
|
||||||
pub const m_nElementSizeInBytes: usize = 0x4; // int32
|
|
||||||
pub const m_inputLayoutFields: usize = 0x8; // CUtlVector<RenderInputLayoutField_t>
|
|
||||||
pub const m_pData: usize = 0x20; // CUtlVector<uint8>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 9
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod AggregateMeshInfo_t {
|
|
||||||
pub const m_nVisClusterMemberOffset: usize = 0x0; // uint32
|
|
||||||
pub const m_nVisClusterMemberCount: usize = 0x4; // uint8
|
|
||||||
pub const m_bHasTransform: usize = 0x5; // bool
|
|
||||||
pub const m_nDrawCallIndex: usize = 0x6; // int16
|
|
||||||
pub const m_nLODSetupIndex: usize = 0x8; // int16
|
|
||||||
pub const m_nLODGroupMask: usize = 0xA; // uint8
|
|
||||||
pub const m_vTintColor: usize = 0xB; // Color
|
|
||||||
pub const m_objectFlags: usize = 0x10; // ObjectTypeFlags_t
|
|
||||||
pub const m_nLightProbeVolumePrecomputedHandshake: usize = 0x14; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod AggregateLODSetup_t {
|
|
||||||
pub const m_vLODOrigin: usize = 0x0; //
|
|
||||||
pub const m_fMaxObjectScale: usize = 0xC; // float32
|
|
||||||
pub const m_fSwitchDistances: usize = 0x10; // CUtlVectorFixedGrowable<float32>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 8
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod AggregateSceneObject_t {
|
|
||||||
pub const m_allFlags: usize = 0x0; // ObjectTypeFlags_t
|
|
||||||
pub const m_anyFlags: usize = 0x4; // ObjectTypeFlags_t
|
|
||||||
pub const m_nLayer: usize = 0x8; // int16
|
|
||||||
pub const m_aggregateMeshes: usize = 0x10; // CUtlVector<AggregateMeshInfo_t>
|
|
||||||
pub const m_lodSetups: usize = 0x28; // CUtlVector<AggregateLODSetup_t>
|
|
||||||
pub const m_visClusterMembership: usize = 0x40; // CUtlVector<uint16>
|
|
||||||
pub const m_fragmentTransforms: usize = 0x58; // CUtlVector<matrix3x4_t>
|
|
||||||
pub const m_renderableModel: usize = 0x70; // CStrongHandle<InfoForResourceTypeCModel>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 3
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod ClutterTile_t {
|
|
||||||
pub const m_nFirstInstance: usize = 0x0; // uint32
|
|
||||||
pub const m_nLastInstance: usize = 0x4; // uint32
|
|
||||||
pub const m_BoundsWs: usize = 0x8; // AABB_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 8
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod ClutterSceneObject_t {
|
|
||||||
pub const m_Bounds: usize = 0x0; // AABB_t
|
|
||||||
pub const m_flags: usize = 0x18; // ObjectTypeFlags_t
|
|
||||||
pub const m_nLayer: usize = 0x1C; // int16
|
|
||||||
pub const m_instancePositions: usize = 0x20; // CUtlVector<Vector>
|
|
||||||
pub const m_instanceScales: usize = 0x50; // CUtlVector<float32>
|
|
||||||
pub const m_instanceTintSrgb: usize = 0x68; // CUtlVector<Color>
|
|
||||||
pub const m_tiles: usize = 0x80; // CUtlVector<ClutterTile_t>
|
|
||||||
pub const m_renderableModel: usize = 0x98; // CStrongHandle<InfoForResourceTypeCModel>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 13
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod WorldNode_t {
|
|
||||||
pub const m_sceneObjects: usize = 0x0; // CUtlVector<SceneObject_t>
|
|
||||||
pub const m_infoOverlays: usize = 0x18; // CUtlVector<InfoOverlayData_t>
|
|
||||||
pub const m_visClusterMembership: usize = 0x30; // CUtlVector<uint16>
|
|
||||||
pub const m_aggregateSceneObjects: usize = 0x48; // CUtlVector<AggregateSceneObject_t>
|
|
||||||
pub const m_clutterSceneObjects: usize = 0x60; // CUtlVector<ClutterSceneObject_t>
|
|
||||||
pub const m_extraVertexStreamOverrides: usize = 0x78; // CUtlVector<ExtraVertexStreamOverride_t>
|
|
||||||
pub const m_materialOverrides: usize = 0x90; // CUtlVector<MaterialOverride_t>
|
|
||||||
pub const m_extraVertexStreams: usize = 0xA8; // CUtlVector<WorldNodeOnDiskBufferData_t>
|
|
||||||
pub const m_layerNames: usize = 0xC0; // CUtlVector<CUtlString>
|
|
||||||
pub const m_sceneObjectLayerIndices: usize = 0xD8; // CUtlVector<uint8>
|
|
||||||
pub const m_overlayLayerIndices: usize = 0xF0; // CUtlVector<uint8>
|
|
||||||
pub const m_grassFileName: usize = 0x108; // CUtlString
|
|
||||||
pub const m_nodeLightingInfo: usize = 0x110; // BakedLightingInfo_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 5
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod WorldBuilderParams_t {
|
|
||||||
pub const m_flMinDrawVolumeSize: usize = 0x0; // float32
|
|
||||||
pub const m_bBuildBakedLighting: usize = 0x4; // bool
|
|
||||||
pub const m_vLightmapUvScale: usize = 0x8; // Vector2D
|
|
||||||
pub const m_nCompileTimestamp: usize = 0x10; // uint64
|
|
||||||
pub const m_nCompileFingerprint: usize = 0x18; // uint64
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 7
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod NodeData_t {
|
|
||||||
pub const m_nParent: usize = 0x0; // int32
|
|
||||||
pub const m_vOrigin: usize = 0x4; //
|
|
||||||
pub const m_vMinBounds: usize = 0x10; //
|
|
||||||
pub const m_vMaxBounds: usize = 0x1C; //
|
|
||||||
pub const m_flMinimumDistance: usize = 0x28; // float32
|
|
||||||
pub const m_ChildNodeIndices: usize = 0x30; // CUtlVector<int32>
|
|
||||||
pub const m_worldNodePrefix: usize = 0x48; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 4
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod World_t {
|
|
||||||
pub const m_builderParams: usize = 0x0; // WorldBuilderParams_t
|
|
||||||
pub const m_worldNodes: usize = 0x20; // CUtlVector<NodeData_t>
|
|
||||||
pub const m_worldLightingInfo: usize = 0x38; // BakedLightingInfo_t
|
|
||||||
pub const m_entityLumps: usize = 0x68; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod VoxelVisBlockOffset_t {
|
|
||||||
pub const m_nOffset: usize = 0x0; // uint32
|
|
||||||
pub const m_nElementCount: usize = 0x4; // uint32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 13
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CVoxelVisibility {
|
|
||||||
pub const m_nBaseClusterCount: usize = 0x40; // uint32
|
|
||||||
pub const m_nPVSBytesPerCluster: usize = 0x44; // uint32
|
|
||||||
pub const m_vMinBounds: usize = 0x48; //
|
|
||||||
pub const m_vMaxBounds: usize = 0x54; //
|
|
||||||
pub const m_flGridSize: usize = 0x60; // float32
|
|
||||||
pub const m_nSkyVisibilityCluster: usize = 0x64; // uint32
|
|
||||||
pub const m_nSunVisibilityCluster: usize = 0x68; // uint32
|
|
||||||
pub const m_NodeBlock: usize = 0x6C; // VoxelVisBlockOffset_t
|
|
||||||
pub const m_RegionBlock: usize = 0x74; // VoxelVisBlockOffset_t
|
|
||||||
pub const m_EnclosedClusterListBlock: usize = 0x7C; // VoxelVisBlockOffset_t
|
|
||||||
pub const m_EnclosedClustersBlock: usize = 0x84; // VoxelVisBlockOffset_t
|
|
||||||
pub const m_MasksBlock: usize = 0x8C; // VoxelVisBlockOffset_t
|
|
||||||
pub const m_nVisBlocks: usize = 0x94; // VoxelVisBlockOffset_t
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeVMapResourceData_t {
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 11
|
// Fields count: 11
|
||||||
@ -322,255 +57,281 @@ pub mod cs2_dumper {
|
|||||||
pub const m_CScriptComponent: usize = 0x28; // CScriptComponent*
|
pub const m_CScriptComponent: usize = 0x28; // CScriptComponent*
|
||||||
pub const m_bVisibleinPVS: usize = 0x30; // bool
|
pub const m_bVisibleinPVS: usize = 0x30; // bool
|
||||||
}
|
}
|
||||||
// Parent: CVoiceContainerBase
|
// Parent: None
|
||||||
// Fields count: 7
|
// Fields count: 14
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CVoiceContainerRandomSampler {
|
pub mod SceneObject_t {
|
||||||
pub const m_flLoudAmplitude: usize = 0x60; // float32
|
pub const m_nObjectID: usize = 0x0; // uint32
|
||||||
pub const m_flLoudAmplitudeJitter: usize = 0x64; // float32
|
pub const m_vTransform: usize = 0x4; // Vector4D[3]
|
||||||
pub const m_flSoftAmplitude: usize = 0x68; // float32
|
pub const m_flFadeStartDistance: usize = 0x34; // float32
|
||||||
pub const m_flSoftAmplitudeJitter: usize = 0x6C; // float32
|
pub const m_flFadeEndDistance: usize = 0x38; // float32
|
||||||
pub const m_flLoudTimeJitter: usize = 0x70; // float32
|
pub const m_vTintColor: usize = 0x3C; // Vector4D
|
||||||
pub const m_flSoftTimeJitter: usize = 0x74; // float32
|
pub const m_skin: usize = 0x50; // CUtlString
|
||||||
pub const m_grainResources: usize = 0x78; // CUtlVector<CStrongHandle<InfoForResourceTypeCVoiceContainerBase>>
|
pub const m_nObjectTypeFlags: usize = 0x58; // ObjectTypeFlags_t
|
||||||
|
pub const m_vLightingOrigin: usize = 0x5C; //
|
||||||
|
pub const m_nOverlayRenderOrder: usize = 0x68; // int16
|
||||||
|
pub const m_nLODOverride: usize = 0x6A; // int16
|
||||||
|
pub const m_nCubeMapPrecomputedHandshake: usize = 0x6C; // int32
|
||||||
|
pub const m_nLightProbeVolumePrecomputedHandshake: usize = 0x70; // int32
|
||||||
|
pub const m_renderableModel: usize = 0x78; // CStrongHandle<InfoForResourceTypeCModel>
|
||||||
|
pub const m_renderable: usize = 0x80; // CStrongHandle<InfoForResourceTypeCRenderMesh>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 6
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod VMixFilterDesc_t {
|
pub mod AggregateLODSetup_t {
|
||||||
pub const m_nFilterType: usize = 0x0; // VMixFilterType_t
|
pub const m_vLODOrigin: usize = 0x0; //
|
||||||
pub const m_nFilterSlope: usize = 0x2; // VMixFilterSlope_t
|
pub const m_fMaxObjectScale: usize = 0xC; // float32
|
||||||
pub const m_bEnabled: usize = 0x3; // bool
|
pub const m_fSwitchDistances: usize = 0x10; // CUtlVectorFixedGrowable<float32>
|
||||||
pub const m_fldbGain: usize = 0x4; // float32
|
|
||||||
pub const m_flCutoffFreq: usize = 0x8; // float32
|
|
||||||
pub const m_flQ: usize = 0xC; // float32
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: BaseSceneObjectOverride_t
|
||||||
// Fields count: 1
|
// Fields count: 4
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod VMixEQ8Desc_t {
|
pub mod ExtraVertexStreamOverride_t {
|
||||||
pub const m_stages: usize = 0x0; // VMixFilterDesc_t[8]
|
pub const m_nSubSceneObject: usize = 0x4; // uint32
|
||||||
|
pub const m_nDrawCallIndex: usize = 0x8; // uint32
|
||||||
|
pub const m_nAdditionalMeshDrawPrimitiveFlags: usize = 0xC; // MeshDrawPrimitiveFlags_t
|
||||||
|
pub const m_extraBufferBinding: usize = 0x10; // CRenderBufferBinding
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 7
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod VMixDelayDesc_t {
|
pub mod ClutterTile_t {
|
||||||
pub const m_feedbackFilter: usize = 0x0; // VMixFilterDesc_t
|
pub const m_nFirstInstance: usize = 0x0; // uint32
|
||||||
pub const m_bEnableFilter: usize = 0x10; // bool
|
pub const m_nLastInstance: usize = 0x4; // uint32
|
||||||
pub const m_flDelay: usize = 0x14; // float32
|
pub const m_BoundsWs: usize = 0x8; // AABB_t
|
||||||
pub const m_flDirectGain: usize = 0x18; // float32
|
|
||||||
pub const m_flDelayGain: usize = 0x1C; // float32
|
|
||||||
pub const m_flFeedbackGain: usize = 0x20; // float32
|
|
||||||
pub const m_flWidth: usize = 0x24; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod VMixPannerDesc_t {
|
|
||||||
pub const m_type: usize = 0x0; // VMixPannerType_t
|
|
||||||
pub const m_flStrength: usize = 0x4; // float32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCWorldNode {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCPanoramaStyle {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MResourceTypeForInfoType
|
|
||||||
pub mod InfoForResourceTypeCDACGameDefsData {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
// MPropertyCustomEditor
|
|
||||||
pub mod CParticleCollectionFloatInput {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 2
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod ParticlePreviewBodyGroup_t {
|
|
||||||
pub const m_bodyGroupName: usize = 0x0; // CUtlString
|
|
||||||
pub const m_nValue: usize = 0x8; // int32
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 16
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod ParticlePreviewState_t {
|
|
||||||
pub const m_previewModel: usize = 0x0; // CUtlString
|
|
||||||
pub const m_nModSpecificData: usize = 0x8; // uint32
|
|
||||||
pub const m_groundType: usize = 0xC; // PetGroundType_t
|
|
||||||
pub const m_sequenceName: usize = 0x10; // CUtlString
|
|
||||||
pub const m_nFireParticleOnSequenceFrame: usize = 0x18; // int32
|
|
||||||
pub const m_hitboxSetName: usize = 0x20; // CUtlString
|
|
||||||
pub const m_materialGroupName: usize = 0x28; // CUtlString
|
|
||||||
pub const m_vecBodyGroups: usize = 0x30; // CUtlVector<ParticlePreviewBodyGroup_t>
|
|
||||||
pub const m_flPlaybackSpeed: usize = 0x48; // float32
|
|
||||||
pub const m_flParticleSimulationRate: usize = 0x4C; // float32
|
|
||||||
pub const m_bShouldDrawHitboxes: usize = 0x50; // bool
|
|
||||||
pub const m_bShouldDrawAttachments: usize = 0x51; // bool
|
|
||||||
pub const m_bShouldDrawAttachmentNames: usize = 0x52; // bool
|
|
||||||
pub const m_bShouldDrawControlPointAxes: usize = 0x53; // bool
|
|
||||||
pub const m_bAnimationNonLooping: usize = 0x54; // bool
|
|
||||||
pub const m_vecPreviewGravity: usize = 0x58; //
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 6
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod ParticleControlPointDriver_t {
|
|
||||||
pub const m_iControlPoint: usize = 0x0; // int32
|
|
||||||
pub const m_iAttachType: usize = 0x4; // ParticleAttachment_t
|
|
||||||
pub const m_attachmentName: usize = 0x8; // CUtlString
|
|
||||||
pub const m_vecOffset: usize = 0x10; //
|
|
||||||
pub const m_angOffset: usize = 0x1C; // QAngle
|
|
||||||
pub const m_entityName: usize = 0x28; // CUtlString
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod IParticleSystemDefinition {
|
|
||||||
}
|
|
||||||
// Parent: None
|
|
||||||
// Fields count: 18
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CParticleVisibilityInputs {
|
|
||||||
pub const m_flCameraBias: usize = 0x0; // float32
|
|
||||||
pub const m_nCPin: usize = 0x4; // int32
|
|
||||||
pub const m_flProxyRadius: usize = 0x8; // float32
|
|
||||||
pub const m_flInputMin: usize = 0xC; // float32
|
|
||||||
pub const m_flInputMax: usize = 0x10; // float32
|
|
||||||
pub const m_flNoPixelVisibilityFallback: usize = 0x14; // float32
|
|
||||||
pub const m_flDistanceInputMin: usize = 0x18; // float32
|
|
||||||
pub const m_flDistanceInputMax: usize = 0x1C; // float32
|
|
||||||
pub const m_flDotInputMin: usize = 0x20; // float32
|
|
||||||
pub const m_flDotInputMax: usize = 0x24; // float32
|
|
||||||
pub const m_bDotCPAngles: usize = 0x28; // bool
|
|
||||||
pub const m_bDotCameraAngles: usize = 0x29; // bool
|
|
||||||
pub const m_flAlphaScaleMin: usize = 0x2C; // float32
|
|
||||||
pub const m_flAlphaScaleMax: usize = 0x30; // float32
|
|
||||||
pub const m_flRadiusScaleMin: usize = 0x34; // float32
|
|
||||||
pub const m_flRadiusScaleMax: usize = 0x38; // float32
|
|
||||||
pub const m_flRadiusScaleFOVBase: usize = 0x3C; // float32
|
|
||||||
pub const m_bRightEye: usize = 0x40; // bool
|
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 8
|
// Fields count: 8
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CPathParameters {
|
pub mod AggregateSceneObject_t {
|
||||||
pub const m_nStartControlPointNumber: usize = 0x0; // int32
|
pub const m_allFlags: usize = 0x0; // ObjectTypeFlags_t
|
||||||
pub const m_nEndControlPointNumber: usize = 0x4; // int32
|
pub const m_anyFlags: usize = 0x4; // ObjectTypeFlags_t
|
||||||
pub const m_nBulgeControl: usize = 0x8; // int32
|
pub const m_nLayer: usize = 0x8; // int16
|
||||||
pub const m_flBulge: usize = 0xC; // float32
|
pub const m_aggregateMeshes: usize = 0x10; // CUtlVector<AggregateMeshInfo_t>
|
||||||
pub const m_flMidPoint: usize = 0x10; // float32
|
pub const m_lodSetups: usize = 0x28; // CUtlVector<AggregateLODSetup_t>
|
||||||
pub const m_vStartPointOffset: usize = 0x14; //
|
pub const m_visClusterMembership: usize = 0x40; // CUtlVector<uint16>
|
||||||
pub const m_vMidPointOffset: usize = 0x20; //
|
pub const m_fragmentTransforms: usize = 0x58; // CUtlVector<matrix3x4_t>
|
||||||
pub const m_vEndOffset: usize = 0x2C; //
|
pub const m_renderableModel: usize = 0x70; // CStrongHandle<InfoForResourceTypeCModel>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 7
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod NodeData_t {
|
||||||
|
pub const m_nParent: usize = 0x0; // int32
|
||||||
|
pub const m_vOrigin: usize = 0x4; //
|
||||||
|
pub const m_vMinBounds: usize = 0x10; //
|
||||||
|
pub const m_vMaxBounds: usize = 0x1C; //
|
||||||
|
pub const m_flMinimumDistance: usize = 0x28; // float32
|
||||||
|
pub const m_ChildNodeIndices: usize = 0x30; // CUtlVector<int32>
|
||||||
|
pub const m_worldNodePrefix: usize = 0x48; // CUtlString
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 8
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod ClutterSceneObject_t {
|
||||||
|
pub const m_Bounds: usize = 0x0; // AABB_t
|
||||||
|
pub const m_flags: usize = 0x18; // ObjectTypeFlags_t
|
||||||
|
pub const m_nLayer: usize = 0x1C; // int16
|
||||||
|
pub const m_instancePositions: usize = 0x20; // CUtlVector<Vector>
|
||||||
|
pub const m_instanceScales: usize = 0x50; // CUtlVector<float32>
|
||||||
|
pub const m_instanceTintSrgb: usize = 0x68; // CUtlVector<Color>
|
||||||
|
pub const m_tiles: usize = 0x80; // CUtlVector<ClutterTile_t>
|
||||||
|
pub const m_renderableModel: usize = 0x98; // CStrongHandle<InfoForResourceTypeCModel>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 5
|
// Fields count: 5
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod ParticleChildrenInfo_t {
|
pub mod WorldBuilderParams_t {
|
||||||
pub const m_ChildRef: usize = 0x0; // CStrongHandle<InfoForResourceTypeIParticleSystemDefinition>
|
pub const m_flMinDrawVolumeSize: usize = 0x0; // float32
|
||||||
pub const m_flDelay: usize = 0x8; // float32
|
pub const m_bBuildBakedLighting: usize = 0x4; // bool
|
||||||
pub const m_bEndCap: usize = 0xC; // bool
|
pub const m_vLightmapUvScale: usize = 0x8; // Vector2D
|
||||||
pub const m_bDisableChild: usize = 0xD; // bool
|
pub const m_nCompileTimestamp: usize = 0x10; // uint64
|
||||||
pub const m_nDetailLevel: usize = 0x10; // ParticleDetailLevel_t
|
pub const m_nCompileFingerprint: usize = 0x18; // uint64
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 4
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod PermEntityLumpData_t {
|
||||||
|
pub const m_name: usize = 0x8; // CUtlString
|
||||||
|
pub const m_hammerUniqueId: usize = 0x10; // CUtlString
|
||||||
|
pub const m_childLumps: usize = 0x18; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||||
|
pub const m_entityKeyValues: usize = 0x30; // CUtlLeanVector<EntityKeyValueData_t>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 13
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod WorldNode_t {
|
||||||
|
pub const m_sceneObjects: usize = 0x0; // CUtlVector<SceneObject_t>
|
||||||
|
pub const m_infoOverlays: usize = 0x18; // CUtlVector<InfoOverlayData_t>
|
||||||
|
pub const m_visClusterMembership: usize = 0x30; // CUtlVector<uint16>
|
||||||
|
pub const m_aggregateSceneObjects: usize = 0x48; // CUtlVector<AggregateSceneObject_t>
|
||||||
|
pub const m_clutterSceneObjects: usize = 0x60; // CUtlVector<ClutterSceneObject_t>
|
||||||
|
pub const m_extraVertexStreamOverrides: usize = 0x78; // CUtlVector<ExtraVertexStreamOverride_t>
|
||||||
|
pub const m_materialOverrides: usize = 0x90; // CUtlVector<MaterialOverride_t>
|
||||||
|
pub const m_extraVertexStreams: usize = 0xA8; // CUtlVector<WorldNodeOnDiskBufferData_t>
|
||||||
|
pub const m_layerNames: usize = 0xC0; // CUtlVector<CUtlString>
|
||||||
|
pub const m_sceneObjectLayerIndices: usize = 0xD8; // CUtlVector<uint8>
|
||||||
|
pub const m_overlayLayerIndices: usize = 0xF0; // CUtlVector<uint8>
|
||||||
|
pub const m_grassFileName: usize = 0x108; // CUtlString
|
||||||
|
pub const m_nodeLightingInfo: usize = 0x110; // BakedLightingInfo_t
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 1
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod BaseSceneObjectOverride_t {
|
||||||
|
pub const m_nSceneObjectIndex: usize = 0x0; // uint32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 7
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod EntityIOConnectionData_t {
|
||||||
|
pub const m_outputName: usize = 0x0; // CUtlString
|
||||||
|
pub const m_targetType: usize = 0x8; // uint32
|
||||||
|
pub const m_targetName: usize = 0x10; // CUtlString
|
||||||
|
pub const m_inputName: usize = 0x18; // CUtlString
|
||||||
|
pub const m_overrideParam: usize = 0x20; // CUtlString
|
||||||
|
pub const m_flDelay: usize = 0x28; // float32
|
||||||
|
pub const m_nTimesToFire: usize = 0x2C; // int32
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 5
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod BakedLightingInfo_t {
|
||||||
|
pub const m_nLightmapVersionNumber: usize = 0x0; // uint32
|
||||||
|
pub const m_nLightmapGameVersionNumber: usize = 0x4; // uint32
|
||||||
|
pub const m_vLightmapUvScale: usize = 0x8; // Vector2D
|
||||||
|
pub const m_bHasLightmaps: usize = 0x10; // bool
|
||||||
|
pub const m_lightMaps: usize = 0x18; // CUtlVector<CStrongHandle<InfoForResourceTypeCTextureBase>>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 2
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod ModelReference_t {
|
pub mod VoxelVisBlockOffset_t {
|
||||||
pub const m_model: usize = 0x0; // CStrongHandle<InfoForResourceTypeCModel>
|
pub const m_nOffset: usize = 0x0; // uint32
|
||||||
pub const m_flRelativeProbabilityOfSpawn: usize = 0x8; // float32
|
pub const m_nElementCount: usize = 0x4; // uint32
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 2
|
// Fields count: 4
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod SequenceWeightedList_t {
|
pub mod WorldNodeOnDiskBufferData_t {
|
||||||
pub const m_nSequence: usize = 0x0; // int32
|
pub const m_nElementCount: usize = 0x0; // int32
|
||||||
pub const m_flRelativeWeight: usize = 0x4; // float32
|
pub const m_nElementSizeInBytes: usize = 0x4; // int32
|
||||||
|
pub const m_inputLayoutFields: usize = 0x8; // CUtlVector<RenderInputLayoutField_t>
|
||||||
|
pub const m_pData: usize = 0x20; // CUtlVector<uint8>
|
||||||
}
|
}
|
||||||
// Parent: None
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 9
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CollisionGroupContext_t {
|
pub mod AggregateMeshInfo_t {
|
||||||
pub const m_nCollisionGroupNumber: usize = 0x0; // int32
|
pub const m_nVisClusterMemberOffset: usize = 0x0; // uint32
|
||||||
|
pub const m_nVisClusterMemberCount: usize = 0x4; // uint8
|
||||||
|
pub const m_bHasTransform: usize = 0x5; // bool
|
||||||
|
pub const m_nDrawCallIndex: usize = 0x6; // int16
|
||||||
|
pub const m_nLODSetupIndex: usize = 0x8; // int16
|
||||||
|
pub const m_nLODGroupMask: usize = 0xA; // uint8
|
||||||
|
pub const m_vTintColor: usize = 0xB; // Color
|
||||||
|
pub const m_objectFlags: usize = 0x10; // ObjectTypeFlags_t
|
||||||
|
pub const m_nLightProbeVolumePrecomputedHandshake: usize = 0x14; // int32
|
||||||
}
|
}
|
||||||
// Parent: CParticleFunctionOperator
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 4
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CParticleFunctionPreEmission {
|
pub mod World_t {
|
||||||
pub const m_bRunOnce: usize = 0x1C0; // bool
|
pub const m_builderParams: usize = 0x0; // WorldBuilderParams_t
|
||||||
|
pub const m_worldNodes: usize = 0x20; // CUtlVector<NodeData_t>
|
||||||
|
pub const m_worldLightingInfo: usize = 0x38; // BakedLightingInfo_t
|
||||||
|
pub const m_entityLumps: usize = 0x68; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||||
}
|
}
|
||||||
// Parent: CParticleFunction
|
// Parent: None
|
||||||
// Fields count: 1
|
// Fields count: 10
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CParticleFunctionInitializer {
|
pub mod InfoOverlayData_t {
|
||||||
pub const m_nAssociatedEmitterIndex: usize = 0x1B8; // int32
|
pub const m_transform: usize = 0x0; // matrix3x4_t
|
||||||
|
pub const m_flWidth: usize = 0x30; // float32
|
||||||
|
pub const m_flHeight: usize = 0x34; // float32
|
||||||
|
pub const m_flDepth: usize = 0x38; // float32
|
||||||
|
pub const m_vUVStart: usize = 0x3C; // Vector2D
|
||||||
|
pub const m_vUVEnd: usize = 0x44; // Vector2D
|
||||||
|
pub const m_pMaterial: usize = 0x50; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
||||||
|
pub const m_nRenderOrder: usize = 0x58; // int32
|
||||||
|
pub const m_vTintColor: usize = 0x5C; // Vector4D
|
||||||
|
pub const m_nSequenceOverride: usize = 0x6C; // int32
|
||||||
}
|
}
|
||||||
// Parent: CParticleFunction
|
// Parent: BaseSceneObjectOverride_t
|
||||||
// Fields count: 0
|
|
||||||
//
|
|
||||||
// Metadata:
|
|
||||||
// MGetKV3ClassDefaults
|
|
||||||
pub mod CParticleFunctionForce {
|
|
||||||
}
|
|
||||||
// Parent: CParticleFunction
|
|
||||||
// Fields count: 3
|
// Fields count: 3
|
||||||
//
|
//
|
||||||
// Metadata:
|
// Metadata:
|
||||||
// MGetKV3ClassDefaults
|
// MGetKV3ClassDefaults
|
||||||
pub mod CParticleFunctionRenderer {
|
pub mod MaterialOverride_t {
|
||||||
pub const VisibilityInputs: usize = 0x1B8; // CParticleVisibilityInputs
|
pub const m_nSubSceneObject: usize = 0x4; // uint32
|
||||||
pub const m_bCannotBeRefracted: usize = 0x1FC; // bool
|
pub const m_nDrawCallIndex: usize = 0x8; // uint32
|
||||||
pub const m_bSkipRenderingOnMobile: usize = 0x1FD; // bool
|
pub const m_pMaterial: usize = 0x10; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 2
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod EntityKeyValueData_t {
|
||||||
|
pub const m_connections: usize = 0x8; // CUtlVector<EntityIOConnectionData_t>
|
||||||
|
pub const m_keyValuesData: usize = 0x20; // CUtlBinaryBlock
|
||||||
|
}
|
||||||
|
// Parent: None
|
||||||
|
// Fields count: 13
|
||||||
|
//
|
||||||
|
// Metadata:
|
||||||
|
// MGetKV3ClassDefaults
|
||||||
|
pub mod CVoxelVisibility {
|
||||||
|
pub const m_nBaseClusterCount: usize = 0x40; // uint32
|
||||||
|
pub const m_nPVSBytesPerCluster: usize = 0x44; // uint32
|
||||||
|
pub const m_vMinBounds: usize = 0x48; //
|
||||||
|
pub const m_vMaxBounds: usize = 0x54; //
|
||||||
|
pub const m_flGridSize: usize = 0x60; // float32
|
||||||
|
pub const m_nSkyVisibilityCluster: usize = 0x64; // uint32
|
||||||
|
pub const m_nSunVisibilityCluster: usize = 0x68; // uint32
|
||||||
|
pub const m_NodeBlock: usize = 0x6C; // VoxelVisBlockOffset_t
|
||||||
|
pub const m_RegionBlock: usize = 0x74; // VoxelVisBlockOffset_t
|
||||||
|
pub const m_EnclosedClusterListBlock: usize = 0x7C; // VoxelVisBlockOffset_t
|
||||||
|
pub const m_EnclosedClustersBlock: usize = 0x84; // VoxelVisBlockOffset_t
|
||||||
|
pub const m_MasksBlock: usize = 0x8C; // VoxelVisBlockOffset_t
|
||||||
|
pub const m_nVisBlocks: usize = 0x94; // VoxelVisBlockOffset_t
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,9 +8,9 @@ use pelite::pe64::{Pe, PeView};
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use crate::error::{Error, Result};
|
use crate::error::{Error, Result};
|
||||||
use crate::source2::KeyboardKey;
|
use crate::source2::KeyButton;
|
||||||
|
|
||||||
/// Represents a key button.
|
/// Represents a keyboard button.
|
||||||
#[derive(Debug, Deserialize, Serialize)]
|
#[derive(Debug, Deserialize, Serialize)]
|
||||||
pub struct Button {
|
pub struct Button {
|
||||||
pub name: String,
|
pub name: String,
|
||||||
@ -29,7 +29,7 @@ pub fn buttons(process: &mut IntoProcessInstanceArcBox<'_>) -> Result<Vec<Button
|
|||||||
.scanner()
|
.scanner()
|
||||||
.finds_code(pattern!("488b15${'} 4885d2 74? 0f1f40"), &mut save)
|
.finds_code(pattern!("488b15${'} 4885d2 74? 0f1f40"), &mut save)
|
||||||
{
|
{
|
||||||
return Err(Error::Other("unable to find button list signature"));
|
return Err(Error::Other("unable to find button list pattern"));
|
||||||
}
|
}
|
||||||
|
|
||||||
read_buttons(process, &module, module.base + save[1])
|
read_buttons(process, &module, module.base + save[1])
|
||||||
@ -42,14 +42,13 @@ fn read_buttons(
|
|||||||
) -> Result<Vec<Button>> {
|
) -> Result<Vec<Button>> {
|
||||||
let mut buttons = Vec::new();
|
let mut buttons = Vec::new();
|
||||||
|
|
||||||
let mut key_ptr = Pointer64::<KeyboardKey>::from(process.read_addr64(list_addr)?);
|
let mut key_ptr = Pointer64::<KeyButton>::from(process.read_addr64(list_addr)?);
|
||||||
|
|
||||||
while !key_ptr.is_null() {
|
while !key_ptr.is_null() {
|
||||||
let key = key_ptr.read(process)?;
|
let key = key_ptr.read(process)?;
|
||||||
let name = key.name.read_string(process)?.to_string();
|
let name = key.name.read_string(process)?.to_string();
|
||||||
|
|
||||||
let value =
|
let value = ((key_ptr.address() - module.base) + offset_of!(KeyButton.state) as i64) as u32;
|
||||||
((key_ptr.address() - module.base) + offset_of!(KeyboardKey.state) as i64) as u32;
|
|
||||||
|
|
||||||
debug!(
|
debug!(
|
||||||
"found button: {} at {:#X} ({} + {:#X})",
|
"found button: {} at {:#X} ({} + {:#X})",
|
||||||
|
@ -54,13 +54,12 @@ fn read_interfaces(
|
|||||||
) -> Result<Vec<Interface>> {
|
) -> Result<Vec<Interface>> {
|
||||||
let mut ifaces = Vec::new();
|
let mut ifaces = Vec::new();
|
||||||
|
|
||||||
let mut reg_ptr = Pointer64::<InterfaceReg>::from(process.read_addr64(list_addr)?);
|
let mut cur_reg = Pointer64::<InterfaceReg>::from(process.read_addr64(list_addr)?);
|
||||||
|
|
||||||
while !reg_ptr.is_null() {
|
while !cur_reg.is_null() {
|
||||||
let reg = reg_ptr.read(process)?;
|
let reg = cur_reg.read(process)?;
|
||||||
let name = reg.name.read_string(process)?.to_string();
|
let name = reg.name.read_string(process)?.to_string();
|
||||||
|
let value = (reg.create_fn.address() - module.base) as u32;
|
||||||
let value = (reg.create_fn - module.base) as u32;
|
|
||||||
|
|
||||||
debug!(
|
debug!(
|
||||||
"found interface: {} at {:#X} ({} + {:#X})",
|
"found interface: {} at {:#X} ({} + {:#X})",
|
||||||
@ -72,7 +71,7 @@ fn read_interfaces(
|
|||||||
|
|
||||||
ifaces.push(Interface { name, value });
|
ifaces.push(Interface { name, value });
|
||||||
|
|
||||||
reg_ptr = reg.next;
|
cur_reg = reg.next;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sort interfaces by name.
|
// Sort interfaces by name.
|
||||||
|
@ -128,13 +128,13 @@ pub fn offsets(process: &mut IntoProcessInstanceArcBox<'_>) -> Result<OffsetMap>
|
|||||||
("matchmaking.dll", matchmaking::offsets),
|
("matchmaking.dll", matchmaking::offsets),
|
||||||
];
|
];
|
||||||
|
|
||||||
for (module_name, callback) in &modules {
|
for (module_name, offsets) in &modules {
|
||||||
let module = process.module_by_name(module_name)?;
|
let module = process.module_by_name(module_name)?;
|
||||||
let buf = process.read_raw(module.base, module.size as _)?;
|
let buf = process.read_raw(module.base, module.size as _)?;
|
||||||
|
|
||||||
let view = PeView::from_bytes(&buf)?;
|
let view = PeView::from_bytes(&buf)?;
|
||||||
|
|
||||||
map.insert(module_name.to_string(), callback(view));
|
map.insert(module_name.to_string(), offsets(view));
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(map)
|
Ok(map)
|
||||||
|
@ -17,14 +17,14 @@ use crate::source2::*;
|
|||||||
|
|
||||||
pub type SchemaMap = BTreeMap<String, (Vec<Class>, Vec<Enum>)>;
|
pub type SchemaMap = BTreeMap<String, (Vec<Class>, Vec<Enum>)>;
|
||||||
|
|
||||||
#[derive(Clone, Debug, Eq, Ord, PartialEq, PartialOrd, Deserialize, Serialize)]
|
#[derive(Clone, Deserialize, Serialize)]
|
||||||
pub enum ClassMetadata {
|
pub enum ClassMetadata {
|
||||||
Unknown { name: String },
|
Unknown { name: String },
|
||||||
NetworkChangeCallback { name: String },
|
NetworkChangeCallback { name: String },
|
||||||
NetworkVarNames { name: String, ty: String },
|
NetworkVarNames { name: String, type_name: String },
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Deserialize, Serialize)]
|
||||||
pub struct Class {
|
pub struct Class {
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub module_name: String,
|
pub module_name: String,
|
||||||
@ -33,14 +33,14 @@ pub struct Class {
|
|||||||
pub fields: Vec<ClassField>,
|
pub fields: Vec<ClassField>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Deserialize, Serialize)]
|
||||||
pub struct ClassField {
|
pub struct ClassField {
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub ty: String,
|
pub type_name: String,
|
||||||
pub offset: u32,
|
pub offset: u32,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Deserialize, Serialize)]
|
||||||
pub struct Enum {
|
pub struct Enum {
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub alignment: u8,
|
pub alignment: u8,
|
||||||
@ -48,13 +48,13 @@ pub struct Enum {
|
|||||||
pub members: Vec<EnumMember>,
|
pub members: Vec<EnumMember>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Deserialize, Serialize)]
|
||||||
pub struct EnumMember {
|
pub struct EnumMember {
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub value: i64,
|
pub value: i64,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Deserialize, Serialize)]
|
||||||
pub struct TypeScope {
|
pub struct TypeScope {
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub classes: Vec<Class>,
|
pub classes: Vec<Class>,
|
||||||
@ -120,6 +120,10 @@ fn read_class_binding_fields(
|
|||||||
process: &mut IntoProcessInstanceArcBox<'_>,
|
process: &mut IntoProcessInstanceArcBox<'_>,
|
||||||
binding: &SchemaClassBinding,
|
binding: &SchemaClassBinding,
|
||||||
) -> Result<Vec<ClassField>> {
|
) -> Result<Vec<ClassField>> {
|
||||||
|
if binding.fields.is_null() {
|
||||||
|
return Err(Error::Other("schema class fields is null"));
|
||||||
|
}
|
||||||
|
|
||||||
(0..binding.num_fields)
|
(0..binding.num_fields)
|
||||||
.map(|i| {
|
.map(|i| {
|
||||||
let field_ptr: Pointer64<SchemaClassFieldData> = binding
|
let field_ptr: Pointer64<SchemaClassFieldData> = binding
|
||||||
@ -131,18 +135,18 @@ fn read_class_binding_fields(
|
|||||||
let field = field_ptr.read(process)?;
|
let field = field_ptr.read(process)?;
|
||||||
|
|
||||||
if field.type_.is_null() {
|
if field.type_.is_null() {
|
||||||
return Err(Error::Other("field schema type is null"));
|
return Err(Error::Other("schema field type is null"));
|
||||||
}
|
}
|
||||||
|
|
||||||
let name = field.name.read_string(process)?.to_string();
|
let name = field.name.read_string(process)?.to_string();
|
||||||
let type_ = field.type_.read(process)?;
|
let type_ = field.type_.read(process)?;
|
||||||
|
|
||||||
// TODO: Parse this properly.
|
// TODO: Parse this properly.
|
||||||
let ty = type_.name.read_string(process)?.replace(" ", "");
|
let type_name = type_.name.read_string(process)?.replace(" ", "");
|
||||||
|
|
||||||
Ok(ClassField {
|
Ok(ClassField {
|
||||||
name,
|
name,
|
||||||
ty,
|
type_name,
|
||||||
offset: field.offset,
|
offset: field.offset,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@ -154,18 +158,18 @@ fn read_class_binding_metadata(
|
|||||||
binding: &SchemaClassBinding,
|
binding: &SchemaClassBinding,
|
||||||
) -> Result<Vec<ClassMetadata>> {
|
) -> Result<Vec<ClassMetadata>> {
|
||||||
if binding.static_metadata.is_null() {
|
if binding.static_metadata.is_null() {
|
||||||
return Err(Error::Other("class metadata is null"));
|
return Err(Error::Other("schema class metadata is null"));
|
||||||
}
|
}
|
||||||
|
|
||||||
(0..binding.num_static_metadata)
|
(0..binding.num_static_metadata)
|
||||||
.map(|i| {
|
.map(|i| {
|
||||||
let metadata_ptr: Pointer64<SchemaMetadataEntryData> =
|
let metadata_ptr =
|
||||||
binding.static_metadata.offset(i as _).into();
|
Pointer64::<SchemaMetadataEntryData>::from(binding.static_metadata.offset(i as _));
|
||||||
|
|
||||||
let metadata = metadata_ptr.read(process)?;
|
let metadata = metadata_ptr.read(process)?;
|
||||||
|
|
||||||
if metadata.network_value.is_null() {
|
if metadata.network_value.is_null() {
|
||||||
return Err(Error::Other("class metadata network value is null"));
|
return Err(Error::Other("schema class metadata network value is null"));
|
||||||
}
|
}
|
||||||
|
|
||||||
let name = metadata.name.read_string(process)?.to_string();
|
let name = metadata.name.read_string(process)?.to_string();
|
||||||
@ -181,9 +185,9 @@ fn read_class_binding_metadata(
|
|||||||
let var_value = network_value.u.var_value;
|
let var_value = network_value.u.var_value;
|
||||||
|
|
||||||
let name = var_value.name.read_string(process)?.to_string();
|
let name = var_value.name.read_string(process)?.to_string();
|
||||||
let ty = var_value.ty.read_string(process)?.replace(" ", "");
|
let type_name = var_value.ty.read_string(process)?.replace(" ", "");
|
||||||
|
|
||||||
ClassMetadata::NetworkVarNames { name, ty }
|
ClassMetadata::NetworkVarNames { name, type_name }
|
||||||
},
|
},
|
||||||
_ => ClassMetadata::Unknown { name },
|
_ => ClassMetadata::Unknown { name },
|
||||||
};
|
};
|
||||||
@ -260,10 +264,10 @@ fn read_schema_system(process: &mut IntoProcessInstanceArcBox<'_>) -> Result<Sch
|
|||||||
.scanner()
|
.scanner()
|
||||||
.finds_code(pattern!("488905${'} 4c8d45"), &mut save)
|
.finds_code(pattern!("488905${'} 4c8d45"), &mut save)
|
||||||
{
|
{
|
||||||
return Err(Error::Other("unable to find schema system signature"));
|
return Err(Error::Other("unable to find schema system pattern"));
|
||||||
}
|
}
|
||||||
|
|
||||||
let schema_system: SchemaSystem = process.read(module.base + save[1]).data_part()?;
|
let schema_system: SchemaSystem = process.read(module.base + save[1])?;
|
||||||
|
|
||||||
if schema_system.num_registrations == 0 {
|
if schema_system.num_registrations == 0 {
|
||||||
return Err(Error::Other("no schema system registrations found"));
|
return Err(Error::Other("no schema system registrations found"));
|
||||||
@ -272,43 +276,6 @@ fn read_schema_system(process: &mut IntoProcessInstanceArcBox<'_>) -> Result<Sch
|
|||||||
Ok(schema_system)
|
Ok(schema_system)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn read_class_bindings(
|
|
||||||
process: &mut IntoProcessInstanceArcBox<'_>,
|
|
||||||
type_scope_ptr: Pointer64<SchemaSystemTypeScope>,
|
|
||||||
) -> Result<Vec<Class>> {
|
|
||||||
let tree: UtlRbTree = process.read(type_scope_ptr.address() + 0x4C8)?;
|
|
||||||
|
|
||||||
let classes = (0..1000) // TODO: `num_elements` doesn't seem to work for all modules.
|
|
||||||
.filter_map(|i| {
|
|
||||||
let element = tree.elements.at(i as _).read(process).ok()?;
|
|
||||||
|
|
||||||
let binding_ptr = Pointer64::<SchemaTypeDeclaredClass>::from(element.data.address())
|
|
||||||
.read(process)
|
|
||||||
.ok()?
|
|
||||||
.binding;
|
|
||||||
|
|
||||||
if binding_ptr.is_null() {
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
|
|
||||||
read_class_binding(process, binding_ptr).ok()
|
|
||||||
})
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
Ok(classes)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn read_enum_bindings(
|
|
||||||
process: &mut IntoProcessInstanceArcBox<'_>,
|
|
||||||
type_scope_ptr: Pointer64<SchemaSystemTypeScope>,
|
|
||||||
) -> Result<Vec<Enum>> {
|
|
||||||
let _tree: UtlRbTree = process.read(type_scope_ptr.address() + 0x4F8)?;
|
|
||||||
|
|
||||||
// TODO: Implement this.
|
|
||||||
|
|
||||||
Ok(Vec::new())
|
|
||||||
}
|
|
||||||
|
|
||||||
fn read_type_scopes(
|
fn read_type_scopes(
|
||||||
process: &mut IntoProcessInstanceArcBox<'_>,
|
process: &mut IntoProcessInstanceArcBox<'_>,
|
||||||
schema_system: &SchemaSystem,
|
schema_system: &SchemaSystem,
|
||||||
@ -317,22 +284,26 @@ fn read_type_scopes(
|
|||||||
|
|
||||||
(0..type_scopes.size)
|
(0..type_scopes.size)
|
||||||
.map(|i| {
|
.map(|i| {
|
||||||
let type_scope_ptr = type_scopes.get(process, i as _)?;
|
let type_scope_ptr = type_scopes.element(process, i as _)?;
|
||||||
let type_scope = type_scope_ptr.read(process)?;
|
let type_scope = type_scope_ptr.read(process)?;
|
||||||
|
|
||||||
let name = unsafe { CStr::from_ptr(type_scope.name.as_ptr()) }
|
let name = unsafe { CStr::from_ptr(type_scope.name.as_ptr()) }
|
||||||
.to_string_lossy()
|
.to_string_lossy()
|
||||||
.to_string();
|
.to_string();
|
||||||
|
|
||||||
let classes = read_class_bindings(process, type_scope_ptr)?;
|
let classes: Vec<_> = type_scope
|
||||||
let enums = read_enum_bindings(process, type_scope_ptr)?;
|
.class_bindings
|
||||||
|
.elements(process)?
|
||||||
|
.iter()
|
||||||
|
.filter_map(|ptr| read_class_binding(process, *ptr).ok())
|
||||||
|
.collect();
|
||||||
|
|
||||||
debug!(
|
let enums: Vec<_> = type_scope
|
||||||
"found type scope: {} (classes count: {}) (enums count: {})",
|
.enum_bindings
|
||||||
name,
|
.elements(process)?
|
||||||
classes.len(),
|
.iter()
|
||||||
enums.len()
|
.filter_map(|ptr| read_enum_binding(process, *ptr).ok())
|
||||||
);
|
.collect();
|
||||||
|
|
||||||
Ok(TypeScope {
|
Ok(TypeScope {
|
||||||
name,
|
name,
|
||||||
|
@ -17,9 +17,6 @@ pub enum Error {
|
|||||||
#[error(transparent)]
|
#[error(transparent)]
|
||||||
Serde(#[from] serde_json::Error),
|
Serde(#[from] serde_json::Error),
|
||||||
|
|
||||||
#[error("index {idx} is out of bounds for array with length {len}")]
|
|
||||||
OutOfBounds { idx: usize, len: usize },
|
|
||||||
|
|
||||||
#[error("{0}")]
|
#[error("{0}")]
|
||||||
Other(&'static str),
|
Other(&'static str),
|
||||||
}
|
}
|
||||||
|
@ -15,6 +15,7 @@ use output::Results;
|
|||||||
|
|
||||||
mod analysis;
|
mod analysis;
|
||||||
mod error;
|
mod error;
|
||||||
|
mod mem;
|
||||||
mod output;
|
mod output;
|
||||||
mod source2;
|
mod source2;
|
||||||
|
|
||||||
|
13
src/mem.rs
Normal file
13
src/mem.rs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
use memflow::types::Pointer64;
|
||||||
|
|
||||||
|
pub trait IsNull {
|
||||||
|
fn is_null(&self) -> bool;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T> IsNull for Pointer64<T> {
|
||||||
|
/// Returns `true` if the pointer is null.
|
||||||
|
#[inline]
|
||||||
|
fn is_null(&self) -> bool {
|
||||||
|
self.inner == 0
|
||||||
|
}
|
||||||
|
}
|
@ -79,6 +79,7 @@ impl CodeGen for Vec<Button> {
|
|||||||
fmt.block("pub mod buttons", false, |fmt| {
|
fmt.block("pub mod buttons", false, |fmt| {
|
||||||
for button in self {
|
for button in self {
|
||||||
let mut name = button.name.clone();
|
let mut name = button.name.clone();
|
||||||
|
|
||||||
if name == "use" {
|
if name == "use" {
|
||||||
name = format!("r#{}", name);
|
name = format!("r#{}", name);
|
||||||
}
|
}
|
||||||
|
@ -42,16 +42,12 @@ impl<'a> Item<'a> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
trait CodeGen {
|
trait CodeGen {
|
||||||
/// Converts an [`Item`] to formatted C# code.
|
|
||||||
fn to_cs(&self, results: &Results, indent_size: usize) -> Result<String>;
|
fn to_cs(&self, results: &Results, indent_size: usize) -> Result<String>;
|
||||||
|
|
||||||
/// Converts an [`Item`] to formatted C++ code.
|
|
||||||
fn to_hpp(&self, results: &Results, indent_size: usize) -> Result<String>;
|
fn to_hpp(&self, results: &Results, indent_size: usize) -> Result<String>;
|
||||||
|
|
||||||
/// Converts an [`Item`] to formatted JSON.
|
|
||||||
fn to_json(&self, results: &Results, indent_size: usize) -> Result<String>;
|
fn to_json(&self, results: &Results, indent_size: usize) -> Result<String>;
|
||||||
|
|
||||||
/// Converts an [`Item`] to formatted Rust code.
|
|
||||||
fn to_rs(&self, results: &Results, indent_size: usize) -> Result<String>;
|
fn to_rs(&self, results: &Results, indent_size: usize) -> Result<String>;
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
@ -126,7 +122,7 @@ pub struct Results {
|
|||||||
/// Map of offsets to dump.
|
/// Map of offsets to dump.
|
||||||
pub offsets: OffsetMap,
|
pub offsets: OffsetMap,
|
||||||
|
|
||||||
/// Map of schema classes and enums to dump.
|
/// Map of schema classes/enums to dump.
|
||||||
pub schemas: SchemaMap,
|
pub schemas: SchemaMap,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -152,10 +148,8 @@ impl Results {
|
|||||||
out_dir: P,
|
out_dir: P,
|
||||||
indent_size: usize,
|
indent_size: usize,
|
||||||
) -> Result<()> {
|
) -> Result<()> {
|
||||||
// TODO: Make this user-configurable.
|
|
||||||
const FILE_EXTS: &[&str] = &["cs", "hpp", "json", "rs"];
|
const FILE_EXTS: &[&str] = &["cs", "hpp", "json", "rs"];
|
||||||
|
|
||||||
// Create the output directory if it doesn't exist.
|
|
||||||
fs::create_dir_all(&out_dir)?;
|
fs::create_dir_all(&out_dir)?;
|
||||||
|
|
||||||
let items = [
|
let items = [
|
||||||
@ -164,18 +158,12 @@ impl Results {
|
|||||||
("offsets", Item::Offsets(&self.offsets)),
|
("offsets", Item::Offsets(&self.offsets)),
|
||||||
];
|
];
|
||||||
|
|
||||||
self.dump_items(&items, out_dir.as_ref(), indent_size, FILE_EXTS)?;
|
for (file_name, item) in &items {
|
||||||
|
self.dump_item(item, &out_dir, indent_size, FILE_EXTS, file_name)?;
|
||||||
// Write a new file for each module.
|
|
||||||
for (module_name, (classes, enums)) in &self.schemas {
|
|
||||||
let schemas = [(module_name.clone(), (classes.clone(), enums.clone()))].into();
|
|
||||||
|
|
||||||
let item = Item::Schemas(&schemas);
|
|
||||||
|
|
||||||
self.dump_item(&item, out_dir.as_ref(), indent_size, FILE_EXTS, module_name)?;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
self.dump_info_file(process, out_dir)?;
|
self.dump_schemas(&out_dir, indent_size, FILE_EXTS)?;
|
||||||
|
self.dump_info(process, &out_dir)?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@ -194,19 +182,6 @@ impl Results {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn dump_info_file<P: AsRef<Path>>(
|
|
||||||
&self,
|
|
||||||
process: &mut IntoProcessInstanceArcBox<'_>,
|
|
||||||
out_dir: P,
|
|
||||||
) -> Result<()> {
|
|
||||||
let content = &serde_json::to_string_pretty(&json!({
|
|
||||||
"timestamp": self.timestamp.to_rfc3339(),
|
|
||||||
"build_number": self.read_build_number(process).unwrap_or(0),
|
|
||||||
}))?;
|
|
||||||
|
|
||||||
self.dump_file(out_dir.as_ref(), "info", "json", &content)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn dump_item<P: AsRef<Path>>(
|
fn dump_item<P: AsRef<Path>>(
|
||||||
&self,
|
&self,
|
||||||
item: &Item,
|
item: &Item,
|
||||||
@ -218,21 +193,36 @@ impl Results {
|
|||||||
for ext in file_exts {
|
for ext in file_exts {
|
||||||
let content = item.generate(self, indent_size, ext)?;
|
let content = item.generate(self, indent_size, ext)?;
|
||||||
|
|
||||||
self.dump_file(out_dir.as_ref(), file_name, ext, &content)?;
|
self.dump_file(&out_dir, file_name, ext, &content)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn dump_items<P: AsRef<Path>>(
|
fn dump_info<P: AsRef<Path>>(
|
||||||
|
&self,
|
||||||
|
process: &mut IntoProcessInstanceArcBox<'_>,
|
||||||
|
out_dir: P,
|
||||||
|
) -> Result<()> {
|
||||||
|
let content = &serde_json::to_string_pretty(&json!({
|
||||||
|
"timestamp": self.timestamp.to_rfc3339(),
|
||||||
|
"build_number": self.read_build_number(process).unwrap_or(0),
|
||||||
|
}))?;
|
||||||
|
|
||||||
|
self.dump_file(&out_dir, "info", "json", &content)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn dump_schemas<P: AsRef<Path>>(
|
||||||
&self,
|
&self,
|
||||||
items: &[(&str, Item)],
|
|
||||||
out_dir: P,
|
out_dir: P,
|
||||||
indent_size: usize,
|
indent_size: usize,
|
||||||
file_exts: &[&str],
|
file_exts: &[&str],
|
||||||
) -> Result<()> {
|
) -> Result<()> {
|
||||||
for (file_name, item) in items {
|
for (module_name, (classes, enums)) in &self.schemas {
|
||||||
self.dump_item(item, out_dir.as_ref(), indent_size, file_exts, file_name)?;
|
let map = SchemaMap::from([(module_name.clone(), (classes.clone(), enums.clone()))]);
|
||||||
|
let item = Item::Schemas(&map);
|
||||||
|
|
||||||
|
self.dump_item(&item, &out_dir, indent_size, file_exts, &module_name)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
@ -242,10 +232,10 @@ impl Results {
|
|||||||
self.offsets
|
self.offsets
|
||||||
.iter()
|
.iter()
|
||||||
.find_map(|(module_name, offsets)| {
|
.find_map(|(module_name, offsets)| {
|
||||||
let offset = offsets.iter().find(|(name, _)| *name == "dwBuildNumber")?;
|
let (_name, value) = offsets.iter().find(|(name, _)| *name == "dwBuildNumber")?;
|
||||||
let module = process.module_by_name(module_name).ok()?;
|
let module = process.module_by_name(module_name).ok()?;
|
||||||
|
|
||||||
process.read(module.base + offset.1).ok()
|
process.read(module.base + value).ok()
|
||||||
})
|
})
|
||||||
.ok_or(Error::Other("unable to read build number"))
|
.ok_or(Error::Other("unable to read build number"))
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ impl CodeGen for SchemaMap {
|
|||||||
false,
|
false,
|
||||||
|fmt| {
|
|fmt| {
|
||||||
for enum_ in enums {
|
for enum_ in enums {
|
||||||
let ty = match enum_.alignment {
|
let type_name = match enum_.alignment {
|
||||||
1 => "byte",
|
1 => "byte",
|
||||||
2 => "ushort",
|
2 => "ushort",
|
||||||
4 => "uint",
|
4 => "uint",
|
||||||
@ -47,7 +47,7 @@ impl CodeGen for SchemaMap {
|
|||||||
&format!(
|
&format!(
|
||||||
"public enum {} : {}",
|
"public enum {} : {}",
|
||||||
Self::sanitize_name(&enum_.name),
|
Self::sanitize_name(&enum_.name),
|
||||||
ty
|
type_name
|
||||||
),
|
),
|
||||||
false,
|
false,
|
||||||
|fmt| {
|
|fmt| {
|
||||||
@ -90,7 +90,7 @@ impl CodeGen for SchemaMap {
|
|||||||
writeln!(
|
writeln!(
|
||||||
fmt,
|
fmt,
|
||||||
"public const nint {} = {:#X}; // {}",
|
"public const nint {} = {:#X}; // {}",
|
||||||
field.name, field.offset, field.ty
|
field.name, field.offset, field.type_name
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -136,7 +136,7 @@ impl CodeGen for SchemaMap {
|
|||||||
false,
|
false,
|
||||||
|fmt| {
|
|fmt| {
|
||||||
for enum_ in enums {
|
for enum_ in enums {
|
||||||
let ty = match enum_.alignment {
|
let type_name = match enum_.alignment {
|
||||||
1 => "uint8_t",
|
1 => "uint8_t",
|
||||||
2 => "uint16_t",
|
2 => "uint16_t",
|
||||||
4 => "uint32_t",
|
4 => "uint32_t",
|
||||||
@ -151,7 +151,7 @@ impl CodeGen for SchemaMap {
|
|||||||
&format!(
|
&format!(
|
||||||
"enum class {} : {}",
|
"enum class {} : {}",
|
||||||
Self::sanitize_name(&enum_.name),
|
Self::sanitize_name(&enum_.name),
|
||||||
ty
|
type_name
|
||||||
),
|
),
|
||||||
true,
|
true,
|
||||||
|fmt| {
|
|fmt| {
|
||||||
@ -191,7 +191,7 @@ impl CodeGen for SchemaMap {
|
|||||||
writeln!(
|
writeln!(
|
||||||
fmt,
|
fmt,
|
||||||
"constexpr std::ptrdiff_t {} = {:#X}; // {}",
|
"constexpr std::ptrdiff_t {} = {:#X}; // {}",
|
||||||
field.name, field.offset, field.ty
|
field.name, field.offset, field.type_name
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -236,10 +236,10 @@ impl CodeGen for SchemaMap {
|
|||||||
"type": "NetworkChangeCallback",
|
"type": "NetworkChangeCallback",
|
||||||
"name": name,
|
"name": name,
|
||||||
}),
|
}),
|
||||||
ClassMetadata::NetworkVarNames { name, ty } => json!({
|
ClassMetadata::NetworkVarNames { name, type_name } => json!({
|
||||||
"type": "NetworkVarNames",
|
"type": "NetworkVarNames",
|
||||||
"name": name,
|
"name": name,
|
||||||
"ty": ty,
|
"type_name": type_name,
|
||||||
}),
|
}),
|
||||||
ClassMetadata::Unknown { name } => json!({
|
ClassMetadata::Unknown { name } => json!({
|
||||||
"type": "Unknown",
|
"type": "Unknown",
|
||||||
@ -268,7 +268,7 @@ impl CodeGen for SchemaMap {
|
|||||||
.map(|member| (&member.name, member.value))
|
.map(|member| (&member.name, member.value))
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let ty = match enum_.alignment {
|
let type_name = match enum_.alignment {
|
||||||
1 => "uint8",
|
1 => "uint8",
|
||||||
2 => "uint16",
|
2 => "uint16",
|
||||||
4 => "uint32",
|
4 => "uint32",
|
||||||
@ -280,7 +280,7 @@ impl CodeGen for SchemaMap {
|
|||||||
Self::sanitize_name(&enum_.name),
|
Self::sanitize_name(&enum_.name),
|
||||||
json!({
|
json!({
|
||||||
"alignment": enum_.alignment,
|
"alignment": enum_.alignment,
|
||||||
"type": ty,
|
"type": type_name,
|
||||||
"members": members,
|
"members": members,
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
@ -324,7 +324,7 @@ impl CodeGen for SchemaMap {
|
|||||||
false,
|
false,
|
||||||
|fmt| {
|
|fmt| {
|
||||||
for enum_ in enums {
|
for enum_ in enums {
|
||||||
let ty = match enum_.alignment {
|
let type_name = match enum_.alignment {
|
||||||
1 => "u8",
|
1 => "u8",
|
||||||
2 => "u16",
|
2 => "u16",
|
||||||
4 => "u32",
|
4 => "u32",
|
||||||
@ -338,7 +338,7 @@ impl CodeGen for SchemaMap {
|
|||||||
fmt.block(
|
fmt.block(
|
||||||
&format!(
|
&format!(
|
||||||
"#[repr({})]\npub enum {}",
|
"#[repr({})]\npub enum {}",
|
||||||
ty,
|
type_name,
|
||||||
Self::sanitize_name(&enum_.name),
|
Self::sanitize_name(&enum_.name),
|
||||||
),
|
),
|
||||||
false,
|
false,
|
||||||
@ -381,7 +381,7 @@ impl CodeGen for SchemaMap {
|
|||||||
writeln!(
|
writeln!(
|
||||||
fmt,
|
fmt,
|
||||||
"pub const {}: usize = {:#X}; // {}",
|
"pub const {}: usize = {:#X}; // {}",
|
||||||
field.name, field.offset, field.ty
|
field.name, field.offset, field.type_name
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -417,8 +417,8 @@ fn write_metadata(fmt: &mut Formatter<'_>, metadata: &[ClassMetadata]) -> fmt::R
|
|||||||
ClassMetadata::NetworkChangeCallback { name } => {
|
ClassMetadata::NetworkChangeCallback { name } => {
|
||||||
writeln!(fmt, "// NetworkChangeCallback: {}", name)?;
|
writeln!(fmt, "// NetworkChangeCallback: {}", name)?;
|
||||||
}
|
}
|
||||||
ClassMetadata::NetworkVarNames { name, ty } => {
|
ClassMetadata::NetworkVarNames { name, type_name } => {
|
||||||
writeln!(fmt, "// NetworkVarNames: {} ({})", name, ty)?;
|
writeln!(fmt, "// NetworkVarNames: {} ({})", name, type_name)?;
|
||||||
}
|
}
|
||||||
ClassMetadata::Unknown { name } => {
|
ClassMetadata::Unknown { name } => {
|
||||||
writeln!(fmt, "// {}", name)?;
|
writeln!(fmt, "// {}", name)?;
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
use memflow::prelude::v1::*;
|
use memflow::prelude::v1::*;
|
||||||
|
|
||||||
|
/// Represents a keyboard button.
|
||||||
|
#[derive(Pod)]
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
pub struct KeyboardKey {
|
pub struct KeyButton {
|
||||||
pad_0000: [u8; 0x8], // 0x0000
|
pad_0000: [u8; 0x8], // 0x0000
|
||||||
pub name: Pointer64<ReprCString>, // 0x0008
|
pub name: Pointer64<ReprCString>, // 0x0008
|
||||||
pad_0010: [u8; 0x20], // 0x0010
|
pad_0010: [u8; 0x20], // 0x0010
|
||||||
pub state: u32, // 0x0030
|
pub state: u32, // 0x0030
|
||||||
pad_0034: [u8; 0x54], // 0x0034
|
pad_0034: [u8; 0x54], // 0x0034
|
||||||
pub next: Pointer64<KeyboardKey>, // 0x0088
|
pub next: Pointer64<KeyButton>, // 0x0088
|
||||||
}
|
}
|
||||||
|
|
||||||
unsafe impl Pod for KeyboardKey {}
|
|
||||||
|
@ -1,27 +1,242 @@
|
|||||||
pub use schema_base_class_info_data::*;
|
use std::ffi::c_char;
|
||||||
pub use schema_class_field_data::*;
|
|
||||||
pub use schema_class_info_data::*;
|
|
||||||
pub use schema_declared_class::*;
|
|
||||||
pub use schema_enum_info_data::*;
|
|
||||||
pub use schema_enumerator_info_data::*;
|
|
||||||
pub use schema_metadata_entry_data::*;
|
|
||||||
pub use schema_static_field_data::*;
|
|
||||||
pub use schema_system::*;
|
|
||||||
pub use schema_system_type_scope::*;
|
|
||||||
pub use schema_type::*;
|
|
||||||
pub use schema_type_declared_class::*;
|
|
||||||
pub use schema_type_declared_enum::*;
|
|
||||||
|
|
||||||
pub mod schema_base_class_info_data;
|
use memflow::prelude::v1::*;
|
||||||
pub mod schema_class_field_data;
|
|
||||||
pub mod schema_class_info_data;
|
use super::{UtlTsHash, UtlVector};
|
||||||
pub mod schema_declared_class;
|
|
||||||
pub mod schema_enum_info_data;
|
pub type SchemaClassBinding = SchemaClassInfoData;
|
||||||
pub mod schema_enumerator_info_data;
|
pub type SchemaEnumBinding = SchemaEnumInfoData;
|
||||||
pub mod schema_metadata_entry_data;
|
pub type SchemaTypeDeclaredClass = SchemaType;
|
||||||
pub mod schema_static_field_data;
|
pub type SchemaTypeDeclaredEnum = SchemaType;
|
||||||
pub mod schema_system;
|
|
||||||
pub mod schema_system_type_scope;
|
#[repr(u8)]
|
||||||
pub mod schema_type;
|
pub enum SchemaAtomicCategory {
|
||||||
pub mod schema_type_declared_class;
|
Basic = 0,
|
||||||
pub mod schema_type_declared_enum;
|
T,
|
||||||
|
CollectionOfT,
|
||||||
|
TF,
|
||||||
|
TT,
|
||||||
|
TTF,
|
||||||
|
I,
|
||||||
|
None,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[repr(u8)]
|
||||||
|
pub enum SchemaTypeCategory {
|
||||||
|
BuiltIn = 0,
|
||||||
|
Ptr,
|
||||||
|
Bitfield,
|
||||||
|
FixedArray,
|
||||||
|
Atomic,
|
||||||
|
DeclaredClass,
|
||||||
|
DeclaredEnum,
|
||||||
|
None,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaArrayT {
|
||||||
|
pub array_size: u32, // 0x0000
|
||||||
|
pad_0004: [u8; 0x4], // 0x0004
|
||||||
|
pub element: Pointer64<SchemaType>, // 0x0008
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaAtomicI {
|
||||||
|
pad_0000: [u8; 0x10], // 0x0000
|
||||||
|
pub value: u64, // 0x0010
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaAtomicT {
|
||||||
|
pub element: Pointer64<SchemaType>, // 0x0000
|
||||||
|
pad_0008: [u8; 0x8], // 0x0008
|
||||||
|
pub template: Pointer64<SchemaType>, // 0x0010
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaAtomicTT {
|
||||||
|
pad_0000: [u8; 0x10], // 0x0000
|
||||||
|
pub templates: [Pointer64<SchemaType>; 2], // 0x0010
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaAtomicTF {
|
||||||
|
pad_0000: [u8; 0x10], // 0x0000
|
||||||
|
pub template: Pointer64<SchemaType>, // 0x0010
|
||||||
|
pub size: i32, // 0x0018
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaAtomicTTF {
|
||||||
|
pad_0000: [u8; 0x10], // 0x0000
|
||||||
|
pub templates: [Pointer64<SchemaType>; 2], // 0x0010
|
||||||
|
pub size: i32, // 0x0020
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Pod)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaBaseClassInfoData {
|
||||||
|
pub offset: u32, // 0x0000
|
||||||
|
pad_0004: [u8; 0x4], // 0x0004
|
||||||
|
pub prev: Pointer64<SchemaClassInfoData>, // 0x0008
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Pod)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaClassFieldData {
|
||||||
|
pub name: Pointer64<ReprCString>, // 0x0000
|
||||||
|
pub type_: Pointer64<SchemaType>, // 0x0008
|
||||||
|
pub offset: u32, // 0x0010
|
||||||
|
pub num_metadata: u32, // 0x0014
|
||||||
|
pub metadata: Pointer64<SchemaMetadataEntryData>, // 0x0018
|
||||||
|
}
|
||||||
|
|
||||||
|
#[rustfmt::skip]
|
||||||
|
#[derive(Pod)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaClassInfoData {
|
||||||
|
pub base: Pointer64<SchemaClassInfoData>, // 0x0000
|
||||||
|
pub name: Pointer64<ReprCString>, // 0x0008
|
||||||
|
pub module_name: Pointer64<ReprCString>, // 0x0010
|
||||||
|
pub size: u32, // 0x0018
|
||||||
|
pub num_fields: u16, // 0x001C
|
||||||
|
pub num_static_fields: u16, // 0x001E
|
||||||
|
pub num_static_metadata: u16, // 0x0020
|
||||||
|
pub alignment: u8, // 0x0022
|
||||||
|
pub has_base_class: u8, // 0x0023
|
||||||
|
pub total_class_size: u16, // 0x0024
|
||||||
|
pub derived_class_size: u16, // 0x0026
|
||||||
|
pub fields: Pointer64<SchemaClassFieldData>, // 0x0028
|
||||||
|
pub static_fields: Pointer64<SchemaStaticFieldData>, // 0x0030
|
||||||
|
pub base_classes: Pointer64<SchemaBaseClassInfoData>, // 0x0038
|
||||||
|
pad_0040: [u8; 0x8], // 0x0040
|
||||||
|
pub static_metadata: Pointer64<SchemaMetadataEntryData>, // 0x0048
|
||||||
|
pub type_scope: Pointer64<SchemaSystemTypeScope>, // 0x0050
|
||||||
|
pub type_: Pointer64<SchemaType>, // 0x0058
|
||||||
|
pad_0060: [u8; 0x10], // 0x0060
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Pod)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaEnumInfoData {
|
||||||
|
pub base: Pointer64<SchemaEnumInfoData>,
|
||||||
|
pub name: Pointer64<ReprCString>,
|
||||||
|
pub module_name: Pointer64<ReprCString>,
|
||||||
|
pub alignment: u8,
|
||||||
|
pad_0019: [u8; 0x3],
|
||||||
|
pub size: u16,
|
||||||
|
pub static_metadata_count: u16,
|
||||||
|
pub enum_info: Pointer64<SchemaEnumeratorInfoData>,
|
||||||
|
pub static_metadata: Pointer64<SchemaMetadataEntryData>,
|
||||||
|
pub type_scope: Pointer64<SchemaSystemTypeScope>,
|
||||||
|
pad_0038: [u8; 0x10],
|
||||||
|
}
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaEnumeratorInfoData {
|
||||||
|
pub name: Pointer64<ReprCString>, // 0x0000
|
||||||
|
pub u: SchemaEnumeratorInfoDataUnion, // 0x0008
|
||||||
|
pub num_metadata: u32, // 0x0010
|
||||||
|
pub metadata: Pointer64<SchemaMetadataEntryData>, // 0x0018
|
||||||
|
}
|
||||||
|
|
||||||
|
unsafe impl Pod for SchemaEnumeratorInfoData {}
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
pub union SchemaEnumeratorInfoDataUnion {
|
||||||
|
pub uchar: u8,
|
||||||
|
pub ushort: u16,
|
||||||
|
pub uint: u32,
|
||||||
|
pub ulong: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Pod)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaMetadataEntryData {
|
||||||
|
pub name: Pointer64<ReprCString>, // 0x0000
|
||||||
|
pub network_value: Pointer64<SchemaNetworkValue>, // 0x0008
|
||||||
|
}
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaNetworkValue {
|
||||||
|
pub u: SchemaNetworkValueUnion, // 0x0000
|
||||||
|
}
|
||||||
|
|
||||||
|
unsafe impl Pod for SchemaNetworkValue {}
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
pub union SchemaNetworkValueUnion {
|
||||||
|
pub name_ptr: Pointer64<ReprCString>,
|
||||||
|
pub int_value: i32,
|
||||||
|
pub float_value: f32,
|
||||||
|
pub ptr: Pointer64<()>,
|
||||||
|
pub var_value: SchemaVarName,
|
||||||
|
pub name_value: [c_char; 32],
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Pod)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaStaticFieldData {
|
||||||
|
pub name: Pointer64<ReprCString>, // 0x0000
|
||||||
|
pub type_: Pointer64<SchemaType>, // 0x0008
|
||||||
|
pub instance: Pointer64<()>, // 0x0010
|
||||||
|
pad_0018: [u8; 0x10], // 0x0018
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Pod)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaSystem {
|
||||||
|
pad_0000: [u8; 0x190], // 0x0000
|
||||||
|
pub type_scopes: UtlVector<Pointer64<SchemaSystemTypeScope>>, // 0x0190
|
||||||
|
pad_01a0: [u8; 0x120], // 0x01A0
|
||||||
|
pub num_registrations: u32, // 0x02C0
|
||||||
|
pad_02c4: [u8; 0x4], // 0x02C4
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Pod)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaSystemTypeScope {
|
||||||
|
pad_0000: [u8; 0x8], // 0x0000
|
||||||
|
pub name: [c_char; 256], // 0x0008
|
||||||
|
pub global_scope: Pointer64<SchemaSystemTypeScope>, // 0x0108
|
||||||
|
pad_0110: [u8; 0x4B0], // 0x0110
|
||||||
|
pub class_bindings: UtlTsHash<Pointer64<SchemaClassBinding>>, // 0x05C0
|
||||||
|
pub enum_bindings: UtlTsHash<Pointer64<SchemaEnumBinding>>, // 0x2E50
|
||||||
|
}
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaType {
|
||||||
|
pad_0000: [u8; 0x8], // 0x0000
|
||||||
|
pub name: Pointer64<ReprCString>, // 0x0008
|
||||||
|
pub type_scope: Pointer64<SchemaSystemTypeScope>, // 0x0010
|
||||||
|
pub type_category: SchemaTypeCategory, // 0x0018
|
||||||
|
pub atomic_category: SchemaAtomicCategory, // 0x0019
|
||||||
|
pub u: SchemaTypeUnion, // 0x0020
|
||||||
|
}
|
||||||
|
|
||||||
|
unsafe impl Pod for SchemaType {}
|
||||||
|
|
||||||
|
pub union SchemaTypeUnion {
|
||||||
|
pub schema_type: Pointer64<SchemaType>,
|
||||||
|
pub class_binding: Pointer64<SchemaClassBinding>,
|
||||||
|
pub enum_binding: Pointer64<SchemaEnumBinding>,
|
||||||
|
pub array: SchemaArrayT,
|
||||||
|
pub atomic: SchemaAtomicT,
|
||||||
|
pub atomic_tt: SchemaAtomicTT,
|
||||||
|
pub atomic_tf: SchemaAtomicTF,
|
||||||
|
pub atomic_ttf: SchemaAtomicTTF,
|
||||||
|
pub atomic_i: SchemaAtomicI,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Pod, Clone, Copy)]
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct SchemaVarName {
|
||||||
|
pub name: Pointer64<ReprCString>, // 0x0000
|
||||||
|
pub type_name: Pointer64<ReprCString>, // 0x0008
|
||||||
|
}
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
use memflow::prelude::v1::*;
|
|
||||||
|
|
||||||
use super::SchemaClassInfoData;
|
|
||||||
|
|
||||||
#[repr(C)]
|
|
||||||
pub struct SchemaBaseClassInfoData {
|
|
||||||
pub offset: u32, // 0x0000
|
|
||||||
pad_0004: [u8; 0x4], // 0x0004
|
|
||||||
pub prev: Pointer64<SchemaClassInfoData>, // 0x0008
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe impl Pod for SchemaBaseClassInfoData {}
|
|
@ -1,14 +0,0 @@
|
|||||||
use memflow::prelude::v1::*;
|
|
||||||
|
|
||||||
use super::{SchemaMetadataEntryData, SchemaType};
|
|
||||||
|
|
||||||
#[repr(C)]
|
|
||||||
pub struct SchemaClassFieldData {
|
|
||||||
pub name: Pointer64<ReprCString>, // 0x0000
|
|
||||||
pub type_: Pointer64<SchemaType>, // 0x0008
|
|
||||||
pub offset: u32, // 0x0010
|
|
||||||
pub num_metadata: u32, // 0x0014
|
|
||||||
pub metadata: Pointer64<SchemaMetadataEntryData>, // 0x0018
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe impl Pod for SchemaClassFieldData {}
|
|
@ -1,34 +0,0 @@
|
|||||||
use memflow::prelude::v1::*;
|
|
||||||
|
|
||||||
use super::{
|
|
||||||
SchemaBaseClassInfoData, SchemaClassFieldData, SchemaMetadataEntryData, SchemaStaticFieldData,
|
|
||||||
SchemaSystemTypeScope, SchemaType,
|
|
||||||
};
|
|
||||||
|
|
||||||
pub type SchemaClassBinding = SchemaClassInfoData;
|
|
||||||
|
|
||||||
#[rustfmt::skip]
|
|
||||||
#[repr(C)]
|
|
||||||
pub struct SchemaClassInfoData {
|
|
||||||
pub base: Pointer64<SchemaClassInfoData>, // 0x0000
|
|
||||||
pub name: Pointer64<ReprCString>, // 0x0008
|
|
||||||
pub module_name: Pointer64<ReprCString>, // 0x0010
|
|
||||||
pub size: u32, // 0x0018
|
|
||||||
pub num_fields: u16, // 0x001C
|
|
||||||
pub num_static_fields: u16, // 0x001E
|
|
||||||
pub num_static_metadata: u16, // 0x0020
|
|
||||||
pub alignment: u8, // 0x0022
|
|
||||||
pub has_base_class: bool, // 0x0023
|
|
||||||
pub total_class_size: u16, // 0x0024
|
|
||||||
pub derived_class_size: u16, // 0x0026
|
|
||||||
pub fields: Pointer64<SchemaClassFieldData>, // 0x0028
|
|
||||||
pub static_fields: Pointer64<SchemaStaticFieldData>, // 0x0030
|
|
||||||
pub base_classes: Pointer64<SchemaBaseClassInfoData>, // 0x0038
|
|
||||||
pad_0040: [u8; 0x8], // 0x0040
|
|
||||||
pub static_metadata: Pointer64<SchemaMetadataEntryData>, // 0x0048
|
|
||||||
pub type_scope: Pointer64<SchemaSystemTypeScope>, // 0x0050
|
|
||||||
pub type_: Pointer64<SchemaType>, // 0x0058
|
|
||||||
pad_0060: [u8; 0x10], // 0x0060
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe impl Pod for SchemaClassInfoData {}
|
|
@ -1,21 +0,0 @@
|
|||||||
use memflow::prelude::v1::*;
|
|
||||||
|
|
||||||
use super::SchemaSystemTypeScope;
|
|
||||||
|
|
||||||
#[repr(C)]
|
|
||||||
pub struct SchemaDeclaredClass {
|
|
||||||
pad_0000: [u8; 0x8], // 0x0000
|
|
||||||
pub name: Pointer64<ReprCString>, // 0x0008
|
|
||||||
pub type_scope: Pointer64<SchemaSystemTypeScope>, // 0x0010
|
|
||||||
pad_0018: [u8; 0x10], // 0x0018
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe impl Pod for SchemaDeclaredClass {}
|
|
||||||
|
|
||||||
#[repr(C)]
|
|
||||||
pub struct SchemaDeclaredClassEntry {
|
|
||||||
pad_0000: [u8; 0x10], // 0x0000
|
|
||||||
pub declared_class: Pointer64<SchemaDeclaredClass>, // 0x0010
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe impl Pod for SchemaDeclaredClassEntry {}
|
|
@ -1,23 +0,0 @@
|
|||||||
use memflow::prelude::v1::*;
|
|
||||||
|
|
||||||
use super::{SchemaEnumeratorInfoData, SchemaMetadataEntryData, SchemaSystemTypeScope};
|
|
||||||
|
|
||||||
pub type SchemaEnumBinding = SchemaEnumInfoData;
|
|
||||||
|
|
||||||
#[rustfmt::skip]
|
|
||||||
#[repr(C)]
|
|
||||||
pub struct SchemaEnumInfoData {
|
|
||||||
pub base: Pointer64<SchemaEnumInfoData>, // 0x0000
|
|
||||||
pub name: Pointer64<ReprCString>, // 0x0008
|
|
||||||
pub module_name: Pointer64<ReprCString>, // 0x0010
|
|
||||||
pub alignment: u8, // 0x0018
|
|
||||||
pad_0019: [u8; 0x3], // 0x0019
|
|
||||||
pub size: u16, // 0x001C
|
|
||||||
pub num_static_metadata: u16, // 0x001E
|
|
||||||
pub enum_info: Pointer64<SchemaEnumeratorInfoData>, // 0x0020
|
|
||||||
pub static_metadata: Pointer64<SchemaMetadataEntryData>, // 0x0028
|
|
||||||
pub type_scope: Pointer64<SchemaSystemTypeScope>, // 0x0030
|
|
||||||
pad_0038: [u8; 0x10], // 0x0038
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe impl Pod for SchemaEnumInfoData {}
|
|
@ -1,21 +0,0 @@
|
|||||||
use memflow::prelude::v1::*;
|
|
||||||
|
|
||||||
use super::SchemaMetadataEntryData;
|
|
||||||
|
|
||||||
#[repr(C)]
|
|
||||||
pub struct SchemaEnumeratorInfoData {
|
|
||||||
pub name: Pointer64<ReprCString>, // 0x0000
|
|
||||||
pub u: SchemaEnumeratorInfoDataUnion, // 0x0008
|
|
||||||
pub num_metadata: u32, // 0x0010
|
|
||||||
pub metadata: Pointer64<SchemaMetadataEntryData>, // 0x0018
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe impl Pod for SchemaEnumeratorInfoData {}
|
|
||||||
|
|
||||||
#[repr(C)]
|
|
||||||
pub union SchemaEnumeratorInfoDataUnion {
|
|
||||||
pub uchar: u8,
|
|
||||||
pub ushort: u16,
|
|
||||||
pub uint: u32,
|
|
||||||
pub ulong: u64,
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user