mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-11-09 03:00:01 +08:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2d0bdc3ba4 | ||
|
|
fbcf7059da | ||
|
|
baae1570ee | ||
|
|
2b306cd1c7 | ||
|
|
5e7a138c93 | ||
|
|
bc337a247f | ||
|
|
ebea3364c4 | ||
|
|
86e536407b | ||
|
|
9111d7a0f4 | ||
|
|
6a69ee5232 | ||
|
|
43ba96ccf0 | ||
|
|
57fa5bc03b | ||
|
|
32be3bec25 | ||
|
|
8dc027007e | ||
|
|
1b85d65822 | ||
|
|
4f75a293b0 | ||
|
|
23072c2456 | ||
|
|
1e88a527a2 | ||
|
|
45b7574975 | ||
|
|
6406f88e0b |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,6 +1,4 @@
|
||||
/.idea
|
||||
/.vscode
|
||||
/.vs
|
||||
/target
|
||||
Cargo.lock
|
||||
cs2-dumper.exe
|
||||
|
||||
17
Cargo.toml
17
Cargo.toml
@@ -1,27 +1,26 @@
|
||||
[package]
|
||||
name = "cs2-dumper"
|
||||
version = "0.1.2"
|
||||
version = "0.1.1"
|
||||
authors = ["a2x"]
|
||||
edition = "2024"
|
||||
edition = "2021"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/a2x/cs2-dumper"
|
||||
license = "MIT"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
heck = "0.5"
|
||||
log = "0.4"
|
||||
memflow = "0.2"
|
||||
pelite = "0.10"
|
||||
phf = { version = "0.12", features = ["macros"] }
|
||||
memflow = "= 0.2.1"
|
||||
memflow-native = { git = "https://github.com/memflow/memflow-native" }
|
||||
phf = { version = "0.11", features = ["macros"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
skidscan = "2.0"
|
||||
skidscan-macros = "0.1"
|
||||
simplelog = "0.12"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
memflow-native = { git = "https://github.com/memflow/memflow-native" }
|
||||
thiserror = "1.0"
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 1
|
||||
|
||||
32
README.md
32
README.md
@@ -1,52 +1,32 @@
|
||||
# cs2-dumper
|
||||
|
||||
An external offset/interface dumper for Counter-Strike 2, with support for both Windows & Linux. Powered
|
||||
by [memflow](https://github.com/memflow/memflow).
|
||||
An external Counter-Strike 2 offset/interface dumper for Linux.
|
||||
|
||||
The native Linux version is available in the [linux](https://github.com/a2x/cs2-dumper/tree/linux) branch (currently
|
||||
outdated).
|
||||
|
||||
For a work-in-progress offline version, check out the [cs2-analyzer](https://github.com/a2x/cs2-analyzer) repository or
|
||||
view its included web demo [here](https://a2x.github.io/cs2-analyzer).
|
||||
**Note:** This branch will likely not be kept up-to-date by myself. Pull requests are welcome!
|
||||
|
||||
## Getting Started
|
||||
|
||||
You can download the latest release from [Releases](https://github.com/a2x/cs2-dumper/releases) or compile it yourself.
|
||||
Note that compiling it yourself requires your Rust compiler version to be at least 1.74.0 or newer.
|
||||
Note that compiling it yourself requires your Rust compiler version to be at least 1.74.0 or newer, and the nightly
|
||||
toolchain must be installed.
|
||||
|
||||
## Usage
|
||||
|
||||
1. Ensure the game is running (Being in the main menu should suffice).
|
||||
1. Ensure the game process is running (Being in the main menu should suffice).
|
||||
2. Run the `cs2-dumper` executable.
|
||||
|
||||
_Note:_ If you run the executable without specifying an optional memflow connector name, it will automatically use the
|
||||
[memflow-native](https://github.com/memflow/memflow-native) OS layer to read the memory of the game process. If you
|
||||
wish to use an existing memflow connector instead, such as **pcileech** or **kvm**, you can pass the `connector` and
|
||||
optional `connector-args` arguments to the program. These connectors can be installed and managed using
|
||||
the [memflowup](https://github.com/memflow/memflowup) tool.
|
||||
|
||||
E.g (for pcileech). `cs2-dumper -c pcileech -a :device=FPGA -vv`
|
||||
|
||||
Certain connectors, such as the [kvm](https://github.com/memflow/memflow-kvm) connector on Linux or
|
||||
the [pcileech](https://github.com/memflow/memflow-pcileech) / [winio](https://github.com/a2x/memflow-winio)
|
||||
connectors on Windows, require elevated privileges to work. So either run the `cs2-dumper` executable with `sudo` on
|
||||
Linux or as an administrator on Windows.
|
||||
|
||||
### Available Arguments
|
||||
|
||||
- `-c, --connector <connector>`: The name of the memflow connector to use.
|
||||
- `-a, --connector-args <connector-args>`: Additional arguments to pass to the memflow connector.
|
||||
- `-f, --file-types <file-types>`: The types of files to generate. Default: `cs`, `hpp`, `json`, `rs`.
|
||||
- `-i, --indent-size <indent-size>`: The number of spaces to use per indentation level. Default: `4`.
|
||||
- `-o, --output <output>`: The output directory to write the generated files to. Default: `output`.
|
||||
- `-p, --process-name <process-name>`: The name of the game process. Default: `cs2.exe`.
|
||||
- `-v...`: Increase logging verbosity. Can be specified multiple times.
|
||||
- `-h, --help`: Print help.
|
||||
- `-V, --version`: Print version.
|
||||
|
||||
## Running Tests
|
||||
|
||||
To run the few basic provided tests, use the following command: `cargo test -- --nocapture`.
|
||||
To run tests, use the following command: `cargo test -- --nocapture`.
|
||||
|
||||
## License
|
||||
|
||||
|
||||
337
config.json
Normal file
337
config.json
Normal file
@@ -0,0 +1,337 @@
|
||||
{
|
||||
"executable": "cs2",
|
||||
"signatures": [
|
||||
{
|
||||
"libclient.so": [
|
||||
{
|
||||
"name": "dwCSGOInput",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 55 48 89 E5 41 56 41 55 49 89 FD 41 54 49 89 F4",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwEntityList",
|
||||
"pattern": "4C 89 25 ? ? ? ? 48 89 05 ? ? ? ? 49 8B 5D",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem",
|
||||
"pattern": "48 89 3D ? ? ? ? E9 ? ? ? ? 55",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem_highestEntityIndex",
|
||||
"pattern": "8B 87 ? ? ? ? C3 66 0F 1F 84 00 ? ? ? ? 8B 97",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameRules",
|
||||
"pattern": "48 89 1D ? ? ? ? 48 8B 00",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGlobalVars",
|
||||
"pattern": "48 89 35 ? ? ? ? 48 89 46",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGlowManager",
|
||||
"pattern": "48 8B 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 48 8D 05 ? ? ? ? 48 C7 47",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerController",
|
||||
"pattern": "4C 89 2D ? ? ? ? E8 ? ? ? ? 48 8B 45",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerPawn",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? C7 47 ? ? ? ? ? C7 47 ? ? ? ? ? C3",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 328
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwPlantedC4",
|
||||
"pattern": "48 8B 05 ? ? ? ? 4C 89 24 D8 49 8B 44 24",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwPrediction",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? C7 47 ? ? ? ? ? C7 47 ? ? ? ? ? C3",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity",
|
||||
"pattern": "48 8B 05 ? ? ? ? 48 8B 40 ? E9 ? ? ? ? 48 8B 05 ? ? ? ? 48 8B 40 ? EB ? 0F 1F 00 55 48 89 E5 41 57 66 41 0F 7E DF",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity_sensitivity",
|
||||
"pattern": "FF 53 ? 48 8D 4D AC",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwViewAngles",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 55 48 89 E5 41 56 41 55 49 89 FD 41 54 49 89 F4",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 21544
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwViewMatrix",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 83 FF",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwViewRender",
|
||||
"pattern": "48 8D 05 ? ? ? ? 48 89 38 48 85 FF",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"libengine2.so": [
|
||||
{
|
||||
"name": "dwBuildNumber",
|
||||
"pattern": "89 15 ? ? ? ? 48 83 C3",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip",
|
||||
"offset": 2,
|
||||
"len": 6
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient",
|
||||
"pattern": "48 89 1D ? ? ? ? 49 8B 04 24",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_clientTickCount",
|
||||
"pattern": "8B 87 ? ? ? ? C3 66 0F 1F 84 00 00 00 00 00 8B 87 ? ? ? ? C3 66 0F 1F 84 00 00 00 00 00 C3 66 2E 0F 1F 84 00 00 00 00 00 0F 1F 44 00 00 C3",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_deltaTick",
|
||||
"pattern": "89 83 ? ? ? ? B8 ? ? ? ? 5B",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_isBackgroundMap",
|
||||
"pattern": "0F B6 87 ? ? ? ? C3 0F 1F 84 00 00 00 00 00 C3 66 2E 0F 1F 84 00 00 00 00 00 0F 1F 44 00 00 C3",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 3,
|
||||
"end": 7
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_localPlayer",
|
||||
"pattern": "8B 84 C7 ? ? ? ? C3 66 0F 1F 44 00",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 3,
|
||||
"end": 5
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 8
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_maxClients",
|
||||
"pattern": "8B 87 ? ? ? ? C3 66 0F 1F 84 00 ? ? ? ? 8B 87 ? ? ? ? 83 C0",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_serverTickCount",
|
||||
"pattern": "8B 87 ? ? ? ? C3 66 0F 1F 84 00 00 00 00 00 8B 87 ? ? ? ? C3 66 0F 1F 84 00 00 00 00 00 C3 66 2E 0F 1F 84 00 00 00 00 00 0F 1F 44 00 00 C3",
|
||||
"operations": [
|
||||
{
|
||||
"type": "add",
|
||||
"value": 16
|
||||
},
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_signOnState",
|
||||
"pattern": "8B 97 ? ? ? ? 31 C0 45 31 ED",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwWindowHeight",
|
||||
"pattern": "89 05 ? ? ? ? F3 0F 59 C1",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip",
|
||||
"offset": 2,
|
||||
"length": 6
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 11
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwWindowWidth",
|
||||
"pattern": "89 05 ? ? ? ? F3 0F 59 C1",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip",
|
||||
"offset": 2,
|
||||
"length": 6
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 7
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"libinputsystem.so": [
|
||||
{
|
||||
"name": "dwInputSystem",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 8B 87",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"libmatchmaking.so": [
|
||||
{
|
||||
"name": "dwGameTypes",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 48 8B 07",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameTypes_mapName",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 48 8B 07",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 288
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
08:27:31 [INFO] found 16 buttons
|
||||
08:27:31 [INFO] found 134 interfaces across 35 modules
|
||||
08:27:32 [INFO] found 32 offsets across 5 modules
|
||||
08:27:32 [INFO] found 2677 classes and 415 enums across 18 modules
|
||||
08:27:32 [INFO] analysis completed in 1.12s
|
||||
@@ -1,24 +1,9 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper {
|
||||
// Module: client.dll
|
||||
public static class Buttons {
|
||||
public const nint attack = 0x1BE4320;
|
||||
public const nint attack2 = 0x1BE43B0;
|
||||
public const nint back = 0x1BE45F0;
|
||||
public const nint duck = 0x1BE48C0;
|
||||
public const nint forward = 0x1BE4560;
|
||||
public const nint jump = 0x1BE4830;
|
||||
public const nint left = 0x1BE4680;
|
||||
public const nint lookatweapon = 0x1E37EE0;
|
||||
public const nint reload = 0x1BE4290;
|
||||
public const nint right = 0x1BE4710;
|
||||
public const nint showscores = 0x1E37DC0;
|
||||
public const nint sprint = 0x1BE4200;
|
||||
public const nint turnleft = 0x1BE4440;
|
||||
public const nint turnright = 0x1BE44D0;
|
||||
public const nint use = 0x1BE47A0;
|
||||
public const nint zoom = 0x1E37E50;
|
||||
public const nint = 0xDD800030;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -8,21 +8,6 @@
|
||||
namespace cs2_dumper {
|
||||
// Module: client.dll
|
||||
namespace buttons {
|
||||
constexpr std::ptrdiff_t attack = 0x1BE4320;
|
||||
constexpr std::ptrdiff_t attack2 = 0x1BE43B0;
|
||||
constexpr std::ptrdiff_t back = 0x1BE45F0;
|
||||
constexpr std::ptrdiff_t duck = 0x1BE48C0;
|
||||
constexpr std::ptrdiff_t forward = 0x1BE4560;
|
||||
constexpr std::ptrdiff_t jump = 0x1BE4830;
|
||||
constexpr std::ptrdiff_t left = 0x1BE4680;
|
||||
constexpr std::ptrdiff_t lookatweapon = 0x1E37EE0;
|
||||
constexpr std::ptrdiff_t reload = 0x1BE4290;
|
||||
constexpr std::ptrdiff_t right = 0x1BE4710;
|
||||
constexpr std::ptrdiff_t showscores = 0x1E37DC0;
|
||||
constexpr std::ptrdiff_t sprint = 0x1BE4200;
|
||||
constexpr std::ptrdiff_t turnleft = 0x1BE4440;
|
||||
constexpr std::ptrdiff_t turnright = 0x1BE44D0;
|
||||
constexpr std::ptrdiff_t use = 0x1BE47A0;
|
||||
constexpr std::ptrdiff_t zoom = 0x1E37E50;
|
||||
constexpr std::ptrdiff_t = 0xDD800030;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,20 +1,5 @@
|
||||
{
|
||||
"client.dll": {
|
||||
"attack": 29246240,
|
||||
"attack2": 29246384,
|
||||
"back": 29246960,
|
||||
"duck": 29247680,
|
||||
"forward": 29246816,
|
||||
"jump": 29247536,
|
||||
"left": 29247104,
|
||||
"lookatweapon": 31686368,
|
||||
"reload": 29246096,
|
||||
"right": 29247248,
|
||||
"showscores": 31686080,
|
||||
"sprint": 29245952,
|
||||
"turnleft": 29246528,
|
||||
"turnright": 29246672,
|
||||
"use": 29247392,
|
||||
"zoom": 31686224
|
||||
"": 3716153392
|
||||
}
|
||||
}
|
||||
@@ -1,26 +1,11 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
// Module: client.dll
|
||||
pub mod buttons {
|
||||
pub const attack: usize = 0x1BE4320;
|
||||
pub const attack2: usize = 0x1BE43B0;
|
||||
pub const back: usize = 0x1BE45F0;
|
||||
pub const duck: usize = 0x1BE48C0;
|
||||
pub const forward: usize = 0x1BE4560;
|
||||
pub const jump: usize = 0x1BE4830;
|
||||
pub const left: usize = 0x1BE4680;
|
||||
pub const lookatweapon: usize = 0x1E37EE0;
|
||||
pub const reload: usize = 0x1BE4290;
|
||||
pub const right: usize = 0x1BE4710;
|
||||
pub const showscores: usize = 0x1E37DC0;
|
||||
pub const sprint: usize = 0x1BE4200;
|
||||
pub const turnleft: usize = 0x1BE4440;
|
||||
pub const turnright: usize = 0x1BE44D0;
|
||||
pub const r#use: usize = 0x1BE47A0;
|
||||
pub const zoom: usize = 0x1E37E50;
|
||||
pub const : usize = 0xDD800030;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"build_number": 14121,
|
||||
"timestamp": "2025-11-05T06:01:01.132204+00:00"
|
||||
"build_number": 14064,
|
||||
"timestamp": "2025-01-29T12:23:34.043004291+00:00"
|
||||
}
|
||||
@@ -1,239 +1,220 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Interfaces {
|
||||
// Module: animationsystem.dll
|
||||
public static class AnimationsystemDll {
|
||||
public const nint AnimationSystemUtils_001 = 0x7C2B70;
|
||||
public const nint AnimationSystem_001 = 0x7BAA90;
|
||||
// Module: libanimationsystem.so
|
||||
public static class LibanimationsystemSo {
|
||||
public const nint AnimationSystemUtils_001 = 0x1B4F70;
|
||||
public const nint AnimationSystem_001 = 0x1B4D60;
|
||||
}
|
||||
// Module: client.dll
|
||||
public static class ClientDll {
|
||||
public const nint ClientToolsInfo_001 = 0x1BE3B30;
|
||||
public const nint EmptyWorldService001_Client = 0x1B9EE00;
|
||||
public const nint GameClientExports001 = 0x1BE0810;
|
||||
public const nint LegacyGameUI001 = 0x1BFF0C0;
|
||||
public const nint Source2Client002 = 0x1E283D0;
|
||||
public const nint Source2ClientConfig001 = 0x1DC38F0;
|
||||
public const nint Source2ClientPrediction001 = 0x1BEADD0;
|
||||
public const nint Source2ClientUI001 = 0x1BFD600;
|
||||
// Module: libclient.so
|
||||
public static class LibclientSo {
|
||||
public const nint ClientToolsInfo_001 = 0xE2DF60;
|
||||
public const nint EmptyWorldService001_Client = 0xAEB700;
|
||||
public const nint GameClientExports001 = 0xE2DB30;
|
||||
public const nint LegacyGameUI001 = 0x1010610;
|
||||
public const nint Source2Client002 = 0xE2DB90;
|
||||
public const nint Source2ClientConfig001 = 0xAD5F30;
|
||||
public const nint Source2ClientPrediction001 = 0xEBD950;
|
||||
public const nint Source2ClientUI001 = 0xF98520;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
public static class Engine2Dll {
|
||||
public const nint BenchmarkService001 = 0x5F6630;
|
||||
public const nint BugService001 = 0x8AAC60;
|
||||
public const nint ClientServerEngineLoopService_001 = 0x8EC370;
|
||||
public const nint EngineGameUI001 = 0x5F42F0;
|
||||
public const nint EngineServiceMgr001 = 0x8EBC70;
|
||||
public const nint GameEventSystemClientV001 = 0x8EBF40;
|
||||
public const nint GameEventSystemServerV001 = 0x8EC060;
|
||||
public const nint GameResourceServiceClientV001 = 0x5F6730;
|
||||
public const nint GameResourceServiceServerV001 = 0x5F6790;
|
||||
public const nint GameUIService_001 = 0x8AB090;
|
||||
public const nint HostStateMgr001 = 0x5F6FF0;
|
||||
public const nint INETSUPPORT_001 = 0x5EF870;
|
||||
public const nint InputService_001 = 0x8AB380;
|
||||
public const nint KeyValueCache001 = 0x5F70A0;
|
||||
public const nint MapListService_001 = 0x8EA2F0;
|
||||
public const nint NetworkClientService_001 = 0x8EA480;
|
||||
public const nint NetworkP2PService_001 = 0x8EA7A0;
|
||||
public const nint NetworkServerService_001 = 0x8EA930;
|
||||
public const nint NetworkService_001 = 0x5F6900;
|
||||
public const nint RenderService_001 = 0x8EAB90;
|
||||
public const nint ScreenshotService001 = 0x8EAE40;
|
||||
public const nint SimpleEngineLoopService_001 = 0x5F7100;
|
||||
public const nint SoundService_001 = 0x5F6940;
|
||||
public const nint Source2EngineToClient001 = 0x5F3980;
|
||||
public const nint Source2EngineToClientStringTable001 = 0x5F39E0;
|
||||
public const nint Source2EngineToServer001 = 0x5F3A58;
|
||||
public const nint Source2EngineToServerStringTable001 = 0x5F3A80;
|
||||
public const nint SplitScreenService_001 = 0x5F6C40;
|
||||
public const nint StatsService_001 = 0x8EB240;
|
||||
public const nint ToolService_001 = 0x5F6E00;
|
||||
public const nint VENGINE_GAMEUIFUNCS_VERSION005 = 0x5F4380;
|
||||
public const nint VProfService_001 = 0x5F6E40;
|
||||
// Module: libengine2.so
|
||||
public static class Libengine2So {
|
||||
public const nint BenchmarkService001 = 0x222FB0;
|
||||
public const nint BugService001 = 0x21F170;
|
||||
public const nint ClientServerEngineLoopService_001 = 0x1EE5D0;
|
||||
public const nint EngineGameUI001 = 0x3BDB40;
|
||||
public const nint EngineServiceMgr001 = 0x1DE740;
|
||||
public const nint GameEventSystemClientV001 = 0x1E3AF0;
|
||||
public const nint GameEventSystemServerV001 = 0x1E3B00;
|
||||
public const nint GameResourceServiceClientV001 = 0x224900;
|
||||
public const nint GameResourceServiceServerV001 = 0x224910;
|
||||
public const nint GameUIService_001 = 0x22CB40;
|
||||
public const nint HostStateMgr001 = 0x1E9110;
|
||||
public const nint INETSUPPORT_001 = 0x387120;
|
||||
public const nint InputService_001 = 0x231230;
|
||||
public const nint KeyValueCache001 = 0x1EBA60;
|
||||
public const nint MapListService_001 = 0x246460;
|
||||
public const nint NetworkClientService_001 = 0x269100;
|
||||
public const nint NetworkP2PService_001 = 0x27E440;
|
||||
public const nint NetworkServerService_001 = 0x24A510;
|
||||
public const nint NetworkService_001 = 0x249C30;
|
||||
public const nint RenderService_001 = 0x283620;
|
||||
public const nint ScreenshotService001 = 0x2861A0;
|
||||
public const nint SimpleEngineLoopService_001 = 0x204D40;
|
||||
public const nint SoundService_001 = 0x28A450;
|
||||
public const nint Source2EngineToClient001 = 0x30B980;
|
||||
public const nint Source2EngineToClientStringTable001 = 0x2DE440;
|
||||
public const nint Source2EngineToServer001 = 0x332B90;
|
||||
public const nint Source2EngineToServerStringTable001 = 0x315010;
|
||||
public const nint SplitScreenService_001 = 0x291D40;
|
||||
public const nint StatsService_001 = 0x295700;
|
||||
public const nint ToolService_001 = 0x29A360;
|
||||
public const nint VENGINE_GAMEUIFUNCS_VERSION005 = 0x3BD590;
|
||||
public const nint VProfService_001 = 0x29BBE0;
|
||||
}
|
||||
// Module: filesystem_stdio.dll
|
||||
public static class FilesystemStdioDll {
|
||||
public const nint VAsyncFileSystem2_001 = 0x215AE0;
|
||||
public const nint VFileSystem017 = 0x2106C0;
|
||||
// Module: libfilesystem_stdio.so
|
||||
public static class LibfilesystemStdioSo {
|
||||
public const nint VAsyncFileSystem2_001 = 0x7DB90;
|
||||
public const nint VFileSystem017 = 0x7DB80;
|
||||
}
|
||||
// Module: host.dll
|
||||
public static class HostDll {
|
||||
public const nint DebugDrawQueueManager001 = 0x138EF0;
|
||||
public const nint GameModelInfo001 = 0x138F30;
|
||||
public const nint GameSystem2HostHook = 0x138F70;
|
||||
public const nint HostUtils001 = 0x1466E0;
|
||||
public const nint PredictionDiffManager001 = 0x139080;
|
||||
public const nint SaveRestoreDataVersion001 = 0x1391B0;
|
||||
public const nint SinglePlayerSharedMemory001 = 0x1391E0;
|
||||
public const nint Source2Host001 = 0x139250;
|
||||
// Module: libhost.so
|
||||
public static class LibhostSo {
|
||||
public const nint DebugDrawQueueManager001 = 0xC5150;
|
||||
public const nint GameModelInfo001 = 0xC0160;
|
||||
public const nint GameSystem2HostHook = 0xC0890;
|
||||
public const nint HostUtils001 = 0xC0D10;
|
||||
public const nint PredictionDiffManager001 = 0xC1C90;
|
||||
public const nint SaveRestoreDataVersion001 = 0xC3C90;
|
||||
public const nint SinglePlayerSharedMemory001 = 0xC3F50;
|
||||
public const nint Source2Host001 = 0xC46B0;
|
||||
}
|
||||
// Module: imemanager.dll
|
||||
public static class ImemanagerDll {
|
||||
public const nint IMEManager001 = 0x36AA0;
|
||||
// Module: libinputsystem.so
|
||||
public static class LibinputsystemSo {
|
||||
public const nint InputStackSystemVersion001 = 0x11500;
|
||||
public const nint InputSystemVersion001 = 0x129F0;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
public static class InputsystemDll {
|
||||
public const nint InputStackSystemVersion001 = 0x43CD0;
|
||||
public const nint InputSystemVersion001 = 0x45A20;
|
||||
// Module: liblocalize.so
|
||||
public static class LiblocalizeSo {
|
||||
public const nint Localize_001 = 0x1D770;
|
||||
}
|
||||
// Module: localize.dll
|
||||
public static class LocalizeDll {
|
||||
public const nint Localize_001 = 0x47BE0;
|
||||
// Module: libmatchmaking.so
|
||||
public static class LibmatchmakingSo {
|
||||
public const nint GameTypes001 = 0xF4D40;
|
||||
public const nint MATCHFRAMEWORK_001 = 0x1C9F90;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
public static class MatchmakingDll {
|
||||
public const nint GameTypes001 = 0x1B5EE0;
|
||||
public const nint MATCHFRAMEWORK_001 = 0x1BE190;
|
||||
// Module: libmaterialsystem2.so
|
||||
public static class Libmaterialsystem2So {
|
||||
public const nint FontManager_001 = 0x7DDF0;
|
||||
public const nint MaterialUtils_001 = 0x67C30;
|
||||
public const nint PostProcessingSystem_001 = 0x8D2C0;
|
||||
public const nint TextLayout_001 = 0x8A850;
|
||||
public const nint VMaterialSystem2_001 = 0x2C470;
|
||||
}
|
||||
// Module: materialsystem2.dll
|
||||
public static class Materialsystem2Dll {
|
||||
public const nint FontManager_001 = 0x163500;
|
||||
public const nint MaterialUtils_001 = 0x14B430;
|
||||
public const nint PostProcessingSystem_001 = 0x14B340;
|
||||
public const nint TextLayout_001 = 0x14B3C0;
|
||||
public const nint VMaterialSystem2_001 = 0x162D70;
|
||||
// Module: libmeshsystem.so
|
||||
public static class LibmeshsystemSo {
|
||||
public const nint MeshSystem001 = 0x97630;
|
||||
}
|
||||
// Module: meshsystem.dll
|
||||
public static class MeshsystemDll {
|
||||
public const nint MeshSystem001 = 0x1400E0;
|
||||
// Module: libnetworksystem.so
|
||||
public static class LibnetworksystemSo {
|
||||
public const nint FlattenedSerializersVersion001 = 0x163810;
|
||||
public const nint NetworkMessagesVersion001 = 0x18C190;
|
||||
public const nint NetworkSystemVersion001 = 0x1B5730;
|
||||
public const nint SerializedEntitiesVersion001 = 0x1CF0F0;
|
||||
}
|
||||
// Module: navsystem.dll
|
||||
public static class NavsystemDll {
|
||||
public const nint NavSystem001 = 0x120840;
|
||||
// Module: libpanorama.so
|
||||
public static class LibpanoramaSo {
|
||||
public const nint PanoramaUIEngine001 = 0x233D10;
|
||||
}
|
||||
// Module: networksystem.dll
|
||||
public static class NetworksystemDll {
|
||||
public const nint FlattenedSerializersVersion001 = 0x2632F0;
|
||||
public const nint NetworkMessagesVersion001 = 0x28B240;
|
||||
public const nint NetworkSystemVersion001 = 0x27C9D0;
|
||||
public const nint SerializedEntitiesVersion001 = 0x27CAE0;
|
||||
// Module: libpanorama_text_pango.so
|
||||
public static class LibpanoramaTextPangoSo {
|
||||
public const nint PanoramaTextServices001 = 0xBB8E0;
|
||||
}
|
||||
// Module: panorama.dll
|
||||
public static class PanoramaDll {
|
||||
public const nint PanoramaUIEngine001 = 0x509B20;
|
||||
// Module: libpanoramauiclient.so
|
||||
public static class LibpanoramauiclientSo {
|
||||
public const nint PanoramaUIClient001 = 0x1095E0;
|
||||
}
|
||||
// Module: panorama_text_pango.dll
|
||||
public static class PanoramaTextPangoDll {
|
||||
public const nint PanoramaTextServices001 = 0x2B79C0;
|
||||
// Module: libparticles.so
|
||||
public static class LibparticlesSo {
|
||||
public const nint ParticleSystemMgr003 = 0x212AF0;
|
||||
}
|
||||
// Module: panoramauiclient.dll
|
||||
public static class PanoramauiclientDll {
|
||||
public const nint PanoramaUIClient001 = 0x291200;
|
||||
// Module: libpulse_system.so
|
||||
public static class LibpulseSystemSo {
|
||||
public const nint IPulseSystem_001 = 0x402F0;
|
||||
}
|
||||
// Module: particles.dll
|
||||
public static class ParticlesDll {
|
||||
public const nint ParticleSystemMgr003 = 0x555680;
|
||||
// Module: librendersystemvulkan.so
|
||||
public static class LibrendersystemvulkanSo {
|
||||
public const nint RenderDeviceMgr001 = 0x14E840;
|
||||
public const nint RenderUtils_001 = 0xCD990;
|
||||
}
|
||||
// Module: pulse_system.dll
|
||||
public static class PulseSystemDll {
|
||||
public const nint IPulseSystem_001 = 0x1F0E30;
|
||||
// Module: libresourcesystem.so
|
||||
public static class LibresourcesystemSo {
|
||||
public const nint ResourceSystem013 = 0x30F40;
|
||||
}
|
||||
// Module: rendersystemdx11.dll
|
||||
public static class Rendersystemdx11Dll {
|
||||
public const nint RenderDeviceMgr001 = 0x431BC0;
|
||||
public const nint RenderUtils_001 = 0x4324B8;
|
||||
public const nint VRenderDeviceMgrBackdoor001 = 0x431C60;
|
||||
// Module: libscenefilecache.so
|
||||
public static class LibscenefilecacheSo {
|
||||
public const nint ResponseRulesCache001 = 0x89040;
|
||||
public const nint SceneFileCache002 = 0x85BA0;
|
||||
}
|
||||
// Module: resourcesystem.dll
|
||||
public static class ResourcesystemDll {
|
||||
public const nint ResourceSystem013 = 0x7FDD0;
|
||||
// Module: libscenesystem.so
|
||||
public static class LibscenesystemSo {
|
||||
public const nint RenderingPipelines_001 = 0x142630;
|
||||
public const nint SceneSystem_002 = 0x186F60;
|
||||
public const nint SceneUtils_001 = 0x2067E0;
|
||||
}
|
||||
// Module: scenefilecache.dll
|
||||
public static class ScenefilecacheDll {
|
||||
public const nint ResponseRulesCache001 = 0x95740;
|
||||
public const nint SceneFileCache002 = 0x95890;
|
||||
// Module: libschemasystem.so
|
||||
public static class LibschemasystemSo {
|
||||
public const nint SchemaSystem_001 = 0x20FC0;
|
||||
}
|
||||
// Module: scenesystem.dll
|
||||
public static class ScenesystemDll {
|
||||
public const nint RenderingPipelines_001 = 0x61BB60;
|
||||
public const nint SceneSystem_002 = 0x83E7D0;
|
||||
public const nint SceneUtils_001 = 0x61C460;
|
||||
// Module: libserver.so
|
||||
public static class LibserverSo {
|
||||
public const nint EmptyWorldService001_Server = 0xBF4E10;
|
||||
public const nint EntitySubclassUtilsV001 = 0x8DE640;
|
||||
public const nint NavGameTest001 = 0x1142450;
|
||||
public const nint ServerToolsInfo_001 = 0xF12E00;
|
||||
public const nint Source2GameClients001 = 0xF12D90;
|
||||
public const nint Source2GameDirector001 = 0x72E350;
|
||||
public const nint Source2GameEntities001 = 0xF12D80;
|
||||
public const nint Source2Server001 = 0xF12A80;
|
||||
public const nint Source2ServerConfig001 = 0xB914D0;
|
||||
public const nint customnavsystem001 = 0x8610C0;
|
||||
}
|
||||
// Module: schemasystem.dll
|
||||
public static class SchemasystemDll {
|
||||
public const nint SchemaSystem_001 = 0x756F0;
|
||||
// Module: libsoundsystem.so
|
||||
public static class LibsoundsystemSo {
|
||||
public const nint SoundOpSystem001 = 0x176C80;
|
||||
public const nint SoundOpSystemEdit001 = 0xB6DC0;
|
||||
public const nint SoundSystem001 = 0x1E5FE0;
|
||||
public const nint VMixEditTool001 = 0x219CF0;
|
||||
}
|
||||
// Module: server.dll
|
||||
public static class ServerDll {
|
||||
public const nint EmptyWorldService001_Server = 0x1731E00;
|
||||
public const nint EntitySubclassUtilsV001 = 0x16DE230;
|
||||
public const nint NavGameTest001 = 0x17DAD30;
|
||||
public const nint ServerToolsInfo_001 = 0x178A1A8;
|
||||
public const nint Source2GameClients001 = 0x1785AF0;
|
||||
public const nint Source2GameDirector001 = 0x18E5390;
|
||||
public const nint Source2GameEntities001 = 0x17898B0;
|
||||
public const nint Source2Server001 = 0x1789710;
|
||||
public const nint Source2ServerConfig001 = 0x19BB238;
|
||||
public const nint customnavsystem001 = 0x16BDC08;
|
||||
// Module: libsteamaudio.so
|
||||
public static class LibsteamaudioSo {
|
||||
public const nint SteamAudio001 = 0x32410;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
public static class SoundsystemDll {
|
||||
public const nint SoundOpSystem001 = 0x3EB490;
|
||||
public const nint SoundOpSystemEdit001 = 0x3EB370;
|
||||
public const nint SoundSystem001 = 0x3EAE50;
|
||||
public const nint VMixEditTool001 = 0x485ED80B;
|
||||
// Module: libtier0.so
|
||||
public static class Libtier0So {
|
||||
public const nint TestScriptMgr001 = 0x1B9B90;
|
||||
public const nint VEngineCvar007 = 0xF61C0;
|
||||
public const nint VProcessUtils002 = 0x1AD380;
|
||||
public const nint VStringTokenSystem001 = 0x1DFCA0;
|
||||
}
|
||||
// Module: steamaudio.dll
|
||||
public static class SteamaudioDll {
|
||||
public const nint SteamAudio001 = 0x257550;
|
||||
// Module: libv8system.so
|
||||
public static class Libv8systemSo {
|
||||
public const nint Source2V8System001 = 0x1B450;
|
||||
}
|
||||
// Module: steamclient64.dll
|
||||
public static class Steamclient64Dll {
|
||||
public static readonly nint CLIENTENGINE_INTERFACE_VERSION005 = unchecked((nint)0xFFFFFFFF8BB0BEDA);
|
||||
public const nint IVALIDATE001 = 0x15348D8;
|
||||
public const nint SteamClient006 = 0x1532000;
|
||||
public const nint SteamClient007 = 0x1532008;
|
||||
public const nint SteamClient008 = 0x1532010;
|
||||
public const nint SteamClient009 = 0x1532018;
|
||||
public const nint SteamClient010 = 0x1532020;
|
||||
public const nint SteamClient011 = 0x1532028;
|
||||
public const nint SteamClient012 = 0x1532030;
|
||||
public const nint SteamClient013 = 0x1532038;
|
||||
public const nint SteamClient014 = 0x1532040;
|
||||
public const nint SteamClient015 = 0x1532048;
|
||||
public const nint SteamClient016 = 0x1532050;
|
||||
public const nint SteamClient017 = 0x1532058;
|
||||
public const nint SteamClient018 = 0x1532060;
|
||||
public const nint SteamClient019 = 0x1532068;
|
||||
public const nint SteamClient020 = 0x1532070;
|
||||
public const nint SteamClient021 = 0x1532078;
|
||||
public const nint SteamClient022 = 0x1532080;
|
||||
public const nint p2pvoice002 = 0x14E2D2F;
|
||||
public const nint p2pvoicesingleton002 = 0x150F0F0;
|
||||
// Module: libvphysics2.so
|
||||
public static class Libvphysics2So {
|
||||
public const nint VPhysics2_Handle_Interface_001 = 0xC92A0;
|
||||
public const nint VPhysics2_Interface_001 = 0xC8E90;
|
||||
}
|
||||
// Module: tier0.dll
|
||||
public static class Tier0Dll {
|
||||
public const nint TestScriptMgr001 = 0x3975A0;
|
||||
public const nint VEngineCvar007 = 0x3A2440;
|
||||
public const nint VProcessUtils002 = 0x3974E0;
|
||||
public const nint VStringTokenSystem001 = 0x3C9310;
|
||||
// Module: libvscript.so
|
||||
public static class LibvscriptSo {
|
||||
public const nint VScriptManager010 = 0x25DA0;
|
||||
}
|
||||
// Module: v8system.dll
|
||||
public static class V8systemDll {
|
||||
public const nint Source2V8System001 = 0x315F0;
|
||||
// Module: libworldrenderer.so
|
||||
public static class LibworldrendererSo {
|
||||
public const nint WorldRendererMgr001 = 0xAED00;
|
||||
}
|
||||
// Module: vconcomm.dll
|
||||
public static class VconcommDll {
|
||||
public const nint VConComm001 = 0x375C0;
|
||||
}
|
||||
// Module: vphysics2.dll
|
||||
public static class Vphysics2Dll {
|
||||
public const nint VPhysics2_Handle_Interface_001 = 0x3E4120;
|
||||
public const nint VPhysics2_Interface_001 = 0x3E4160;
|
||||
}
|
||||
// Module: vscript.dll
|
||||
public static class VscriptDll {
|
||||
public const nint VScriptManager010 = 0x13B280;
|
||||
}
|
||||
// Module: vstdlib_s64.dll
|
||||
public static class VstdlibS64Dll {
|
||||
public const nint IVALIDATE001 = 0x6E990;
|
||||
public const nint VEngineCvar002 = 0x6D070;
|
||||
}
|
||||
// Module: worldrenderer.dll
|
||||
public static class WorldrendererDll {
|
||||
public const nint WorldRendererMgr001 = 0x1FEC50;
|
||||
// Module: steamclient.so
|
||||
public static class SteamclientSo {
|
||||
public const nint CLIENTENGINE_INTERFACE_VERSION005 = 0x12500B0;
|
||||
public const nint IVALIDATE001 = 0x124B950;
|
||||
public const nint SteamClient006 = 0xF1AA80;
|
||||
public const nint SteamClient007 = 0xF1AA90;
|
||||
public const nint SteamClient008 = 0xF1AAA0;
|
||||
public const nint SteamClient009 = 0xF1AAB0;
|
||||
public const nint SteamClient010 = 0xF1AAC0;
|
||||
public const nint SteamClient011 = 0xF1AAD0;
|
||||
public const nint SteamClient012 = 0xF1AAE0;
|
||||
public const nint SteamClient013 = 0xF1AAF0;
|
||||
public const nint SteamClient014 = 0xF1AB00;
|
||||
public const nint SteamClient015 = 0xF1AB10;
|
||||
public const nint SteamClient016 = 0xF1AB40;
|
||||
public const nint SteamClient017 = 0xF1AB70;
|
||||
public const nint SteamClient018 = 0xF1ABA0;
|
||||
public const nint SteamClient019 = 0xF1ABD0;
|
||||
public const nint SteamClient020 = 0xF1AC00;
|
||||
public const nint SteamClient021 = 0xF1AC30;
|
||||
public const nint p2pvoice002 = 0x18F1140;
|
||||
public const nint p2pvoicesingleton002 = 0x18E97B0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,239 +7,220 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace interfaces {
|
||||
// Module: animationsystem.dll
|
||||
namespace animationsystem_dll {
|
||||
constexpr std::ptrdiff_t AnimationSystemUtils_001 = 0x7C2B70;
|
||||
constexpr std::ptrdiff_t AnimationSystem_001 = 0x7BAA90;
|
||||
// Module: libanimationsystem.so
|
||||
namespace libanimationsystem_so {
|
||||
constexpr std::ptrdiff_t AnimationSystemUtils_001 = 0x1B4F70;
|
||||
constexpr std::ptrdiff_t AnimationSystem_001 = 0x1B4D60;
|
||||
}
|
||||
// Module: client.dll
|
||||
namespace client_dll {
|
||||
constexpr std::ptrdiff_t ClientToolsInfo_001 = 0x1BE3B30;
|
||||
constexpr std::ptrdiff_t EmptyWorldService001_Client = 0x1B9EE00;
|
||||
constexpr std::ptrdiff_t GameClientExports001 = 0x1BE0810;
|
||||
constexpr std::ptrdiff_t LegacyGameUI001 = 0x1BFF0C0;
|
||||
constexpr std::ptrdiff_t Source2Client002 = 0x1E283D0;
|
||||
constexpr std::ptrdiff_t Source2ClientConfig001 = 0x1DC38F0;
|
||||
constexpr std::ptrdiff_t Source2ClientPrediction001 = 0x1BEADD0;
|
||||
constexpr std::ptrdiff_t Source2ClientUI001 = 0x1BFD600;
|
||||
// Module: libclient.so
|
||||
namespace libclient_so {
|
||||
constexpr std::ptrdiff_t ClientToolsInfo_001 = 0xE2DF60;
|
||||
constexpr std::ptrdiff_t EmptyWorldService001_Client = 0xAEB700;
|
||||
constexpr std::ptrdiff_t GameClientExports001 = 0xE2DB30;
|
||||
constexpr std::ptrdiff_t LegacyGameUI001 = 0x1010610;
|
||||
constexpr std::ptrdiff_t Source2Client002 = 0xE2DB90;
|
||||
constexpr std::ptrdiff_t Source2ClientConfig001 = 0xAD5F30;
|
||||
constexpr std::ptrdiff_t Source2ClientPrediction001 = 0xEBD950;
|
||||
constexpr std::ptrdiff_t Source2ClientUI001 = 0xF98520;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
namespace engine2_dll {
|
||||
constexpr std::ptrdiff_t BenchmarkService001 = 0x5F6630;
|
||||
constexpr std::ptrdiff_t BugService001 = 0x8AAC60;
|
||||
constexpr std::ptrdiff_t ClientServerEngineLoopService_001 = 0x8EC370;
|
||||
constexpr std::ptrdiff_t EngineGameUI001 = 0x5F42F0;
|
||||
constexpr std::ptrdiff_t EngineServiceMgr001 = 0x8EBC70;
|
||||
constexpr std::ptrdiff_t GameEventSystemClientV001 = 0x8EBF40;
|
||||
constexpr std::ptrdiff_t GameEventSystemServerV001 = 0x8EC060;
|
||||
constexpr std::ptrdiff_t GameResourceServiceClientV001 = 0x5F6730;
|
||||
constexpr std::ptrdiff_t GameResourceServiceServerV001 = 0x5F6790;
|
||||
constexpr std::ptrdiff_t GameUIService_001 = 0x8AB090;
|
||||
constexpr std::ptrdiff_t HostStateMgr001 = 0x5F6FF0;
|
||||
constexpr std::ptrdiff_t INETSUPPORT_001 = 0x5EF870;
|
||||
constexpr std::ptrdiff_t InputService_001 = 0x8AB380;
|
||||
constexpr std::ptrdiff_t KeyValueCache001 = 0x5F70A0;
|
||||
constexpr std::ptrdiff_t MapListService_001 = 0x8EA2F0;
|
||||
constexpr std::ptrdiff_t NetworkClientService_001 = 0x8EA480;
|
||||
constexpr std::ptrdiff_t NetworkP2PService_001 = 0x8EA7A0;
|
||||
constexpr std::ptrdiff_t NetworkServerService_001 = 0x8EA930;
|
||||
constexpr std::ptrdiff_t NetworkService_001 = 0x5F6900;
|
||||
constexpr std::ptrdiff_t RenderService_001 = 0x8EAB90;
|
||||
constexpr std::ptrdiff_t ScreenshotService001 = 0x8EAE40;
|
||||
constexpr std::ptrdiff_t SimpleEngineLoopService_001 = 0x5F7100;
|
||||
constexpr std::ptrdiff_t SoundService_001 = 0x5F6940;
|
||||
constexpr std::ptrdiff_t Source2EngineToClient001 = 0x5F3980;
|
||||
constexpr std::ptrdiff_t Source2EngineToClientStringTable001 = 0x5F39E0;
|
||||
constexpr std::ptrdiff_t Source2EngineToServer001 = 0x5F3A58;
|
||||
constexpr std::ptrdiff_t Source2EngineToServerStringTable001 = 0x5F3A80;
|
||||
constexpr std::ptrdiff_t SplitScreenService_001 = 0x5F6C40;
|
||||
constexpr std::ptrdiff_t StatsService_001 = 0x8EB240;
|
||||
constexpr std::ptrdiff_t ToolService_001 = 0x5F6E00;
|
||||
constexpr std::ptrdiff_t VENGINE_GAMEUIFUNCS_VERSION005 = 0x5F4380;
|
||||
constexpr std::ptrdiff_t VProfService_001 = 0x5F6E40;
|
||||
// Module: libengine2.so
|
||||
namespace libengine2_so {
|
||||
constexpr std::ptrdiff_t BenchmarkService001 = 0x222FB0;
|
||||
constexpr std::ptrdiff_t BugService001 = 0x21F170;
|
||||
constexpr std::ptrdiff_t ClientServerEngineLoopService_001 = 0x1EE5D0;
|
||||
constexpr std::ptrdiff_t EngineGameUI001 = 0x3BDB40;
|
||||
constexpr std::ptrdiff_t EngineServiceMgr001 = 0x1DE740;
|
||||
constexpr std::ptrdiff_t GameEventSystemClientV001 = 0x1E3AF0;
|
||||
constexpr std::ptrdiff_t GameEventSystemServerV001 = 0x1E3B00;
|
||||
constexpr std::ptrdiff_t GameResourceServiceClientV001 = 0x224900;
|
||||
constexpr std::ptrdiff_t GameResourceServiceServerV001 = 0x224910;
|
||||
constexpr std::ptrdiff_t GameUIService_001 = 0x22CB40;
|
||||
constexpr std::ptrdiff_t HostStateMgr001 = 0x1E9110;
|
||||
constexpr std::ptrdiff_t INETSUPPORT_001 = 0x387120;
|
||||
constexpr std::ptrdiff_t InputService_001 = 0x231230;
|
||||
constexpr std::ptrdiff_t KeyValueCache001 = 0x1EBA60;
|
||||
constexpr std::ptrdiff_t MapListService_001 = 0x246460;
|
||||
constexpr std::ptrdiff_t NetworkClientService_001 = 0x269100;
|
||||
constexpr std::ptrdiff_t NetworkP2PService_001 = 0x27E440;
|
||||
constexpr std::ptrdiff_t NetworkServerService_001 = 0x24A510;
|
||||
constexpr std::ptrdiff_t NetworkService_001 = 0x249C30;
|
||||
constexpr std::ptrdiff_t RenderService_001 = 0x283620;
|
||||
constexpr std::ptrdiff_t ScreenshotService001 = 0x2861A0;
|
||||
constexpr std::ptrdiff_t SimpleEngineLoopService_001 = 0x204D40;
|
||||
constexpr std::ptrdiff_t SoundService_001 = 0x28A450;
|
||||
constexpr std::ptrdiff_t Source2EngineToClient001 = 0x30B980;
|
||||
constexpr std::ptrdiff_t Source2EngineToClientStringTable001 = 0x2DE440;
|
||||
constexpr std::ptrdiff_t Source2EngineToServer001 = 0x332B90;
|
||||
constexpr std::ptrdiff_t Source2EngineToServerStringTable001 = 0x315010;
|
||||
constexpr std::ptrdiff_t SplitScreenService_001 = 0x291D40;
|
||||
constexpr std::ptrdiff_t StatsService_001 = 0x295700;
|
||||
constexpr std::ptrdiff_t ToolService_001 = 0x29A360;
|
||||
constexpr std::ptrdiff_t VENGINE_GAMEUIFUNCS_VERSION005 = 0x3BD590;
|
||||
constexpr std::ptrdiff_t VProfService_001 = 0x29BBE0;
|
||||
}
|
||||
// Module: filesystem_stdio.dll
|
||||
namespace filesystem_stdio_dll {
|
||||
constexpr std::ptrdiff_t VAsyncFileSystem2_001 = 0x215AE0;
|
||||
constexpr std::ptrdiff_t VFileSystem017 = 0x2106C0;
|
||||
// Module: libfilesystem_stdio.so
|
||||
namespace libfilesystem_stdio_so {
|
||||
constexpr std::ptrdiff_t VAsyncFileSystem2_001 = 0x7DB90;
|
||||
constexpr std::ptrdiff_t VFileSystem017 = 0x7DB80;
|
||||
}
|
||||
// Module: host.dll
|
||||
namespace host_dll {
|
||||
constexpr std::ptrdiff_t DebugDrawQueueManager001 = 0x138EF0;
|
||||
constexpr std::ptrdiff_t GameModelInfo001 = 0x138F30;
|
||||
constexpr std::ptrdiff_t GameSystem2HostHook = 0x138F70;
|
||||
constexpr std::ptrdiff_t HostUtils001 = 0x1466E0;
|
||||
constexpr std::ptrdiff_t PredictionDiffManager001 = 0x139080;
|
||||
constexpr std::ptrdiff_t SaveRestoreDataVersion001 = 0x1391B0;
|
||||
constexpr std::ptrdiff_t SinglePlayerSharedMemory001 = 0x1391E0;
|
||||
constexpr std::ptrdiff_t Source2Host001 = 0x139250;
|
||||
// Module: libhost.so
|
||||
namespace libhost_so {
|
||||
constexpr std::ptrdiff_t DebugDrawQueueManager001 = 0xC5150;
|
||||
constexpr std::ptrdiff_t GameModelInfo001 = 0xC0160;
|
||||
constexpr std::ptrdiff_t GameSystem2HostHook = 0xC0890;
|
||||
constexpr std::ptrdiff_t HostUtils001 = 0xC0D10;
|
||||
constexpr std::ptrdiff_t PredictionDiffManager001 = 0xC1C90;
|
||||
constexpr std::ptrdiff_t SaveRestoreDataVersion001 = 0xC3C90;
|
||||
constexpr std::ptrdiff_t SinglePlayerSharedMemory001 = 0xC3F50;
|
||||
constexpr std::ptrdiff_t Source2Host001 = 0xC46B0;
|
||||
}
|
||||
// Module: imemanager.dll
|
||||
namespace imemanager_dll {
|
||||
constexpr std::ptrdiff_t IMEManager001 = 0x36AA0;
|
||||
// Module: libinputsystem.so
|
||||
namespace libinputsystem_so {
|
||||
constexpr std::ptrdiff_t InputStackSystemVersion001 = 0x11500;
|
||||
constexpr std::ptrdiff_t InputSystemVersion001 = 0x129F0;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
namespace inputsystem_dll {
|
||||
constexpr std::ptrdiff_t InputStackSystemVersion001 = 0x43CD0;
|
||||
constexpr std::ptrdiff_t InputSystemVersion001 = 0x45A20;
|
||||
// Module: liblocalize.so
|
||||
namespace liblocalize_so {
|
||||
constexpr std::ptrdiff_t Localize_001 = 0x1D770;
|
||||
}
|
||||
// Module: localize.dll
|
||||
namespace localize_dll {
|
||||
constexpr std::ptrdiff_t Localize_001 = 0x47BE0;
|
||||
// Module: libmatchmaking.so
|
||||
namespace libmatchmaking_so {
|
||||
constexpr std::ptrdiff_t GameTypes001 = 0xF4D40;
|
||||
constexpr std::ptrdiff_t MATCHFRAMEWORK_001 = 0x1C9F90;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
namespace matchmaking_dll {
|
||||
constexpr std::ptrdiff_t GameTypes001 = 0x1B5EE0;
|
||||
constexpr std::ptrdiff_t MATCHFRAMEWORK_001 = 0x1BE190;
|
||||
// Module: libmaterialsystem2.so
|
||||
namespace libmaterialsystem2_so {
|
||||
constexpr std::ptrdiff_t FontManager_001 = 0x7DDF0;
|
||||
constexpr std::ptrdiff_t MaterialUtils_001 = 0x67C30;
|
||||
constexpr std::ptrdiff_t PostProcessingSystem_001 = 0x8D2C0;
|
||||
constexpr std::ptrdiff_t TextLayout_001 = 0x8A850;
|
||||
constexpr std::ptrdiff_t VMaterialSystem2_001 = 0x2C470;
|
||||
}
|
||||
// Module: materialsystem2.dll
|
||||
namespace materialsystem2_dll {
|
||||
constexpr std::ptrdiff_t FontManager_001 = 0x163500;
|
||||
constexpr std::ptrdiff_t MaterialUtils_001 = 0x14B430;
|
||||
constexpr std::ptrdiff_t PostProcessingSystem_001 = 0x14B340;
|
||||
constexpr std::ptrdiff_t TextLayout_001 = 0x14B3C0;
|
||||
constexpr std::ptrdiff_t VMaterialSystem2_001 = 0x162D70;
|
||||
// Module: libmeshsystem.so
|
||||
namespace libmeshsystem_so {
|
||||
constexpr std::ptrdiff_t MeshSystem001 = 0x97630;
|
||||
}
|
||||
// Module: meshsystem.dll
|
||||
namespace meshsystem_dll {
|
||||
constexpr std::ptrdiff_t MeshSystem001 = 0x1400E0;
|
||||
// Module: libnetworksystem.so
|
||||
namespace libnetworksystem_so {
|
||||
constexpr std::ptrdiff_t FlattenedSerializersVersion001 = 0x163810;
|
||||
constexpr std::ptrdiff_t NetworkMessagesVersion001 = 0x18C190;
|
||||
constexpr std::ptrdiff_t NetworkSystemVersion001 = 0x1B5730;
|
||||
constexpr std::ptrdiff_t SerializedEntitiesVersion001 = 0x1CF0F0;
|
||||
}
|
||||
// Module: navsystem.dll
|
||||
namespace navsystem_dll {
|
||||
constexpr std::ptrdiff_t NavSystem001 = 0x120840;
|
||||
// Module: libpanorama.so
|
||||
namespace libpanorama_so {
|
||||
constexpr std::ptrdiff_t PanoramaUIEngine001 = 0x233D10;
|
||||
}
|
||||
// Module: networksystem.dll
|
||||
namespace networksystem_dll {
|
||||
constexpr std::ptrdiff_t FlattenedSerializersVersion001 = 0x2632F0;
|
||||
constexpr std::ptrdiff_t NetworkMessagesVersion001 = 0x28B240;
|
||||
constexpr std::ptrdiff_t NetworkSystemVersion001 = 0x27C9D0;
|
||||
constexpr std::ptrdiff_t SerializedEntitiesVersion001 = 0x27CAE0;
|
||||
// Module: libpanorama_text_pango.so
|
||||
namespace libpanorama_text_pango_so {
|
||||
constexpr std::ptrdiff_t PanoramaTextServices001 = 0xBB8E0;
|
||||
}
|
||||
// Module: panorama.dll
|
||||
namespace panorama_dll {
|
||||
constexpr std::ptrdiff_t PanoramaUIEngine001 = 0x509B20;
|
||||
// Module: libpanoramauiclient.so
|
||||
namespace libpanoramauiclient_so {
|
||||
constexpr std::ptrdiff_t PanoramaUIClient001 = 0x1095E0;
|
||||
}
|
||||
// Module: panorama_text_pango.dll
|
||||
namespace panorama_text_pango_dll {
|
||||
constexpr std::ptrdiff_t PanoramaTextServices001 = 0x2B79C0;
|
||||
// Module: libparticles.so
|
||||
namespace libparticles_so {
|
||||
constexpr std::ptrdiff_t ParticleSystemMgr003 = 0x212AF0;
|
||||
}
|
||||
// Module: panoramauiclient.dll
|
||||
namespace panoramauiclient_dll {
|
||||
constexpr std::ptrdiff_t PanoramaUIClient001 = 0x291200;
|
||||
// Module: libpulse_system.so
|
||||
namespace libpulse_system_so {
|
||||
constexpr std::ptrdiff_t IPulseSystem_001 = 0x402F0;
|
||||
}
|
||||
// Module: particles.dll
|
||||
namespace particles_dll {
|
||||
constexpr std::ptrdiff_t ParticleSystemMgr003 = 0x555680;
|
||||
// Module: librendersystemvulkan.so
|
||||
namespace librendersystemvulkan_so {
|
||||
constexpr std::ptrdiff_t RenderDeviceMgr001 = 0x14E840;
|
||||
constexpr std::ptrdiff_t RenderUtils_001 = 0xCD990;
|
||||
}
|
||||
// Module: pulse_system.dll
|
||||
namespace pulse_system_dll {
|
||||
constexpr std::ptrdiff_t IPulseSystem_001 = 0x1F0E30;
|
||||
// Module: libresourcesystem.so
|
||||
namespace libresourcesystem_so {
|
||||
constexpr std::ptrdiff_t ResourceSystem013 = 0x30F40;
|
||||
}
|
||||
// Module: rendersystemdx11.dll
|
||||
namespace rendersystemdx11_dll {
|
||||
constexpr std::ptrdiff_t RenderDeviceMgr001 = 0x431BC0;
|
||||
constexpr std::ptrdiff_t RenderUtils_001 = 0x4324B8;
|
||||
constexpr std::ptrdiff_t VRenderDeviceMgrBackdoor001 = 0x431C60;
|
||||
// Module: libscenefilecache.so
|
||||
namespace libscenefilecache_so {
|
||||
constexpr std::ptrdiff_t ResponseRulesCache001 = 0x89040;
|
||||
constexpr std::ptrdiff_t SceneFileCache002 = 0x85BA0;
|
||||
}
|
||||
// Module: resourcesystem.dll
|
||||
namespace resourcesystem_dll {
|
||||
constexpr std::ptrdiff_t ResourceSystem013 = 0x7FDD0;
|
||||
// Module: libscenesystem.so
|
||||
namespace libscenesystem_so {
|
||||
constexpr std::ptrdiff_t RenderingPipelines_001 = 0x142630;
|
||||
constexpr std::ptrdiff_t SceneSystem_002 = 0x186F60;
|
||||
constexpr std::ptrdiff_t SceneUtils_001 = 0x2067E0;
|
||||
}
|
||||
// Module: scenefilecache.dll
|
||||
namespace scenefilecache_dll {
|
||||
constexpr std::ptrdiff_t ResponseRulesCache001 = 0x95740;
|
||||
constexpr std::ptrdiff_t SceneFileCache002 = 0x95890;
|
||||
// Module: libschemasystem.so
|
||||
namespace libschemasystem_so {
|
||||
constexpr std::ptrdiff_t SchemaSystem_001 = 0x20FC0;
|
||||
}
|
||||
// Module: scenesystem.dll
|
||||
namespace scenesystem_dll {
|
||||
constexpr std::ptrdiff_t RenderingPipelines_001 = 0x61BB60;
|
||||
constexpr std::ptrdiff_t SceneSystem_002 = 0x83E7D0;
|
||||
constexpr std::ptrdiff_t SceneUtils_001 = 0x61C460;
|
||||
// Module: libserver.so
|
||||
namespace libserver_so {
|
||||
constexpr std::ptrdiff_t EmptyWorldService001_Server = 0xBF4E10;
|
||||
constexpr std::ptrdiff_t EntitySubclassUtilsV001 = 0x8DE640;
|
||||
constexpr std::ptrdiff_t NavGameTest001 = 0x1142450;
|
||||
constexpr std::ptrdiff_t ServerToolsInfo_001 = 0xF12E00;
|
||||
constexpr std::ptrdiff_t Source2GameClients001 = 0xF12D90;
|
||||
constexpr std::ptrdiff_t Source2GameDirector001 = 0x72E350;
|
||||
constexpr std::ptrdiff_t Source2GameEntities001 = 0xF12D80;
|
||||
constexpr std::ptrdiff_t Source2Server001 = 0xF12A80;
|
||||
constexpr std::ptrdiff_t Source2ServerConfig001 = 0xB914D0;
|
||||
constexpr std::ptrdiff_t customnavsystem001 = 0x8610C0;
|
||||
}
|
||||
// Module: schemasystem.dll
|
||||
namespace schemasystem_dll {
|
||||
constexpr std::ptrdiff_t SchemaSystem_001 = 0x756F0;
|
||||
// Module: libsoundsystem.so
|
||||
namespace libsoundsystem_so {
|
||||
constexpr std::ptrdiff_t SoundOpSystem001 = 0x176C80;
|
||||
constexpr std::ptrdiff_t SoundOpSystemEdit001 = 0xB6DC0;
|
||||
constexpr std::ptrdiff_t SoundSystem001 = 0x1E5FE0;
|
||||
constexpr std::ptrdiff_t VMixEditTool001 = 0x219CF0;
|
||||
}
|
||||
// Module: server.dll
|
||||
namespace server_dll {
|
||||
constexpr std::ptrdiff_t EmptyWorldService001_Server = 0x1731E00;
|
||||
constexpr std::ptrdiff_t EntitySubclassUtilsV001 = 0x16DE230;
|
||||
constexpr std::ptrdiff_t NavGameTest001 = 0x17DAD30;
|
||||
constexpr std::ptrdiff_t ServerToolsInfo_001 = 0x178A1A8;
|
||||
constexpr std::ptrdiff_t Source2GameClients001 = 0x1785AF0;
|
||||
constexpr std::ptrdiff_t Source2GameDirector001 = 0x18E5390;
|
||||
constexpr std::ptrdiff_t Source2GameEntities001 = 0x17898B0;
|
||||
constexpr std::ptrdiff_t Source2Server001 = 0x1789710;
|
||||
constexpr std::ptrdiff_t Source2ServerConfig001 = 0x19BB238;
|
||||
constexpr std::ptrdiff_t customnavsystem001 = 0x16BDC08;
|
||||
// Module: libsteamaudio.so
|
||||
namespace libsteamaudio_so {
|
||||
constexpr std::ptrdiff_t SteamAudio001 = 0x32410;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
namespace soundsystem_dll {
|
||||
constexpr std::ptrdiff_t SoundOpSystem001 = 0x3EB490;
|
||||
constexpr std::ptrdiff_t SoundOpSystemEdit001 = 0x3EB370;
|
||||
constexpr std::ptrdiff_t SoundSystem001 = 0x3EAE50;
|
||||
constexpr std::ptrdiff_t VMixEditTool001 = 0x485ED80B;
|
||||
// Module: libtier0.so
|
||||
namespace libtier0_so {
|
||||
constexpr std::ptrdiff_t TestScriptMgr001 = 0x1B9B90;
|
||||
constexpr std::ptrdiff_t VEngineCvar007 = 0xF61C0;
|
||||
constexpr std::ptrdiff_t VProcessUtils002 = 0x1AD380;
|
||||
constexpr std::ptrdiff_t VStringTokenSystem001 = 0x1DFCA0;
|
||||
}
|
||||
// Module: steamaudio.dll
|
||||
namespace steamaudio_dll {
|
||||
constexpr std::ptrdiff_t SteamAudio001 = 0x257550;
|
||||
// Module: libv8system.so
|
||||
namespace libv8system_so {
|
||||
constexpr std::ptrdiff_t Source2V8System001 = 0x1B450;
|
||||
}
|
||||
// Module: steamclient64.dll
|
||||
namespace steamclient64_dll {
|
||||
constexpr std::ptrdiff_t CLIENTENGINE_INTERFACE_VERSION005 = 0xFFFFFFFF8BB0BEDA;
|
||||
constexpr std::ptrdiff_t IVALIDATE001 = 0x15348D8;
|
||||
constexpr std::ptrdiff_t SteamClient006 = 0x1532000;
|
||||
constexpr std::ptrdiff_t SteamClient007 = 0x1532008;
|
||||
constexpr std::ptrdiff_t SteamClient008 = 0x1532010;
|
||||
constexpr std::ptrdiff_t SteamClient009 = 0x1532018;
|
||||
constexpr std::ptrdiff_t SteamClient010 = 0x1532020;
|
||||
constexpr std::ptrdiff_t SteamClient011 = 0x1532028;
|
||||
constexpr std::ptrdiff_t SteamClient012 = 0x1532030;
|
||||
constexpr std::ptrdiff_t SteamClient013 = 0x1532038;
|
||||
constexpr std::ptrdiff_t SteamClient014 = 0x1532040;
|
||||
constexpr std::ptrdiff_t SteamClient015 = 0x1532048;
|
||||
constexpr std::ptrdiff_t SteamClient016 = 0x1532050;
|
||||
constexpr std::ptrdiff_t SteamClient017 = 0x1532058;
|
||||
constexpr std::ptrdiff_t SteamClient018 = 0x1532060;
|
||||
constexpr std::ptrdiff_t SteamClient019 = 0x1532068;
|
||||
constexpr std::ptrdiff_t SteamClient020 = 0x1532070;
|
||||
constexpr std::ptrdiff_t SteamClient021 = 0x1532078;
|
||||
constexpr std::ptrdiff_t SteamClient022 = 0x1532080;
|
||||
constexpr std::ptrdiff_t p2pvoice002 = 0x14E2D2F;
|
||||
constexpr std::ptrdiff_t p2pvoicesingleton002 = 0x150F0F0;
|
||||
// Module: libvphysics2.so
|
||||
namespace libvphysics2_so {
|
||||
constexpr std::ptrdiff_t VPhysics2_Handle_Interface_001 = 0xC92A0;
|
||||
constexpr std::ptrdiff_t VPhysics2_Interface_001 = 0xC8E90;
|
||||
}
|
||||
// Module: tier0.dll
|
||||
namespace tier0_dll {
|
||||
constexpr std::ptrdiff_t TestScriptMgr001 = 0x3975A0;
|
||||
constexpr std::ptrdiff_t VEngineCvar007 = 0x3A2440;
|
||||
constexpr std::ptrdiff_t VProcessUtils002 = 0x3974E0;
|
||||
constexpr std::ptrdiff_t VStringTokenSystem001 = 0x3C9310;
|
||||
// Module: libvscript.so
|
||||
namespace libvscript_so {
|
||||
constexpr std::ptrdiff_t VScriptManager010 = 0x25DA0;
|
||||
}
|
||||
// Module: v8system.dll
|
||||
namespace v8system_dll {
|
||||
constexpr std::ptrdiff_t Source2V8System001 = 0x315F0;
|
||||
// Module: libworldrenderer.so
|
||||
namespace libworldrenderer_so {
|
||||
constexpr std::ptrdiff_t WorldRendererMgr001 = 0xAED00;
|
||||
}
|
||||
// Module: vconcomm.dll
|
||||
namespace vconcomm_dll {
|
||||
constexpr std::ptrdiff_t VConComm001 = 0x375C0;
|
||||
}
|
||||
// Module: vphysics2.dll
|
||||
namespace vphysics2_dll {
|
||||
constexpr std::ptrdiff_t VPhysics2_Handle_Interface_001 = 0x3E4120;
|
||||
constexpr std::ptrdiff_t VPhysics2_Interface_001 = 0x3E4160;
|
||||
}
|
||||
// Module: vscript.dll
|
||||
namespace vscript_dll {
|
||||
constexpr std::ptrdiff_t VScriptManager010 = 0x13B280;
|
||||
}
|
||||
// Module: vstdlib_s64.dll
|
||||
namespace vstdlib_s64_dll {
|
||||
constexpr std::ptrdiff_t IVALIDATE001 = 0x6E990;
|
||||
constexpr std::ptrdiff_t VEngineCvar002 = 0x6D070;
|
||||
}
|
||||
// Module: worldrenderer.dll
|
||||
namespace worldrenderer_dll {
|
||||
constexpr std::ptrdiff_t WorldRendererMgr001 = 0x1FEC50;
|
||||
// Module: steamclient.so
|
||||
namespace steamclient_so {
|
||||
constexpr std::ptrdiff_t CLIENTENGINE_INTERFACE_VERSION005 = 0x12500B0;
|
||||
constexpr std::ptrdiff_t IVALIDATE001 = 0x124B950;
|
||||
constexpr std::ptrdiff_t SteamClient006 = 0xF1AA80;
|
||||
constexpr std::ptrdiff_t SteamClient007 = 0xF1AA90;
|
||||
constexpr std::ptrdiff_t SteamClient008 = 0xF1AAA0;
|
||||
constexpr std::ptrdiff_t SteamClient009 = 0xF1AAB0;
|
||||
constexpr std::ptrdiff_t SteamClient010 = 0xF1AAC0;
|
||||
constexpr std::ptrdiff_t SteamClient011 = 0xF1AAD0;
|
||||
constexpr std::ptrdiff_t SteamClient012 = 0xF1AAE0;
|
||||
constexpr std::ptrdiff_t SteamClient013 = 0xF1AAF0;
|
||||
constexpr std::ptrdiff_t SteamClient014 = 0xF1AB00;
|
||||
constexpr std::ptrdiff_t SteamClient015 = 0xF1AB10;
|
||||
constexpr std::ptrdiff_t SteamClient016 = 0xF1AB40;
|
||||
constexpr std::ptrdiff_t SteamClient017 = 0xF1AB70;
|
||||
constexpr std::ptrdiff_t SteamClient018 = 0xF1ABA0;
|
||||
constexpr std::ptrdiff_t SteamClient019 = 0xF1ABD0;
|
||||
constexpr std::ptrdiff_t SteamClient020 = 0xF1AC00;
|
||||
constexpr std::ptrdiff_t SteamClient021 = 0xF1AC30;
|
||||
constexpr std::ptrdiff_t p2pvoice002 = 0x18F1140;
|
||||
constexpr std::ptrdiff_t p2pvoicesingleton002 = 0x18E97B0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,202 +1,187 @@
|
||||
{
|
||||
"animationsystem.dll": {
|
||||
"AnimationSystemUtils_001": 8137584,
|
||||
"AnimationSystem_001": 8104592
|
||||
"libanimationsystem.so": {
|
||||
"AnimationSystemUtils_001": 1789808,
|
||||
"AnimationSystem_001": 1789280
|
||||
},
|
||||
"client.dll": {
|
||||
"ClientToolsInfo_001": 29244208,
|
||||
"EmptyWorldService001_Client": 28962304,
|
||||
"GameClientExports001": 29231120,
|
||||
"LegacyGameUI001": 29356224,
|
||||
"Source2Client002": 31622096,
|
||||
"Source2ClientConfig001": 31209712,
|
||||
"Source2ClientPrediction001": 29273552,
|
||||
"Source2ClientUI001": 29349376
|
||||
"libclient.so": {
|
||||
"ClientToolsInfo_001": 14868320,
|
||||
"EmptyWorldService001_Client": 11450112,
|
||||
"GameClientExports001": 14867248,
|
||||
"LegacyGameUI001": 16844304,
|
||||
"Source2Client002": 14867344,
|
||||
"Source2ClientConfig001": 11362096,
|
||||
"Source2ClientPrediction001": 15456592,
|
||||
"Source2ClientUI001": 16352544
|
||||
},
|
||||
"engine2.dll": {
|
||||
"BenchmarkService001": 6252080,
|
||||
"BugService001": 9088096,
|
||||
"ClientServerEngineLoopService_001": 9356144,
|
||||
"EngineGameUI001": 6243056,
|
||||
"EngineServiceMgr001": 9354352,
|
||||
"GameEventSystemClientV001": 9355072,
|
||||
"GameEventSystemServerV001": 9355360,
|
||||
"GameResourceServiceClientV001": 6252336,
|
||||
"GameResourceServiceServerV001": 6252432,
|
||||
"GameUIService_001": 9089168,
|
||||
"HostStateMgr001": 6254576,
|
||||
"INETSUPPORT_001": 6223984,
|
||||
"InputService_001": 9089920,
|
||||
"KeyValueCache001": 6254752,
|
||||
"MapListService_001": 9347824,
|
||||
"NetworkClientService_001": 9348224,
|
||||
"NetworkP2PService_001": 9349024,
|
||||
"NetworkServerService_001": 9349424,
|
||||
"NetworkService_001": 6252800,
|
||||
"RenderService_001": 9350032,
|
||||
"ScreenshotService001": 9350720,
|
||||
"SimpleEngineLoopService_001": 6254848,
|
||||
"SoundService_001": 6252864,
|
||||
"Source2EngineToClient001": 6240640,
|
||||
"Source2EngineToClientStringTable001": 6240736,
|
||||
"Source2EngineToServer001": 6240856,
|
||||
"Source2EngineToServerStringTable001": 6240896,
|
||||
"SplitScreenService_001": 6253632,
|
||||
"StatsService_001": 9351744,
|
||||
"ToolService_001": 6254080,
|
||||
"VENGINE_GAMEUIFUNCS_VERSION005": 6243200,
|
||||
"VProfService_001": 6254144
|
||||
"libengine2.so": {
|
||||
"BenchmarkService001": 2240432,
|
||||
"BugService001": 2224496,
|
||||
"ClientServerEngineLoopService_001": 2024912,
|
||||
"EngineGameUI001": 3922752,
|
||||
"EngineServiceMgr001": 1959744,
|
||||
"GameEventSystemClientV001": 1981168,
|
||||
"GameEventSystemServerV001": 1981184,
|
||||
"GameResourceServiceClientV001": 2246912,
|
||||
"GameResourceServiceServerV001": 2246928,
|
||||
"GameUIService_001": 2280256,
|
||||
"HostStateMgr001": 2003216,
|
||||
"INETSUPPORT_001": 3698976,
|
||||
"InputService_001": 2298416,
|
||||
"KeyValueCache001": 2013792,
|
||||
"MapListService_001": 2384992,
|
||||
"NetworkClientService_001": 2527488,
|
||||
"NetworkP2PService_001": 2614336,
|
||||
"NetworkServerService_001": 2401552,
|
||||
"NetworkService_001": 2399280,
|
||||
"RenderService_001": 2635296,
|
||||
"ScreenshotService001": 2646432,
|
||||
"SimpleEngineLoopService_001": 2116928,
|
||||
"SoundService_001": 2663504,
|
||||
"Source2EngineToClient001": 3193216,
|
||||
"Source2EngineToClientStringTable001": 3007552,
|
||||
"Source2EngineToServer001": 3353488,
|
||||
"Source2EngineToServerStringTable001": 3231760,
|
||||
"SplitScreenService_001": 2694464,
|
||||
"StatsService_001": 2709248,
|
||||
"ToolService_001": 2728800,
|
||||
"VENGINE_GAMEUIFUNCS_VERSION005": 3921296,
|
||||
"VProfService_001": 2735072
|
||||
},
|
||||
"filesystem_stdio.dll": {
|
||||
"VAsyncFileSystem2_001": 2185952,
|
||||
"VFileSystem017": 2164416
|
||||
"libfilesystem_stdio.so": {
|
||||
"VAsyncFileSystem2_001": 514960,
|
||||
"VFileSystem017": 514944
|
||||
},
|
||||
"host.dll": {
|
||||
"DebugDrawQueueManager001": 1281776,
|
||||
"GameModelInfo001": 1281840,
|
||||
"GameSystem2HostHook": 1281904,
|
||||
"HostUtils001": 1337056,
|
||||
"PredictionDiffManager001": 1282176,
|
||||
"SaveRestoreDataVersion001": 1282480,
|
||||
"SinglePlayerSharedMemory001": 1282528,
|
||||
"Source2Host001": 1282640
|
||||
"libhost.so": {
|
||||
"DebugDrawQueueManager001": 807248,
|
||||
"GameModelInfo001": 786784,
|
||||
"GameSystem2HostHook": 788624,
|
||||
"HostUtils001": 789776,
|
||||
"PredictionDiffManager001": 793744,
|
||||
"SaveRestoreDataVersion001": 801936,
|
||||
"SinglePlayerSharedMemory001": 802640,
|
||||
"Source2Host001": 804528
|
||||
},
|
||||
"imemanager.dll": {
|
||||
"IMEManager001": 223904
|
||||
"libinputsystem.so": {
|
||||
"InputStackSystemVersion001": 70912,
|
||||
"InputSystemVersion001": 76272
|
||||
},
|
||||
"inputsystem.dll": {
|
||||
"InputStackSystemVersion001": 277712,
|
||||
"InputSystemVersion001": 285216
|
||||
"liblocalize.so": {
|
||||
"Localize_001": 120688
|
||||
},
|
||||
"localize.dll": {
|
||||
"Localize_001": 293856
|
||||
"libmatchmaking.so": {
|
||||
"GameTypes001": 1002816,
|
||||
"MATCHFRAMEWORK_001": 1875856
|
||||
},
|
||||
"matchmaking.dll": {
|
||||
"GameTypes001": 1793760,
|
||||
"MATCHFRAMEWORK_001": 1827216
|
||||
"libmaterialsystem2.so": {
|
||||
"FontManager_001": 515568,
|
||||
"MaterialUtils_001": 425008,
|
||||
"PostProcessingSystem_001": 578240,
|
||||
"TextLayout_001": 567376,
|
||||
"VMaterialSystem2_001": 181360
|
||||
},
|
||||
"materialsystem2.dll": {
|
||||
"FontManager_001": 1455360,
|
||||
"MaterialUtils_001": 1356848,
|
||||
"PostProcessingSystem_001": 1356608,
|
||||
"TextLayout_001": 1356736,
|
||||
"VMaterialSystem2_001": 1453424
|
||||
"libmeshsystem.so": {
|
||||
"MeshSystem001": 620080
|
||||
},
|
||||
"meshsystem.dll": {
|
||||
"MeshSystem001": 1310944
|
||||
"libnetworksystem.so": {
|
||||
"FlattenedSerializersVersion001": 1456144,
|
||||
"NetworkMessagesVersion001": 1622416,
|
||||
"NetworkSystemVersion001": 1791792,
|
||||
"SerializedEntitiesVersion001": 1896688
|
||||
},
|
||||
"navsystem.dll": {
|
||||
"NavSystem001": 1181760
|
||||
"libpanorama.so": {
|
||||
"PanoramaUIEngine001": 2309392
|
||||
},
|
||||
"networksystem.dll": {
|
||||
"FlattenedSerializersVersion001": 2503408,
|
||||
"NetworkMessagesVersion001": 2667072,
|
||||
"NetworkSystemVersion001": 2607568,
|
||||
"SerializedEntitiesVersion001": 2607840
|
||||
"libpanorama_text_pango.so": {
|
||||
"PanoramaTextServices001": 768224
|
||||
},
|
||||
"panorama.dll": {
|
||||
"PanoramaUIEngine001": 5282592
|
||||
"libpanoramauiclient.so": {
|
||||
"PanoramaUIClient001": 1086944
|
||||
},
|
||||
"panorama_text_pango.dll": {
|
||||
"PanoramaTextServices001": 2849216
|
||||
"libparticles.so": {
|
||||
"ParticleSystemMgr003": 2173680
|
||||
},
|
||||
"panoramauiclient.dll": {
|
||||
"PanoramaUIClient001": 2691584
|
||||
"libpulse_system.so": {
|
||||
"IPulseSystem_001": 262896
|
||||
},
|
||||
"particles.dll": {
|
||||
"ParticleSystemMgr003": 5592704
|
||||
"librendersystemvulkan.so": {
|
||||
"RenderDeviceMgr001": 1370176,
|
||||
"RenderUtils_001": 842128
|
||||
},
|
||||
"pulse_system.dll": {
|
||||
"IPulseSystem_001": 2035248
|
||||
"libresourcesystem.so": {
|
||||
"ResourceSystem013": 200512
|
||||
},
|
||||
"rendersystemdx11.dll": {
|
||||
"RenderDeviceMgr001": 4398016,
|
||||
"RenderUtils_001": 4400312,
|
||||
"VRenderDeviceMgrBackdoor001": 4398176
|
||||
"libscenefilecache.so": {
|
||||
"ResponseRulesCache001": 561216,
|
||||
"SceneFileCache002": 547744
|
||||
},
|
||||
"resourcesystem.dll": {
|
||||
"ResourceSystem013": 523728
|
||||
"libscenesystem.so": {
|
||||
"RenderingPipelines_001": 1320496,
|
||||
"SceneSystem_002": 1601376,
|
||||
"SceneUtils_001": 2123744
|
||||
},
|
||||
"scenefilecache.dll": {
|
||||
"ResponseRulesCache001": 612160,
|
||||
"SceneFileCache002": 612496
|
||||
"libschemasystem.so": {
|
||||
"SchemaSystem_001": 135104
|
||||
},
|
||||
"scenesystem.dll": {
|
||||
"RenderingPipelines_001": 6404960,
|
||||
"SceneSystem_002": 8644560,
|
||||
"SceneUtils_001": 6407264
|
||||
"libserver.so": {
|
||||
"EmptyWorldService001_Server": 12537360,
|
||||
"EntitySubclassUtilsV001": 9299520,
|
||||
"NavGameTest001": 18097232,
|
||||
"ServerToolsInfo_001": 15805952,
|
||||
"Source2GameClients001": 15805840,
|
||||
"Source2GameDirector001": 7529296,
|
||||
"Source2GameEntities001": 15805824,
|
||||
"Source2Server001": 15805056,
|
||||
"Source2ServerConfig001": 12129488,
|
||||
"customnavsystem001": 8786112
|
||||
},
|
||||
"schemasystem.dll": {
|
||||
"SchemaSystem_001": 481008
|
||||
"libsoundsystem.so": {
|
||||
"SoundOpSystem001": 1535104,
|
||||
"SoundOpSystemEdit001": 748992,
|
||||
"SoundSystem001": 1990624,
|
||||
"VMixEditTool001": 2202864
|
||||
},
|
||||
"server.dll": {
|
||||
"EmptyWorldService001_Server": 24321536,
|
||||
"EntitySubclassUtilsV001": 23978544,
|
||||
"NavGameTest001": 25013552,
|
||||
"ServerToolsInfo_001": 24682920,
|
||||
"Source2GameClients001": 24664816,
|
||||
"Source2GameDirector001": 26104720,
|
||||
"Source2GameEntities001": 24680624,
|
||||
"Source2Server001": 24680208,
|
||||
"Source2ServerConfig001": 26980920,
|
||||
"customnavsystem001": 23845896
|
||||
"libsteamaudio.so": {
|
||||
"SteamAudio001": 205840
|
||||
},
|
||||
"soundsystem.dll": {
|
||||
"SoundOpSystem001": 4109456,
|
||||
"SoundOpSystemEdit001": 4109168,
|
||||
"SoundSystem001": 4107856,
|
||||
"VMixEditTool001": 1214175243
|
||||
"libtier0.so": {
|
||||
"TestScriptMgr001": 1809296,
|
||||
"VEngineCvar007": 1008064,
|
||||
"VProcessUtils002": 1758080,
|
||||
"VStringTokenSystem001": 1965216
|
||||
},
|
||||
"steamaudio.dll": {
|
||||
"SteamAudio001": 2454864
|
||||
"libv8system.so": {
|
||||
"Source2V8System001": 111696
|
||||
},
|
||||
"steamclient64.dll": {
|
||||
"CLIENTENGINE_INTERFACE_VERSION005": 18446744071758200538,
|
||||
"IVALIDATE001": 22235352,
|
||||
"SteamClient006": 22224896,
|
||||
"SteamClient007": 22224904,
|
||||
"SteamClient008": 22224912,
|
||||
"SteamClient009": 22224920,
|
||||
"SteamClient010": 22224928,
|
||||
"SteamClient011": 22224936,
|
||||
"SteamClient012": 22224944,
|
||||
"SteamClient013": 22224952,
|
||||
"SteamClient014": 22224960,
|
||||
"SteamClient015": 22224968,
|
||||
"SteamClient016": 22224976,
|
||||
"SteamClient017": 22224984,
|
||||
"SteamClient018": 22224992,
|
||||
"SteamClient019": 22225000,
|
||||
"SteamClient020": 22225008,
|
||||
"SteamClient021": 22225016,
|
||||
"SteamClient022": 22225024,
|
||||
"p2pvoice002": 21900591,
|
||||
"p2pvoicesingleton002": 22081776
|
||||
"libvphysics2.so": {
|
||||
"VPhysics2_Handle_Interface_001": 823968,
|
||||
"VPhysics2_Interface_001": 822928
|
||||
},
|
||||
"tier0.dll": {
|
||||
"TestScriptMgr001": 3765664,
|
||||
"VEngineCvar007": 3810368,
|
||||
"VProcessUtils002": 3765472,
|
||||
"VStringTokenSystem001": 3969808
|
||||
"libvscript.so": {
|
||||
"VScriptManager010": 155040
|
||||
},
|
||||
"v8system.dll": {
|
||||
"Source2V8System001": 202224
|
||||
"libworldrenderer.so": {
|
||||
"WorldRendererMgr001": 716032
|
||||
},
|
||||
"vconcomm.dll": {
|
||||
"VConComm001": 226752
|
||||
},
|
||||
"vphysics2.dll": {
|
||||
"VPhysics2_Handle_Interface_001": 4079904,
|
||||
"VPhysics2_Interface_001": 4079968
|
||||
},
|
||||
"vscript.dll": {
|
||||
"VScriptManager010": 1290880
|
||||
},
|
||||
"vstdlib_s64.dll": {
|
||||
"IVALIDATE001": 453008,
|
||||
"VEngineCvar002": 446576
|
||||
},
|
||||
"worldrenderer.dll": {
|
||||
"WorldRendererMgr001": 2092112
|
||||
"steamclient.so": {
|
||||
"CLIENTENGINE_INTERFACE_VERSION005": 19202224,
|
||||
"IVALIDATE001": 19183952,
|
||||
"SteamClient006": 15837824,
|
||||
"SteamClient007": 15837840,
|
||||
"SteamClient008": 15837856,
|
||||
"SteamClient009": 15837872,
|
||||
"SteamClient010": 15837888,
|
||||
"SteamClient011": 15837904,
|
||||
"SteamClient012": 15837920,
|
||||
"SteamClient013": 15837936,
|
||||
"SteamClient014": 15837952,
|
||||
"SteamClient015": 15837968,
|
||||
"SteamClient016": 15838016,
|
||||
"SteamClient017": 15838064,
|
||||
"SteamClient018": 15838112,
|
||||
"SteamClient019": 15838160,
|
||||
"SteamClient020": 15838208,
|
||||
"SteamClient021": 15838256,
|
||||
"p2pvoice002": 26153280,
|
||||
"p2pvoicesingleton002": 26122160
|
||||
}
|
||||
}
|
||||
@@ -1,243 +1,224 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod interfaces {
|
||||
// Module: animationsystem.dll
|
||||
pub mod animationsystem_dll {
|
||||
pub const AnimationSystemUtils_001: usize = 0x7C2B70;
|
||||
pub const AnimationSystem_001: usize = 0x7BAA90;
|
||||
// Module: libanimationsystem.so
|
||||
pub mod libanimationsystem_so {
|
||||
pub const AnimationSystemUtils_001: usize = 0x1B4F70;
|
||||
pub const AnimationSystem_001: usize = 0x1B4D60;
|
||||
}
|
||||
// Module: client.dll
|
||||
pub mod client_dll {
|
||||
pub const ClientToolsInfo_001: usize = 0x1BE3B30;
|
||||
pub const EmptyWorldService001_Client: usize = 0x1B9EE00;
|
||||
pub const GameClientExports001: usize = 0x1BE0810;
|
||||
pub const LegacyGameUI001: usize = 0x1BFF0C0;
|
||||
pub const Source2Client002: usize = 0x1E283D0;
|
||||
pub const Source2ClientConfig001: usize = 0x1DC38F0;
|
||||
pub const Source2ClientPrediction001: usize = 0x1BEADD0;
|
||||
pub const Source2ClientUI001: usize = 0x1BFD600;
|
||||
// Module: libclient.so
|
||||
pub mod libclient_so {
|
||||
pub const ClientToolsInfo_001: usize = 0xE2DF60;
|
||||
pub const EmptyWorldService001_Client: usize = 0xAEB700;
|
||||
pub const GameClientExports001: usize = 0xE2DB30;
|
||||
pub const LegacyGameUI001: usize = 0x1010610;
|
||||
pub const Source2Client002: usize = 0xE2DB90;
|
||||
pub const Source2ClientConfig001: usize = 0xAD5F30;
|
||||
pub const Source2ClientPrediction001: usize = 0xEBD950;
|
||||
pub const Source2ClientUI001: usize = 0xF98520;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
pub mod engine2_dll {
|
||||
pub const BenchmarkService001: usize = 0x5F6630;
|
||||
pub const BugService001: usize = 0x8AAC60;
|
||||
pub const ClientServerEngineLoopService_001: usize = 0x8EC370;
|
||||
pub const EngineGameUI001: usize = 0x5F42F0;
|
||||
pub const EngineServiceMgr001: usize = 0x8EBC70;
|
||||
pub const GameEventSystemClientV001: usize = 0x8EBF40;
|
||||
pub const GameEventSystemServerV001: usize = 0x8EC060;
|
||||
pub const GameResourceServiceClientV001: usize = 0x5F6730;
|
||||
pub const GameResourceServiceServerV001: usize = 0x5F6790;
|
||||
pub const GameUIService_001: usize = 0x8AB090;
|
||||
pub const HostStateMgr001: usize = 0x5F6FF0;
|
||||
pub const INETSUPPORT_001: usize = 0x5EF870;
|
||||
pub const InputService_001: usize = 0x8AB380;
|
||||
pub const KeyValueCache001: usize = 0x5F70A0;
|
||||
pub const MapListService_001: usize = 0x8EA2F0;
|
||||
pub const NetworkClientService_001: usize = 0x8EA480;
|
||||
pub const NetworkP2PService_001: usize = 0x8EA7A0;
|
||||
pub const NetworkServerService_001: usize = 0x8EA930;
|
||||
pub const NetworkService_001: usize = 0x5F6900;
|
||||
pub const RenderService_001: usize = 0x8EAB90;
|
||||
pub const ScreenshotService001: usize = 0x8EAE40;
|
||||
pub const SimpleEngineLoopService_001: usize = 0x5F7100;
|
||||
pub const SoundService_001: usize = 0x5F6940;
|
||||
pub const Source2EngineToClient001: usize = 0x5F3980;
|
||||
pub const Source2EngineToClientStringTable001: usize = 0x5F39E0;
|
||||
pub const Source2EngineToServer001: usize = 0x5F3A58;
|
||||
pub const Source2EngineToServerStringTable001: usize = 0x5F3A80;
|
||||
pub const SplitScreenService_001: usize = 0x5F6C40;
|
||||
pub const StatsService_001: usize = 0x8EB240;
|
||||
pub const ToolService_001: usize = 0x5F6E00;
|
||||
pub const VENGINE_GAMEUIFUNCS_VERSION005: usize = 0x5F4380;
|
||||
pub const VProfService_001: usize = 0x5F6E40;
|
||||
// Module: libengine2.so
|
||||
pub mod libengine2_so {
|
||||
pub const BenchmarkService001: usize = 0x222FB0;
|
||||
pub const BugService001: usize = 0x21F170;
|
||||
pub const ClientServerEngineLoopService_001: usize = 0x1EE5D0;
|
||||
pub const EngineGameUI001: usize = 0x3BDB40;
|
||||
pub const EngineServiceMgr001: usize = 0x1DE740;
|
||||
pub const GameEventSystemClientV001: usize = 0x1E3AF0;
|
||||
pub const GameEventSystemServerV001: usize = 0x1E3B00;
|
||||
pub const GameResourceServiceClientV001: usize = 0x224900;
|
||||
pub const GameResourceServiceServerV001: usize = 0x224910;
|
||||
pub const GameUIService_001: usize = 0x22CB40;
|
||||
pub const HostStateMgr001: usize = 0x1E9110;
|
||||
pub const INETSUPPORT_001: usize = 0x387120;
|
||||
pub const InputService_001: usize = 0x231230;
|
||||
pub const KeyValueCache001: usize = 0x1EBA60;
|
||||
pub const MapListService_001: usize = 0x246460;
|
||||
pub const NetworkClientService_001: usize = 0x269100;
|
||||
pub const NetworkP2PService_001: usize = 0x27E440;
|
||||
pub const NetworkServerService_001: usize = 0x24A510;
|
||||
pub const NetworkService_001: usize = 0x249C30;
|
||||
pub const RenderService_001: usize = 0x283620;
|
||||
pub const ScreenshotService001: usize = 0x2861A0;
|
||||
pub const SimpleEngineLoopService_001: usize = 0x204D40;
|
||||
pub const SoundService_001: usize = 0x28A450;
|
||||
pub const Source2EngineToClient001: usize = 0x30B980;
|
||||
pub const Source2EngineToClientStringTable001: usize = 0x2DE440;
|
||||
pub const Source2EngineToServer001: usize = 0x332B90;
|
||||
pub const Source2EngineToServerStringTable001: usize = 0x315010;
|
||||
pub const SplitScreenService_001: usize = 0x291D40;
|
||||
pub const StatsService_001: usize = 0x295700;
|
||||
pub const ToolService_001: usize = 0x29A360;
|
||||
pub const VENGINE_GAMEUIFUNCS_VERSION005: usize = 0x3BD590;
|
||||
pub const VProfService_001: usize = 0x29BBE0;
|
||||
}
|
||||
// Module: filesystem_stdio.dll
|
||||
pub mod filesystem_stdio_dll {
|
||||
pub const VAsyncFileSystem2_001: usize = 0x215AE0;
|
||||
pub const VFileSystem017: usize = 0x2106C0;
|
||||
// Module: libfilesystem_stdio.so
|
||||
pub mod libfilesystem_stdio_so {
|
||||
pub const VAsyncFileSystem2_001: usize = 0x7DB90;
|
||||
pub const VFileSystem017: usize = 0x7DB80;
|
||||
}
|
||||
// Module: host.dll
|
||||
pub mod host_dll {
|
||||
pub const DebugDrawQueueManager001: usize = 0x138EF0;
|
||||
pub const GameModelInfo001: usize = 0x138F30;
|
||||
pub const GameSystem2HostHook: usize = 0x138F70;
|
||||
pub const HostUtils001: usize = 0x1466E0;
|
||||
pub const PredictionDiffManager001: usize = 0x139080;
|
||||
pub const SaveRestoreDataVersion001: usize = 0x1391B0;
|
||||
pub const SinglePlayerSharedMemory001: usize = 0x1391E0;
|
||||
pub const Source2Host001: usize = 0x139250;
|
||||
// Module: libhost.so
|
||||
pub mod libhost_so {
|
||||
pub const DebugDrawQueueManager001: usize = 0xC5150;
|
||||
pub const GameModelInfo001: usize = 0xC0160;
|
||||
pub const GameSystem2HostHook: usize = 0xC0890;
|
||||
pub const HostUtils001: usize = 0xC0D10;
|
||||
pub const PredictionDiffManager001: usize = 0xC1C90;
|
||||
pub const SaveRestoreDataVersion001: usize = 0xC3C90;
|
||||
pub const SinglePlayerSharedMemory001: usize = 0xC3F50;
|
||||
pub const Source2Host001: usize = 0xC46B0;
|
||||
}
|
||||
// Module: imemanager.dll
|
||||
pub mod imemanager_dll {
|
||||
pub const IMEManager001: usize = 0x36AA0;
|
||||
// Module: libinputsystem.so
|
||||
pub mod libinputsystem_so {
|
||||
pub const InputStackSystemVersion001: usize = 0x11500;
|
||||
pub const InputSystemVersion001: usize = 0x129F0;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
pub mod inputsystem_dll {
|
||||
pub const InputStackSystemVersion001: usize = 0x43CD0;
|
||||
pub const InputSystemVersion001: usize = 0x45A20;
|
||||
// Module: liblocalize.so
|
||||
pub mod liblocalize_so {
|
||||
pub const Localize_001: usize = 0x1D770;
|
||||
}
|
||||
// Module: localize.dll
|
||||
pub mod localize_dll {
|
||||
pub const Localize_001: usize = 0x47BE0;
|
||||
// Module: libmatchmaking.so
|
||||
pub mod libmatchmaking_so {
|
||||
pub const GameTypes001: usize = 0xF4D40;
|
||||
pub const MATCHFRAMEWORK_001: usize = 0x1C9F90;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
pub mod matchmaking_dll {
|
||||
pub const GameTypes001: usize = 0x1B5EE0;
|
||||
pub const MATCHFRAMEWORK_001: usize = 0x1BE190;
|
||||
// Module: libmaterialsystem2.so
|
||||
pub mod libmaterialsystem2_so {
|
||||
pub const FontManager_001: usize = 0x7DDF0;
|
||||
pub const MaterialUtils_001: usize = 0x67C30;
|
||||
pub const PostProcessingSystem_001: usize = 0x8D2C0;
|
||||
pub const TextLayout_001: usize = 0x8A850;
|
||||
pub const VMaterialSystem2_001: usize = 0x2C470;
|
||||
}
|
||||
// Module: materialsystem2.dll
|
||||
pub mod materialsystem2_dll {
|
||||
pub const FontManager_001: usize = 0x163500;
|
||||
pub const MaterialUtils_001: usize = 0x14B430;
|
||||
pub const PostProcessingSystem_001: usize = 0x14B340;
|
||||
pub const TextLayout_001: usize = 0x14B3C0;
|
||||
pub const VMaterialSystem2_001: usize = 0x162D70;
|
||||
// Module: libmeshsystem.so
|
||||
pub mod libmeshsystem_so {
|
||||
pub const MeshSystem001: usize = 0x97630;
|
||||
}
|
||||
// Module: meshsystem.dll
|
||||
pub mod meshsystem_dll {
|
||||
pub const MeshSystem001: usize = 0x1400E0;
|
||||
// Module: libnetworksystem.so
|
||||
pub mod libnetworksystem_so {
|
||||
pub const FlattenedSerializersVersion001: usize = 0x163810;
|
||||
pub const NetworkMessagesVersion001: usize = 0x18C190;
|
||||
pub const NetworkSystemVersion001: usize = 0x1B5730;
|
||||
pub const SerializedEntitiesVersion001: usize = 0x1CF0F0;
|
||||
}
|
||||
// Module: navsystem.dll
|
||||
pub mod navsystem_dll {
|
||||
pub const NavSystem001: usize = 0x120840;
|
||||
// Module: libpanorama.so
|
||||
pub mod libpanorama_so {
|
||||
pub const PanoramaUIEngine001: usize = 0x233D10;
|
||||
}
|
||||
// Module: networksystem.dll
|
||||
pub mod networksystem_dll {
|
||||
pub const FlattenedSerializersVersion001: usize = 0x2632F0;
|
||||
pub const NetworkMessagesVersion001: usize = 0x28B240;
|
||||
pub const NetworkSystemVersion001: usize = 0x27C9D0;
|
||||
pub const SerializedEntitiesVersion001: usize = 0x27CAE0;
|
||||
// Module: libpanorama_text_pango.so
|
||||
pub mod libpanorama_text_pango_so {
|
||||
pub const PanoramaTextServices001: usize = 0xBB8E0;
|
||||
}
|
||||
// Module: panorama.dll
|
||||
pub mod panorama_dll {
|
||||
pub const PanoramaUIEngine001: usize = 0x509B20;
|
||||
// Module: libpanoramauiclient.so
|
||||
pub mod libpanoramauiclient_so {
|
||||
pub const PanoramaUIClient001: usize = 0x1095E0;
|
||||
}
|
||||
// Module: panorama_text_pango.dll
|
||||
pub mod panorama_text_pango_dll {
|
||||
pub const PanoramaTextServices001: usize = 0x2B79C0;
|
||||
// Module: libparticles.so
|
||||
pub mod libparticles_so {
|
||||
pub const ParticleSystemMgr003: usize = 0x212AF0;
|
||||
}
|
||||
// Module: panoramauiclient.dll
|
||||
pub mod panoramauiclient_dll {
|
||||
pub const PanoramaUIClient001: usize = 0x291200;
|
||||
// Module: libpulse_system.so
|
||||
pub mod libpulse_system_so {
|
||||
pub const IPulseSystem_001: usize = 0x402F0;
|
||||
}
|
||||
// Module: particles.dll
|
||||
pub mod particles_dll {
|
||||
pub const ParticleSystemMgr003: usize = 0x555680;
|
||||
// Module: librendersystemvulkan.so
|
||||
pub mod librendersystemvulkan_so {
|
||||
pub const RenderDeviceMgr001: usize = 0x14E840;
|
||||
pub const RenderUtils_001: usize = 0xCD990;
|
||||
}
|
||||
// Module: pulse_system.dll
|
||||
pub mod pulse_system_dll {
|
||||
pub const IPulseSystem_001: usize = 0x1F0E30;
|
||||
// Module: libresourcesystem.so
|
||||
pub mod libresourcesystem_so {
|
||||
pub const ResourceSystem013: usize = 0x30F40;
|
||||
}
|
||||
// Module: rendersystemdx11.dll
|
||||
pub mod rendersystemdx11_dll {
|
||||
pub const RenderDeviceMgr001: usize = 0x431BC0;
|
||||
pub const RenderUtils_001: usize = 0x4324B8;
|
||||
pub const VRenderDeviceMgrBackdoor001: usize = 0x431C60;
|
||||
// Module: libscenefilecache.so
|
||||
pub mod libscenefilecache_so {
|
||||
pub const ResponseRulesCache001: usize = 0x89040;
|
||||
pub const SceneFileCache002: usize = 0x85BA0;
|
||||
}
|
||||
// Module: resourcesystem.dll
|
||||
pub mod resourcesystem_dll {
|
||||
pub const ResourceSystem013: usize = 0x7FDD0;
|
||||
// Module: libscenesystem.so
|
||||
pub mod libscenesystem_so {
|
||||
pub const RenderingPipelines_001: usize = 0x142630;
|
||||
pub const SceneSystem_002: usize = 0x186F60;
|
||||
pub const SceneUtils_001: usize = 0x2067E0;
|
||||
}
|
||||
// Module: scenefilecache.dll
|
||||
pub mod scenefilecache_dll {
|
||||
pub const ResponseRulesCache001: usize = 0x95740;
|
||||
pub const SceneFileCache002: usize = 0x95890;
|
||||
// Module: libschemasystem.so
|
||||
pub mod libschemasystem_so {
|
||||
pub const SchemaSystem_001: usize = 0x20FC0;
|
||||
}
|
||||
// Module: scenesystem.dll
|
||||
pub mod scenesystem_dll {
|
||||
pub const RenderingPipelines_001: usize = 0x61BB60;
|
||||
pub const SceneSystem_002: usize = 0x83E7D0;
|
||||
pub const SceneUtils_001: usize = 0x61C460;
|
||||
// Module: libserver.so
|
||||
pub mod libserver_so {
|
||||
pub const EmptyWorldService001_Server: usize = 0xBF4E10;
|
||||
pub const EntitySubclassUtilsV001: usize = 0x8DE640;
|
||||
pub const NavGameTest001: usize = 0x1142450;
|
||||
pub const ServerToolsInfo_001: usize = 0xF12E00;
|
||||
pub const Source2GameClients001: usize = 0xF12D90;
|
||||
pub const Source2GameDirector001: usize = 0x72E350;
|
||||
pub const Source2GameEntities001: usize = 0xF12D80;
|
||||
pub const Source2Server001: usize = 0xF12A80;
|
||||
pub const Source2ServerConfig001: usize = 0xB914D0;
|
||||
pub const customnavsystem001: usize = 0x8610C0;
|
||||
}
|
||||
// Module: schemasystem.dll
|
||||
pub mod schemasystem_dll {
|
||||
pub const SchemaSystem_001: usize = 0x756F0;
|
||||
// Module: libsoundsystem.so
|
||||
pub mod libsoundsystem_so {
|
||||
pub const SoundOpSystem001: usize = 0x176C80;
|
||||
pub const SoundOpSystemEdit001: usize = 0xB6DC0;
|
||||
pub const SoundSystem001: usize = 0x1E5FE0;
|
||||
pub const VMixEditTool001: usize = 0x219CF0;
|
||||
}
|
||||
// Module: server.dll
|
||||
pub mod server_dll {
|
||||
pub const EmptyWorldService001_Server: usize = 0x1731E00;
|
||||
pub const EntitySubclassUtilsV001: usize = 0x16DE230;
|
||||
pub const NavGameTest001: usize = 0x17DAD30;
|
||||
pub const ServerToolsInfo_001: usize = 0x178A1A8;
|
||||
pub const Source2GameClients001: usize = 0x1785AF0;
|
||||
pub const Source2GameDirector001: usize = 0x18E5390;
|
||||
pub const Source2GameEntities001: usize = 0x17898B0;
|
||||
pub const Source2Server001: usize = 0x1789710;
|
||||
pub const Source2ServerConfig001: usize = 0x19BB238;
|
||||
pub const customnavsystem001: usize = 0x16BDC08;
|
||||
// Module: libsteamaudio.so
|
||||
pub mod libsteamaudio_so {
|
||||
pub const SteamAudio001: usize = 0x32410;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
pub mod soundsystem_dll {
|
||||
pub const SoundOpSystem001: usize = 0x3EB490;
|
||||
pub const SoundOpSystemEdit001: usize = 0x3EB370;
|
||||
pub const SoundSystem001: usize = 0x3EAE50;
|
||||
pub const VMixEditTool001: usize = 0x485ED80B;
|
||||
// Module: libtier0.so
|
||||
pub mod libtier0_so {
|
||||
pub const TestScriptMgr001: usize = 0x1B9B90;
|
||||
pub const VEngineCvar007: usize = 0xF61C0;
|
||||
pub const VProcessUtils002: usize = 0x1AD380;
|
||||
pub const VStringTokenSystem001: usize = 0x1DFCA0;
|
||||
}
|
||||
// Module: steamaudio.dll
|
||||
pub mod steamaudio_dll {
|
||||
pub const SteamAudio001: usize = 0x257550;
|
||||
// Module: libv8system.so
|
||||
pub mod libv8system_so {
|
||||
pub const Source2V8System001: usize = 0x1B450;
|
||||
}
|
||||
// Module: steamclient64.dll
|
||||
pub mod steamclient64_dll {
|
||||
pub const CLIENTENGINE_INTERFACE_VERSION005: usize = 0xFFFFFFFF8BB0BEDA;
|
||||
pub const IVALIDATE001: usize = 0x15348D8;
|
||||
pub const SteamClient006: usize = 0x1532000;
|
||||
pub const SteamClient007: usize = 0x1532008;
|
||||
pub const SteamClient008: usize = 0x1532010;
|
||||
pub const SteamClient009: usize = 0x1532018;
|
||||
pub const SteamClient010: usize = 0x1532020;
|
||||
pub const SteamClient011: usize = 0x1532028;
|
||||
pub const SteamClient012: usize = 0x1532030;
|
||||
pub const SteamClient013: usize = 0x1532038;
|
||||
pub const SteamClient014: usize = 0x1532040;
|
||||
pub const SteamClient015: usize = 0x1532048;
|
||||
pub const SteamClient016: usize = 0x1532050;
|
||||
pub const SteamClient017: usize = 0x1532058;
|
||||
pub const SteamClient018: usize = 0x1532060;
|
||||
pub const SteamClient019: usize = 0x1532068;
|
||||
pub const SteamClient020: usize = 0x1532070;
|
||||
pub const SteamClient021: usize = 0x1532078;
|
||||
pub const SteamClient022: usize = 0x1532080;
|
||||
pub const p2pvoice002: usize = 0x14E2D2F;
|
||||
pub const p2pvoicesingleton002: usize = 0x150F0F0;
|
||||
// Module: libvphysics2.so
|
||||
pub mod libvphysics2_so {
|
||||
pub const VPhysics2_Handle_Interface_001: usize = 0xC92A0;
|
||||
pub const VPhysics2_Interface_001: usize = 0xC8E90;
|
||||
}
|
||||
// Module: tier0.dll
|
||||
pub mod tier0_dll {
|
||||
pub const TestScriptMgr001: usize = 0x3975A0;
|
||||
pub const VEngineCvar007: usize = 0x3A2440;
|
||||
pub const VProcessUtils002: usize = 0x3974E0;
|
||||
pub const VStringTokenSystem001: usize = 0x3C9310;
|
||||
// Module: libvscript.so
|
||||
pub mod libvscript_so {
|
||||
pub const VScriptManager010: usize = 0x25DA0;
|
||||
}
|
||||
// Module: v8system.dll
|
||||
pub mod v8system_dll {
|
||||
pub const Source2V8System001: usize = 0x315F0;
|
||||
// Module: libworldrenderer.so
|
||||
pub mod libworldrenderer_so {
|
||||
pub const WorldRendererMgr001: usize = 0xAED00;
|
||||
}
|
||||
// Module: vconcomm.dll
|
||||
pub mod vconcomm_dll {
|
||||
pub const VConComm001: usize = 0x375C0;
|
||||
}
|
||||
// Module: vphysics2.dll
|
||||
pub mod vphysics2_dll {
|
||||
pub const VPhysics2_Handle_Interface_001: usize = 0x3E4120;
|
||||
pub const VPhysics2_Interface_001: usize = 0x3E4160;
|
||||
}
|
||||
// Module: vscript.dll
|
||||
pub mod vscript_dll {
|
||||
pub const VScriptManager010: usize = 0x13B280;
|
||||
}
|
||||
// Module: vstdlib_s64.dll
|
||||
pub mod vstdlib_s64_dll {
|
||||
pub const IVALIDATE001: usize = 0x6E990;
|
||||
pub const VEngineCvar002: usize = 0x6D070;
|
||||
}
|
||||
// Module: worldrenderer.dll
|
||||
pub mod worldrenderer_dll {
|
||||
pub const WorldRendererMgr001: usize = 0x1FEC50;
|
||||
// Module: steamclient.so
|
||||
pub mod steamclient_so {
|
||||
pub const CLIENTENGINE_INTERFACE_VERSION005: usize = 0x12500B0;
|
||||
pub const IVALIDATE001: usize = 0x124B950;
|
||||
pub const SteamClient006: usize = 0xF1AA80;
|
||||
pub const SteamClient007: usize = 0xF1AA90;
|
||||
pub const SteamClient008: usize = 0xF1AAA0;
|
||||
pub const SteamClient009: usize = 0xF1AAB0;
|
||||
pub const SteamClient010: usize = 0xF1AAC0;
|
||||
pub const SteamClient011: usize = 0xF1AAD0;
|
||||
pub const SteamClient012: usize = 0xF1AAE0;
|
||||
pub const SteamClient013: usize = 0xF1AAF0;
|
||||
pub const SteamClient014: usize = 0xF1AB00;
|
||||
pub const SteamClient015: usize = 0xF1AB10;
|
||||
pub const SteamClient016: usize = 0xF1AB40;
|
||||
pub const SteamClient017: usize = 0xF1AB70;
|
||||
pub const SteamClient018: usize = 0xF1ABA0;
|
||||
pub const SteamClient019: usize = 0xF1ABD0;
|
||||
pub const SteamClient020: usize = 0xF1AC00;
|
||||
pub const SteamClient021: usize = 0xF1AC30;
|
||||
pub const p2pvoice002: usize = 0x18F1140;
|
||||
pub const p2pvoicesingleton002: usize = 0x18E97B0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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
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,57 +1,73 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: engine2.dll
|
||||
// Class count: 48
|
||||
// Enum count: 2
|
||||
public static class Engine2Dll {
|
||||
// Module: libengine2.so
|
||||
// Classes count: 48
|
||||
// Enums count: 4
|
||||
public static class Libengine2So {
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
public enum EntityDormancyType_t : uint {
|
||||
ENTITY_NOT_DORMANT = 0x0,
|
||||
ENTITY_DORMANT = 0x1,
|
||||
ENTITY_SUSPENDED = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
public enum EntityIOTargetType_t : uint {
|
||||
ENTITY_IO_TARGET_INVALID = unchecked((uint)-1),
|
||||
ENTITY_IO_TARGET_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||
ENTITY_IO_TARGET_ENTITYNAME = 0x2,
|
||||
ENTITY_IO_TARGET_EHANDLE = 0x6,
|
||||
ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME = 0x7
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// 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: EventSimulate_t
|
||||
// Fields count: 0
|
||||
public static class EventClientPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
public static class EventSimpleLoopFrameUpdate_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
public const nint m_flFrameTime = 0x2C; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 4
|
||||
public static class EventPostAdvanceTick_t {
|
||||
public const nint m_nCurrentTick = 0x30; // int32
|
||||
public const nint m_nCurrentTickThisFrame = 0x34; // int32
|
||||
public const nint m_nTotalTicksThisFrame = 0x38; // int32
|
||||
public const nint m_nTotalTicks = 0x3C; // int32
|
||||
public const nint m_nCurrentTick = 0x2C; // int32
|
||||
public const nint m_nCurrentTickThisFrame = 0x30; // int32
|
||||
public const nint m_nTotalTicksThisFrame = 0x34; // int32
|
||||
public const nint m_nTotalTicks = 0x38; // int32
|
||||
}
|
||||
// Parent:
|
||||
// Field count: 1
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
public static class CEntityIOOutput {
|
||||
public const nint m_Value = 0x18; // CVariantBase<CVariantDefaultAllocator>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class EventClientSceneSystemThreadStateChange_t {
|
||||
public const nint m_bThreadsActive = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
public static class EventClientOutput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRenderTime = 0x28; // float32
|
||||
@@ -59,12 +75,12 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_flRenderFrameTimeUnbounded = 0x30; // float32
|
||||
public const nint m_bRenderOnly = 0x34; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
public static class EventServerPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
public static class CEntityComponentHelper {
|
||||
public const nint m_flags = 0x8; // uint32
|
||||
public const nint m_pInfo = 0x10; // EntComponentInfo_t*
|
||||
@@ -72,33 +88,33 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_pNext = 0x20; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class GameTime_t {
|
||||
public const nint m_Value = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
public static class EventServerEndAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Fields count: 0
|
||||
public static class EventClientAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
public static class EntInput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class CNetworkVarChainer {
|
||||
public const nint m_PathIndex = 0x20; // ChangeAccessorFieldPathIndex_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
public static class EventClientSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
public static class EventClientPostOutput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRenderTime = 0x28; // float64
|
||||
@@ -107,95 +123,95 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_bRenderOnly = 0x38; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class GameTick_t {
|
||||
public const nint m_Value = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
public static class EventClientPollInput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class EventPreDataUpdate_t {
|
||||
public const nint m_nCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
public static class EventClientProcessGameInput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
public const nint m_flFrameTime = 0x2C; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class EventFrameBoundary_t {
|
||||
public const nint m_flFrameTime = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class EventAppShutdown_t {
|
||||
public const nint m_nDummy0 = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
public static class EventServerSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Fields count: 0
|
||||
public static class EventServerPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class EventProfileStorageAvailable_t {
|
||||
public const nint m_nSplitScreenSlot = 0x0; // CSplitScreenSlot
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class EventPostDataUpdate_t {
|
||||
public const nint m_nCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
public static class EventClientPreSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
public static class EventClientPauseSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class EventClientProcessNetworking_t {
|
||||
public const nint m_nTickCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 4
|
||||
public static class EventAdvanceTick_t {
|
||||
public const nint m_nCurrentTick = 0x30; // int32
|
||||
public const nint m_nCurrentTickThisFrame = 0x34; // int32
|
||||
public const nint m_nTotalTicksThisFrame = 0x38; // int32
|
||||
public const nint m_nTotalTicks = 0x3C; // int32
|
||||
public const nint m_nCurrentTick = 0x2C; // int32
|
||||
public const nint m_nCurrentTickThisFrame = 0x30; // int32
|
||||
public const nint m_nTotalTicksThisFrame = 0x34; // int32
|
||||
public const nint m_nTotalTicks = 0x38; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
public static class EventSplitScreenStateChanged_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Fields count: 0
|
||||
public static class EventClientPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
public static class CVariantDefaultAllocator {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
public static class EventModInitialized_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
public static class EventClientPreOutput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRenderTime = 0x28; // float64
|
||||
@@ -205,19 +221,19 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_bRenderOnly = 0x44; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
public static class EventClientFrameSimulate_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
public const nint m_flFrameTime = 0x2C; // float32
|
||||
public const nint m_bScheduleSendTickPacket = 0x30; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Fields count: 0
|
||||
public static class EventServerAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 8
|
||||
// Fields count: 8
|
||||
public static class EventSetTime_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_nClientOutputFrames = 0x28; // int32
|
||||
@@ -229,30 +245,30 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_flTickRemainder = 0x58; // float64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
public static class EntOutput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
public static class EventSimulate_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_bFirstTick = 0x28; // bool
|
||||
public const nint m_bLastTick = 0x29; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
public static class EventClientAdvanceNonRenderedFrame_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
public static class EventServerProcessNetworking_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
public static class CEmptyEntityInstance {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
// Fields count: 7
|
||||
public static class EntComponentInfo_t {
|
||||
public const nint m_pName = 0x0; // char*
|
||||
public const nint m_pCPPClassname = 0x8; // char*
|
||||
@@ -263,7 +279,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_pBaseClassComponentHelper = 0x60; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
public static class EngineLoopState_t {
|
||||
public const nint m_nPlatWindowWidth = 0x18; // int32
|
||||
public const nint m_nPlatWindowHeight = 0x1C; // int32
|
||||
@@ -271,24 +287,24 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nRenderHeight = 0x24; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class EventClientPollNetworking_t {
|
||||
public const nint m_nTickCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Fields count: 0
|
||||
public static class EventServerBeginAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
public static class EventClientProcessInput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
public const nint m_flTickInterval = 0x2C; // float32
|
||||
public const nint m_flTickStartTime = 0x30; // float64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
public static class EventServerPollNetworking_t {
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,56 +7,72 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: engine2.dll
|
||||
// Class count: 48
|
||||
// Enum count: 2
|
||||
namespace engine2_dll {
|
||||
// Module: libengine2.so
|
||||
// Classes count: 48
|
||||
// Enums count: 4
|
||||
namespace libengine2_so {
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
enum class EntityDormancyType_t : uint32_t {
|
||||
ENTITY_NOT_DORMANT = 0x0,
|
||||
ENTITY_DORMANT = 0x1,
|
||||
ENTITY_SUSPENDED = 0x2
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 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
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// 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: EventSimulate_t
|
||||
// Fields count: 0
|
||||
namespace EventClientPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
namespace EventSimpleLoopFrameUpdate_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flFrameTime = 0x2C; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 4
|
||||
namespace EventPostAdvanceTick_t {
|
||||
constexpr std::ptrdiff_t m_nCurrentTick = 0x30; // int32
|
||||
constexpr std::ptrdiff_t m_nCurrentTickThisFrame = 0x34; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicksThisFrame = 0x38; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicks = 0x3C; // int32
|
||||
constexpr std::ptrdiff_t m_nCurrentTick = 0x2C; // int32
|
||||
constexpr std::ptrdiff_t m_nCurrentTickThisFrame = 0x30; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicksThisFrame = 0x34; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicks = 0x38; // int32
|
||||
}
|
||||
// Parent:
|
||||
// Field count: 1
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
namespace CEntityIOOutput {
|
||||
constexpr std::ptrdiff_t m_Value = 0x18; // CVariantBase<CVariantDefaultAllocator>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace EventClientSceneSystemThreadStateChange_t {
|
||||
constexpr std::ptrdiff_t m_bThreadsActive = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
namespace EventClientOutput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRenderTime = 0x28; // float32
|
||||
@@ -64,12 +80,12 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_flRenderFrameTimeUnbounded = 0x30; // float32
|
||||
constexpr std::ptrdiff_t m_bRenderOnly = 0x34; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
namespace EventServerPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
namespace CEntityComponentHelper {
|
||||
constexpr std::ptrdiff_t m_flags = 0x8; // uint32
|
||||
constexpr std::ptrdiff_t m_pInfo = 0x10; // EntComponentInfo_t*
|
||||
@@ -77,33 +93,33 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_pNext = 0x20; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace GameTime_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
namespace EventServerEndAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Fields count: 0
|
||||
namespace EventClientAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
namespace EntInput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace CNetworkVarChainer {
|
||||
constexpr std::ptrdiff_t m_PathIndex = 0x20; // ChangeAccessorFieldPathIndex_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
namespace EventClientSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
namespace EventClientPostOutput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRenderTime = 0x28; // float64
|
||||
@@ -112,95 +128,95 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_bRenderOnly = 0x38; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace GameTick_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
namespace EventClientPollInput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace EventPreDataUpdate_t {
|
||||
constexpr std::ptrdiff_t m_nCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
namespace EventClientProcessGameInput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flFrameTime = 0x2C; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace EventFrameBoundary_t {
|
||||
constexpr std::ptrdiff_t m_flFrameTime = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace EventAppShutdown_t {
|
||||
constexpr std::ptrdiff_t m_nDummy0 = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
namespace EventServerSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Fields count: 0
|
||||
namespace EventServerPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace EventProfileStorageAvailable_t {
|
||||
constexpr std::ptrdiff_t m_nSplitScreenSlot = 0x0; // CSplitScreenSlot
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace EventPostDataUpdate_t {
|
||||
constexpr std::ptrdiff_t m_nCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
namespace EventClientPreSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
namespace EventClientPauseSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace EventClientProcessNetworking_t {
|
||||
constexpr std::ptrdiff_t m_nTickCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 4
|
||||
namespace EventAdvanceTick_t {
|
||||
constexpr std::ptrdiff_t m_nCurrentTick = 0x30; // int32
|
||||
constexpr std::ptrdiff_t m_nCurrentTickThisFrame = 0x34; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicksThisFrame = 0x38; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicks = 0x3C; // int32
|
||||
constexpr std::ptrdiff_t m_nCurrentTick = 0x2C; // int32
|
||||
constexpr std::ptrdiff_t m_nCurrentTickThisFrame = 0x30; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicksThisFrame = 0x34; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicks = 0x38; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
namespace EventSplitScreenStateChanged_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Fields count: 0
|
||||
namespace EventClientPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
namespace CVariantDefaultAllocator {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
namespace EventModInitialized_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
namespace EventClientPreOutput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRenderTime = 0x28; // float64
|
||||
@@ -210,19 +226,19 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_bRenderOnly = 0x44; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
namespace EventClientFrameSimulate_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flFrameTime = 0x2C; // float32
|
||||
constexpr std::ptrdiff_t m_bScheduleSendTickPacket = 0x30; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Fields count: 0
|
||||
namespace EventServerAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 8
|
||||
// Fields count: 8
|
||||
namespace EventSetTime_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_nClientOutputFrames = 0x28; // int32
|
||||
@@ -234,30 +250,30 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_flTickRemainder = 0x58; // float64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
namespace EntOutput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
namespace EventSimulate_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_bFirstTick = 0x28; // bool
|
||||
constexpr std::ptrdiff_t m_bLastTick = 0x29; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
namespace EventClientAdvanceNonRenderedFrame_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
namespace EventServerProcessNetworking_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
namespace CEmptyEntityInstance {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
// Fields count: 7
|
||||
namespace EntComponentInfo_t {
|
||||
constexpr std::ptrdiff_t m_pName = 0x0; // char*
|
||||
constexpr std::ptrdiff_t m_pCPPClassname = 0x8; // char*
|
||||
@@ -268,7 +284,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_pBaseClassComponentHelper = 0x60; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
namespace EngineLoopState_t {
|
||||
constexpr std::ptrdiff_t m_nPlatWindowWidth = 0x18; // int32
|
||||
constexpr std::ptrdiff_t m_nPlatWindowHeight = 0x1C; // int32
|
||||
@@ -276,24 +292,24 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_nRenderHeight = 0x24; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace EventClientPollNetworking_t {
|
||||
constexpr std::ptrdiff_t m_nTickCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Fields count: 0
|
||||
namespace EventServerBeginAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
namespace EventClientProcessInput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flTickInterval = 0x2C; // float32
|
||||
constexpr std::ptrdiff_t m_flTickStartTime = 0x30; // float64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
namespace EventServerPollNetworking_t {
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"engine2.dll": {
|
||||
"libengine2.so": {
|
||||
"classes": {
|
||||
"CEmptyEntityInstance": {
|
||||
"fields": {},
|
||||
@@ -21,7 +21,7 @@
|
||||
"m_Value": 24
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": ""
|
||||
"parent": null
|
||||
},
|
||||
"CNetworkVarChainer": {
|
||||
"fields": {
|
||||
@@ -70,13 +70,13 @@
|
||||
},
|
||||
"EventAdvanceTick_t": {
|
||||
"fields": {
|
||||
"m_nCurrentTick": 48,
|
||||
"m_nCurrentTickThisFrame": 52,
|
||||
"m_nTotalTicks": 60,
|
||||
"m_nTotalTicksThisFrame": 56
|
||||
"m_nCurrentTick": 44,
|
||||
"m_nCurrentTickThisFrame": 48,
|
||||
"m_nTotalTicks": 56,
|
||||
"m_nTotalTicksThisFrame": 52
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventAppShutdown_t": {
|
||||
"fields": {
|
||||
@@ -93,7 +93,7 @@
|
||||
"EventClientAdvanceTick_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventAdvanceTick_t"
|
||||
},
|
||||
"EventClientFrameSimulate_t": {
|
||||
"fields": {
|
||||
@@ -119,7 +119,7 @@
|
||||
"EventClientPauseSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventClientPollInput_t": {
|
||||
"fields": {
|
||||
@@ -139,7 +139,7 @@
|
||||
"EventClientPostAdvanceTick_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventPostAdvanceTick_t"
|
||||
},
|
||||
"EventClientPostOutput_t": {
|
||||
"fields": {
|
||||
@@ -155,7 +155,7 @@
|
||||
"EventClientPostSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventClientPreOutput_t": {
|
||||
"fields": {
|
||||
@@ -172,7 +172,7 @@
|
||||
"EventClientPreSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventClientProcessGameInput_t": {
|
||||
"fields": {
|
||||
@@ -210,7 +210,7 @@
|
||||
"EventClientSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventFrameBoundary_t": {
|
||||
"fields": {
|
||||
@@ -226,13 +226,13 @@
|
||||
},
|
||||
"EventPostAdvanceTick_t": {
|
||||
"fields": {
|
||||
"m_nCurrentTick": 48,
|
||||
"m_nCurrentTickThisFrame": 52,
|
||||
"m_nTotalTicks": 60,
|
||||
"m_nTotalTicksThisFrame": 56
|
||||
"m_nCurrentTick": 44,
|
||||
"m_nCurrentTickThisFrame": 48,
|
||||
"m_nTotalTicks": 56,
|
||||
"m_nTotalTicksThisFrame": 52
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventPostDataUpdate_t": {
|
||||
"fields": {
|
||||
@@ -258,12 +258,12 @@
|
||||
"EventServerAdvanceTick_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventAdvanceTick_t"
|
||||
},
|
||||
"EventServerBeginAsyncPostTickWork_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventPostAdvanceTick_t"
|
||||
},
|
||||
"EventServerEndAsyncPostTickWork_t": {
|
||||
"fields": {},
|
||||
@@ -273,27 +273,27 @@
|
||||
"EventServerPollNetworking_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventServerPostAdvanceTick_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventPostAdvanceTick_t"
|
||||
},
|
||||
"EventServerPostSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventServerProcessNetworking_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventServerSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventSetTime_t": {
|
||||
"fields": {
|
||||
@@ -366,6 +366,26 @@
|
||||
"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,16 +1,16 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: engine2.dll
|
||||
// Class count: 48
|
||||
// Enum count: 2
|
||||
pub mod engine2_dll {
|
||||
// Module: libengine2.so
|
||||
// Classes count: 48
|
||||
// Enums count: 4
|
||||
pub mod libengine2_so {
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
#[repr(u32)]
|
||||
pub enum EntityDormancyType_t {
|
||||
ENTITY_NOT_DORMANT = 0x0,
|
||||
@@ -18,7 +18,7 @@ pub mod cs2_dumper {
|
||||
ENTITY_SUSPENDED = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
#[repr(u32)]
|
||||
pub enum EntityIOTargetType_t {
|
||||
ENTITY_IO_TARGET_INVALID = u32::MAX,
|
||||
@@ -26,37 +26,55 @@ pub mod cs2_dumper {
|
||||
ENTITY_IO_TARGET_EHANDLE = 0x6,
|
||||
ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME = 0x7
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// 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: EventSimulate_t
|
||||
// Fields count: 0
|
||||
pub mod EventClientPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
pub mod EventSimpleLoopFrameUpdate_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
pub const m_flFrameTime: usize = 0x2C; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 4
|
||||
pub mod EventPostAdvanceTick_t {
|
||||
pub const m_nCurrentTick: usize = 0x30; // int32
|
||||
pub const m_nCurrentTickThisFrame: usize = 0x34; // int32
|
||||
pub const m_nTotalTicksThisFrame: usize = 0x38; // int32
|
||||
pub const m_nTotalTicks: usize = 0x3C; // int32
|
||||
pub const m_nCurrentTick: usize = 0x2C; // int32
|
||||
pub const m_nCurrentTickThisFrame: usize = 0x30; // int32
|
||||
pub const m_nTotalTicksThisFrame: usize = 0x34; // int32
|
||||
pub const m_nTotalTicks: usize = 0x38; // int32
|
||||
}
|
||||
// Parent:
|
||||
// Field count: 1
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
pub mod CEntityIOOutput {
|
||||
pub const m_Value: usize = 0x18; // CVariantBase<CVariantDefaultAllocator>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod EventClientSceneSystemThreadStateChange_t {
|
||||
pub const m_bThreadsActive: usize = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
pub mod EventClientOutput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRenderTime: usize = 0x28; // float32
|
||||
@@ -64,12 +82,12 @@ pub mod cs2_dumper {
|
||||
pub const m_flRenderFrameTimeUnbounded: usize = 0x30; // float32
|
||||
pub const m_bRenderOnly: usize = 0x34; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
pub mod EventServerPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
pub mod CEntityComponentHelper {
|
||||
pub const m_flags: usize = 0x8; // uint32
|
||||
pub const m_pInfo: usize = 0x10; // EntComponentInfo_t*
|
||||
@@ -77,33 +95,33 @@ pub mod cs2_dumper {
|
||||
pub const m_pNext: usize = 0x20; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod GameTime_t {
|
||||
pub const m_Value: usize = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
pub mod EventServerEndAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Fields count: 0
|
||||
pub mod EventClientAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
pub mod EntInput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod CNetworkVarChainer {
|
||||
pub const m_PathIndex: usize = 0x20; // ChangeAccessorFieldPathIndex_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
pub mod EventClientSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
pub mod EventClientPostOutput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRenderTime: usize = 0x28; // float64
|
||||
@@ -112,95 +130,95 @@ pub mod cs2_dumper {
|
||||
pub const m_bRenderOnly: usize = 0x38; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod GameTick_t {
|
||||
pub const m_Value: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
pub mod EventClientPollInput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod EventPreDataUpdate_t {
|
||||
pub const m_nCount: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
pub mod EventClientProcessGameInput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
pub const m_flFrameTime: usize = 0x2C; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod EventFrameBoundary_t {
|
||||
pub const m_flFrameTime: usize = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod EventAppShutdown_t {
|
||||
pub const m_nDummy0: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
pub mod EventServerSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Fields count: 0
|
||||
pub mod EventServerPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod EventProfileStorageAvailable_t {
|
||||
pub const m_nSplitScreenSlot: usize = 0x0; // CSplitScreenSlot
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod EventPostDataUpdate_t {
|
||||
pub const m_nCount: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
pub mod EventClientPreSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
pub mod EventClientPauseSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod EventClientProcessNetworking_t {
|
||||
pub const m_nTickCount: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 4
|
||||
pub mod EventAdvanceTick_t {
|
||||
pub const m_nCurrentTick: usize = 0x30; // int32
|
||||
pub const m_nCurrentTickThisFrame: usize = 0x34; // int32
|
||||
pub const m_nTotalTicksThisFrame: usize = 0x38; // int32
|
||||
pub const m_nTotalTicks: usize = 0x3C; // int32
|
||||
pub const m_nCurrentTick: usize = 0x2C; // int32
|
||||
pub const m_nCurrentTickThisFrame: usize = 0x30; // int32
|
||||
pub const m_nTotalTicksThisFrame: usize = 0x34; // int32
|
||||
pub const m_nTotalTicks: usize = 0x38; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
pub mod EventSplitScreenStateChanged_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Fields count: 0
|
||||
pub mod EventClientPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
pub mod CVariantDefaultAllocator {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
pub mod EventModInitialized_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
pub mod EventClientPreOutput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRenderTime: usize = 0x28; // float64
|
||||
@@ -210,19 +228,19 @@ pub mod cs2_dumper {
|
||||
pub const m_bRenderOnly: usize = 0x44; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
pub mod EventClientFrameSimulate_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
pub const m_flFrameTime: usize = 0x2C; // float32
|
||||
pub const m_bScheduleSendTickPacket: usize = 0x30; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Fields count: 0
|
||||
pub mod EventServerAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 8
|
||||
// Fields count: 8
|
||||
pub mod EventSetTime_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_nClientOutputFrames: usize = 0x28; // int32
|
||||
@@ -234,30 +252,30 @@ pub mod cs2_dumper {
|
||||
pub const m_flTickRemainder: usize = 0x58; // float64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
pub mod EntOutput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
pub mod EventSimulate_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_bFirstTick: usize = 0x28; // bool
|
||||
pub const m_bLastTick: usize = 0x29; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
pub mod EventClientAdvanceNonRenderedFrame_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
pub mod EventServerProcessNetworking_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
pub mod CEmptyEntityInstance {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
// Fields count: 7
|
||||
pub mod EntComponentInfo_t {
|
||||
pub const m_pName: usize = 0x0; // char*
|
||||
pub const m_pCPPClassname: usize = 0x8; // char*
|
||||
@@ -268,7 +286,7 @@ pub mod cs2_dumper {
|
||||
pub const m_pBaseClassComponentHelper: usize = 0x60; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
pub mod EngineLoopState_t {
|
||||
pub const m_nPlatWindowWidth: usize = 0x18; // int32
|
||||
pub const m_nPlatWindowHeight: usize = 0x1C; // int32
|
||||
@@ -276,24 +294,24 @@ pub mod cs2_dumper {
|
||||
pub const m_nRenderHeight: usize = 0x24; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod EventClientPollNetworking_t {
|
||||
pub const m_nTickCount: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Fields count: 0
|
||||
pub mod EventServerBeginAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
pub mod EventClientProcessInput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
pub const m_flTickInterval: usize = 0x2C; // float32
|
||||
pub const m_flTickStartTime: usize = 0x30; // float64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: EventSimulate_t
|
||||
// Fields count: 0
|
||||
pub mod EventServerPollNetworking_t {
|
||||
}
|
||||
}
|
||||
@@ -1,18 +1,18 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: host.dll
|
||||
// Class count: 2
|
||||
// Enum count: 0
|
||||
public static class HostDll {
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Module: libhost.so
|
||||
// Classes count: 2
|
||||
// Enums count: 0
|
||||
public static class LibhostSo {
|
||||
// Parent: CAnimScriptBase
|
||||
// Fields count: 1
|
||||
public static class EmptyTestScript {
|
||||
public const nint m_hTest = 0x10; // CAnimScriptParam<float32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class CAnimScriptBase {
|
||||
public const nint m_bIsValid = 0x8; // bool
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,17 +7,17 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: host.dll
|
||||
// Class count: 2
|
||||
// Enum count: 0
|
||||
namespace host_dll {
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Module: libhost.so
|
||||
// Classes count: 2
|
||||
// Enums count: 0
|
||||
namespace libhost_so {
|
||||
// Parent: CAnimScriptBase
|
||||
// Fields count: 1
|
||||
namespace EmptyTestScript {
|
||||
constexpr std::ptrdiff_t m_hTest = 0x10; // CAnimScriptParam<float32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace CAnimScriptBase {
|
||||
constexpr std::ptrdiff_t m_bIsValid = 0x8; // bool
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"host.dll": {
|
||||
"libhost.so": {
|
||||
"classes": {
|
||||
"CAnimScriptBase": {
|
||||
"fields": {
|
||||
@@ -13,7 +13,7 @@
|
||||
"m_hTest": 16
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
"parent": "CAnimScriptBase"
|
||||
}
|
||||
},
|
||||
"enums": {}
|
||||
@@ -1,21 +1,21 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: host.dll
|
||||
// Class count: 2
|
||||
// Enum count: 0
|
||||
pub mod host_dll {
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Module: libhost.so
|
||||
// Classes count: 2
|
||||
// Enums count: 0
|
||||
pub mod libhost_so {
|
||||
// Parent: CAnimScriptBase
|
||||
// Fields count: 1
|
||||
pub mod EmptyTestScript {
|
||||
pub const m_hTest: usize = 0x10; // CAnimScriptParam<float32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod CAnimScriptBase {
|
||||
pub const m_bIsValid: usize = 0x8; // bool
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: materialsystem2.dll
|
||||
// Class count: 14
|
||||
// Enum count: 5
|
||||
public static class Materialsystem2Dll {
|
||||
// Module: libmaterialsystem2.so
|
||||
// Classes count: 13
|
||||
// Enums count: 5
|
||||
public static class Libmaterialsystem2So {
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
public enum VertJustification_e : uint {
|
||||
VERT_JUSTIFICATION_TOP = 0x0,
|
||||
VERT_JUSTIFICATION_CENTER = 0x1,
|
||||
@@ -15,28 +15,28 @@ namespace CS2Dumper.Schemas {
|
||||
VERT_JUSTIFICATION_NONE = 0x3
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
public enum LayoutPositionType_e : uint {
|
||||
LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE = 0x0,
|
||||
LAYOUTPOSITIONTYPE_FRACTIONAL = 0x1,
|
||||
LAYOUTPOSITIONTYPE_NONE = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
public enum ViewFadeMode_t : uint {
|
||||
VIEW_FADE_CONSTANT_COLOR = 0x0,
|
||||
VIEW_FADE_MODULATE = 0x1,
|
||||
VIEW_FADE_MOD2X = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
public enum BloomBlendMode_t : uint {
|
||||
BLOOM_BLEND_ADD = 0x0,
|
||||
BLOOM_BLEND_SCREEN = 0x1,
|
||||
BLOOM_BLEND_BLUR = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
public enum HorizJustification_e : uint {
|
||||
HORIZ_JUSTIFICATION_LEFT = 0x0,
|
||||
HORIZ_JUSTIFICATION_CENTER = 0x1,
|
||||
@@ -44,23 +44,23 @@ namespace CS2Dumper.Schemas {
|
||||
HORIZ_JUSTIFICATION_NONE = 0x3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParam_t {
|
||||
public const nint m_name = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParamVector_t {
|
||||
public const nint m_value = 0x8; // Vector4D
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -68,7 +68,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_value = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 13
|
||||
// Fields count: 11
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -77,18 +77,16 @@ namespace CS2Dumper.Schemas {
|
||||
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 = 0xCC; // bool
|
||||
public const nint m_vignetteParams = 0xD0; // PostProcessingVignetteParameters_t
|
||||
public const nint m_bHasLocalContrastParams = 0xF4; // bool
|
||||
public const nint m_localConstrastParams = 0xF8; // PostProcessingLocalContrastParameters_t
|
||||
public const nint m_nColorCorrectionVolumeDim = 0x10C; // int32
|
||||
public const nint m_colorCorrectionVolumeData = 0x110; // CUtlBinaryBlock
|
||||
public const nint m_bHasColorCorrection = 0x120; // bool
|
||||
public const nint m_bHasFogScatteringParams = 0x121; // bool
|
||||
public const nint m_fogScatteringParams = 0x124; // PostProcessingFogScatteringParameters_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: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -96,7 +94,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nValue = 0x8; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -109,7 +107,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_vColorTint = 0x18; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -121,7 +119,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_flLocalContrastVignetteBlur = 0x10; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 15
|
||||
// Fields count: 15
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -142,20 +140,8 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_flMinHighlightLum = 0x34; // float32
|
||||
public const nint m_flMaxHighlightLum = 0x38; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PostProcessingFogScatteringParameters_t {
|
||||
public const nint m_fRadius = 0x0; // float32
|
||||
public const nint m_fScale = 0x4; // float32
|
||||
public const nint m_fCubemapScale = 0x8; // float32
|
||||
public const nint m_fVolumetricScale = 0xC; // float32
|
||||
public const nint m_fGradientScale = 0x10; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -163,7 +149,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_value = 0x8; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
// Fields count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -184,7 +170,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_renderAttributesUsed = 0x118; // CUtlVector<CUtlString>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 16
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -197,25 +183,19 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_flBloomThresholdWidth = 0x14; // float32
|
||||
public const nint m_flSkyboxBloomStrength = 0x18; // float32
|
||||
public const nint m_flBloomStartValue = 0x1C; // float32
|
||||
public const nint m_flComputeBloomStrength = 0x20; // float32
|
||||
public const nint m_flComputeBloomThreshold = 0x24; // float32
|
||||
public const nint m_flComputeBloomRadius = 0x28; // float32
|
||||
public const nint m_flComputeBloomEffectsScale = 0x2C; // float32
|
||||
public const nint m_flComputeBloomLensDirtStrength = 0x30; // float32
|
||||
public const nint m_flComputeBloomLensDirtBlackLevel = 0x34; // float32
|
||||
public const nint m_flBlurWeight = 0x38; // float32[5]
|
||||
public const nint m_vBlurTint = 0x4C; // Vector[5]
|
||||
public const nint m_flBlurWeight = 0x20; // float32[5]
|
||||
public const nint m_vBlurTint = 0x34; // Vector[5]
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParamFloat_t {
|
||||
public const nint m_flValue = 0x8; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: materialsystem2.dll
|
||||
// Class count: 14
|
||||
// Enum count: 5
|
||||
namespace materialsystem2_dll {
|
||||
// Module: libmaterialsystem2.so
|
||||
// Classes count: 13
|
||||
// Enums count: 5
|
||||
namespace libmaterialsystem2_so {
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
enum class VertJustification_e : uint32_t {
|
||||
VERT_JUSTIFICATION_TOP = 0x0,
|
||||
VERT_JUSTIFICATION_CENTER = 0x1,
|
||||
@@ -20,28 +20,28 @@ namespace cs2_dumper {
|
||||
VERT_JUSTIFICATION_NONE = 0x3
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
enum class LayoutPositionType_e : uint32_t {
|
||||
LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE = 0x0,
|
||||
LAYOUTPOSITIONTYPE_FRACTIONAL = 0x1,
|
||||
LAYOUTPOSITIONTYPE_NONE = 0x2
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
enum class ViewFadeMode_t : uint32_t {
|
||||
VIEW_FADE_CONSTANT_COLOR = 0x0,
|
||||
VIEW_FADE_MODULATE = 0x1,
|
||||
VIEW_FADE_MOD2X = 0x2
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
enum class BloomBlendMode_t : uint32_t {
|
||||
BLOOM_BLEND_ADD = 0x0,
|
||||
BLOOM_BLEND_SCREEN = 0x1,
|
||||
BLOOM_BLEND_BLUR = 0x2
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
enum class HorizJustification_e : uint32_t {
|
||||
HORIZ_JUSTIFICATION_LEFT = 0x0,
|
||||
HORIZ_JUSTIFICATION_CENTER = 0x1,
|
||||
@@ -49,23 +49,23 @@ namespace cs2_dumper {
|
||||
HORIZ_JUSTIFICATION_NONE = 0x3
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParam_t {
|
||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParamVector_t {
|
||||
constexpr std::ptrdiff_t m_value = 0x8; // Vector4D
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -73,7 +73,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_value = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 13
|
||||
// Fields count: 11
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -82,18 +82,16 @@ namespace cs2_dumper {
|
||||
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 = 0xCC; // bool
|
||||
constexpr std::ptrdiff_t m_vignetteParams = 0xD0; // PostProcessingVignetteParameters_t
|
||||
constexpr std::ptrdiff_t m_bHasLocalContrastParams = 0xF4; // bool
|
||||
constexpr std::ptrdiff_t m_localConstrastParams = 0xF8; // PostProcessingLocalContrastParameters_t
|
||||
constexpr std::ptrdiff_t m_nColorCorrectionVolumeDim = 0x10C; // int32
|
||||
constexpr std::ptrdiff_t m_colorCorrectionVolumeData = 0x110; // CUtlBinaryBlock
|
||||
constexpr std::ptrdiff_t m_bHasColorCorrection = 0x120; // bool
|
||||
constexpr std::ptrdiff_t m_bHasFogScatteringParams = 0x121; // bool
|
||||
constexpr std::ptrdiff_t m_fogScatteringParams = 0x124; // PostProcessingFogScatteringParameters_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: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -101,7 +99,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_nValue = 0x8; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -114,7 +112,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_vColorTint = 0x18; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -126,7 +124,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_flLocalContrastVignetteBlur = 0x10; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 15
|
||||
// Fields count: 15
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -147,20 +145,8 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_flMinHighlightLum = 0x34; // float32
|
||||
constexpr std::ptrdiff_t m_flMaxHighlightLum = 0x38; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PostProcessingFogScatteringParameters_t {
|
||||
constexpr std::ptrdiff_t m_fRadius = 0x0; // float32
|
||||
constexpr std::ptrdiff_t m_fScale = 0x4; // float32
|
||||
constexpr std::ptrdiff_t m_fCubemapScale = 0x8; // float32
|
||||
constexpr std::ptrdiff_t m_fVolumetricScale = 0xC; // float32
|
||||
constexpr std::ptrdiff_t m_fGradientScale = 0x10; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -168,7 +154,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_value = 0x8; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
// Fields count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -189,7 +175,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_renderAttributesUsed = 0x118; // CUtlVector<CUtlString>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 16
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -202,25 +188,19 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_flBloomThresholdWidth = 0x14; // float32
|
||||
constexpr std::ptrdiff_t m_flSkyboxBloomStrength = 0x18; // float32
|
||||
constexpr std::ptrdiff_t m_flBloomStartValue = 0x1C; // float32
|
||||
constexpr std::ptrdiff_t m_flComputeBloomStrength = 0x20; // float32
|
||||
constexpr std::ptrdiff_t m_flComputeBloomThreshold = 0x24; // float32
|
||||
constexpr std::ptrdiff_t m_flComputeBloomRadius = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flComputeBloomEffectsScale = 0x2C; // float32
|
||||
constexpr std::ptrdiff_t m_flComputeBloomLensDirtStrength = 0x30; // float32
|
||||
constexpr std::ptrdiff_t m_flComputeBloomLensDirtBlackLevel = 0x34; // float32
|
||||
constexpr std::ptrdiff_t m_flBlurWeight = 0x38; // float32[5]
|
||||
constexpr std::ptrdiff_t m_vBlurTint = 0x4C; // Vector[5]
|
||||
constexpr std::ptrdiff_t m_flBlurWeight = 0x20; // float32[5]
|
||||
constexpr std::ptrdiff_t m_vBlurTint = 0x34; // Vector[5]
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParamFloat_t {
|
||||
constexpr std::ptrdiff_t m_flValue = 0x8; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"materialsystem2.dll": {
|
||||
"libmaterialsystem2.so": {
|
||||
"classes": {
|
||||
"MaterialParamBuffer_t": {
|
||||
"fields": {
|
||||
@@ -11,7 +11,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamFloat_t": {
|
||||
"fields": {
|
||||
@@ -23,7 +23,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamInt_t": {
|
||||
"fields": {
|
||||
@@ -35,7 +35,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamString_t": {
|
||||
"fields": {
|
||||
@@ -47,7 +47,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamTexture_t": {
|
||||
"fields": {
|
||||
@@ -59,7 +59,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamVector_t": {
|
||||
"fields": {
|
||||
@@ -71,7 +71,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParam_t": {
|
||||
"fields": {
|
||||
@@ -118,32 +118,10 @@
|
||||
"m_flBloomThreshold": 16,
|
||||
"m_flBloomThresholdWidth": 20,
|
||||
"m_flBlurBloomStrength": 12,
|
||||
"m_flBlurWeight": 56,
|
||||
"m_flComputeBloomEffectsScale": 44,
|
||||
"m_flComputeBloomLensDirtBlackLevel": 52,
|
||||
"m_flComputeBloomLensDirtStrength": 48,
|
||||
"m_flComputeBloomRadius": 40,
|
||||
"m_flComputeBloomStrength": 32,
|
||||
"m_flComputeBloomThreshold": 36,
|
||||
"m_flBlurWeight": 32,
|
||||
"m_flScreenBloomStrength": 8,
|
||||
"m_flSkyboxBloomStrength": 24,
|
||||
"m_vBlurTint": 76
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"PostProcessingFogScatteringParameters_t": {
|
||||
"fields": {
|
||||
"m_fCubemapScale": 8,
|
||||
"m_fGradientScale": 16,
|
||||
"m_fRadius": 0,
|
||||
"m_fScale": 4,
|
||||
"m_fVolumetricScale": 12
|
||||
"m_vBlurTint": 52
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -172,18 +150,16 @@
|
||||
"PostProcessingResource_t": {
|
||||
"fields": {
|
||||
"m_bHasBloomParams": 64,
|
||||
"m_bHasColorCorrection": 288,
|
||||
"m_bHasFogScatteringParams": 289,
|
||||
"m_bHasLocalContrastParams": 244,
|
||||
"m_bHasColorCorrection": 272,
|
||||
"m_bHasLocalContrastParams": 220,
|
||||
"m_bHasTonemapParams": 0,
|
||||
"m_bHasVignetteParams": 204,
|
||||
"m_bHasVignetteParams": 180,
|
||||
"m_bloomParams": 68,
|
||||
"m_colorCorrectionVolumeData": 272,
|
||||
"m_fogScatteringParams": 292,
|
||||
"m_localConstrastParams": 248,
|
||||
"m_nColorCorrectionVolumeDim": 268,
|
||||
"m_colorCorrectionVolumeData": 248,
|
||||
"m_localConstrastParams": 224,
|
||||
"m_nColorCorrectionVolumeDim": 244,
|
||||
"m_toneMapParams": 4,
|
||||
"m_vignetteParams": 208
|
||||
"m_vignetteParams": 184
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -1,16 +1,16 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: materialsystem2.dll
|
||||
// Class count: 14
|
||||
// Enum count: 5
|
||||
pub mod materialsystem2_dll {
|
||||
// Module: libmaterialsystem2.so
|
||||
// Classes count: 13
|
||||
// Enums count: 5
|
||||
pub mod libmaterialsystem2_so {
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
#[repr(u32)]
|
||||
pub enum VertJustification_e {
|
||||
VERT_JUSTIFICATION_TOP = 0x0,
|
||||
@@ -19,7 +19,7 @@ pub mod cs2_dumper {
|
||||
VERT_JUSTIFICATION_NONE = 0x3
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
#[repr(u32)]
|
||||
pub enum LayoutPositionType_e {
|
||||
LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE = 0x0,
|
||||
@@ -27,7 +27,7 @@ pub mod cs2_dumper {
|
||||
LAYOUTPOSITIONTYPE_NONE = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
#[repr(u32)]
|
||||
pub enum ViewFadeMode_t {
|
||||
VIEW_FADE_CONSTANT_COLOR = 0x0,
|
||||
@@ -35,7 +35,7 @@ pub mod cs2_dumper {
|
||||
VIEW_FADE_MOD2X = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
#[repr(u32)]
|
||||
pub enum BloomBlendMode_t {
|
||||
BLOOM_BLEND_ADD = 0x0,
|
||||
@@ -43,7 +43,7 @@ pub mod cs2_dumper {
|
||||
BLOOM_BLEND_BLUR = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
#[repr(u32)]
|
||||
pub enum HorizJustification_e {
|
||||
HORIZ_JUSTIFICATION_LEFT = 0x0,
|
||||
@@ -52,23 +52,23 @@ pub mod cs2_dumper {
|
||||
HORIZ_JUSTIFICATION_NONE = 0x3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParam_t {
|
||||
pub const m_name: usize = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParamVector_t {
|
||||
pub const m_value: usize = 0x8; // Vector4D
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -76,7 +76,7 @@ pub mod cs2_dumper {
|
||||
pub const m_value: usize = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 13
|
||||
// Fields count: 11
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -85,18 +85,16 @@ pub mod cs2_dumper {
|
||||
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 = 0xCC; // bool
|
||||
pub const m_vignetteParams: usize = 0xD0; // PostProcessingVignetteParameters_t
|
||||
pub const m_bHasLocalContrastParams: usize = 0xF4; // bool
|
||||
pub const m_localConstrastParams: usize = 0xF8; // PostProcessingLocalContrastParameters_t
|
||||
pub const m_nColorCorrectionVolumeDim: usize = 0x10C; // int32
|
||||
pub const m_colorCorrectionVolumeData: usize = 0x110; // CUtlBinaryBlock
|
||||
pub const m_bHasColorCorrection: usize = 0x120; // bool
|
||||
pub const m_bHasFogScatteringParams: usize = 0x121; // bool
|
||||
pub const m_fogScatteringParams: usize = 0x124; // PostProcessingFogScatteringParameters_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: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -104,7 +102,7 @@ pub mod cs2_dumper {
|
||||
pub const m_nValue: usize = 0x8; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -117,7 +115,7 @@ pub mod cs2_dumper {
|
||||
pub const m_vColorTint: usize = 0x18; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -129,7 +127,7 @@ pub mod cs2_dumper {
|
||||
pub const m_flLocalContrastVignetteBlur: usize = 0x10; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 15
|
||||
// Fields count: 15
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -150,20 +148,8 @@ pub mod cs2_dumper {
|
||||
pub const m_flMinHighlightLum: usize = 0x34; // float32
|
||||
pub const m_flMaxHighlightLum: usize = 0x38; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod PostProcessingFogScatteringParameters_t {
|
||||
pub const m_fRadius: usize = 0x0; // float32
|
||||
pub const m_fScale: usize = 0x4; // float32
|
||||
pub const m_fCubemapScale: usize = 0x8; // float32
|
||||
pub const m_fVolumetricScale: usize = 0xC; // float32
|
||||
pub const m_fGradientScale: usize = 0x10; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -171,7 +157,7 @@ pub mod cs2_dumper {
|
||||
pub const m_value: usize = 0x8; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
// Fields count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -192,7 +178,7 @@ pub mod cs2_dumper {
|
||||
pub const m_renderAttributesUsed: usize = 0x118; // CUtlVector<CUtlString>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 16
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -205,25 +191,19 @@ pub mod cs2_dumper {
|
||||
pub const m_flBloomThresholdWidth: usize = 0x14; // float32
|
||||
pub const m_flSkyboxBloomStrength: usize = 0x18; // float32
|
||||
pub const m_flBloomStartValue: usize = 0x1C; // float32
|
||||
pub const m_flComputeBloomStrength: usize = 0x20; // float32
|
||||
pub const m_flComputeBloomThreshold: usize = 0x24; // float32
|
||||
pub const m_flComputeBloomRadius: usize = 0x28; // float32
|
||||
pub const m_flComputeBloomEffectsScale: usize = 0x2C; // float32
|
||||
pub const m_flComputeBloomLensDirtStrength: usize = 0x30; // float32
|
||||
pub const m_flComputeBloomLensDirtBlackLevel: usize = 0x34; // float32
|
||||
pub const m_flBlurWeight: usize = 0x38; // float32[5]
|
||||
pub const m_vBlurTint: usize = 0x4C; // Vector[5]
|
||||
pub const m_flBlurWeight: usize = 0x20; // float32[5]
|
||||
pub const m_vBlurTint: usize = 0x34; // Vector[5]
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParamFloat_t {
|
||||
pub const m_flValue: usize = 0x8; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: MaterialParam_t
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
15
output/libnetworksystem.so.cs
Normal file
15
output/libnetworksystem.so.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: libnetworksystem.so
|
||||
// Classes count: 1
|
||||
// Enums count: 0
|
||||
public static class LibnetworksystemSo {
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
public static class ChangeAccessorFieldPathIndex_t {
|
||||
public const nint m_Value = 0x0; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
21
output/libnetworksystem.so.hpp
Normal file
21
output/libnetworksystem.so.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: libnetworksystem.so
|
||||
// Classes count: 1
|
||||
// Enums count: 0
|
||||
namespace libnetworksystem_so {
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
namespace ChangeAccessorFieldPathIndex_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
14
output/libnetworksystem.so.json
Normal file
14
output/libnetworksystem.so.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"libnetworksystem.so": {
|
||||
"classes": {
|
||||
"ChangeAccessorFieldPathIndex_t": {
|
||||
"fields": {
|
||||
"m_Value": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"enums": {}
|
||||
}
|
||||
}
|
||||
19
output/libnetworksystem.so.rs
Normal file
19
output/libnetworksystem.so.rs
Normal file
@@ -0,0 +1,19 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: libnetworksystem.so
|
||||
// Classes count: 1
|
||||
// Enums count: 0
|
||||
pub mod libnetworksystem_so {
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
pub mod ChangeAccessorFieldPathIndex_t {
|
||||
pub const m_Value: usize = 0x0; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: panorama.dll
|
||||
// Class count: 0
|
||||
// Enum count: 2
|
||||
public static class PanoramaDll {
|
||||
// Module: libpanorama.so
|
||||
// Classes count: 0
|
||||
// Enums count: 2
|
||||
public static class LibpanoramaSo {
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
// Members count: 13
|
||||
public enum ELayoutNodeType : uint {
|
||||
ROOT = 0x0,
|
||||
STYLES = 0x1,
|
||||
@@ -24,7 +24,7 @@ namespace CS2Dumper.Schemas {
|
||||
REFERENCE_PASSTHROUGH = 0xC
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 17
|
||||
// Members count: 16
|
||||
public enum EStyleNodeType : uint {
|
||||
ROOT = 0x0,
|
||||
EXPRESSION = 0x1,
|
||||
@@ -41,8 +41,7 @@ namespace CS2Dumper.Schemas {
|
||||
REFERENCE_CONTENT = 0xC,
|
||||
REFERENCE_COMPILED = 0xD,
|
||||
REFERENCE_PASSTHROUGH = 0xE,
|
||||
REFERENCE_PANEL = 0xF,
|
||||
COMPILER_CONDITIONAL = 0x10
|
||||
COMPILER_CONDITIONAL = 0xF
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: panorama.dll
|
||||
// Class count: 0
|
||||
// Enum count: 2
|
||||
namespace panorama_dll {
|
||||
// Module: libpanorama.so
|
||||
// Classes count: 0
|
||||
// Enums count: 2
|
||||
namespace libpanorama_so {
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
// Members count: 13
|
||||
enum class ELayoutNodeType : uint32_t {
|
||||
ROOT = 0x0,
|
||||
STYLES = 0x1,
|
||||
@@ -29,7 +29,7 @@ namespace cs2_dumper {
|
||||
REFERENCE_PASSTHROUGH = 0xC
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 17
|
||||
// Members count: 16
|
||||
enum class EStyleNodeType : uint32_t {
|
||||
ROOT = 0x0,
|
||||
EXPRESSION = 0x1,
|
||||
@@ -46,8 +46,7 @@ namespace cs2_dumper {
|
||||
REFERENCE_CONTENT = 0xC,
|
||||
REFERENCE_COMPILED = 0xD,
|
||||
REFERENCE_PASSTHROUGH = 0xE,
|
||||
REFERENCE_PANEL = 0xF,
|
||||
COMPILER_CONDITIONAL = 0x10
|
||||
COMPILER_CONDITIONAL = 0xF
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"panorama.dll": {
|
||||
"libpanorama.so": {
|
||||
"classes": {},
|
||||
"enums": {
|
||||
"ELayoutNodeType": {
|
||||
@@ -24,7 +24,7 @@
|
||||
"EStyleNodeType": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"COMPILER_CONDITIONAL": 16,
|
||||
"COMPILER_CONDITIONAL": 15,
|
||||
"DEFINE": 3,
|
||||
"EXPRESSION": 1,
|
||||
"EXPRESSION_CONCAT": 11,
|
||||
@@ -36,7 +36,6 @@
|
||||
"PROPERTY": 2,
|
||||
"REFERENCE_COMPILED": 13,
|
||||
"REFERENCE_CONTENT": 12,
|
||||
"REFERENCE_PANEL": 15,
|
||||
"REFERENCE_PASSTHROUGH": 14,
|
||||
"ROOT": 0,
|
||||
"STYLE_SELECTOR": 7,
|
||||
@@ -1,16 +1,16 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: panorama.dll
|
||||
// Class count: 0
|
||||
// Enum count: 2
|
||||
pub mod panorama_dll {
|
||||
// Module: libpanorama.so
|
||||
// Classes count: 0
|
||||
// Enums count: 2
|
||||
pub mod libpanorama_so {
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
// Members count: 13
|
||||
#[repr(u32)]
|
||||
pub enum ELayoutNodeType {
|
||||
ROOT = 0x0,
|
||||
@@ -28,7 +28,7 @@ pub mod cs2_dumper {
|
||||
REFERENCE_PASSTHROUGH = 0xC
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 17
|
||||
// Members count: 16
|
||||
#[repr(u32)]
|
||||
pub enum EStyleNodeType {
|
||||
ROOT = 0x0,
|
||||
@@ -46,8 +46,7 @@ pub mod cs2_dumper {
|
||||
REFERENCE_CONTENT = 0xC,
|
||||
REFERENCE_COMPILED = 0xD,
|
||||
REFERENCE_PASSTHROUGH = 0xE,
|
||||
REFERENCE_PANEL = 0xF,
|
||||
COMPILER_CONDITIONAL = 0x10
|
||||
COMPILER_CONDITIONAL = 0xF
|
||||
}
|
||||
}
|
||||
}
|
||||
6651
output/libparticles.so.cs
Normal file
6651
output/libparticles.so.cs
Normal file
File diff suppressed because it is too large
Load Diff
6657
output/libparticles.so.hpp
Normal file
6657
output/libparticles.so.hpp
Normal file
File diff suppressed because it is too large
Load Diff
8612
output/libparticles.so.json
Normal file
8612
output/libparticles.so.json
Normal file
File diff suppressed because it is too large
Load Diff
6731
output/libparticles.so.rs
Normal file
6731
output/libparticles.so.rs
Normal file
File diff suppressed because it is too large
Load Diff
1235
output/libpulse_system.so.cs
Normal file
1235
output/libpulse_system.so.cs
Normal file
File diff suppressed because it is too large
Load Diff
1241
output/libpulse_system.so.hpp
Normal file
1241
output/libpulse_system.so.hpp
Normal file
File diff suppressed because it is too large
Load Diff
2085
output/libpulse_system.so.json
Normal file
2085
output/libpulse_system.so.json
Normal file
File diff suppressed because it is too large
Load Diff
1248
output/libpulse_system.so.rs
Normal file
1248
output/libpulse_system.so.rs
Normal file
File diff suppressed because it is too large
Load Diff
95
output/librendersystemvulkan.so.cs
Normal file
95
output/librendersystemvulkan.so.cs
Normal file
@@ -0,0 +1,95 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: librendersystemvulkan.so
|
||||
// Classes count: 3
|
||||
// Enums count: 5
|
||||
public static class LibrendersystemvulkanSo {
|
||||
// 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: 13
|
||||
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,
|
||||
RENDER_BUFFER_POOL_ALLOCATED = 0x1000
|
||||
}
|
||||
// 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
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 4
|
||||
public static class VsInputSignatureElement_t {
|
||||
public const nint m_pName = 0x0; // char[64]
|
||||
public const nint m_pSemantic = 0x40; // char[64]
|
||||
public const nint m_pD3DSemanticName = 0x80; // char[64]
|
||||
public const nint m_nD3DSemanticIndex = 0xC0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
public static class VsInputSignature_t {
|
||||
public const nint m_elems = 0x0; // CUtlVector<VsInputSignatureElement_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 7
|
||||
public static class RenderInputLayoutField_t {
|
||||
public const nint m_pSemanticName = 0x0; // uint8[32]
|
||||
public const nint m_nSemanticIndex = 0x20; // int32
|
||||
public const nint m_Format = 0x24; // uint32
|
||||
public const nint m_nOffset = 0x28; // int32
|
||||
public const nint m_nSlot = 0x2C; // int32
|
||||
public const nint m_nSlotType = 0x30; // RenderSlotType_t
|
||||
public const nint m_nInstanceStepRate = 0x34; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
101
output/librendersystemvulkan.so.hpp
Normal file
101
output/librendersystemvulkan.so.hpp
Normal file
@@ -0,0 +1,101 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: librendersystemvulkan.so
|
||||
// Classes count: 3
|
||||
// Enums count: 5
|
||||
namespace librendersystemvulkan_so {
|
||||
// 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: 13
|
||||
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,
|
||||
RENDER_BUFFER_POOL_ALLOCATED = 0x1000
|
||||
};
|
||||
// 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
|
||||
};
|
||||
// Parent: None
|
||||
// Fields count: 4
|
||||
namespace VsInputSignatureElement_t {
|
||||
constexpr std::ptrdiff_t m_pName = 0x0; // char[64]
|
||||
constexpr std::ptrdiff_t m_pSemantic = 0x40; // char[64]
|
||||
constexpr std::ptrdiff_t m_pD3DSemanticName = 0x80; // char[64]
|
||||
constexpr std::ptrdiff_t m_nD3DSemanticIndex = 0xC0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
namespace VsInputSignature_t {
|
||||
constexpr std::ptrdiff_t m_elems = 0x0; // CUtlVector<VsInputSignatureElement_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 7
|
||||
namespace RenderInputLayoutField_t {
|
||||
constexpr std::ptrdiff_t m_pSemanticName = 0x0; // uint8[32]
|
||||
constexpr std::ptrdiff_t m_nSemanticIndex = 0x20; // int32
|
||||
constexpr std::ptrdiff_t m_Format = 0x24; // uint32
|
||||
constexpr std::ptrdiff_t m_nOffset = 0x28; // int32
|
||||
constexpr std::ptrdiff_t m_nSlot = 0x2C; // int32
|
||||
constexpr std::ptrdiff_t m_nSlotType = 0x30; // RenderSlotType_t
|
||||
constexpr std::ptrdiff_t m_nInstanceStepRate = 0x34; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
109
output/librendersystemvulkan.so.json
Normal file
109
output/librendersystemvulkan.so.json
Normal file
@@ -0,0 +1,109 @@
|
||||
{
|
||||
"librendersystemvulkan.so": {
|
||||
"classes": {
|
||||
"RenderInputLayoutField_t": {
|
||||
"fields": {
|
||||
"m_Format": 36,
|
||||
"m_nInstanceStepRate": 52,
|
||||
"m_nOffset": 40,
|
||||
"m_nSemanticIndex": 32,
|
||||
"m_nSlot": 44,
|
||||
"m_nSlotType": 48,
|
||||
"m_pSemanticName": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"VsInputSignatureElement_t": {
|
||||
"fields": {
|
||||
"m_nD3DSemanticIndex": 192,
|
||||
"m_pD3DSemanticName": 128,
|
||||
"m_pName": 0,
|
||||
"m_pSemantic": 64
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"VsInputSignature_t": {
|
||||
"fields": {
|
||||
"m_elems": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"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_POOL_ALLOCATED": 4096,
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
104
output/librendersystemvulkan.so.rs
Normal file
104
output/librendersystemvulkan.so.rs
Normal file
@@ -0,0 +1,104 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: librendersystemvulkan.so
|
||||
// Classes count: 3
|
||||
// Enums count: 5
|
||||
pub mod librendersystemvulkan_so {
|
||||
// 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: 13
|
||||
#[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,
|
||||
RENDER_BUFFER_POOL_ALLOCATED = 0x1000
|
||||
}
|
||||
// Alignment: 1
|
||||
// Members count: 8
|
||||
#[repr(u8)]
|
||||
pub enum RenderMultisampleType_t {
|
||||
RENDER_MULTISAMPLE_INVALID = u8::MAX,
|
||||
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 = u32::MAX,
|
||||
RENDER_SLOT_PER_VERTEX = 0x0,
|
||||
RENDER_SLOT_PER_INSTANCE = 0x1
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 4
|
||||
pub mod VsInputSignatureElement_t {
|
||||
pub const m_pName: usize = 0x0; // char[64]
|
||||
pub const m_pSemantic: usize = 0x40; // char[64]
|
||||
pub const m_pD3DSemanticName: usize = 0x80; // char[64]
|
||||
pub const m_nD3DSemanticIndex: usize = 0xC0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
pub mod VsInputSignature_t {
|
||||
pub const m_elems: usize = 0x0; // CUtlVector<VsInputSignatureElement_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 7
|
||||
pub mod RenderInputLayoutField_t {
|
||||
pub const m_pSemanticName: usize = 0x0; // uint8[32]
|
||||
pub const m_nSemanticIndex: usize = 0x20; // int32
|
||||
pub const m_Format: usize = 0x24; // uint32
|
||||
pub const m_nOffset: usize = 0x28; // int32
|
||||
pub const m_nSlot: usize = 0x2C; // int32
|
||||
pub const m_nSlotType: usize = 0x30; // RenderSlotType_t
|
||||
pub const m_nInstanceStepRate: usize = 0x34; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: resourcesystem.dll
|
||||
// Class count: 59
|
||||
// Enum count: 2
|
||||
public static class ResourcesystemDll {
|
||||
// Module: libresourcesystem.so
|
||||
// Classes count: 59
|
||||
// Enums count: 2
|
||||
public static class LibresourcesystemSo {
|
||||
// Alignment: 1
|
||||
// Member count: 9
|
||||
// Members count: 9
|
||||
public enum FuseVariableType_t : byte {
|
||||
INVALID = 0x0,
|
||||
BOOL = 0x1,
|
||||
@@ -20,68 +20,75 @@ namespace CS2Dumper.Schemas {
|
||||
FLOAT32 = 0x8
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 2
|
||||
// Members count: 2
|
||||
public enum FuseVariableAccess_t : byte {
|
||||
WRITABLE = 0x0,
|
||||
READ_ONLY = 0x1
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCNmIKRig {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCResponseRulesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCDotaItemDefinitionResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCMorphSetData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCChoreoSceneFileData {
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVSoundStackScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
public static class PackedAABB_t {
|
||||
public const nint m_nPackedMin = 0x0; // uint32
|
||||
public const nint m_nPackedMax = 0x4; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeManifestTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -91,33 +98,33 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_flValue = 0xC; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class FuseFunctionIndex_t {
|
||||
public const nint m_Value = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCGcExportableExternalData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIAnimGraphModelBinding {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCJavaScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -130,69 +137,70 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCRenderMesh {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVoxelVisibility {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// 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 InfoForResourceTypeCPhysAggregateData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCNmClip {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeWorld_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeProceduralTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCChoreoSceneFileList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
public static class AABB_t {
|
||||
public const nint m_vMinBounds = 0x0; // Vector
|
||||
public const nint m_vMaxBounds = 0xC; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCPostProcessingResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -205,14 +213,14 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_eAccess = 0x10; // FuseVariableAccess_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIParticleSnapshot {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
public static class FourQuaternions {
|
||||
public const nint x = 0x0; // fltx4
|
||||
public const nint y = 0x10; // fltx4
|
||||
@@ -220,105 +228,98 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint w = 0x30; // fltx4
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCPanoramaLayout {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCTypeScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCChoreoSceneResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCNmSkeleton {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCTestResourceData {
|
||||
public static class InfoForResourceTypeTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCAnimationGroup {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVSoundEventScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVoiceContainerBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCPanoramaStyle {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCWorldNode {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCSurfaceGraph {
|
||||
public static class InfoForResourceTypeCNmGraphVariation {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCCSGOEconItem {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCNmGraphDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCSmartProp {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -329,56 +330,56 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nMaxTempVarsUsed = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCCompositeMaterialKit {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVMixListResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCAnimData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIMaterial2 {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIVectorGraphic {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCPanoramaDynamicImages {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIPulseGraphDef {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -390,54 +391,54 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_bIsPure = 0x1A; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVDataResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCModel {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCDOTANovelsList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCTextureBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class FuseVariableIndex_t {
|
||||
public const nint m_Value = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIParticleSystemDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCSequenceGroupData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -446,14 +447,14 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_child = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCEntityLump {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: resourcesystem.dll
|
||||
// Class count: 59
|
||||
// Enum count: 2
|
||||
namespace resourcesystem_dll {
|
||||
// Module: libresourcesystem.so
|
||||
// Classes count: 59
|
||||
// Enums count: 2
|
||||
namespace libresourcesystem_so {
|
||||
// Alignment: 1
|
||||
// Member count: 9
|
||||
// Members count: 9
|
||||
enum class FuseVariableType_t : uint8_t {
|
||||
INVALID = 0x0,
|
||||
BOOL = 0x1,
|
||||
@@ -25,68 +25,75 @@ namespace cs2_dumper {
|
||||
FLOAT32 = 0x8
|
||||
};
|
||||
// Alignment: 1
|
||||
// Member count: 2
|
||||
// Members count: 2
|
||||
enum class FuseVariableAccess_t : uint8_t {
|
||||
WRITABLE = 0x0,
|
||||
READ_ONLY = 0x1
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCNmIKRig {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCResponseRulesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCDotaItemDefinitionResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCMorphSetData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCChoreoSceneFileData {
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVSoundStackScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
namespace PackedAABB_t {
|
||||
constexpr std::ptrdiff_t m_nPackedMin = 0x0; // uint32
|
||||
constexpr std::ptrdiff_t m_nPackedMax = 0x4; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeManifestTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -96,33 +103,33 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_flValue = 0xC; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace FuseFunctionIndex_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCGcExportableExternalData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIAnimGraphModelBinding {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCJavaScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -135,69 +142,70 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCRenderMesh {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVoxelVisibility {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace TestResource_t {
|
||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPhysAggregateData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCNmClip {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeWorld_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeProceduralTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCChoreoSceneFileList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
namespace AABB_t {
|
||||
constexpr std::ptrdiff_t m_vMinBounds = 0x0; // Vector
|
||||
constexpr std::ptrdiff_t m_vMaxBounds = 0xC; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPostProcessingResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -210,14 +218,14 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_eAccess = 0x10; // FuseVariableAccess_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIParticleSnapshot {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
namespace FourQuaternions {
|
||||
constexpr std::ptrdiff_t x = 0x0; // fltx4
|
||||
constexpr std::ptrdiff_t y = 0x10; // fltx4
|
||||
@@ -225,105 +233,98 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t w = 0x30; // fltx4
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPanoramaLayout {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCTypeScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCChoreoSceneResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCNmSkeleton {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCTestResourceData {
|
||||
namespace InfoForResourceTypeTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCAnimationGroup {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVSoundEventScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVoiceContainerBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPanoramaStyle {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCWorldNode {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCSurfaceGraph {
|
||||
namespace InfoForResourceTypeCNmGraphVariation {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCCSGOEconItem {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCNmGraphDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCSmartProp {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -334,56 +335,56 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_nMaxTempVarsUsed = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCCompositeMaterialKit {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVMixListResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCAnimData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIMaterial2 {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIVectorGraphic {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPanoramaDynamicImages {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIPulseGraphDef {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -395,54 +396,54 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_bIsPure = 0x1A; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVDataResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCModel {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCDOTANovelsList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCTextureBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace FuseVariableIndex_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIParticleSystemDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCSequenceGroupData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -451,14 +452,14 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_child = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCEntityLump {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"resourcesystem.dll": {
|
||||
"libresourcesystem.so": {
|
||||
"classes": {
|
||||
"AABB_t": {
|
||||
"fields": {
|
||||
@@ -125,17 +125,7 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCChoreoSceneFileList": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCChoreoSceneResource": {
|
||||
"InfoForResourceTypeCChoreoSceneFileData": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -255,6 +245,16 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCNmGraphVariation": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCNmIKRig": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
@@ -365,26 +365,6 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCSurfaceGraph": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCTestResourceData": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCTextureBase": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
@@ -565,6 +545,16 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeTestResource_t": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeWorld_t": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
@@ -596,6 +586,18 @@
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"TestResource_t": {
|
||||
"fields": {
|
||||
"m_name": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"VariableInfo_t": {
|
||||
"fields": {
|
||||
"m_eAccess": 16,
|
||||
@@ -1,16 +1,16 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: resourcesystem.dll
|
||||
// Class count: 59
|
||||
// Enum count: 2
|
||||
pub mod resourcesystem_dll {
|
||||
// Module: libresourcesystem.so
|
||||
// Classes count: 59
|
||||
// Enums count: 2
|
||||
pub mod libresourcesystem_so {
|
||||
// Alignment: 1
|
||||
// Member count: 9
|
||||
// Members count: 9
|
||||
#[repr(u8)]
|
||||
pub enum FuseVariableType_t {
|
||||
INVALID = 0x0,
|
||||
@@ -24,69 +24,76 @@ pub mod cs2_dumper {
|
||||
FLOAT32 = 0x8
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 2
|
||||
// Members count: 2
|
||||
#[repr(u8)]
|
||||
pub enum FuseVariableAccess_t {
|
||||
WRITABLE = 0x0,
|
||||
READ_ONLY = 0x1
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCNmIKRig {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCResponseRulesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCDotaItemDefinitionResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCMorphSetData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCChoreoSceneFileData {
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVSoundStackScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
pub mod PackedAABB_t {
|
||||
pub const m_nPackedMin: usize = 0x0; // uint32
|
||||
pub const m_nPackedMax: usize = 0x4; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeManifestTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -96,33 +103,33 @@ pub mod cs2_dumper {
|
||||
pub const m_flValue: usize = 0xC; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod FuseFunctionIndex_t {
|
||||
pub const m_Value: usize = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCGcExportableExternalData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIAnimGraphModelBinding {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCJavaScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -135,69 +142,70 @@ pub mod cs2_dumper {
|
||||
pub const m_functionMap: usize = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCRenderMesh {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVoxelVisibility {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// 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 InfoForResourceTypeCPhysAggregateData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCNmClip {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeWorld_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeProceduralTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCChoreoSceneFileList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
pub mod AABB_t {
|
||||
pub const m_vMinBounds: usize = 0x0; // Vector
|
||||
pub const m_vMaxBounds: usize = 0xC; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCPostProcessingResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -210,14 +218,14 @@ pub mod cs2_dumper {
|
||||
pub const m_eAccess: usize = 0x10; // FuseVariableAccess_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIParticleSnapshot {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
pub mod FourQuaternions {
|
||||
pub const x: usize = 0x0; // fltx4
|
||||
pub const y: usize = 0x10; // fltx4
|
||||
@@ -225,105 +233,98 @@ pub mod cs2_dumper {
|
||||
pub const w: usize = 0x30; // fltx4
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCPanoramaLayout {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCTypeScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCChoreoSceneResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCNmSkeleton {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCTestResourceData {
|
||||
pub mod InfoForResourceTypeTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCAnimationGroup {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVSoundEventScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVoiceContainerBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCPanoramaStyle {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCWorldNode {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCSurfaceGraph {
|
||||
pub mod InfoForResourceTypeCNmGraphVariation {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCCSGOEconItem {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCNmGraphDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCSmartProp {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -334,56 +335,56 @@ pub mod cs2_dumper {
|
||||
pub const m_nMaxTempVarsUsed: usize = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCCompositeMaterialKit {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVMixListResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCAnimData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIMaterial2 {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIVectorGraphic {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCPanoramaDynamicImages {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIPulseGraphDef {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -395,54 +396,54 @@ pub mod cs2_dumper {
|
||||
pub const m_bIsPure: usize = 0x1A; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVDataResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCModel {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCDOTANovelsList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCTextureBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod FuseVariableIndex_t {
|
||||
pub const m_Value: usize = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIParticleSystemDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCSequenceGroupData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -451,14 +452,14 @@ pub mod cs2_dumper {
|
||||
pub const m_child: usize = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCEntityLump {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
@@ -1,41 +1,21 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: scenesystem.dll
|
||||
// Class count: 9
|
||||
// Enum count: 3
|
||||
public static class ScenesystemDll {
|
||||
// Module: libscenesystem.so
|
||||
// Classes count: 9
|
||||
// Enums count: 1
|
||||
public static class LibscenesystemSo {
|
||||
// Alignment: 1
|
||||
// Member count: 6
|
||||
public enum DecalMode_t : byte {
|
||||
kDecalInvalid = 0xFF,
|
||||
kDecalBlood = 0x0,
|
||||
kDecalCloak = 0x1,
|
||||
kDecalCloakDamage = 0x2,
|
||||
kDecalMax = 0x3,
|
||||
kDecalDefault = 0x0
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
public enum DisableShadows_t : byte {
|
||||
kDisableShadows_None = 0x0,
|
||||
kDisableShadows_All = 0x1,
|
||||
kDisableShadows_Baked = 0x2,
|
||||
kDisableShadows_Realtime = 0x3
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 6
|
||||
public enum ESceneObjectVisualization : uint {
|
||||
SCENEOBJECT_VIS_NONE = 0x0,
|
||||
SCENEOBJECT_VIS_OBJECT = 0x1,
|
||||
SCENEOBJECT_VIS_MATERIAL = 0x2,
|
||||
SCENEOBJECT_VIS_TEXTURE_SIZE = 0x3,
|
||||
SCENEOBJECT_VIS_LOD = 0x4,
|
||||
SCENEOBJECT_VIS_INSTANCING = 0x5
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -52,7 +32,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nFormat = 0x2C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -61,7 +41,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nFrameCount = 0x8; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -69,34 +49,35 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nViewId = 0x0; // uint64
|
||||
public const nint m_ViewName = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_PostLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_LayerBase {
|
||||
public const nint m_viewId = 0x0; // SceneViewId_t
|
||||
public const nint m_ViewName = 0x10; // CUtlString
|
||||
public const nint m_nLayerId = 0x18; // uint64
|
||||
public const nint m_LayerName = 0x20; // CUtlString
|
||||
public const nint m_displayText = 0x28; // 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
|
||||
// Field count: 0
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_PreLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -106,7 +87,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_Targets = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -115,7 +96,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_ViewName = 0x10; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,40 +7,20 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: scenesystem.dll
|
||||
// Class count: 9
|
||||
// Enum count: 3
|
||||
namespace scenesystem_dll {
|
||||
// Module: libscenesystem.so
|
||||
// Classes count: 9
|
||||
// Enums count: 1
|
||||
namespace libscenesystem_so {
|
||||
// Alignment: 1
|
||||
// Member count: 6
|
||||
enum class DecalMode_t : uint8_t {
|
||||
kDecalInvalid = 0xFF,
|
||||
kDecalBlood = 0x0,
|
||||
kDecalCloak = 0x1,
|
||||
kDecalCloakDamage = 0x2,
|
||||
kDecalMax = 0x3,
|
||||
kDecalDefault = 0x0
|
||||
};
|
||||
// Alignment: 1
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
enum class DisableShadows_t : uint8_t {
|
||||
kDisableShadows_None = 0x0,
|
||||
kDisableShadows_All = 0x1,
|
||||
kDisableShadows_Baked = 0x2,
|
||||
kDisableShadows_Realtime = 0x3
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 6
|
||||
enum class ESceneObjectVisualization : uint32_t {
|
||||
SCENEOBJECT_VIS_NONE = 0x0,
|
||||
SCENEOBJECT_VIS_OBJECT = 0x1,
|
||||
SCENEOBJECT_VIS_MATERIAL = 0x2,
|
||||
SCENEOBJECT_VIS_TEXTURE_SIZE = 0x3,
|
||||
SCENEOBJECT_VIS_LOD = 0x4,
|
||||
SCENEOBJECT_VIS_INSTANCING = 0x5
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -57,7 +37,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_nFormat = 0x2C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -66,7 +46,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_nFrameCount = 0x8; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -74,34 +54,35 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64
|
||||
constexpr std::ptrdiff_t m_ViewName = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSMsg_PostLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
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_nLayerId = 0x18; // uint64
|
||||
constexpr std::ptrdiff_t m_LayerName = 0x20; // CUtlString
|
||||
constexpr std::ptrdiff_t m_displayText = 0x28; // 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
|
||||
// Field count: 0
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSMsg_PreLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -111,7 +92,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_Targets = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -120,7 +101,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"scenesystem.dll": {
|
||||
"libscenesystem.so": {
|
||||
"classes": {
|
||||
"CSSDSEndFrameViewInfo": {
|
||||
"fields": {
|
||||
@@ -28,10 +28,11 @@
|
||||
},
|
||||
"CSSDSMsg_LayerBase": {
|
||||
"fields": {
|
||||
"m_LayerName": 32,
|
||||
"m_LayerName": 40,
|
||||
"m_ViewName": 16,
|
||||
"m_displayText": 40,
|
||||
"m_nLayerId": 24,
|
||||
"m_displayText": 48,
|
||||
"m_nLayerId": 32,
|
||||
"m_nLayerIndex": 24,
|
||||
"m_viewId": 0
|
||||
},
|
||||
"metadata": [
|
||||
@@ -50,7 +51,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CSSDSMsg_LayerBase"
|
||||
},
|
||||
"CSSDSMsg_PreLayer": {
|
||||
"fields": {},
|
||||
@@ -60,7 +61,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CSSDSMsg_LayerBase"
|
||||
},
|
||||
"CSSDSMsg_ViewRender": {
|
||||
"fields": {
|
||||
@@ -125,18 +126,6 @@
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"DecalMode_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
"kDecalBlood": 0,
|
||||
"kDecalCloak": 1,
|
||||
"kDecalCloakDamage": 2,
|
||||
"kDecalDefault": 0,
|
||||
"kDecalInvalid": 255,
|
||||
"kDecalMax": 3
|
||||
},
|
||||
"type": "uint8"
|
||||
},
|
||||
"DisableShadows_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
@@ -146,18 +135,6 @@
|
||||
"kDisableShadows_Realtime": 3
|
||||
},
|
||||
"type": "uint8"
|
||||
},
|
||||
"ESceneObjectVisualization": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"SCENEOBJECT_VIS_INSTANCING": 5,
|
||||
"SCENEOBJECT_VIS_LOD": 4,
|
||||
"SCENEOBJECT_VIS_MATERIAL": 2,
|
||||
"SCENEOBJECT_VIS_NONE": 0,
|
||||
"SCENEOBJECT_VIS_OBJECT": 1,
|
||||
"SCENEOBJECT_VIS_TEXTURE_SIZE": 3
|
||||
},
|
||||
"type": "uint32"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,26 +1,16 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: scenesystem.dll
|
||||
// Class count: 9
|
||||
// Enum count: 3
|
||||
pub mod scenesystem_dll {
|
||||
// Module: libscenesystem.so
|
||||
// Classes count: 9
|
||||
// Enums count: 1
|
||||
pub mod libscenesystem_so {
|
||||
// Alignment: 1
|
||||
// Member count: 6
|
||||
#[repr(u8)]
|
||||
pub enum DecalMode_t {
|
||||
kDecalInvalid = 0xFF,
|
||||
kDecalBlood = 0x0,
|
||||
kDecalCloak = 0x1,
|
||||
kDecalCloakDamage = 0x2,
|
||||
kDecalMax = 0x3
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 4
|
||||
// Members count: 4
|
||||
#[repr(u8)]
|
||||
pub enum DisableShadows_t {
|
||||
kDisableShadows_None = 0x0,
|
||||
@@ -28,19 +18,8 @@ pub mod cs2_dumper {
|
||||
kDisableShadows_Baked = 0x2,
|
||||
kDisableShadows_Realtime = 0x3
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 6
|
||||
#[repr(u32)]
|
||||
pub enum ESceneObjectVisualization {
|
||||
SCENEOBJECT_VIS_NONE = 0x0,
|
||||
SCENEOBJECT_VIS_OBJECT = 0x1,
|
||||
SCENEOBJECT_VIS_MATERIAL = 0x2,
|
||||
SCENEOBJECT_VIS_TEXTURE_SIZE = 0x3,
|
||||
SCENEOBJECT_VIS_LOD = 0x4,
|
||||
SCENEOBJECT_VIS_INSTANCING = 0x5
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -57,7 +36,7 @@ pub mod cs2_dumper {
|
||||
pub const m_nFormat: usize = 0x2C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -66,7 +45,7 @@ pub mod cs2_dumper {
|
||||
pub const m_nFrameCount: usize = 0x8; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -74,34 +53,35 @@ pub mod cs2_dumper {
|
||||
pub const m_nViewId: usize = 0x0; // uint64
|
||||
pub const m_ViewName: usize = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_PostLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_LayerBase {
|
||||
pub const m_viewId: usize = 0x0; // SceneViewId_t
|
||||
pub const m_ViewName: usize = 0x10; // CUtlString
|
||||
pub const m_nLayerId: usize = 0x18; // uint64
|
||||
pub const m_LayerName: usize = 0x20; // CUtlString
|
||||
pub const m_displayText: usize = 0x28; // 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
|
||||
// Field count: 0
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_PreLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -111,7 +91,7 @@ pub mod cs2_dumper {
|
||||
pub const m_Targets: usize = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -120,7 +100,7 @@ pub mod cs2_dumper {
|
||||
pub const m_ViewName: usize = 0x10; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,13 +1,13 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: schemasystem.dll
|
||||
// Class count: 7
|
||||
// Enum count: 2
|
||||
public static class SchemasystemDll {
|
||||
// Module: libschemasystem.so
|
||||
// Classes count: 7
|
||||
// Enums count: 2
|
||||
public static class LibschemasystemSo {
|
||||
// Alignment: 1
|
||||
// Member count: 82
|
||||
// Members count: 81
|
||||
public enum fieldtype_t : byte {
|
||||
FIELD_VOID = 0x0,
|
||||
FIELD_FLOAT32 = 0x1,
|
||||
@@ -89,29 +89,27 @@ namespace CS2Dumper.Schemas {
|
||||
FIELD_ENGINE_TICK = 0x4D,
|
||||
FIELD_WORLD_GROUP_ID = 0x4E,
|
||||
FIELD_GLOBALSYMBOL = 0x4F,
|
||||
FIELD_HNMGRAPHDEFINITION = 0x50,
|
||||
FIELD_TYPECOUNT = 0x51
|
||||
FIELD_TYPECOUNT = 0x50
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
public enum ThreeState_t : uint {
|
||||
TRS_FALSE = 0x0,
|
||||
TRS_TRUE = 0x1,
|
||||
TRS_NONE = 0x2
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCResourceManifestInternal {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 23
|
||||
// Fields count: 22
|
||||
public static class CSchemaSystemInternalRegistration {
|
||||
public const nint m_Vector2D = 0x0; // Vector2D
|
||||
public const nint m_Vector = 0x8; // Vector
|
||||
public const nint m_VectorWS = 0x14; // VectorWS
|
||||
public const nint m_VectorAligned = 0x20; // VectorAligned
|
||||
public const nint m_Quaternion = 0x30; // Quaternion
|
||||
public const nint m_QAngle = 0x40; // QAngle
|
||||
@@ -126,44 +124,44 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_CTransform = 0x100; // CTransform
|
||||
public const nint m_pKeyValues = 0x120; // KeyValues*
|
||||
public const nint m_CUtlBinaryBlock = 0x128; // CUtlBinaryBlock
|
||||
public const nint m_CUtlString = 0x138; // CUtlString
|
||||
public const nint m_CUtlSymbol = 0x140; // CUtlSymbol
|
||||
public const nint m_stringToken = 0x144; // CUtlStringToken
|
||||
public const nint m_stringTokenWithStorage = 0x148; // CUtlStringTokenWithStorage
|
||||
public const nint m_ResourceTypes = 0x160; // CResourceArray<CResourcePointer<CResourceString>>
|
||||
public const nint m_KV3 = 0x168; // KeyValues3
|
||||
public const nint m_CUtlString = 0x140; // CUtlString
|
||||
public const nint m_CUtlSymbol = 0x148; // CUtlSymbol
|
||||
public const nint m_stringToken = 0x14C; // CUtlStringToken
|
||||
public const nint m_stringTokenWithStorage = 0x150; // CUtlStringTokenWithStorage
|
||||
public const nint m_ResourceTypes = 0x168; // CResourceArray<CResourcePointer<CResourceString>>
|
||||
public const nint m_KV3 = 0x170; // KeyValues3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CExampleSchemaVData_PolymorphicDerivedA {
|
||||
public const nint m_nDerivedA = 0x10; // int32
|
||||
public const nint m_nDerivedA = 0xC; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CExampleSchemaVData_PolymorphicBase {
|
||||
public const nint m_nBase = 0x8; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CExampleSchemaVData_PolymorphicDerivedB {
|
||||
public const nint m_nDerivedB = 0x10; // int32
|
||||
public const nint m_nDerivedB = 0xC; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
public static class ResourceId_t {
|
||||
public const nint m_Value = 0x0; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: schemasystem.dll
|
||||
// Class count: 7
|
||||
// Enum count: 2
|
||||
namespace schemasystem_dll {
|
||||
// Module: libschemasystem.so
|
||||
// Classes count: 7
|
||||
// Enums count: 2
|
||||
namespace libschemasystem_so {
|
||||
// Alignment: 1
|
||||
// Member count: 82
|
||||
// Members count: 81
|
||||
enum class fieldtype_t : uint8_t {
|
||||
FIELD_VOID = 0x0,
|
||||
FIELD_FLOAT32 = 0x1,
|
||||
@@ -94,29 +94,27 @@ namespace cs2_dumper {
|
||||
FIELD_ENGINE_TICK = 0x4D,
|
||||
FIELD_WORLD_GROUP_ID = 0x4E,
|
||||
FIELD_GLOBALSYMBOL = 0x4F,
|
||||
FIELD_HNMGRAPHDEFINITION = 0x50,
|
||||
FIELD_TYPECOUNT = 0x51
|
||||
FIELD_TYPECOUNT = 0x50
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
enum class ThreeState_t : uint32_t {
|
||||
TRS_FALSE = 0x0,
|
||||
TRS_TRUE = 0x1,
|
||||
TRS_NONE = 0x2
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCResourceManifestInternal {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 23
|
||||
// Fields count: 22
|
||||
namespace CSchemaSystemInternalRegistration {
|
||||
constexpr std::ptrdiff_t m_Vector2D = 0x0; // Vector2D
|
||||
constexpr std::ptrdiff_t m_Vector = 0x8; // Vector
|
||||
constexpr std::ptrdiff_t m_VectorWS = 0x14; // VectorWS
|
||||
constexpr std::ptrdiff_t m_VectorAligned = 0x20; // VectorAligned
|
||||
constexpr std::ptrdiff_t m_Quaternion = 0x30; // Quaternion
|
||||
constexpr std::ptrdiff_t m_QAngle = 0x40; // QAngle
|
||||
@@ -131,44 +129,44 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_CTransform = 0x100; // CTransform
|
||||
constexpr std::ptrdiff_t m_pKeyValues = 0x120; // KeyValues*
|
||||
constexpr std::ptrdiff_t m_CUtlBinaryBlock = 0x128; // CUtlBinaryBlock
|
||||
constexpr std::ptrdiff_t m_CUtlString = 0x138; // CUtlString
|
||||
constexpr std::ptrdiff_t m_CUtlSymbol = 0x140; // CUtlSymbol
|
||||
constexpr std::ptrdiff_t m_stringToken = 0x144; // CUtlStringToken
|
||||
constexpr std::ptrdiff_t m_stringTokenWithStorage = 0x148; // CUtlStringTokenWithStorage
|
||||
constexpr std::ptrdiff_t m_ResourceTypes = 0x160; // CResourceArray<CResourcePointer<CResourceString>>
|
||||
constexpr std::ptrdiff_t m_KV3 = 0x168; // KeyValues3
|
||||
constexpr std::ptrdiff_t m_CUtlString = 0x140; // CUtlString
|
||||
constexpr std::ptrdiff_t m_CUtlSymbol = 0x148; // CUtlSymbol
|
||||
constexpr std::ptrdiff_t m_stringToken = 0x14C; // CUtlStringToken
|
||||
constexpr std::ptrdiff_t m_stringTokenWithStorage = 0x150; // CUtlStringTokenWithStorage
|
||||
constexpr std::ptrdiff_t m_ResourceTypes = 0x168; // CResourceArray<CResourcePointer<CResourceString>>
|
||||
constexpr std::ptrdiff_t m_KV3 = 0x170; // KeyValues3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CExampleSchemaVData_PolymorphicDerivedA {
|
||||
constexpr std::ptrdiff_t m_nDerivedA = 0x10; // int32
|
||||
constexpr std::ptrdiff_t m_nDerivedA = 0xC; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CExampleSchemaVData_PolymorphicBase {
|
||||
constexpr std::ptrdiff_t m_nBase = 0x8; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CExampleSchemaVData_PolymorphicDerivedB {
|
||||
constexpr std::ptrdiff_t m_nDerivedB = 0x10; // int32
|
||||
constexpr std::ptrdiff_t m_nDerivedB = 0xC; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
namespace ResourceId_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"schemasystem.dll": {
|
||||
"libschemasystem.so": {
|
||||
"classes": {
|
||||
"CExampleSchemaVData_Monomorphic": {
|
||||
"fields": {
|
||||
@@ -28,7 +28,7 @@
|
||||
},
|
||||
"CExampleSchemaVData_PolymorphicDerivedA": {
|
||||
"fields": {
|
||||
"m_nDerivedA": 16
|
||||
"m_nDerivedA": 12
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -36,11 +36,11 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CExampleSchemaVData_PolymorphicBase"
|
||||
},
|
||||
"CExampleSchemaVData_PolymorphicDerivedB": {
|
||||
"fields": {
|
||||
"m_nDerivedB": 16
|
||||
"m_nDerivedB": 12
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -48,33 +48,32 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CExampleSchemaVData_PolymorphicBase"
|
||||
},
|
||||
"CSchemaSystemInternalRegistration": {
|
||||
"fields": {
|
||||
"m_CTransform": 256,
|
||||
"m_CUtlBinaryBlock": 296,
|
||||
"m_CUtlString": 312,
|
||||
"m_CUtlSymbol": 320,
|
||||
"m_CUtlString": 320,
|
||||
"m_CUtlSymbol": 328,
|
||||
"m_Color": 224,
|
||||
"m_DegreeEuler": 100,
|
||||
"m_KV3": 360,
|
||||
"m_KV3": 368,
|
||||
"m_QAngle": 64,
|
||||
"m_Quaternion": 48,
|
||||
"m_QuaternionStorage": 112,
|
||||
"m_RadianEuler": 88,
|
||||
"m_ResourceTypes": 352,
|
||||
"m_ResourceTypes": 360,
|
||||
"m_RotationVector": 76,
|
||||
"m_Vector": 8,
|
||||
"m_Vector2D": 0,
|
||||
"m_Vector4D": 228,
|
||||
"m_VectorAligned": 32,
|
||||
"m_VectorWS": 20,
|
||||
"m_matrix3x4_t": 128,
|
||||
"m_matrix3x4a_t": 176,
|
||||
"m_pKeyValues": 288,
|
||||
"m_stringToken": 324,
|
||||
"m_stringTokenWithStorage": 328
|
||||
"m_stringToken": 332,
|
||||
"m_stringTokenWithStorage": 336
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
@@ -135,7 +134,6 @@
|
||||
"FIELD_GLOBALSYMBOL": 79,
|
||||
"FIELD_HMATERIAL": 41,
|
||||
"FIELD_HMODEL": 42,
|
||||
"FIELD_HNMGRAPHDEFINITION": 80,
|
||||
"FIELD_HPARTICLESYSTEMDEFINITION": 56,
|
||||
"FIELD_HPOSTPROCESSING": 61,
|
||||
"FIELD_HRENDERTEXTURE": 55,
|
||||
@@ -171,7 +169,7 @@
|
||||
"FIELD_STRING_AND_TOKEN": 75,
|
||||
"FIELD_TICK": 16,
|
||||
"FIELD_TIME": 15,
|
||||
"FIELD_TYPECOUNT": 81,
|
||||
"FIELD_TYPECOUNT": 80,
|
||||
"FIELD_TYPEUNKNOWN": 29,
|
||||
"FIELD_UINT16": 58,
|
||||
"FIELD_UINT32": 37,
|
||||
@@ -1,16 +1,16 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: schemasystem.dll
|
||||
// Class count: 7
|
||||
// Enum count: 2
|
||||
pub mod schemasystem_dll {
|
||||
// Module: libschemasystem.so
|
||||
// Classes count: 7
|
||||
// Enums count: 2
|
||||
pub mod libschemasystem_so {
|
||||
// Alignment: 1
|
||||
// Member count: 82
|
||||
// Members count: 81
|
||||
#[repr(u8)]
|
||||
pub enum fieldtype_t {
|
||||
FIELD_VOID = 0x0,
|
||||
@@ -93,11 +93,10 @@ pub mod cs2_dumper {
|
||||
FIELD_ENGINE_TICK = 0x4D,
|
||||
FIELD_WORLD_GROUP_ID = 0x4E,
|
||||
FIELD_GLOBALSYMBOL = 0x4F,
|
||||
FIELD_HNMGRAPHDEFINITION = 0x50,
|
||||
FIELD_TYPECOUNT = 0x51
|
||||
FIELD_TYPECOUNT = 0x50
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
// Members count: 3
|
||||
#[repr(u32)]
|
||||
pub enum ThreeState_t {
|
||||
TRS_FALSE = 0x0,
|
||||
@@ -105,18 +104,17 @@ pub mod cs2_dumper {
|
||||
TRS_NONE = 0x2
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCResourceManifestInternal {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 23
|
||||
// Fields count: 22
|
||||
pub mod CSchemaSystemInternalRegistration {
|
||||
pub const m_Vector2D: usize = 0x0; // Vector2D
|
||||
pub const m_Vector: usize = 0x8; // Vector
|
||||
pub const m_VectorWS: usize = 0x14; // VectorWS
|
||||
pub const m_VectorAligned: usize = 0x20; // VectorAligned
|
||||
pub const m_Quaternion: usize = 0x30; // Quaternion
|
||||
pub const m_QAngle: usize = 0x40; // QAngle
|
||||
@@ -131,44 +129,44 @@ pub mod cs2_dumper {
|
||||
pub const m_CTransform: usize = 0x100; // CTransform
|
||||
pub const m_pKeyValues: usize = 0x120; // KeyValues*
|
||||
pub const m_CUtlBinaryBlock: usize = 0x128; // CUtlBinaryBlock
|
||||
pub const m_CUtlString: usize = 0x138; // CUtlString
|
||||
pub const m_CUtlSymbol: usize = 0x140; // CUtlSymbol
|
||||
pub const m_stringToken: usize = 0x144; // CUtlStringToken
|
||||
pub const m_stringTokenWithStorage: usize = 0x148; // CUtlStringTokenWithStorage
|
||||
pub const m_ResourceTypes: usize = 0x160; // CResourceArray<CResourcePointer<CResourceString>>
|
||||
pub const m_KV3: usize = 0x168; // KeyValues3
|
||||
pub const m_CUtlString: usize = 0x140; // CUtlString
|
||||
pub const m_CUtlSymbol: usize = 0x148; // CUtlSymbol
|
||||
pub const m_stringToken: usize = 0x14C; // CUtlStringToken
|
||||
pub const m_stringTokenWithStorage: usize = 0x150; // CUtlStringTokenWithStorage
|
||||
pub const m_ResourceTypes: usize = 0x168; // CResourceArray<CResourcePointer<CResourceString>>
|
||||
pub const m_KV3: usize = 0x170; // KeyValues3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CExampleSchemaVData_PolymorphicDerivedA {
|
||||
pub const m_nDerivedA: usize = 0x10; // int32
|
||||
pub const m_nDerivedA: usize = 0xC; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CExampleSchemaVData_PolymorphicBase {
|
||||
pub const m_nBase: usize = 0x8; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CExampleSchemaVData_PolymorphicDerivedB {
|
||||
pub const m_nDerivedB: usize = 0x10; // int32
|
||||
pub const m_nDerivedB: usize = 0xC; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
pub mod ResourceId_t {
|
||||
pub const m_Value: usize = 0x0; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
11161
output/libserver.so.cs
Normal file
11161
output/libserver.so.cs
Normal file
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
11269
output/libserver.so.rs
Normal file
11269
output/libserver.so.rs
Normal file
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 @@
|
||||
{
|
||||
"soundsystem.dll": {
|
||||
"libsoundsystem.so": {
|
||||
"classes": {
|
||||
"CAudioEmphasisSample": {
|
||||
"fields": {
|
||||
@@ -108,34 +108,42 @@
|
||||
},
|
||||
"CSosGroupActionLimitSchema": {
|
||||
"fields": {
|
||||
"m_bCountStopped": 21,
|
||||
"m_bStopImmediate": 20,
|
||||
"m_nMaxCount": 8,
|
||||
"m_nSortType": 16,
|
||||
"m_nStopType": 12
|
||||
"m_nMaxCount": 24,
|
||||
"m_nSortType": 32,
|
||||
"m_nStopType": 28
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CSosGroupActionSchema"
|
||||
},
|
||||
"CSosGroupActionMemberCountEnvelopeSchema": {
|
||||
"fields": {
|
||||
"m_bSaveToGroup": 40,
|
||||
"m_flAttack": 24,
|
||||
"m_flBaseValue": 16,
|
||||
"m_flDecay": 28,
|
||||
"m_flTargetValue": 20,
|
||||
"m_nBaseCount": 8,
|
||||
"m_nTargetCount": 12,
|
||||
"m_resultVarName": 32
|
||||
"m_bSaveToGroup": 56,
|
||||
"m_flAttack": 40,
|
||||
"m_flBaseValue": 32,
|
||||
"m_flDecay": 44,
|
||||
"m_flTargetValue": 36,
|
||||
"m_nBaseCount": 24,
|
||||
"m_nTargetCount": 28,
|
||||
"m_resultVarName": 48
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "CSosGroupActionSchema"
|
||||
},
|
||||
"CSosGroupActionSchema": {
|
||||
"fields": {
|
||||
"m_actionInstanceType": 20,
|
||||
"m_actionType": 16,
|
||||
"m_name": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -143,17 +151,7 @@
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CSosGroupActionSchema": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"name": "MPropertyElementNameFn",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
@@ -161,135 +159,151 @@
|
||||
},
|
||||
"CSosGroupActionSetSoundeventParameterSchema": {
|
||||
"fields": {
|
||||
"m_flMaxValue": 16,
|
||||
"m_flMinValue": 12,
|
||||
"m_nMaxCount": 8,
|
||||
"m_nSortType": 32,
|
||||
"m_opvarName": 24
|
||||
"m_flMaxValue": 32,
|
||||
"m_flMinValue": 28,
|
||||
"m_nMaxCount": 24,
|
||||
"m_nSortType": 48,
|
||||
"m_opvarName": 40
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CSosGroupActionSchema"
|
||||
},
|
||||
"CSosGroupActionSoundeventClusterSchema": {
|
||||
"fields": {
|
||||
"m_clusterSizeOpvar": 32,
|
||||
"m_flClusterEpsilon": 12,
|
||||
"m_groupBoundingBoxMaxsOpvar": 48,
|
||||
"m_groupBoundingBoxMinsOpvar": 40,
|
||||
"m_nMinNearby": 8,
|
||||
"m_shouldPlayClusterChild": 24,
|
||||
"m_shouldPlayOpvar": 16
|
||||
"m_clusterSizeOpvar": 48,
|
||||
"m_flClusterEpsilon": 28,
|
||||
"m_groupBoundingBoxMaxsOpvar": 64,
|
||||
"m_groupBoundingBoxMinsOpvar": 56,
|
||||
"m_nMinNearby": 24,
|
||||
"m_shouldPlayClusterChild": 40,
|
||||
"m_shouldPlayOpvar": 32
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CSosGroupActionSchema"
|
||||
},
|
||||
"CSosGroupActionSoundeventCountSchema": {
|
||||
"fields": {
|
||||
"m_bExcludeStoppedSounds": 8,
|
||||
"m_strCountKeyName": 16
|
||||
"m_bExcludeStoppedSounds": 24,
|
||||
"m_strCountKeyName": 32
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CSosGroupActionSchema"
|
||||
},
|
||||
"CSosGroupActionSoundeventMinMaxValuesSchema": {
|
||||
"fields": {
|
||||
"m_bExcludSoundsAboveThreshold": 32,
|
||||
"m_bExcludeDelayedSounds": 25,
|
||||
"m_bExcludeSoundsBelowThreshold": 26,
|
||||
"m_bExcludeStoppedSounds": 24,
|
||||
"m_flExcludeSoundsMaxThresholdValue": 36,
|
||||
"m_flExcludeSoundsMinThresholdValue": 28,
|
||||
"m_strDelayPublicFieldName": 16,
|
||||
"m_strMaxValueName": 48,
|
||||
"m_strMinValueName": 40,
|
||||
"m_strQueryPublicFieldName": 8
|
||||
"m_bExcludSoundsAboveThreshold": 48,
|
||||
"m_bExcludeDelayedSounds": 41,
|
||||
"m_bExcludeSoundsBelowThreshold": 42,
|
||||
"m_bExcludeStoppedSounds": 40,
|
||||
"m_flExcludeSoundsMaxThresholdValue": 52,
|
||||
"m_flExcludeSoundsMinThresholdValue": 44,
|
||||
"m_strDelayPublicFieldName": 32,
|
||||
"m_strMaxValueName": 64,
|
||||
"m_strMinValueName": 56,
|
||||
"m_strQueryPublicFieldName": 24
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CSosGroupActionSchema"
|
||||
},
|
||||
"CSosGroupActionSoundeventPrioritySchema": {
|
||||
"fields": {
|
||||
"m_bPriorityReadButDontContribute": 32,
|
||||
"m_priorityContributeButDontRead": 24,
|
||||
"m_priorityValue": 8,
|
||||
"m_priorityVolumeScalar": 16
|
||||
"m_bPriorityReadButDontContribute": 48,
|
||||
"m_priorityContributeButDontRead": 40,
|
||||
"m_priorityValue": 24,
|
||||
"m_priorityVolumeScalar": 32
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CSosGroupActionSchema"
|
||||
},
|
||||
"CSosGroupActionTimeBlockLimitSchema": {
|
||||
"fields": {
|
||||
"m_flMaxDuration": 12,
|
||||
"m_nMaxCount": 8
|
||||
"m_flMaxDuration": 28,
|
||||
"m_nMaxCount": 24
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
}
|
||||
],
|
||||
"parent": "CSosGroupActionSchema"
|
||||
},
|
||||
"CSosGroupActionTimeLimitSchema": {
|
||||
"fields": {
|
||||
"m_flMaxDuration": 24
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "CSosGroupActionSchema"
|
||||
},
|
||||
"CSosGroupBranchPattern": {
|
||||
"fields": {
|
||||
"m_bMatchEntIndex": 10,
|
||||
"m_bMatchEventName": 8,
|
||||
"m_bMatchEventSubString": 9,
|
||||
"m_bMatchOpvar": 11,
|
||||
"m_bMatchString": 12
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CSosGroupActionTimeLimitSchema": {
|
||||
"CSosGroupMatchPattern": {
|
||||
"fields": {
|
||||
"m_flMaxDuration": 8
|
||||
"m_flEntIndex": 32,
|
||||
"m_flOpvar": 36,
|
||||
"m_matchSoundEventName": 16,
|
||||
"m_matchSoundEventSubString": 24,
|
||||
"m_opvarString": 40
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
}
|
||||
],
|
||||
"parent": "CSosGroupBranchPattern"
|
||||
},
|
||||
"CSosSoundEventGroupListSchema": {
|
||||
"fields": {
|
||||
"m_groupList": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
@@ -297,27 +311,24 @@
|
||||
},
|
||||
"CSosSoundEventGroupSchema": {
|
||||
"fields": {
|
||||
"m_Behavior_EntIndex": 56,
|
||||
"m_Behavior_EventName": 28,
|
||||
"m_Behavior_Opvar": 64,
|
||||
"m_Behavior_String": 72,
|
||||
"m_bBlocksEvents": 12,
|
||||
"m_bInvertMatch": 24,
|
||||
"m_bMatchEventSubString": 40,
|
||||
"m_flEntIndex": 60,
|
||||
"m_flMemberLifespanTime": 20,
|
||||
"m_flOpvar": 68,
|
||||
"m_matchSoundEventName": 32,
|
||||
"m_matchSoundEventSubString": 48,
|
||||
"m_bInvertMatch": 20,
|
||||
"m_bIsBlocking": 12,
|
||||
"m_branchPattern": 72,
|
||||
"m_flLifeSpanTime": 88,
|
||||
"m_matchPattern": 24,
|
||||
"m_nBlockMaxCount": 16,
|
||||
"m_nGroupType": 8,
|
||||
"m_opvarString": 80,
|
||||
"m_vActions": 88
|
||||
"m_nType": 8,
|
||||
"m_name": 0,
|
||||
"m_vActions": 192
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyElementNameFn",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
@@ -390,8 +401,8 @@
|
||||
},
|
||||
"CTestBlendContainer": {
|
||||
"fields": {
|
||||
"m_firstSound": 184,
|
||||
"m_secondSound": 192
|
||||
"m_firstSound": 192,
|
||||
"m_secondSound": 200
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -407,7 +418,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVSound": {
|
||||
"fields": {
|
||||
@@ -433,7 +444,7 @@
|
||||
},
|
||||
"CVoiceContainerAmpedDecayingSineWave": {
|
||||
"fields": {
|
||||
"m_flGainAmount": 192
|
||||
"m_flGainAmount": 200
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -449,7 +460,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerDecayingSineWave"
|
||||
},
|
||||
"CVoiceContainerAnalysisBase": {
|
||||
"fields": {
|
||||
@@ -478,7 +489,7 @@
|
||||
},
|
||||
"CVoiceContainerBase": {
|
||||
"fields": {
|
||||
"m_pEnvelopeAnalyzer": 176,
|
||||
"m_pEnvelopeAnalyzer": 184,
|
||||
"m_vSound": 56
|
||||
},
|
||||
"metadata": [
|
||||
@@ -507,9 +518,9 @@
|
||||
},
|
||||
"CVoiceContainerBlender": {
|
||||
"fields": {
|
||||
"m_firstSound": 184,
|
||||
"m_flBlendFactor": 232,
|
||||
"m_secondSound": 208
|
||||
"m_firstSound": 192,
|
||||
"m_flBlendFactor": 240,
|
||||
"m_secondSound": 216
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -525,12 +536,12 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerDecayingSineWave": {
|
||||
"fields": {
|
||||
"m_flDecayTime": 188,
|
||||
"m_flFrequency": 184
|
||||
"m_flDecayTime": 196,
|
||||
"m_flFrequency": 192
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -546,7 +557,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerDefault": {
|
||||
"fields": {},
|
||||
@@ -564,12 +575,12 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerEnvelope": {
|
||||
"fields": {
|
||||
"m_analysisContainer": 192,
|
||||
"m_sound": 184
|
||||
"m_analysisContainer": 200,
|
||||
"m_sound": 192
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -585,13 +596,13 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerEnvelopeAnalyzer": {
|
||||
"fields": {
|
||||
"m_fAnalysisWindowMs": 84,
|
||||
"m_flThreshold": 88,
|
||||
"m_mode": 80
|
||||
"m_mode": 80,
|
||||
"m_nSamples": 84
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -607,15 +618,14 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerAnalysisBase"
|
||||
},
|
||||
"CVoiceContainerGranulator": {
|
||||
"fields": {
|
||||
"m_bShouldWraparound": 200,
|
||||
"m_flGrainCrossfadeAmount": 188,
|
||||
"m_flGrainLength": 184,
|
||||
"m_flPlaybackJitter": 196,
|
||||
"m_flStartJitter": 192,
|
||||
"m_flGrainCrossfadeAmount": 196,
|
||||
"m_flGrainLength": 192,
|
||||
"m_flPlaybackJitter": 204,
|
||||
"m_flStartJitter": 200,
|
||||
"m_sourceAudio": 208
|
||||
},
|
||||
"metadata": [
|
||||
@@ -628,15 +638,15 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerLoopTrigger": {
|
||||
"fields": {
|
||||
"m_bCrossFade": 220,
|
||||
"m_flFadeTime": 216,
|
||||
"m_flRetriggerTimeMax": 212,
|
||||
"m_flRetriggerTimeMin": 208,
|
||||
"m_sound": 184
|
||||
"m_bCrossFade": 228,
|
||||
"m_flFadeTime": 224,
|
||||
"m_flRetriggerTimeMax": 220,
|
||||
"m_flRetriggerTimeMin": 216,
|
||||
"m_sound": 192
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -652,7 +662,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerNull": {
|
||||
"fields": {},
|
||||
@@ -670,43 +680,16 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CVoiceContainerParameterBlender": {
|
||||
"fields": {
|
||||
"m_bEnableDistanceBlend": 368,
|
||||
"m_bEnableOcclusionBlend": 232,
|
||||
"m_curve1": 240,
|
||||
"m_curve2": 304,
|
||||
"m_curve3": 376,
|
||||
"m_curve4": 440,
|
||||
"m_firstSound": 184,
|
||||
"m_secondSound": 208
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyDescription",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerRandomSampler": {
|
||||
"fields": {
|
||||
"m_flAmplitude": 184,
|
||||
"m_flAmplitudeJitter": 188,
|
||||
"m_flMaxLength": 196,
|
||||
"m_flTimeJitter": 192,
|
||||
"m_grainResources": 208,
|
||||
"m_nNumDelayVariations": 200
|
||||
"m_flAmplitude": 192,
|
||||
"m_flAmplitudeJitter": 196,
|
||||
"m_flMaxLength": 204,
|
||||
"m_flTimeJitter": 200,
|
||||
"m_grainResources": 216,
|
||||
"m_nNumDelayVariations": 208
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -722,13 +705,13 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerRealtimeFMSineWave": {
|
||||
"fields": {
|
||||
"m_flCarrierFrequency": 184,
|
||||
"m_flModulatorAmount": 192,
|
||||
"m_flModulatorFrequency": 188
|
||||
"m_flCarrierFrequency": 192,
|
||||
"m_flModulatorAmount": 200,
|
||||
"m_flModulatorFrequency": 196
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -744,12 +727,32 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerSelector": {
|
||||
"fields": {
|
||||
"m_fProbabilityWeights": 248,
|
||||
"m_mode": 184,
|
||||
"m_fProbabilityWeights": 256,
|
||||
"m_mode": 192,
|
||||
"m_soundsToPlay": 200
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyDescription",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerSet": {
|
||||
"fields": {
|
||||
"m_soundsToPlay": 192
|
||||
},
|
||||
"metadata": [
|
||||
@@ -766,27 +769,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CVoiceContainerSet": {
|
||||
"fields": {
|
||||
"m_soundsToPlay": 184
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyFriendlyName",
|
||||
"type": "Unknown"
|
||||
},
|
||||
{
|
||||
"name": "MPropertyDescription",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerSetElement": {
|
||||
"fields": {
|
||||
@@ -803,15 +786,15 @@
|
||||
},
|
||||
"CVoiceContainerShapedNoise": {
|
||||
"fields": {
|
||||
"m_bUseCurveForAmplitude": 328,
|
||||
"m_bUseCurveForFrequency": 184,
|
||||
"m_bUseCurveForResonance": 256,
|
||||
"m_flFrequency": 188,
|
||||
"m_flGainInDecibels": 332,
|
||||
"m_flResonance": 260,
|
||||
"m_frequencySweep": 192,
|
||||
"m_gainSweep": 336,
|
||||
"m_resonanceSweep": 264
|
||||
"m_bUseCurveForAmplitude": 336,
|
||||
"m_bUseCurveForFrequency": 192,
|
||||
"m_bUseCurveForResonance": 264,
|
||||
"m_flFrequency": 196,
|
||||
"m_flGainInDecibels": 340,
|
||||
"m_flResonance": 268,
|
||||
"m_frequencySweep": 200,
|
||||
"m_gainSweep": 344,
|
||||
"m_resonanceSweep": 272
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -827,11 +810,11 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerStaticAdditiveSynth": {
|
||||
"fields": {
|
||||
"m_tones": 184
|
||||
"m_tones": 192
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -847,7 +830,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"CVoiceContainerStaticAdditiveSynth__CGainScalePerInstance": {
|
||||
"fields": {
|
||||
@@ -898,7 +881,7 @@
|
||||
},
|
||||
"CVoiceContainerSwitch": {
|
||||
"fields": {
|
||||
"m_soundsToPlay": 184
|
||||
"m_soundsToPlay": 192
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -914,7 +897,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "CVoiceContainerBase"
|
||||
},
|
||||
"SelectedEditItemInfo_t": {
|
||||
"fields": {
|
||||
@@ -963,34 +946,6 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"VMixBoxverb2Desc_t": {
|
||||
"fields": {
|
||||
"m_bParallel": 24,
|
||||
"m_filterType": 28,
|
||||
"m_flComplexity": 8,
|
||||
"m_flDepth": 52,
|
||||
"m_flDiffusion": 12,
|
||||
"m_flFeedbackDepth": 68,
|
||||
"m_flFeedbackHeight": 64,
|
||||
"m_flFeedbackScale": 56,
|
||||
"m_flFeedbackWidth": 60,
|
||||
"m_flHeight": 48,
|
||||
"m_flModDepth": 16,
|
||||
"m_flModRate": 20,
|
||||
"m_flOutputGain": 72,
|
||||
"m_flSizeMax": 0,
|
||||
"m_flSizeMin": 4,
|
||||
"m_flTaps": 76,
|
||||
"m_flWidth": 44
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"VMixBoxverbDesc_t": {
|
||||
"fields": {
|
||||
"m_bParallel": 24,
|
||||
@@ -1071,22 +1026,6 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"VMixDualCompressorDesc_t": {
|
||||
"fields": {
|
||||
"m_bPeakMode": 12,
|
||||
"m_bandDesc": 16,
|
||||
"m_flRMSTimeMS": 0,
|
||||
"m_flWetMix": 8,
|
||||
"m_fldbKneeWidth": 4
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"VMixDynamics3BandDesc_t": {
|
||||
"fields": {
|
||||
"m_bPeakMode": 32,
|
||||
@@ -1392,6 +1331,22 @@
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"ActionType_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"SOS_ACTION_COUNT_ENVELOPE": 7,
|
||||
"SOS_ACTION_LIMITER": 1,
|
||||
"SOS_ACTION_NONE": 0,
|
||||
"SOS_ACTION_SET_SOUNDEVENT_PARAM": 4,
|
||||
"SOS_ACTION_SOUNDEVENT_CLUSTER": 5,
|
||||
"SOS_ACTION_SOUNDEVENT_COUNT": 8,
|
||||
"SOS_ACTION_SOUNDEVENT_MIN_MAX_VALUES": 9,
|
||||
"SOS_ACTION_SOUNDEVENT_PRIORITY": 6,
|
||||
"SOS_ACTION_TIME_BLOCK_LIMITER": 3,
|
||||
"SOS_ACTION_TIME_LIMIT": 2
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"CVSoundFormat_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
@@ -1451,19 +1406,11 @@
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"SosActionLimitSortType_t": {
|
||||
"SosActionSortType_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"SOS_LIMIT_SORTTYPE_HIGHEST": 0,
|
||||
"SOS_LIMIT_SORTTYPE_LOWEST": 1
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"SosActionSetParamSortType_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"SOS_SETPARAM_SORTTYPE_HIGHEST": 0,
|
||||
"SOS_SETPARAM_SORTTYPE_LOWEST": 1
|
||||
"SOS_SORTTYPE_HIGHEST": 0,
|
||||
"SOS_SORTTYPE_LOWEST": 1
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
@@ -1488,15 +1435,6 @@
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"SosGroupFieldBehavior_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"kBranch": 1,
|
||||
"kIgnore": 0,
|
||||
"kMatch": 2
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"SosGroupType_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
@@ -1548,51 +1486,6 @@
|
||||
},
|
||||
"type": "uint16"
|
||||
},
|
||||
"VMixGraphCommandID_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"CMD_BLEND_VSNDS_TO_IMPULSERESPONSE": 37,
|
||||
"CMD_CONTROL_COND_COPY_IF_NEGATIVE": 8,
|
||||
"CMD_CONTROL_COPY": 7,
|
||||
"CMD_CONTROL_EVALUATE_CURVE": 6,
|
||||
"CMD_CONTROL_EVAL_ENVELOPE": 15,
|
||||
"CMD_CONTROL_INCREMENT_TIMER": 14,
|
||||
"CMD_CONTROL_INPUT_STORE": 1,
|
||||
"CMD_CONTROL_INPUT_STORE_DB": 2,
|
||||
"CMD_CONTROL_MAX": 12,
|
||||
"CMD_CONTROL_OUTPUT_STORE": 5,
|
||||
"CMD_CONTROL_REMAP_LINEAR": 9,
|
||||
"CMD_CONTROL_REMAP_LOGLINEAR": 11,
|
||||
"CMD_CONTROL_REMAP_SINE": 10,
|
||||
"CMD_CONTROL_RESET_TIMER": 13,
|
||||
"CMD_CONTROL_SINE_BLEND": 16,
|
||||
"CMD_CONTROL_TRANSIENT_INPUT_RESET": 4,
|
||||
"CMD_CONTROL_TRANSIENT_INPUT_STORE": 3,
|
||||
"CMD_IMPULSERESPONSE_DELAY": 38,
|
||||
"CMD_IMPULSERESPONSE_INPUT_STORE": 33,
|
||||
"CMD_IMPULSERESPONSE_RESET": 36,
|
||||
"CMD_INVALID": -1,
|
||||
"CMD_PROCESSOR_SET_CONTROL_ARRAYVALUE": 19,
|
||||
"CMD_PROCESSOR_SET_CONTROL_VALUE": 17,
|
||||
"CMD_PROCESSOR_SET_IMPULSERESPONSE_VALUE": 34,
|
||||
"CMD_PROCESSOR_SET_NAME_INPUT": 18,
|
||||
"CMD_PROCESSOR_SET_VSND_VALUE": 21,
|
||||
"CMD_PROCESSOR_STORE_CONTROL_VALUE": 20,
|
||||
"CMD_REMAP_VSND_TO_IMPULSERESPONSE": 35,
|
||||
"CMD_SUBMIX_ACCUMULATE": 30,
|
||||
"CMD_SUBMIX_COPY": 29,
|
||||
"CMD_SUBMIX_DEBUG": 25,
|
||||
"CMD_SUBMIX_GENERATE": 23,
|
||||
"CMD_SUBMIX_GENERATE_SIDECHAIN": 24,
|
||||
"CMD_SUBMIX_METER": 31,
|
||||
"CMD_SUBMIX_METER_SPECTRUM": 32,
|
||||
"CMD_SUBMIX_MIX2x1": 26,
|
||||
"CMD_SUBMIX_OUTPUT": 27,
|
||||
"CMD_SUBMIX_OUTPUTx2": 28,
|
||||
"CMD_SUBMIX_PROCESS": 22
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"VMixLFOShape_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
@@ -1615,38 +1508,36 @@
|
||||
"VMixProcessorType_t": {
|
||||
"alignment": 2,
|
||||
"members": {
|
||||
"VPROCESSOR_AUTOFILTER": 25,
|
||||
"VPROCESSOR_AUTOFILTER": 23,
|
||||
"VPROCESSOR_BOXVERB": 8,
|
||||
"VPROCESSOR_BOXVERB2": 9,
|
||||
"VPROCESSOR_CONVOLUTION": 18,
|
||||
"VPROCESSOR_CONVOLUTION": 17,
|
||||
"VPROCESSOR_DELAY": 5,
|
||||
"VPROCESSOR_DIFFUSOR": 7,
|
||||
"VPROCESSOR_DUAL_COMPRESSOR": 19,
|
||||
"VPROCESSOR_DYNAMICS": 3,
|
||||
"VPROCESSOR_DYNAMICS_3BAND": 20,
|
||||
"VPROCESSOR_DYNAMICS_COMPRESSOR": 21,
|
||||
"VPROCESSOR_EFFECT_CHAIN": 28,
|
||||
"VPROCESSOR_ENVELOPE": 16,
|
||||
"VPROCESSOR_EQ8": 15,
|
||||
"VPROCESSOR_FILTER": 13,
|
||||
"VPROCESSOR_FREEVERB": 10,
|
||||
"VPROCESSOR_FULLWAVE_INTEGRATOR": 12,
|
||||
"VPROCESSOR_DYNAMICS_3BAND": 18,
|
||||
"VPROCESSOR_DYNAMICS_COMPRESSOR": 19,
|
||||
"VPROCESSOR_EFFECT_CHAIN": 26,
|
||||
"VPROCESSOR_ENVELOPE": 15,
|
||||
"VPROCESSOR_EQ8": 14,
|
||||
"VPROCESSOR_FILTER": 12,
|
||||
"VPROCESSOR_FREEVERB": 9,
|
||||
"VPROCESSOR_FULLWAVE_INTEGRATOR": 11,
|
||||
"VPROCESSOR_MOD_DELAY": 6,
|
||||
"VPROCESSOR_OSC": 26,
|
||||
"VPROCESSOR_PANNER": 23,
|
||||
"VPROCESSOR_PLATEVERB": 11,
|
||||
"VPROCESSOR_OSC": 24,
|
||||
"VPROCESSOR_PANNER": 21,
|
||||
"VPROCESSOR_PLATEVERB": 10,
|
||||
"VPROCESSOR_PRESETDSP": 4,
|
||||
"VPROCESSOR_RT_PITCH": 1,
|
||||
"VPROCESSOR_SHAPER": 22,
|
||||
"VPROCESSOR_STEAMAUDIO_DIRECT": 30,
|
||||
"VPROCESSOR_SHAPER": 20,
|
||||
"VPROCESSOR_STEAMAUDIO_DIRECT": 28,
|
||||
"VPROCESSOR_STEAMAUDIO_HRTF": 2,
|
||||
"VPROCESSOR_STEAMAUDIO_HYBRIDREVERB": 31,
|
||||
"VPROCESSOR_STEAMAUDIO_PATHING": 14,
|
||||
"VPROCESSOR_STEREODELAY": 27,
|
||||
"VPROCESSOR_SUBGRAPH_SWITCH": 29,
|
||||
"VPROCESSOR_STEAMAUDIO_HYBRIDREVERB": 29,
|
||||
"VPROCESSOR_STEAMAUDIO_PATHING": 13,
|
||||
"VPROCESSOR_STEREODELAY": 25,
|
||||
"VPROCESSOR_SUBGRAPH_SWITCH": 27,
|
||||
"VPROCESSOR_UNKNOWN": 0,
|
||||
"VPROCESSOR_UTILITY": 24,
|
||||
"VPROCESSOR_VOCODER": 17
|
||||
"VPROCESSOR_UTILITY": 22,
|
||||
"VPROCESSOR_VOCODER": 16
|
||||
},
|
||||
"type": "uint16"
|
||||
},
|
||||
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 @@
|
||||
{
|
||||
"vphysics2.dll": {
|
||||
"libvphysics2.so": {
|
||||
"classes": {
|
||||
"CFeIndexedJiggleBone": {
|
||||
"fields": {
|
||||
@@ -177,19 +177,6 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"FeAntiTunnelGroupBuild_t": {
|
||||
"fields": {
|
||||
"m_nCollisionMask": 4,
|
||||
"m_nVertexMapHash": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"FeAntiTunnelProbeBuild_t": {
|
||||
"fields": {
|
||||
"flActivationDistance": 4,
|
||||
@@ -276,9 +263,8 @@
|
||||
},
|
||||
"FeBuildBoxRigid_t": {
|
||||
"fields": {
|
||||
"m_nAntitunnelGroupBits": 72,
|
||||
"m_nPriority": 64,
|
||||
"m_nVertexMapHash": 68
|
||||
"m_nPriority": 52,
|
||||
"m_nVertexMapHash": 56
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -286,13 +272,12 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "FeBoxRigid_t"
|
||||
},
|
||||
"FeBuildSDFRigid_t": {
|
||||
"fields": {
|
||||
"m_nAntitunnelGroupBits": 88,
|
||||
"m_nPriority": 80,
|
||||
"m_nVertexMapHash": 84
|
||||
"m_nPriority": 76,
|
||||
"m_nVertexMapHash": 80
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -300,11 +285,10 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "FeSDFRigid_t"
|
||||
},
|
||||
"FeBuildSphereRigid_t": {
|
||||
"fields": {
|
||||
"m_nAntitunnelGroupBits": 40,
|
||||
"m_nPriority": 32,
|
||||
"m_nVertexMapHash": 36
|
||||
},
|
||||
@@ -314,11 +298,10 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "FeSphereRigid_t"
|
||||
},
|
||||
"FeBuildTaperedCapsuleRigid_t": {
|
||||
"fields": {
|
||||
"m_nAntitunnelGroupBits": 56,
|
||||
"m_nPriority": 48,
|
||||
"m_nVertexMapHash": 52
|
||||
},
|
||||
@@ -328,7 +311,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "FeTaperedCapsuleRigid_t"
|
||||
},
|
||||
"FeCollisionPlane_t": {
|
||||
"fields": {
|
||||
@@ -387,19 +370,6 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"FeDynKinLink_t": {
|
||||
"fields": {
|
||||
"m_nChild": 2,
|
||||
"m_nParent": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"FeEdgeDesc_t": {
|
||||
"fields": {
|
||||
"nEdge": 0,
|
||||
@@ -1077,103 +1047,101 @@
|
||||
},
|
||||
"PhysFeModelDesc_t": {
|
||||
"fields": {
|
||||
"m_AnimStrayRadii": 1104,
|
||||
"m_AntiTunnelBytecode": 384,
|
||||
"m_AntiTunnelProbes": 432,
|
||||
"m_AntiTunnelTargetNodes": 456,
|
||||
"m_AxialEdges": 480,
|
||||
"m_BoxRigids": 1328,
|
||||
"m_CollisionPlanes": 600,
|
||||
"m_AnimStrayRadii": 1056,
|
||||
"m_AntiTunnelProbes": 384,
|
||||
"m_AntiTunnelTargetNodes": 408,
|
||||
"m_AxialEdges": 432,
|
||||
"m_BoxRigids": 1280,
|
||||
"m_CollisionPlanes": 552,
|
||||
"m_CtrlHash": 0,
|
||||
"m_CtrlName": 24,
|
||||
"m_CtrlOffsets": 528,
|
||||
"m_CtrlOsOffsets": 552,
|
||||
"m_CtrlSoftOffsets": 1176,
|
||||
"m_DynKinLinks": 408,
|
||||
"m_DynNodeFriction": 768,
|
||||
"m_DynNodeVertexSet": 1352,
|
||||
"m_DynNodeWindBases": 1616,
|
||||
"m_Effects": 1520,
|
||||
"m_FitMatrices": 1032,
|
||||
"m_FitWeights": 1056,
|
||||
"m_FollowNodes": 576,
|
||||
"m_FreeNodes": 1008,
|
||||
"m_GoalDampedSpringIntegrators": 1248,
|
||||
"m_CtrlOffsets": 480,
|
||||
"m_CtrlOsOffsets": 504,
|
||||
"m_CtrlSoftOffsets": 1128,
|
||||
"m_DynNodeFriction": 720,
|
||||
"m_DynNodeVertexSet": 1304,
|
||||
"m_DynNodeWindBases": 1568,
|
||||
"m_Effects": 1472,
|
||||
"m_FitMatrices": 984,
|
||||
"m_FitWeights": 1008,
|
||||
"m_FollowNodes": 528,
|
||||
"m_FreeNodes": 960,
|
||||
"m_GoalDampedSpringIntegrators": 1200,
|
||||
"m_HingeLimits": 360,
|
||||
"m_InitPose": 288,
|
||||
"m_JiggleBones": 1200,
|
||||
"m_KelagerBends": 1152,
|
||||
"m_LegacyStretchForce": 720,
|
||||
"m_LocalForce": 816,
|
||||
"m_LocalRotation": 792,
|
||||
"m_LockToGoal": 1568,
|
||||
"m_LockToParent": 1544,
|
||||
"m_MorphLayers": 1424,
|
||||
"m_MorphSetData": 1448,
|
||||
"m_JiggleBones": 1152,
|
||||
"m_KelagerBends": 1104,
|
||||
"m_LegacyStretchForce": 672,
|
||||
"m_LocalForce": 768,
|
||||
"m_LocalRotation": 744,
|
||||
"m_LockToGoal": 1520,
|
||||
"m_LockToParent": 1496,
|
||||
"m_MorphLayers": 1376,
|
||||
"m_MorphSetData": 1400,
|
||||
"m_NodeBases": 120,
|
||||
"m_NodeCollisionRadii": 744,
|
||||
"m_NodeIntegrator": 624,
|
||||
"m_NodeInvMasses": 504,
|
||||
"m_NodeCollisionRadii": 696,
|
||||
"m_NodeIntegrator": 576,
|
||||
"m_NodeInvMasses": 456,
|
||||
"m_Quads": 168,
|
||||
"m_ReverseOffsets": 1080,
|
||||
"m_RigidColliderPriorities": 1400,
|
||||
"m_ReverseOffsets": 1032,
|
||||
"m_RigidColliderPriorities": 1352,
|
||||
"m_Rods": 312,
|
||||
"m_Ropes": 96,
|
||||
"m_SDFRigids": 1304,
|
||||
"m_SimdAnimStrayRadii": 1128,
|
||||
"m_SDFRigids": 1256,
|
||||
"m_SimdAnimStrayRadii": 1080,
|
||||
"m_SimdNodeBases": 144,
|
||||
"m_SimdQuads": 192,
|
||||
"m_SimdRods": 240,
|
||||
"m_SimdRodsAnim": 264,
|
||||
"m_SimdSpringIntegrator": 672,
|
||||
"m_SimdSpringIntegrator": 624,
|
||||
"m_SimdTris": 216,
|
||||
"m_SkelParents": 1592,
|
||||
"m_SourceElems": 1224,
|
||||
"m_SphereRigids": 888,
|
||||
"m_SpringIntegrator": 648,
|
||||
"m_TaperedCapsuleRigids": 864,
|
||||
"m_TaperedCapsuleStretches": 840,
|
||||
"m_TreeChildren": 984,
|
||||
"m_TreeCollisionMasks": 960,
|
||||
"m_TreeParents": 936,
|
||||
"m_Tris": 1272,
|
||||
"m_SkelParents": 1544,
|
||||
"m_SourceElems": 1176,
|
||||
"m_SphereRigids": 840,
|
||||
"m_SpringIntegrator": 600,
|
||||
"m_TaperedCapsuleRigids": 816,
|
||||
"m_TaperedCapsuleStretches": 792,
|
||||
"m_TreeChildren": 936,
|
||||
"m_TreeCollisionMasks": 912,
|
||||
"m_TreeParents": 888,
|
||||
"m_Tris": 1224,
|
||||
"m_Twists": 336,
|
||||
"m_VertexMapValues": 1496,
|
||||
"m_VertexMaps": 1472,
|
||||
"m_VertexSetNames": 1376,
|
||||
"m_WorldCollisionNodes": 912,
|
||||
"m_WorldCollisionParams": 696,
|
||||
"m_flAddWorldCollisionRadius": 1692,
|
||||
"m_flDefaultExpAirDrag": 1672,
|
||||
"m_flDefaultExpQuadAirDrag": 1680,
|
||||
"m_flDefaultGravityScale": 1664,
|
||||
"m_flDefaultSurfaceStretch": 1656,
|
||||
"m_flDefaultThreadStretch": 1660,
|
||||
"m_flDefaultTimeDilation": 1644,
|
||||
"m_flDefaultVelAirDrag": 1668,
|
||||
"m_flDefaultVelQuadAirDrag": 1676,
|
||||
"m_flDefaultVolumetricSolveAmount": 1696,
|
||||
"m_flInternalPressure": 1640,
|
||||
"m_flLocalDrag1": 1704,
|
||||
"m_VertexMapValues": 1448,
|
||||
"m_VertexMaps": 1424,
|
||||
"m_VertexSetNames": 1328,
|
||||
"m_WorldCollisionNodes": 864,
|
||||
"m_WorldCollisionParams": 648,
|
||||
"m_flAddWorldCollisionRadius": 1644,
|
||||
"m_flDefaultExpAirDrag": 1624,
|
||||
"m_flDefaultExpQuadAirDrag": 1632,
|
||||
"m_flDefaultGravityScale": 1616,
|
||||
"m_flDefaultSurfaceStretch": 1608,
|
||||
"m_flDefaultThreadStretch": 1612,
|
||||
"m_flDefaultTimeDilation": 1596,
|
||||
"m_flDefaultVelAirDrag": 1620,
|
||||
"m_flDefaultVelQuadAirDrag": 1628,
|
||||
"m_flDefaultVolumetricSolveAmount": 1648,
|
||||
"m_flInternalPressure": 1592,
|
||||
"m_flLocalDrag1": 1656,
|
||||
"m_flLocalForce": 56,
|
||||
"m_flLocalRotation": 60,
|
||||
"m_flMotionSmoothCDT": 1700,
|
||||
"m_flQuadVelocitySmoothRate": 1688,
|
||||
"m_flRodVelocitySmoothRate": 1684,
|
||||
"m_flWindDrag": 1652,
|
||||
"m_flWindage": 1648,
|
||||
"m_flMotionSmoothCDT": 1652,
|
||||
"m_flQuadVelocitySmoothRate": 1640,
|
||||
"m_flRodVelocitySmoothRate": 1636,
|
||||
"m_flWindDrag": 1604,
|
||||
"m_flWindage": 1600,
|
||||
"m_nDynamicNodeFlags": 52,
|
||||
"m_nExtraGoalIterations": 1302,
|
||||
"m_nExtraIterations": 1303,
|
||||
"m_nExtraPressureIterations": 1301,
|
||||
"m_nExtraGoalIterations": 1254,
|
||||
"m_nExtraIterations": 1255,
|
||||
"m_nExtraPressureIterations": 1253,
|
||||
"m_nFirstPositionDrivenNode": 70,
|
||||
"m_nNodeBaseJiggleboneDependsCount": 86,
|
||||
"m_nNodeCount": 64,
|
||||
"m_nQuadCount1": 80,
|
||||
"m_nQuadCount2": 82,
|
||||
"m_nQuadVelocitySmoothIterations": 1710,
|
||||
"m_nReservedUint8": 1300,
|
||||
"m_nRodVelocitySmoothIterations": 1708,
|
||||
"m_nQuadVelocitySmoothIterations": 1662,
|
||||
"m_nReservedUint8": 1252,
|
||||
"m_nRodVelocitySmoothIterations": 1660,
|
||||
"m_nRopeCount": 88,
|
||||
"m_nRotLockStaticNodes": 68,
|
||||
"m_nSimdQuadCount1": 76,
|
||||
@@ -1183,8 +1151,8 @@
|
||||
"m_nStaticNodeFlags": 48,
|
||||
"m_nStaticNodes": 66,
|
||||
"m_nTreeDepth": 84,
|
||||
"m_nTriCount1": 1296,
|
||||
"m_nTriCount2": 1298
|
||||
"m_nTriCount1": 1248,
|
||||
"m_nTriCount2": 1250
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -1194,13 +1162,6 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"PhysicsParticleId_t": {
|
||||
"fields": {
|
||||
"m_Value": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"RnBlendVertex_t": {
|
||||
"fields": {
|
||||
"m_nFlags": 12,
|
||||
@@ -1223,39 +1184,37 @@
|
||||
"RnBodyDesc_t": {
|
||||
"fields": {
|
||||
"m_LocalInertiaInv": 72,
|
||||
"m_bBuoyancyDragEnabled": 203,
|
||||
"m_bDragEnabled": 202,
|
||||
"m_bEnabled": 199,
|
||||
"m_bHasShadowController": 217,
|
||||
"m_bIsContinuousEnabled": 201,
|
||||
"m_bSleeping": 200,
|
||||
"m_bSpeculativeEnabled": 216,
|
||||
"m_flAngularBuoyancyDrag": 144,
|
||||
"m_flAngularDamping": 128,
|
||||
"m_flAngularDrag": 136,
|
||||
"m_flBuoyancyFactor": 172,
|
||||
"m_bBuoyancyDragEnabled": 199,
|
||||
"m_bDragEnabled": 198,
|
||||
"m_bEnabled": 195,
|
||||
"m_bGravityDisabled": 200,
|
||||
"m_bHasShadowController": 202,
|
||||
"m_bIsContinuousEnabled": 197,
|
||||
"m_bSleeping": 196,
|
||||
"m_bSpeculativeEnabled": 201,
|
||||
"m_flAngularBuoyancyDrag": 140,
|
||||
"m_flAngularDamping": 124,
|
||||
"m_flAngularDrag": 132,
|
||||
"m_flBuoyancyFactor": 168,
|
||||
"m_flGameMass": 112,
|
||||
"m_flGravityScale": 176,
|
||||
"m_flInertiaScaleInv": 120,
|
||||
"m_flLinearBuoyancyDrag": 140,
|
||||
"m_flLinearDamping": 124,
|
||||
"m_flLinearDrag": 132,
|
||||
"m_flGravityScale": 172,
|
||||
"m_flInertiaScaleInv": 116,
|
||||
"m_flLinearBuoyancyDrag": 136,
|
||||
"m_flLinearDamping": 120,
|
||||
"m_flLinearDrag": 128,
|
||||
"m_flMassInv": 108,
|
||||
"m_flMassScaleInv": 116,
|
||||
"m_flTimeScale": 180,
|
||||
"m_nBodyType": 184,
|
||||
"m_nDynamicContinuousContactBehavior": 218,
|
||||
"m_nGameFlags": 192,
|
||||
"m_nGameIndex": 188,
|
||||
"m_nMassPriority": 198,
|
||||
"m_nMinPositionIterations": 197,
|
||||
"m_nMinVelocityIterations": 196,
|
||||
"m_flTimeScale": 176,
|
||||
"m_nBodyType": 180,
|
||||
"m_nGameFlags": 188,
|
||||
"m_nGameIndex": 184,
|
||||
"m_nMassPriority": 194,
|
||||
"m_nMinPositionIterations": 193,
|
||||
"m_nMinVelocityIterations": 192,
|
||||
"m_qOrientation": 20,
|
||||
"m_sDebugName": 0,
|
||||
"m_vAngularVelocity": 48,
|
||||
"m_vGravity": 204,
|
||||
"m_vLastAwakeForceAccum": 148,
|
||||
"m_vLastAwakeTorqueAccum": 160,
|
||||
"m_vLastAwakeForceAccum": 144,
|
||||
"m_vLastAwakeTorqueAccum": 156,
|
||||
"m_vLinearVelocity": 36,
|
||||
"m_vLocalMassCenter": 60,
|
||||
"m_vPosition": 8
|
||||
@@ -1278,7 +1237,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "RnShapeDesc_t"
|
||||
},
|
||||
"RnCapsule_t": {
|
||||
"fields": {
|
||||
@@ -1330,7 +1289,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "RnShapeDesc_t"
|
||||
},
|
||||
"RnHull_t": {
|
||||
"fields": {
|
||||
@@ -1367,21 +1326,20 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "RnShapeDesc_t"
|
||||
},
|
||||
"RnMesh_t": {
|
||||
"fields": {
|
||||
"m_Materials": 144,
|
||||
"m_Materials": 120,
|
||||
"m_Nodes": 24,
|
||||
"m_TriangleEdgeFlags": 120,
|
||||
"m_Triangles": 72,
|
||||
"m_Vertices": 48,
|
||||
"m_Wings": 96,
|
||||
"m_nDebugFlags": 184,
|
||||
"m_nFlags": 180,
|
||||
"m_nDebugFlags": 160,
|
||||
"m_nFlags": 156,
|
||||
"m_vMax": 12,
|
||||
"m_vMin": 0,
|
||||
"m_vOrthographicAreas": 168
|
||||
"m_vOrthographicAreas": 144
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -1485,7 +1443,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "RnShapeDesc_t"
|
||||
},
|
||||
"RnTriangle_t": {
|
||||
"fields": {
|
||||
@@ -1571,7 +1529,7 @@
|
||||
},
|
||||
"vphysics_save_cphysicsbody_t": {
|
||||
"fields": {
|
||||
"m_nOldPointer": 224
|
||||
"m_nOldPointer": 208
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -1579,19 +1537,10 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "RnBodyDesc_t"
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"DynamicContinuousContactBehavior_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
"DYNAMIC_CONTINUOUS_ALLOW_IF_REQUESTED_BY_OTHER_BODY": 0,
|
||||
"DYNAMIC_CONTINUOUS_ALWAYS": 1,
|
||||
"DYNAMIC_CONTINUOUS_NEVER": 2
|
||||
},
|
||||
"type": "uint8"
|
||||
},
|
||||
"JointAxis_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,13 +1,13 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: worldrenderer.dll
|
||||
// Class count: 25
|
||||
// Enum count: 2
|
||||
public static class WorldrendererDll {
|
||||
// Module: libworldrenderer.so
|
||||
// Classes count: 23
|
||||
// Enums count: 1
|
||||
public static class LibworldrendererSo {
|
||||
// Alignment: 4
|
||||
// Member count: 15
|
||||
// Members count: 15
|
||||
public enum ObjectTypeFlags_t : uint {
|
||||
OBJECT_TYPE_NONE = 0x0,
|
||||
OBJECT_TYPE_MODEL = 0x8,
|
||||
@@ -25,24 +25,8 @@ namespace CS2Dumper.Schemas {
|
||||
OBJECT_TYPE_DISABLE_VIS_CULLING = 0x10000,
|
||||
OBJECT_TYPE_BAKED_GEOMETRY = 0x20000
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 4
|
||||
public enum AggregateInstanceStream_t : byte {
|
||||
AGGREGATE_INSTANCE_STREAM_NONE = 0x0,
|
||||
AGGREGATE_INSTANCE_STREAM_LIGHTMAPUV_UNORM16 = 0x1,
|
||||
AGGREGATE_INSTANCE_STREAM_VERTEXTINT_UNORM8 = 0x2,
|
||||
AGGREGATE_INSTANCE_STREAM_VERTEXBLEND_UNORM8 = 0x4
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class AggregateVertexAlbedoStreamOnDiskData_t {
|
||||
public const nint m_BufferData = 0x0; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
// Fields count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -63,7 +47,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_renderable = 0x80; // CStrongHandle<InfoForResourceTypeCRenderMesh>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -72,8 +56,8 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_fMaxObjectScale = 0xC; // float32
|
||||
public const nint m_fSwitchDistances = 0x10; // CUtlVector<float32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Parent: BaseSceneObjectOverride_t
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -84,7 +68,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_extraBufferBinding = 0x10; // CRenderBufferBinding
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -94,7 +78,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_BoundsWs = 0x8; // AABB_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
// Fields count: 8
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -102,8 +86,6 @@ namespace CS2Dumper.Schemas {
|
||||
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_instanceStream = 0xA; // int16
|
||||
public const nint m_vertexAlbedoStream = 0xC; // 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>
|
||||
@@ -111,7 +93,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_renderableModel = 0x70; // CStrongHandle<InfoForResourceTypeCModel>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
// Fields count: 7
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -125,20 +107,11 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_worldNodePrefix = 0x48; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
public static class VMapResourceData_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class AggregateInstanceStreamOnDiskData_t {
|
||||
public const nint m_DecodedSize = 0x0; // uint32
|
||||
public const nint m_BufferData = 0x8; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 11
|
||||
// Fields count: 8
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -151,25 +124,21 @@ namespace CS2Dumper.Schemas {
|
||||
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>
|
||||
public const nint m_materialGroup = 0xA0; // CUtlStringToken
|
||||
public const nint m_flBeginCullSize = 0xA4; // float32
|
||||
public const nint m_flEndCullSize = 0xA8; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// 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_bAggregateInstanceStreams = 0x5; // bool
|
||||
public const nint m_bakedLightingInfo = 0x8; // BakedLightingInfo_t
|
||||
public const nint m_nCompileTimestamp = 0x50; // uint64
|
||||
public const nint m_nCompileFingerprint = 0x58; // uint64
|
||||
public const nint m_nCompileTimestamp = 0x38; // uint64
|
||||
public const nint m_nCompileFingerprint = 0x40; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -179,28 +148,28 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_entityKeyValues = 0x28; // CUtlLeanVector<EntityKeyValueData_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
// Fields count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class WorldNode_t {
|
||||
public const nint m_sceneObjects = 0x0; // CUtlVector<SceneObject_t>
|
||||
public const nint m_visClusterMembership = 0x18; // CUtlVector<uint16>
|
||||
public const nint m_aggregateSceneObjects = 0x30; // CUtlVector<AggregateSceneObject_t>
|
||||
public const nint m_clutterSceneObjects = 0x48; // CUtlVector<ClutterSceneObject_t>
|
||||
public const nint m_extraVertexStreamOverrides = 0x60; // CUtlVector<ExtraVertexStreamOverride_t>
|
||||
public const nint m_materialOverrides = 0x78; // CUtlVector<MaterialOverride_t>
|
||||
public const nint m_extraVertexStreams = 0x90; // CUtlVector<WorldNodeOnDiskBufferData_t>
|
||||
public const nint m_aggregateInstanceStreams = 0xA8; // CUtlVector<AggregateInstanceStreamOnDiskData_t>
|
||||
public const nint m_vertexAlbedoStreams = 0xC0; // CUtlVector<AggregateVertexAlbedoStreamOnDiskData_t>
|
||||
public const nint m_layerNames = 0xD8; // CUtlVector<CUtlString>
|
||||
public const nint m_sceneObjectLayerIndices = 0xF0; // CUtlVector<uint8>
|
||||
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
|
||||
public const nint m_bHasBakedGeometryFlag = 0x158; // bool
|
||||
public const nint m_bHasBakedGeometryFlag = 0x140; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -208,7 +177,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nSceneObjectIndex = 0x0; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 8
|
||||
// Fields count: 7
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -220,10 +189,9 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_overrideParam = 0x20; // CUtlString
|
||||
public const nint m_flDelay = 0x28; // float32
|
||||
public const nint m_nTimesToFire = 0x2C; // int32
|
||||
public const nint m_paramMap = 0x30; // KeyValues3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 11
|
||||
// Fields count: 9
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -234,14 +202,12 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_bHasLightmaps = 0x10; // bool
|
||||
public const nint m_bBakedShadowsGamma20 = 0x11; // bool
|
||||
public const nint m_bCompressionEnabled = 0x12; // bool
|
||||
public const nint m_bSHLightmaps = 0x13; // bool
|
||||
public const nint m_nChartPackIterations = 0x14; // uint8
|
||||
public const nint m_nVradQuality = 0x15; // uint8
|
||||
public const nint m_nChartPackIterations = 0x13; // uint8
|
||||
public const nint m_nVradQuality = 0x14; // uint8
|
||||
public const nint m_lightMaps = 0x18; // CUtlVector<CStrongHandle<InfoForResourceTypeCTextureBase>>
|
||||
public const nint m_bakedShadows = 0x30; // CUtlVector<BakedLightingInfo_t::BakedShadowAssignment_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -250,14 +216,14 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nElementCount = 0x4; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeVMapResourceData_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -268,7 +234,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_pData = 0x20; // CUtlVector<uint8>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 12
|
||||
// Fields count: 9
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -276,39 +242,43 @@ namespace CS2Dumper.Schemas {
|
||||
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_nLODGroupMask = 0x6; // uint8
|
||||
public const nint m_nDrawCallIndex = 0x8; // int16
|
||||
public const nint m_nLODSetupIndex = 0xA; // int16
|
||||
public const nint m_vTintColor = 0xC; // Color
|
||||
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
|
||||
public const nint m_nInstanceStreamOffset = 0x18; // uint32
|
||||
public const nint m_nVertexAlbedoStreamOffset = 0x1C; // uint32
|
||||
public const nint m_instanceStreams = 0x20; // AggregateInstanceStream_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class World_t {
|
||||
public const nint m_builderParams = 0x0; // WorldBuilderParams_t
|
||||
public const nint m_worldNodes = 0x60; // CUtlVector<NodeData_t>
|
||||
public const nint m_worldLightingInfo = 0x78; // BakedLightingInfo_t
|
||||
public const nint m_entityLumps = 0xC0; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||
public const nint m_worldNodes = 0x48; // CUtlVector<NodeData_t>
|
||||
public const nint m_worldLightingInfo = 0x60; // BakedLightingInfo_t
|
||||
public const nint m_entityLumps = 0x90; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class BakedLightingInfo_t__BakedShadowAssignment_t {
|
||||
public const nint m_nLightHash = 0x0; // uint32
|
||||
public const nint m_nMapHash = 0x4; // uint32
|
||||
public const nint m_nShadowChannel = 0x8; // int8
|
||||
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
|
||||
// Field count: 4
|
||||
// Parent: BaseSceneObjectOverride_t
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -316,10 +286,9 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nSubSceneObject = 0x4; // uint32
|
||||
public const nint m_nDrawCallIndex = 0x8; // uint32
|
||||
public const nint m_pMaterial = 0x10; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
||||
public const nint m_vLinearTintColor = 0x18; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -328,7 +297,7 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_keyValuesData = 0x20; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 13
|
||||
// Fields count: 13
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: worldrenderer.dll
|
||||
// Class count: 25
|
||||
// Enum count: 2
|
||||
namespace worldrenderer_dll {
|
||||
// Module: libworldrenderer.so
|
||||
// Classes count: 23
|
||||
// Enums count: 1
|
||||
namespace libworldrenderer_so {
|
||||
// Alignment: 4
|
||||
// Member count: 15
|
||||
// Members count: 15
|
||||
enum class ObjectTypeFlags_t : uint32_t {
|
||||
OBJECT_TYPE_NONE = 0x0,
|
||||
OBJECT_TYPE_MODEL = 0x8,
|
||||
@@ -30,24 +30,8 @@ namespace cs2_dumper {
|
||||
OBJECT_TYPE_DISABLE_VIS_CULLING = 0x10000,
|
||||
OBJECT_TYPE_BAKED_GEOMETRY = 0x20000
|
||||
};
|
||||
// Alignment: 1
|
||||
// Member count: 4
|
||||
enum class AggregateInstanceStream_t : uint8_t {
|
||||
AGGREGATE_INSTANCE_STREAM_NONE = 0x0,
|
||||
AGGREGATE_INSTANCE_STREAM_LIGHTMAPUV_UNORM16 = 0x1,
|
||||
AGGREGATE_INSTANCE_STREAM_VERTEXTINT_UNORM8 = 0x2,
|
||||
AGGREGATE_INSTANCE_STREAM_VERTEXBLEND_UNORM8 = 0x4
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace AggregateVertexAlbedoStreamOnDiskData_t {
|
||||
constexpr std::ptrdiff_t m_BufferData = 0x0; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
// Fields count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -68,7 +52,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_renderable = 0x80; // CStrongHandle<InfoForResourceTypeCRenderMesh>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -77,8 +61,8 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_fMaxObjectScale = 0xC; // float32
|
||||
constexpr std::ptrdiff_t m_fSwitchDistances = 0x10; // CUtlVector<float32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Parent: BaseSceneObjectOverride_t
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -89,7 +73,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_extraBufferBinding = 0x10; // CRenderBufferBinding
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -99,7 +83,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_BoundsWs = 0x8; // AABB_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
// Fields count: 8
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -107,8 +91,6 @@ namespace cs2_dumper {
|
||||
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_instanceStream = 0xA; // int16
|
||||
constexpr std::ptrdiff_t m_vertexAlbedoStream = 0xC; // 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>
|
||||
@@ -116,7 +98,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_renderableModel = 0x70; // CStrongHandle<InfoForResourceTypeCModel>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
// Fields count: 7
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -130,20 +112,11 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_worldNodePrefix = 0x48; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
namespace VMapResourceData_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace AggregateInstanceStreamOnDiskData_t {
|
||||
constexpr std::ptrdiff_t m_DecodedSize = 0x0; // uint32
|
||||
constexpr std::ptrdiff_t m_BufferData = 0x8; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 11
|
||||
// Fields count: 8
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -156,25 +129,21 @@ namespace cs2_dumper {
|
||||
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>
|
||||
constexpr std::ptrdiff_t m_materialGroup = 0xA0; // CUtlStringToken
|
||||
constexpr std::ptrdiff_t m_flBeginCullSize = 0xA4; // float32
|
||||
constexpr std::ptrdiff_t m_flEndCullSize = 0xA8; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// 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_bAggregateInstanceStreams = 0x5; // bool
|
||||
constexpr std::ptrdiff_t m_bakedLightingInfo = 0x8; // BakedLightingInfo_t
|
||||
constexpr std::ptrdiff_t m_nCompileTimestamp = 0x50; // uint64
|
||||
constexpr std::ptrdiff_t m_nCompileFingerprint = 0x58; // uint64
|
||||
constexpr std::ptrdiff_t m_nCompileTimestamp = 0x38; // uint64
|
||||
constexpr std::ptrdiff_t m_nCompileFingerprint = 0x40; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -184,28 +153,28 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_entityKeyValues = 0x28; // CUtlLeanVector<EntityKeyValueData_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
// Fields count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace WorldNode_t {
|
||||
constexpr std::ptrdiff_t m_sceneObjects = 0x0; // CUtlVector<SceneObject_t>
|
||||
constexpr std::ptrdiff_t m_visClusterMembership = 0x18; // CUtlVector<uint16>
|
||||
constexpr std::ptrdiff_t m_aggregateSceneObjects = 0x30; // CUtlVector<AggregateSceneObject_t>
|
||||
constexpr std::ptrdiff_t m_clutterSceneObjects = 0x48; // CUtlVector<ClutterSceneObject_t>
|
||||
constexpr std::ptrdiff_t m_extraVertexStreamOverrides = 0x60; // CUtlVector<ExtraVertexStreamOverride_t>
|
||||
constexpr std::ptrdiff_t m_materialOverrides = 0x78; // CUtlVector<MaterialOverride_t>
|
||||
constexpr std::ptrdiff_t m_extraVertexStreams = 0x90; // CUtlVector<WorldNodeOnDiskBufferData_t>
|
||||
constexpr std::ptrdiff_t m_aggregateInstanceStreams = 0xA8; // CUtlVector<AggregateInstanceStreamOnDiskData_t>
|
||||
constexpr std::ptrdiff_t m_vertexAlbedoStreams = 0xC0; // CUtlVector<AggregateVertexAlbedoStreamOnDiskData_t>
|
||||
constexpr std::ptrdiff_t m_layerNames = 0xD8; // CUtlVector<CUtlString>
|
||||
constexpr std::ptrdiff_t m_sceneObjectLayerIndices = 0xF0; // CUtlVector<uint8>
|
||||
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
|
||||
constexpr std::ptrdiff_t m_bHasBakedGeometryFlag = 0x158; // bool
|
||||
constexpr std::ptrdiff_t m_bHasBakedGeometryFlag = 0x140; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -213,7 +182,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_nSceneObjectIndex = 0x0; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 8
|
||||
// Fields count: 7
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -225,10 +194,9 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_overrideParam = 0x20; // CUtlString
|
||||
constexpr std::ptrdiff_t m_flDelay = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_nTimesToFire = 0x2C; // int32
|
||||
constexpr std::ptrdiff_t m_paramMap = 0x30; // KeyValues3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 11
|
||||
// Fields count: 9
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -239,14 +207,12 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_bHasLightmaps = 0x10; // bool
|
||||
constexpr std::ptrdiff_t m_bBakedShadowsGamma20 = 0x11; // bool
|
||||
constexpr std::ptrdiff_t m_bCompressionEnabled = 0x12; // bool
|
||||
constexpr std::ptrdiff_t m_bSHLightmaps = 0x13; // bool
|
||||
constexpr std::ptrdiff_t m_nChartPackIterations = 0x14; // uint8
|
||||
constexpr std::ptrdiff_t m_nVradQuality = 0x15; // uint8
|
||||
constexpr std::ptrdiff_t m_nChartPackIterations = 0x13; // uint8
|
||||
constexpr std::ptrdiff_t m_nVradQuality = 0x14; // uint8
|
||||
constexpr std::ptrdiff_t m_lightMaps = 0x18; // CUtlVector<CStrongHandle<InfoForResourceTypeCTextureBase>>
|
||||
constexpr std::ptrdiff_t m_bakedShadows = 0x30; // CUtlVector<BakedLightingInfo_t::BakedShadowAssignment_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -255,14 +221,14 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_nElementCount = 0x4; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeVMapResourceData_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -273,7 +239,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_pData = 0x20; // CUtlVector<uint8>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 12
|
||||
// Fields count: 9
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -281,39 +247,43 @@ namespace cs2_dumper {
|
||||
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_nLODGroupMask = 0x6; // uint8
|
||||
constexpr std::ptrdiff_t m_nDrawCallIndex = 0x8; // int16
|
||||
constexpr std::ptrdiff_t m_nLODSetupIndex = 0xA; // int16
|
||||
constexpr std::ptrdiff_t m_vTintColor = 0xC; // Color
|
||||
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
|
||||
constexpr std::ptrdiff_t m_nInstanceStreamOffset = 0x18; // uint32
|
||||
constexpr std::ptrdiff_t m_nVertexAlbedoStreamOffset = 0x1C; // uint32
|
||||
constexpr std::ptrdiff_t m_instanceStreams = 0x20; // AggregateInstanceStream_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace World_t {
|
||||
constexpr std::ptrdiff_t m_builderParams = 0x0; // WorldBuilderParams_t
|
||||
constexpr std::ptrdiff_t m_worldNodes = 0x60; // CUtlVector<NodeData_t>
|
||||
constexpr std::ptrdiff_t m_worldLightingInfo = 0x78; // BakedLightingInfo_t
|
||||
constexpr std::ptrdiff_t m_entityLumps = 0xC0; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||
constexpr std::ptrdiff_t m_worldNodes = 0x48; // CUtlVector<NodeData_t>
|
||||
constexpr std::ptrdiff_t m_worldLightingInfo = 0x60; // BakedLightingInfo_t
|
||||
constexpr std::ptrdiff_t m_entityLumps = 0x90; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace BakedLightingInfo_t__BakedShadowAssignment_t {
|
||||
constexpr std::ptrdiff_t m_nLightHash = 0x0; // uint32
|
||||
constexpr std::ptrdiff_t m_nMapHash = 0x4; // uint32
|
||||
constexpr std::ptrdiff_t m_nShadowChannel = 0x8; // int8
|
||||
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
|
||||
// Field count: 4
|
||||
// Parent: BaseSceneObjectOverride_t
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -321,10 +291,9 @@ namespace cs2_dumper {
|
||||
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>
|
||||
constexpr std::ptrdiff_t m_vLinearTintColor = 0x18; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -333,7 +302,7 @@ namespace cs2_dumper {
|
||||
constexpr std::ptrdiff_t m_keyValuesData = 0x20; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 13
|
||||
// Fields count: 13
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,19 +1,6 @@
|
||||
{
|
||||
"worldrenderer.dll": {
|
||||
"libworldrenderer.so": {
|
||||
"classes": {
|
||||
"AggregateInstanceStreamOnDiskData_t": {
|
||||
"fields": {
|
||||
"m_BufferData": 8,
|
||||
"m_DecodedSize": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"AggregateLODSetup_t": {
|
||||
"fields": {
|
||||
"m_fMaxObjectScale": 12,
|
||||
@@ -31,17 +18,14 @@
|
||||
"AggregateMeshInfo_t": {
|
||||
"fields": {
|
||||
"m_bHasTransform": 5,
|
||||
"m_instanceStreams": 32,
|
||||
"m_nDrawCallIndex": 8,
|
||||
"m_nInstanceStreamOffset": 24,
|
||||
"m_nLODGroupMask": 6,
|
||||
"m_nLODSetupIndex": 10,
|
||||
"m_nDrawCallIndex": 6,
|
||||
"m_nLODGroupMask": 10,
|
||||
"m_nLODSetupIndex": 8,
|
||||
"m_nLightProbeVolumePrecomputedHandshake": 20,
|
||||
"m_nVertexAlbedoStreamOffset": 28,
|
||||
"m_nVisClusterMemberCount": 4,
|
||||
"m_nVisClusterMemberOffset": 0,
|
||||
"m_objectFlags": 16,
|
||||
"m_vTintColor": 12
|
||||
"m_vTintColor": 11
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -57,11 +41,9 @@
|
||||
"m_allFlags": 0,
|
||||
"m_anyFlags": 4,
|
||||
"m_fragmentTransforms": 88,
|
||||
"m_instanceStream": 10,
|
||||
"m_lodSetups": 40,
|
||||
"m_nLayer": 8,
|
||||
"m_renderableModel": 112,
|
||||
"m_vertexAlbedoStream": 12,
|
||||
"m_visClusterMembership": 64
|
||||
},
|
||||
"metadata": [
|
||||
@@ -72,30 +54,16 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"AggregateVertexAlbedoStreamOnDiskData_t": {
|
||||
"fields": {
|
||||
"m_BufferData": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"BakedLightingInfo_t": {
|
||||
"fields": {
|
||||
"m_bBakedShadowsGamma20": 17,
|
||||
"m_bCompressionEnabled": 18,
|
||||
"m_bHasLightmaps": 16,
|
||||
"m_bSHLightmaps": 19,
|
||||
"m_bakedShadows": 48,
|
||||
"m_lightMaps": 24,
|
||||
"m_nChartPackIterations": 20,
|
||||
"m_nChartPackIterations": 19,
|
||||
"m_nLightmapGameVersionNumber": 4,
|
||||
"m_nLightmapVersionNumber": 0,
|
||||
"m_nVradQuality": 21,
|
||||
"m_nVradQuality": 20,
|
||||
"m_vLightmapUvScale": 8
|
||||
},
|
||||
"metadata": [
|
||||
@@ -106,20 +74,6 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"BakedLightingInfo_t__BakedShadowAssignment_t": {
|
||||
"fields": {
|
||||
"m_nLightHash": 0,
|
||||
"m_nMapHash": 4,
|
||||
"m_nShadowChannel": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"BaseSceneObjectOverride_t": {
|
||||
"fields": {
|
||||
"m_nSceneObjectIndex": 0
|
||||
@@ -159,13 +113,10 @@
|
||||
"ClutterSceneObject_t": {
|
||||
"fields": {
|
||||
"m_Bounds": 0,
|
||||
"m_flBeginCullSize": 164,
|
||||
"m_flEndCullSize": 168,
|
||||
"m_flags": 24,
|
||||
"m_instancePositions": 32,
|
||||
"m_instanceScales": 80,
|
||||
"m_instanceTintSrgb": 104,
|
||||
"m_materialGroup": 160,
|
||||
"m_nLayer": 28,
|
||||
"m_renderableModel": 152,
|
||||
"m_tiles": 128
|
||||
@@ -199,7 +150,6 @@
|
||||
"m_nTimesToFire": 44,
|
||||
"m_outputName": 0,
|
||||
"m_overrideParam": 32,
|
||||
"m_paramMap": 48,
|
||||
"m_targetName": 16,
|
||||
"m_targetType": 8
|
||||
},
|
||||
@@ -237,7 +187,7 @@
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
"parent": "BaseSceneObjectOverride_t"
|
||||
},
|
||||
"InfoForResourceTypeVMapResourceData_t": {
|
||||
"fields": {},
|
||||
@@ -249,12 +199,18 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"MaterialOverride_t": {
|
||||
"InfoOverlayData_t": {
|
||||
"fields": {
|
||||
"m_nDrawCallIndex": 8,
|
||||
"m_nSubSceneObject": 4,
|
||||
"m_pMaterial": 16,
|
||||
"m_vLinearTintColor": 24
|
||||
"m_flDepth": 56,
|
||||
"m_flHeight": 52,
|
||||
"m_flWidth": 48,
|
||||
"m_nRenderOrder": 88,
|
||||
"m_nSequenceOverride": 108,
|
||||
"m_pMaterial": 80,
|
||||
"m_transform": 0,
|
||||
"m_vTintColor": 92,
|
||||
"m_vUVEnd": 68,
|
||||
"m_vUVStart": 60
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -264,6 +220,20 @@
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"MaterialOverride_t": {
|
||||
"fields": {
|
||||
"m_nDrawCallIndex": 8,
|
||||
"m_nSubSceneObject": 4,
|
||||
"m_pMaterial": 16
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "BaseSceneObjectOverride_t"
|
||||
},
|
||||
"NodeData_t": {
|
||||
"fields": {
|
||||
"m_ChildNodeIndices": 48,
|
||||
@@ -341,12 +311,11 @@
|
||||
},
|
||||
"WorldBuilderParams_t": {
|
||||
"fields": {
|
||||
"m_bAggregateInstanceStreams": 5,
|
||||
"m_bBuildBakedLighting": 4,
|
||||
"m_bakedLightingInfo": 8,
|
||||
"m_flMinDrawVolumeSize": 0,
|
||||
"m_nCompileFingerprint": 88,
|
||||
"m_nCompileTimestamp": 80
|
||||
"m_nCompileFingerprint": 64,
|
||||
"m_nCompileTimestamp": 56
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -373,20 +342,20 @@
|
||||
},
|
||||
"WorldNode_t": {
|
||||
"fields": {
|
||||
"m_aggregateInstanceStreams": 168,
|
||||
"m_aggregateSceneObjects": 48,
|
||||
"m_bHasBakedGeometryFlag": 344,
|
||||
"m_clutterSceneObjects": 72,
|
||||
"m_extraVertexStreamOverrides": 96,
|
||||
"m_extraVertexStreams": 144,
|
||||
"m_aggregateSceneObjects": 72,
|
||||
"m_bHasBakedGeometryFlag": 320,
|
||||
"m_clutterSceneObjects": 96,
|
||||
"m_extraVertexStreamOverrides": 120,
|
||||
"m_extraVertexStreams": 168,
|
||||
"m_grassFileName": 264,
|
||||
"m_layerNames": 216,
|
||||
"m_materialOverrides": 120,
|
||||
"m_infoOverlays": 24,
|
||||
"m_layerNames": 192,
|
||||
"m_materialOverrides": 144,
|
||||
"m_nodeLightingInfo": 272,
|
||||
"m_sceneObjectLayerIndices": 240,
|
||||
"m_overlayLayerIndices": 240,
|
||||
"m_sceneObjectLayerIndices": 216,
|
||||
"m_sceneObjects": 0,
|
||||
"m_vertexAlbedoStreams": 192,
|
||||
"m_visClusterMembership": 24
|
||||
"m_visClusterMembership": 48
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -399,9 +368,9 @@
|
||||
"World_t": {
|
||||
"fields": {
|
||||
"m_builderParams": 0,
|
||||
"m_entityLumps": 192,
|
||||
"m_worldLightingInfo": 120,
|
||||
"m_worldNodes": 96
|
||||
"m_entityLumps": 144,
|
||||
"m_worldLightingInfo": 96,
|
||||
"m_worldNodes": 72
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
@@ -413,16 +382,6 @@
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"AggregateInstanceStream_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
"AGGREGATE_INSTANCE_STREAM_LIGHTMAPUV_UNORM16": 1,
|
||||
"AGGREGATE_INSTANCE_STREAM_NONE": 0,
|
||||
"AGGREGATE_INSTANCE_STREAM_VERTEXBLEND_UNORM8": 4,
|
||||
"AGGREGATE_INSTANCE_STREAM_VERTEXTINT_UNORM8": 2
|
||||
},
|
||||
"type": "uint8"
|
||||
},
|
||||
"ObjectTypeFlags_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
@@ -1,16 +1,16 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: worldrenderer.dll
|
||||
// Class count: 25
|
||||
// Enum count: 2
|
||||
pub mod worldrenderer_dll {
|
||||
// Module: libworldrenderer.so
|
||||
// Classes count: 23
|
||||
// Enums count: 1
|
||||
pub mod libworldrenderer_so {
|
||||
// Alignment: 4
|
||||
// Member count: 15
|
||||
// Members count: 15
|
||||
#[repr(u32)]
|
||||
pub enum ObjectTypeFlags_t {
|
||||
OBJECT_TYPE_NONE = 0x0,
|
||||
@@ -29,25 +29,8 @@ pub mod cs2_dumper {
|
||||
OBJECT_TYPE_DISABLE_VIS_CULLING = 0x10000,
|
||||
OBJECT_TYPE_BAKED_GEOMETRY = 0x20000
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 4
|
||||
#[repr(u8)]
|
||||
pub enum AggregateInstanceStream_t {
|
||||
AGGREGATE_INSTANCE_STREAM_NONE = 0x0,
|
||||
AGGREGATE_INSTANCE_STREAM_LIGHTMAPUV_UNORM16 = 0x1,
|
||||
AGGREGATE_INSTANCE_STREAM_VERTEXTINT_UNORM8 = 0x2,
|
||||
AGGREGATE_INSTANCE_STREAM_VERTEXBLEND_UNORM8 = 0x4
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod AggregateVertexAlbedoStreamOnDiskData_t {
|
||||
pub const m_BufferData: usize = 0x0; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
// Fields count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -68,7 +51,7 @@ pub mod cs2_dumper {
|
||||
pub const m_renderable: usize = 0x80; // CStrongHandle<InfoForResourceTypeCRenderMesh>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -77,8 +60,8 @@ pub mod cs2_dumper {
|
||||
pub const m_fMaxObjectScale: usize = 0xC; // float32
|
||||
pub const m_fSwitchDistances: usize = 0x10; // CUtlVector<float32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Parent: BaseSceneObjectOverride_t
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -89,7 +72,7 @@ pub mod cs2_dumper {
|
||||
pub const m_extraBufferBinding: usize = 0x10; // CRenderBufferBinding
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -99,7 +82,7 @@ pub mod cs2_dumper {
|
||||
pub const m_BoundsWs: usize = 0x8; // AABB_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
// Fields count: 8
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -107,8 +90,6 @@ pub mod cs2_dumper {
|
||||
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_instanceStream: usize = 0xA; // int16
|
||||
pub const m_vertexAlbedoStream: usize = 0xC; // 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>
|
||||
@@ -116,7 +97,7 @@ pub mod cs2_dumper {
|
||||
pub const m_renderableModel: usize = 0x70; // CStrongHandle<InfoForResourceTypeCModel>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
// Fields count: 7
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -130,20 +111,11 @@ pub mod cs2_dumper {
|
||||
pub const m_worldNodePrefix: usize = 0x48; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
pub mod VMapResourceData_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod AggregateInstanceStreamOnDiskData_t {
|
||||
pub const m_DecodedSize: usize = 0x0; // uint32
|
||||
pub const m_BufferData: usize = 0x8; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 11
|
||||
// Fields count: 8
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -156,25 +128,21 @@ pub mod cs2_dumper {
|
||||
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>
|
||||
pub const m_materialGroup: usize = 0xA0; // CUtlStringToken
|
||||
pub const m_flBeginCullSize: usize = 0xA4; // float32
|
||||
pub const m_flEndCullSize: usize = 0xA8; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
// 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_bAggregateInstanceStreams: usize = 0x5; // bool
|
||||
pub const m_bakedLightingInfo: usize = 0x8; // BakedLightingInfo_t
|
||||
pub const m_nCompileTimestamp: usize = 0x50; // uint64
|
||||
pub const m_nCompileFingerprint: usize = 0x58; // uint64
|
||||
pub const m_nCompileTimestamp: usize = 0x38; // uint64
|
||||
pub const m_nCompileFingerprint: usize = 0x40; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -184,28 +152,28 @@ pub mod cs2_dumper {
|
||||
pub const m_entityKeyValues: usize = 0x28; // CUtlLeanVector<EntityKeyValueData_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
// Fields count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod WorldNode_t {
|
||||
pub const m_sceneObjects: usize = 0x0; // CUtlVector<SceneObject_t>
|
||||
pub const m_visClusterMembership: usize = 0x18; // CUtlVector<uint16>
|
||||
pub const m_aggregateSceneObjects: usize = 0x30; // CUtlVector<AggregateSceneObject_t>
|
||||
pub const m_clutterSceneObjects: usize = 0x48; // CUtlVector<ClutterSceneObject_t>
|
||||
pub const m_extraVertexStreamOverrides: usize = 0x60; // CUtlVector<ExtraVertexStreamOverride_t>
|
||||
pub const m_materialOverrides: usize = 0x78; // CUtlVector<MaterialOverride_t>
|
||||
pub const m_extraVertexStreams: usize = 0x90; // CUtlVector<WorldNodeOnDiskBufferData_t>
|
||||
pub const m_aggregateInstanceStreams: usize = 0xA8; // CUtlVector<AggregateInstanceStreamOnDiskData_t>
|
||||
pub const m_vertexAlbedoStreams: usize = 0xC0; // CUtlVector<AggregateVertexAlbedoStreamOnDiskData_t>
|
||||
pub const m_layerNames: usize = 0xD8; // CUtlVector<CUtlString>
|
||||
pub const m_sceneObjectLayerIndices: usize = 0xF0; // CUtlVector<uint8>
|
||||
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
|
||||
pub const m_bHasBakedGeometryFlag: usize = 0x158; // bool
|
||||
pub const m_bHasBakedGeometryFlag: usize = 0x140; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -213,7 +181,7 @@ pub mod cs2_dumper {
|
||||
pub const m_nSceneObjectIndex: usize = 0x0; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 8
|
||||
// Fields count: 7
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -225,10 +193,9 @@ pub mod cs2_dumper {
|
||||
pub const m_overrideParam: usize = 0x20; // CUtlString
|
||||
pub const m_flDelay: usize = 0x28; // float32
|
||||
pub const m_nTimesToFire: usize = 0x2C; // int32
|
||||
pub const m_paramMap: usize = 0x30; // KeyValues3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 11
|
||||
// Fields count: 9
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -239,14 +206,12 @@ pub mod cs2_dumper {
|
||||
pub const m_bHasLightmaps: usize = 0x10; // bool
|
||||
pub const m_bBakedShadowsGamma20: usize = 0x11; // bool
|
||||
pub const m_bCompressionEnabled: usize = 0x12; // bool
|
||||
pub const m_bSHLightmaps: usize = 0x13; // bool
|
||||
pub const m_nChartPackIterations: usize = 0x14; // uint8
|
||||
pub const m_nVradQuality: usize = 0x15; // uint8
|
||||
pub const m_nChartPackIterations: usize = 0x13; // uint8
|
||||
pub const m_nVradQuality: usize = 0x14; // uint8
|
||||
pub const m_lightMaps: usize = 0x18; // CUtlVector<CStrongHandle<InfoForResourceTypeCTextureBase>>
|
||||
pub const m_bakedShadows: usize = 0x30; // CUtlVector<BakedLightingInfo_t::BakedShadowAssignment_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -255,14 +220,14 @@ pub mod cs2_dumper {
|
||||
pub const m_nElementCount: usize = 0x4; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeVMapResourceData_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -273,7 +238,7 @@ pub mod cs2_dumper {
|
||||
pub const m_pData: usize = 0x20; // CUtlVector<uint8>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 12
|
||||
// Fields count: 9
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -281,39 +246,43 @@ pub mod cs2_dumper {
|
||||
pub const m_nVisClusterMemberOffset: usize = 0x0; // uint32
|
||||
pub const m_nVisClusterMemberCount: usize = 0x4; // uint8
|
||||
pub const m_bHasTransform: usize = 0x5; // bool
|
||||
pub const m_nLODGroupMask: usize = 0x6; // uint8
|
||||
pub const m_nDrawCallIndex: usize = 0x8; // int16
|
||||
pub const m_nLODSetupIndex: usize = 0xA; // int16
|
||||
pub const m_vTintColor: usize = 0xC; // Color
|
||||
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
|
||||
pub const m_nInstanceStreamOffset: usize = 0x18; // uint32
|
||||
pub const m_nVertexAlbedoStreamOffset: usize = 0x1C; // uint32
|
||||
pub const m_instanceStreams: usize = 0x20; // AggregateInstanceStream_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod World_t {
|
||||
pub const m_builderParams: usize = 0x0; // WorldBuilderParams_t
|
||||
pub const m_worldNodes: usize = 0x60; // CUtlVector<NodeData_t>
|
||||
pub const m_worldLightingInfo: usize = 0x78; // BakedLightingInfo_t
|
||||
pub const m_entityLumps: usize = 0xC0; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||
pub const m_worldNodes: usize = 0x48; // CUtlVector<NodeData_t>
|
||||
pub const m_worldLightingInfo: usize = 0x60; // BakedLightingInfo_t
|
||||
pub const m_entityLumps: usize = 0x90; // CUtlVector<CStrongHandleCopyable<InfoForResourceTypeCEntityLump>>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod BakedLightingInfo_t__BakedShadowAssignment_t {
|
||||
pub const m_nLightHash: usize = 0x0; // uint32
|
||||
pub const m_nMapHash: usize = 0x4; // uint32
|
||||
pub const m_nShadowChannel: usize = 0x8; // int8
|
||||
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
|
||||
// Field count: 4
|
||||
// Parent: BaseSceneObjectOverride_t
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -321,10 +290,9 @@ pub mod cs2_dumper {
|
||||
pub const m_nSubSceneObject: usize = 0x4; // uint32
|
||||
pub const m_nDrawCallIndex: usize = 0x8; // uint32
|
||||
pub const m_pMaterial: usize = 0x10; // CStrongHandle<InfoForResourceTypeIMaterial2>
|
||||
pub const m_vLinearTintColor: usize = 0x18; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -333,7 +301,7 @@ pub mod cs2_dumper {
|
||||
pub const m_keyValuesData: usize = 0x20; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 13
|
||||
// Fields count: 13
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -1,15 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 05:55:33.103563200 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: meshsystem.dll
|
||||
// Class count: 0
|
||||
// Enum count: 17
|
||||
public static class MeshsystemDll {
|
||||
// Alignment: 1
|
||||
// Member count: 0
|
||||
public enum CPulseGraphInstance_TestDomain_UseReadOnlyBlackboardView : byte {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 05:55:33.103563200 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: meshsystem.dll
|
||||
// Class count: 0
|
||||
// Enum count: 17
|
||||
namespace meshsystem_dll {
|
||||
// Alignment: 1
|
||||
// Member count: 0
|
||||
enum class CPulseGraphInstance_TestDomain_UseReadOnlyBlackboardView : uint8_t {
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,110 +0,0 @@
|
||||
{
|
||||
"meshsystem.dll": {
|
||||
"classes": {},
|
||||
"enums": {
|
||||
"CPulseCell_BaseState": {
|
||||
"alignment": 0,
|
||||
"members": {},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_BaseValue": {
|
||||
"alignment": 0,
|
||||
"members": {},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_CursorQueue": {
|
||||
"alignment": 0,
|
||||
"members": {
|
||||
"": 0
|
||||
},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_ExampleCriteria": {
|
||||
"alignment": 0,
|
||||
"members": {},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_Inflow_EventHandler": {
|
||||
"alignment": 0,
|
||||
"members": {
|
||||
"": 0
|
||||
},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_LimitCount__Criteria_t": {
|
||||
"alignment": 0,
|
||||
"members": {
|
||||
"": 0
|
||||
},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_Outflow_CycleOrdered__InstanceState_t": {
|
||||
"alignment": 0,
|
||||
"members": {
|
||||
"": 281474976710656
|
||||
},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_Outflow_CycleShuffled": {
|
||||
"alignment": 0,
|
||||
"members": {
|
||||
"": 0
|
||||
},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_Outflow_CycleShuffled__InstanceState_t": {
|
||||
"alignment": 0,
|
||||
"members": {
|
||||
"": 0
|
||||
},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_Test_NoInflow": {
|
||||
"alignment": 0,
|
||||
"members": {},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_Timeline": {
|
||||
"alignment": 0,
|
||||
"members": {
|
||||
"": 0
|
||||
},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_Timeline__TimelineEvent_t": {
|
||||
"alignment": 0,
|
||||
"members": {
|
||||
"": 0
|
||||
},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_Unknown": {
|
||||
"alignment": 0,
|
||||
"members": {
|
||||
"": 0
|
||||
},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseCell_Val_TestDomainGetEntityName": {
|
||||
"alignment": 0,
|
||||
"members": {},
|
||||
"type": "unknown"
|
||||
},
|
||||
"CPulseGraphInstance_TestDomain_UseReadOnlyBlackboardView": {
|
||||
"alignment": 1,
|
||||
"members": {},
|
||||
"type": "uint8"
|
||||
},
|
||||
"CPulseTestScriptLib": {
|
||||
"alignment": 0,
|
||||
"members": {},
|
||||
"type": "unknown"
|
||||
},
|
||||
"FakeEntityDerivedA_tAPI": {
|
||||
"alignment": 0,
|
||||
"members": {},
|
||||
"type": "unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 05:55:33.103563200 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: meshsystem.dll
|
||||
// Class count: 0
|
||||
// Enum count: 17
|
||||
pub mod meshsystem_dll {
|
||||
// Alignment: 1
|
||||
// Member count: 0
|
||||
#[repr(u8)]
|
||||
pub enum CPulseGraphInstance_TestDomain_UseReadOnlyBlackboardView {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: networksystem.dll
|
||||
// Class count: 1
|
||||
// Enum count: 1
|
||||
public static class NetworksystemDll {
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
public enum OutOfPVSUpdates_t : uint {
|
||||
OOPVSUpdates_OptOut = 0x0,
|
||||
OOPVSUpdates_OptIn = 0x1,
|
||||
OOPVSUpdates_Default = 0x2,
|
||||
OOPVSUpdates_Count = 0x3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class ChangeAccessorFieldPathIndex_t {
|
||||
public const nint m_Value = 0x0; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: networksystem.dll
|
||||
// Class count: 1
|
||||
// Enum count: 1
|
||||
namespace networksystem_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
enum class OutOfPVSUpdates_t : uint32_t {
|
||||
OOPVSUpdates_OptOut = 0x0,
|
||||
OOPVSUpdates_OptIn = 0x1,
|
||||
OOPVSUpdates_Default = 0x2,
|
||||
OOPVSUpdates_Count = 0x3
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace ChangeAccessorFieldPathIndex_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"networksystem.dll": {
|
||||
"classes": {
|
||||
"ChangeAccessorFieldPathIndex_t": {
|
||||
"fields": {
|
||||
"m_Value": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"OutOfPVSUpdates_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"OOPVSUpdates_Count": 3,
|
||||
"OOPVSUpdates_Default": 2,
|
||||
"OOPVSUpdates_OptIn": 1,
|
||||
"OOPVSUpdates_OptOut": 0
|
||||
},
|
||||
"type": "uint32"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: networksystem.dll
|
||||
// Class count: 1
|
||||
// Enum count: 1
|
||||
pub mod networksystem_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
#[repr(u32)]
|
||||
pub enum OutOfPVSUpdates_t {
|
||||
OOPVSUpdates_OptOut = 0x0,
|
||||
OOPVSUpdates_OptIn = 0x1,
|
||||
OOPVSUpdates_Default = 0x2,
|
||||
OOPVSUpdates_Count = 0x3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod ChangeAccessorFieldPathIndex_t {
|
||||
pub const m_Value: usize = 0x0; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,52 +1,43 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 08:27:32.294171800 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
namespace CS2Dumper.Offsets {
|
||||
// Module: client.dll
|
||||
public static class ClientDll {
|
||||
public const nint dwCSGOInput = 0x1E37FC0;
|
||||
public const nint dwEntityList = 0x1D0FBE8;
|
||||
public const nint dwGameEntitySystem = 0x1FB4820;
|
||||
public const nint dwGameEntitySystem_highestEntityIndex = 0x20F0;
|
||||
public const nint dwGameRules = 0x1E2D290;
|
||||
public const nint dwGlobalVars = 0x1BE0178;
|
||||
public const nint dwGlowManager = 0x1E2A128;
|
||||
public const nint dwLocalPlayerController = 0x1E19AD0;
|
||||
public const nint dwLocalPlayerPawn = 0x1BEAEB8;
|
||||
public const nint dwPlantedC4 = 0x1E33590;
|
||||
public const nint dwPrediction = 0x1BEADD0;
|
||||
public const nint dwSensitivity = 0x1E2AB88;
|
||||
public const nint dwSensitivity_sensitivity = 0x50;
|
||||
public const nint dwViewAngles = 0x1E38670;
|
||||
public const nint dwViewMatrix = 0x1E2E0F0;
|
||||
public const nint dwViewRender = 0x1E2EC68;
|
||||
public const nint dwWeaponC4 = 0x1DCAEB0;
|
||||
// Module: libclient.so
|
||||
public static class LibclientSo {
|
||||
public const nint dwCSGOInput = 0x39AAA40;
|
||||
public const nint dwEntityList = 0x37EC100;
|
||||
public const nint dwGameEntitySystem = 0x3B04278;
|
||||
public const nint dwGameEntitySystem_highestEntityIndex = 0x2110;
|
||||
public const nint dwGlowManager = 0x399A4F0;
|
||||
public const nint dwLocalPlayerController = 0x39805D8;
|
||||
public const nint dwLocalPlayerPawn = 0x39A03A8;
|
||||
public const nint dwPlantedC4 = 0x39A6618;
|
||||
public const nint dwPrediction = 0x39A0260;
|
||||
public const nint dwSensitivity = 0x399E828;
|
||||
public const nint dwSensitivity_sensitivity = 0x40;
|
||||
public const nint dwViewAngles = 0x39AFE68;
|
||||
public const nint dwViewRender = 0x39A0E10;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
public static class Engine2Dll {
|
||||
public const nint dwBuildNumber = 0x5F03E4;
|
||||
public const nint dwNetworkGameClient = 0x8EA518;
|
||||
public const nint dwNetworkGameClient_clientTickCount = 0x390;
|
||||
public const nint dwNetworkGameClient_deltaTick = 0x23C;
|
||||
public const nint dwNetworkGameClient_isBackgroundMap = 0x2C1467;
|
||||
public const nint dwNetworkGameClient_localPlayer = 0xE8;
|
||||
public const nint dwNetworkGameClient_maxClients = 0x230;
|
||||
public const nint dwNetworkGameClient_serverTickCount = 0x23C;
|
||||
public const nint dwNetworkGameClient_signOnState = 0x220;
|
||||
public const nint dwWindowHeight = 0x8EE81C;
|
||||
public const nint dwWindowWidth = 0x8EE818;
|
||||
// Module: libengine2.so
|
||||
public static class Libengine2So {
|
||||
public const nint dwBuildNumber = 0x7AEA34;
|
||||
public const nint dwNetworkGameClient = 0x7AF3E8;
|
||||
public const nint dwNetworkGameClient_clientTickCount = 0x388;
|
||||
public const nint dwNetworkGameClient_isBackgroundMap = 0x281477;
|
||||
public const nint dwNetworkGameClient_localPlayer = 0x108;
|
||||
public const nint dwNetworkGameClient_maxClients = 0x258;
|
||||
public const nint dwNetworkGameClient_serverTickCount = 0x38C;
|
||||
public const nint dwNetworkGameClient_signOnState = 0x248;
|
||||
public const nint dwWindowHeight = 0x7B8A04;
|
||||
public const nint dwWindowWidth = 0x7B8A00;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
public static class InputsystemDll {
|
||||
public const nint dwInputSystem = 0x45A20;
|
||||
// Module: libinputsystem.so
|
||||
public static class LibinputsystemSo {
|
||||
public const nint dwInputSystem = 0x401A0;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
public static class MatchmakingDll {
|
||||
public const nint dwGameTypes = 0x1B5EE0;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
public static class SoundsystemDll {
|
||||
public const nint dwSoundSystem = 0x3EAE50;
|
||||
public const nint dwSoundSystem_engineViewData = 0x7C;
|
||||
// Module: libmatchmaking.so
|
||||
public static class LibmatchmakingSo {
|
||||
public const nint dwGameTypes = 0x3350C0;
|
||||
public const nint dwGameTypes_mapName = 0x3351E0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 08:27:32.294171800 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -7,52 +7,43 @@
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace offsets {
|
||||
// Module: client.dll
|
||||
namespace client_dll {
|
||||
constexpr std::ptrdiff_t dwCSGOInput = 0x1E37FC0;
|
||||
constexpr std::ptrdiff_t dwEntityList = 0x1D0FBE8;
|
||||
constexpr std::ptrdiff_t dwGameEntitySystem = 0x1FB4820;
|
||||
constexpr std::ptrdiff_t dwGameEntitySystem_highestEntityIndex = 0x20F0;
|
||||
constexpr std::ptrdiff_t dwGameRules = 0x1E2D290;
|
||||
constexpr std::ptrdiff_t dwGlobalVars = 0x1BE0178;
|
||||
constexpr std::ptrdiff_t dwGlowManager = 0x1E2A128;
|
||||
constexpr std::ptrdiff_t dwLocalPlayerController = 0x1E19AD0;
|
||||
constexpr std::ptrdiff_t dwLocalPlayerPawn = 0x1BEAEB8;
|
||||
constexpr std::ptrdiff_t dwPlantedC4 = 0x1E33590;
|
||||
constexpr std::ptrdiff_t dwPrediction = 0x1BEADD0;
|
||||
constexpr std::ptrdiff_t dwSensitivity = 0x1E2AB88;
|
||||
constexpr std::ptrdiff_t dwSensitivity_sensitivity = 0x50;
|
||||
constexpr std::ptrdiff_t dwViewAngles = 0x1E38670;
|
||||
constexpr std::ptrdiff_t dwViewMatrix = 0x1E2E0F0;
|
||||
constexpr std::ptrdiff_t dwViewRender = 0x1E2EC68;
|
||||
constexpr std::ptrdiff_t dwWeaponC4 = 0x1DCAEB0;
|
||||
// Module: libclient.so
|
||||
namespace libclient_so {
|
||||
constexpr std::ptrdiff_t dwCSGOInput = 0x39AAA40;
|
||||
constexpr std::ptrdiff_t dwEntityList = 0x37EC100;
|
||||
constexpr std::ptrdiff_t dwGameEntitySystem = 0x3B04278;
|
||||
constexpr std::ptrdiff_t dwGameEntitySystem_highestEntityIndex = 0x2110;
|
||||
constexpr std::ptrdiff_t dwGlowManager = 0x399A4F0;
|
||||
constexpr std::ptrdiff_t dwLocalPlayerController = 0x39805D8;
|
||||
constexpr std::ptrdiff_t dwLocalPlayerPawn = 0x39A03A8;
|
||||
constexpr std::ptrdiff_t dwPlantedC4 = 0x39A6618;
|
||||
constexpr std::ptrdiff_t dwPrediction = 0x39A0260;
|
||||
constexpr std::ptrdiff_t dwSensitivity = 0x399E828;
|
||||
constexpr std::ptrdiff_t dwSensitivity_sensitivity = 0x40;
|
||||
constexpr std::ptrdiff_t dwViewAngles = 0x39AFE68;
|
||||
constexpr std::ptrdiff_t dwViewRender = 0x39A0E10;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
namespace engine2_dll {
|
||||
constexpr std::ptrdiff_t dwBuildNumber = 0x5F03E4;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient = 0x8EA518;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_clientTickCount = 0x390;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_deltaTick = 0x23C;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_isBackgroundMap = 0x2C1467;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_localPlayer = 0xE8;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_maxClients = 0x230;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_serverTickCount = 0x23C;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_signOnState = 0x220;
|
||||
constexpr std::ptrdiff_t dwWindowHeight = 0x8EE81C;
|
||||
constexpr std::ptrdiff_t dwWindowWidth = 0x8EE818;
|
||||
// Module: libengine2.so
|
||||
namespace libengine2_so {
|
||||
constexpr std::ptrdiff_t dwBuildNumber = 0x7AEA34;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient = 0x7AF3E8;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_clientTickCount = 0x388;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_isBackgroundMap = 0x281477;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_localPlayer = 0x108;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_maxClients = 0x258;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_serverTickCount = 0x38C;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_signOnState = 0x248;
|
||||
constexpr std::ptrdiff_t dwWindowHeight = 0x7B8A04;
|
||||
constexpr std::ptrdiff_t dwWindowWidth = 0x7B8A00;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
namespace inputsystem_dll {
|
||||
constexpr std::ptrdiff_t dwInputSystem = 0x45A20;
|
||||
// Module: libinputsystem.so
|
||||
namespace libinputsystem_so {
|
||||
constexpr std::ptrdiff_t dwInputSystem = 0x401A0;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
namespace matchmaking_dll {
|
||||
constexpr std::ptrdiff_t dwGameTypes = 0x1B5EE0;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
namespace soundsystem_dll {
|
||||
constexpr std::ptrdiff_t dwSoundSystem = 0x3EAE50;
|
||||
constexpr std::ptrdiff_t dwSoundSystem_engineViewData = 0x7C;
|
||||
// Module: libmatchmaking.so
|
||||
namespace libmatchmaking_so {
|
||||
constexpr std::ptrdiff_t dwGameTypes = 0x3350C0;
|
||||
constexpr std::ptrdiff_t dwGameTypes_mapName = 0x3351E0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,44 +1,114 @@
|
||||
{
|
||||
"client.dll": {
|
||||
"dwCSGOInput": 31686592,
|
||||
"dwEntityList": 30473192,
|
||||
"dwGameEntitySystem": 33245216,
|
||||
"dwGameEntitySystem_highestEntityIndex": 8432,
|
||||
"dwGameRules": 31642256,
|
||||
"dwGlobalVars": 29229432,
|
||||
"dwGlowManager": 31629608,
|
||||
"dwLocalPlayerController": 31562448,
|
||||
"dwLocalPlayerPawn": 29273784,
|
||||
"dwPlantedC4": 31667600,
|
||||
"dwPrediction": 29273552,
|
||||
"dwSensitivity": 31632264,
|
||||
"dwSensitivity_sensitivity": 80,
|
||||
"dwViewAngles": 31688304,
|
||||
"dwViewMatrix": 31645936,
|
||||
"dwViewRender": 31648872,
|
||||
"dwWeaponC4": 31239856
|
||||
},
|
||||
"engine2.dll": {
|
||||
"dwBuildNumber": 6226916,
|
||||
"dwNetworkGameClient": 9348376,
|
||||
"dwNetworkGameClient_clientTickCount": 912,
|
||||
"dwNetworkGameClient_deltaTick": 572,
|
||||
"dwNetworkGameClient_isBackgroundMap": 2888807,
|
||||
"dwNetworkGameClient_localPlayer": 232,
|
||||
"dwNetworkGameClient_maxClients": 560,
|
||||
"dwNetworkGameClient_serverTickCount": 572,
|
||||
"dwNetworkGameClient_signOnState": 544,
|
||||
"dwWindowHeight": 9365532,
|
||||
"dwWindowWidth": 9365528
|
||||
},
|
||||
"inputsystem.dll": {
|
||||
"dwInputSystem": 285216
|
||||
},
|
||||
"matchmaking.dll": {
|
||||
"dwGameTypes": 1793760
|
||||
},
|
||||
"soundsystem.dll": {
|
||||
"dwSoundSystem": 4107856,
|
||||
"dwSoundSystem_engineViewData": 124
|
||||
}
|
||||
"libclient.so": [
|
||||
{
|
||||
"name": "dwCSGOInput",
|
||||
"value": 60467776
|
||||
},
|
||||
{
|
||||
"name": "dwEntityList",
|
||||
"value": 58638592
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem",
|
||||
"value": 61883000
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem_highestEntityIndex",
|
||||
"value": 8464
|
||||
},
|
||||
{
|
||||
"name": "dwGlowManager",
|
||||
"value": 60400880
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerController",
|
||||
"value": 60294616
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerPawn",
|
||||
"value": 60425128
|
||||
},
|
||||
{
|
||||
"name": "dwPlantedC4",
|
||||
"value": 60450328
|
||||
},
|
||||
{
|
||||
"name": "dwPrediction",
|
||||
"value": 60424800
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity",
|
||||
"value": 60418088
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity_sensitivity",
|
||||
"value": 64
|
||||
},
|
||||
{
|
||||
"name": "dwViewAngles",
|
||||
"value": 60489320
|
||||
},
|
||||
{
|
||||
"name": "dwViewRender",
|
||||
"value": 60427792
|
||||
}
|
||||
],
|
||||
"libengine2.so": [
|
||||
{
|
||||
"name": "dwBuildNumber",
|
||||
"value": 8055348
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient",
|
||||
"value": 8057832
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_clientTickCount",
|
||||
"value": 904
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_isBackgroundMap",
|
||||
"value": 2626679
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_localPlayer",
|
||||
"value": 264
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_maxClients",
|
||||
"value": 600
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_serverTickCount",
|
||||
"value": 908
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_signOnState",
|
||||
"value": 584
|
||||
},
|
||||
{
|
||||
"name": "dwWindowHeight",
|
||||
"value": 8096260
|
||||
},
|
||||
{
|
||||
"name": "dwWindowWidth",
|
||||
"value": 8096256
|
||||
}
|
||||
],
|
||||
"libinputsystem.so": [
|
||||
{
|
||||
"name": "dwInputSystem",
|
||||
"value": 262560
|
||||
}
|
||||
],
|
||||
"libmatchmaking.so": [
|
||||
{
|
||||
"name": "dwGameTypes",
|
||||
"value": 3363008
|
||||
},
|
||||
{
|
||||
"name": "dwGameTypes_mapName",
|
||||
"value": 3363296
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,56 +1,47 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 08:27:32.294171800 UTC
|
||||
// 2025-01-29 12:23:34.043004291 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod offsets {
|
||||
// Module: client.dll
|
||||
pub mod client_dll {
|
||||
pub const dwCSGOInput: usize = 0x1E37FC0;
|
||||
pub const dwEntityList: usize = 0x1D0FBE8;
|
||||
pub const dwGameEntitySystem: usize = 0x1FB4820;
|
||||
pub const dwGameEntitySystem_highestEntityIndex: usize = 0x20F0;
|
||||
pub const dwGameRules: usize = 0x1E2D290;
|
||||
pub const dwGlobalVars: usize = 0x1BE0178;
|
||||
pub const dwGlowManager: usize = 0x1E2A128;
|
||||
pub const dwLocalPlayerController: usize = 0x1E19AD0;
|
||||
pub const dwLocalPlayerPawn: usize = 0x1BEAEB8;
|
||||
pub const dwPlantedC4: usize = 0x1E33590;
|
||||
pub const dwPrediction: usize = 0x1BEADD0;
|
||||
pub const dwSensitivity: usize = 0x1E2AB88;
|
||||
pub const dwSensitivity_sensitivity: usize = 0x50;
|
||||
pub const dwViewAngles: usize = 0x1E38670;
|
||||
pub const dwViewMatrix: usize = 0x1E2E0F0;
|
||||
pub const dwViewRender: usize = 0x1E2EC68;
|
||||
pub const dwWeaponC4: usize = 0x1DCAEB0;
|
||||
// Module: libclient.so
|
||||
pub mod libclient_so {
|
||||
pub const dwCSGOInput: usize = 0x39AAA40;
|
||||
pub const dwEntityList: usize = 0x37EC100;
|
||||
pub const dwGameEntitySystem: usize = 0x3B04278;
|
||||
pub const dwGameEntitySystem_highestEntityIndex: usize = 0x2110;
|
||||
pub const dwGlowManager: usize = 0x399A4F0;
|
||||
pub const dwLocalPlayerController: usize = 0x39805D8;
|
||||
pub const dwLocalPlayerPawn: usize = 0x39A03A8;
|
||||
pub const dwPlantedC4: usize = 0x39A6618;
|
||||
pub const dwPrediction: usize = 0x39A0260;
|
||||
pub const dwSensitivity: usize = 0x399E828;
|
||||
pub const dwSensitivity_sensitivity: usize = 0x40;
|
||||
pub const dwViewAngles: usize = 0x39AFE68;
|
||||
pub const dwViewRender: usize = 0x39A0E10;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
pub mod engine2_dll {
|
||||
pub const dwBuildNumber: usize = 0x5F03E4;
|
||||
pub const dwNetworkGameClient: usize = 0x8EA518;
|
||||
pub const dwNetworkGameClient_clientTickCount: usize = 0x390;
|
||||
pub const dwNetworkGameClient_deltaTick: usize = 0x23C;
|
||||
pub const dwNetworkGameClient_isBackgroundMap: usize = 0x2C1467;
|
||||
pub const dwNetworkGameClient_localPlayer: usize = 0xE8;
|
||||
pub const dwNetworkGameClient_maxClients: usize = 0x230;
|
||||
pub const dwNetworkGameClient_serverTickCount: usize = 0x23C;
|
||||
pub const dwNetworkGameClient_signOnState: usize = 0x220;
|
||||
pub const dwWindowHeight: usize = 0x8EE81C;
|
||||
pub const dwWindowWidth: usize = 0x8EE818;
|
||||
// Module: libengine2.so
|
||||
pub mod libengine2_so {
|
||||
pub const dwBuildNumber: usize = 0x7AEA34;
|
||||
pub const dwNetworkGameClient: usize = 0x7AF3E8;
|
||||
pub const dwNetworkGameClient_clientTickCount: usize = 0x388;
|
||||
pub const dwNetworkGameClient_isBackgroundMap: usize = 0x281477;
|
||||
pub const dwNetworkGameClient_localPlayer: usize = 0x108;
|
||||
pub const dwNetworkGameClient_maxClients: usize = 0x258;
|
||||
pub const dwNetworkGameClient_serverTickCount: usize = 0x38C;
|
||||
pub const dwNetworkGameClient_signOnState: usize = 0x248;
|
||||
pub const dwWindowHeight: usize = 0x7B8A04;
|
||||
pub const dwWindowWidth: usize = 0x7B8A00;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
pub mod inputsystem_dll {
|
||||
pub const dwInputSystem: usize = 0x45A20;
|
||||
// Module: libinputsystem.so
|
||||
pub mod libinputsystem_so {
|
||||
pub const dwInputSystem: usize = 0x401A0;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
pub mod matchmaking_dll {
|
||||
pub const dwGameTypes: usize = 0x1B5EE0;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
pub mod soundsystem_dll {
|
||||
pub const dwSoundSystem: usize = 0x3EAE50;
|
||||
pub const dwSoundSystem_engineViewData: usize = 0x7C;
|
||||
// Module: libmatchmaking.so
|
||||
pub mod libmatchmaking_so {
|
||||
pub const dwGameTypes: usize = 0x3350C0;
|
||||
pub const dwGameTypes_mapName: usize = 0x3351E0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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,871 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: pulse_system.dll
|
||||
// Class count: 97
|
||||
// Enum count: 5
|
||||
public static class PulseSystemDll {
|
||||
// Alignment: 4
|
||||
// Member count: 2
|
||||
public enum PulseBestOutflowRules_t : uint {
|
||||
SORT_BY_NUMBER_OF_VALID_CRITERIA = 0x0,
|
||||
SORT_BY_OUTFLOW_INDEX = 0x1
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
public enum PulseTestEnumShape_t : uint {
|
||||
CIRCLE = 0x64,
|
||||
SQUARE = 0xC8,
|
||||
TRIANGLE = 0x12C
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
public enum PulseCursorCancelPriority_t : uint {
|
||||
None = 0x0,
|
||||
CancelOnSucceeded = 0x1,
|
||||
SoftCancel = 0x2,
|
||||
HardCancel = 0x3
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 2
|
||||
public enum PulseMethodCallMode_t : uint {
|
||||
SYNC_WAIT_FOR_COMPLETION = 0x0,
|
||||
ASYNC_FIRE_AND_FORGET = 0x1
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 5
|
||||
public enum PulseTestEnumColor_t : uint {
|
||||
BLACK = 0x0,
|
||||
WHITE = 0x1,
|
||||
RED = 0x2,
|
||||
GREEN = 0x3,
|
||||
BLUE = 0x4
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Step_TestDomainDestroyFakeEntity {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_WaitForCursorsWithTag {
|
||||
public const nint m_bTagSelfWhenComplete = 0x98; // bool
|
||||
public const nint m_nDesiredKillPriority = 0x9C; // PulseCursorCancelPriority_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Test_NoInflow {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class CPulseGraphInstance_TestDomain_FakeEntityOwner {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Base {
|
||||
public const nint m_nEditorNodeID = 0x8; // PulseDocNodeID_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class CPulse_ResumePoint {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
public static class CTestDomainDerived_Cursor {
|
||||
public const nint m_nCursorValueA = 0xD0; // int32
|
||||
public const nint m_nCursorValueB = 0xD4; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
public static class CPulseCell_PickBestOutflowSelector {
|
||||
public const nint m_nCheckType = 0x48; // PulseBestOutflowRules_t
|
||||
public const nint m_OutflowList = 0x50; // PulseSelectorOutflowList_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
public static class CPulseTestFuncs_LibraryA {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPulseEditorHeaderIcon
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_WaitForObservable {
|
||||
public const nint m_Condition = 0x48; // PulseObservableBoolExpression_t
|
||||
public const nint m_OnTrue = 0xC0; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
public static class CPulse_OutflowConnection {
|
||||
public const nint m_SourceOutflowName = 0x0; // PulseSymbol_t
|
||||
public const nint m_nDestChunk = 0x10; // PulseRuntimeChunkIndex_t
|
||||
public const nint m_nInstruction = 0x14; // int32
|
||||
public const nint m_OutflowRegisterMap = 0x18; // PulseRegisterMap_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseGraphDef {
|
||||
public const nint m_DomainIdentifier = 0x8; // PulseSymbol_t
|
||||
public const nint m_DomainSubType = 0x18; // CPulseValueFullType
|
||||
public const nint m_ParentMapName = 0x30; // PulseSymbol_t
|
||||
public const nint m_ParentXmlName = 0x40; // PulseSymbol_t
|
||||
public const nint m_Chunks = 0x50; // CUtlVector<CPulse_Chunk*>
|
||||
public const nint m_Cells = 0x68; // CUtlVector<CPulseCell_Base*>
|
||||
public const nint m_Vars = 0x80; // CUtlVector<CPulse_Variable>
|
||||
public const nint m_PublicOutputs = 0x98; // CUtlVector<CPulse_PublicOutput>
|
||||
public const nint m_InvokeBindings = 0xB0; // CUtlVector<CPulse_InvokeBinding*>
|
||||
public const nint m_CallInfos = 0xC8; // CUtlVector<CPulse_CallInfo*>
|
||||
public const nint m_Constants = 0xE0; // CUtlVector<CPulse_Constant>
|
||||
public const nint m_DomainValues = 0xF8; // CUtlVector<CPulse_DomainValue>
|
||||
public const nint m_BlackboardReferences = 0x110; // CUtlVector<CPulse_BlackboardReference>
|
||||
public const nint m_OutputConnections = 0x128; // CUtlVector<CPulse_OutputConnection*>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class CPulseGraphInstance_TestDomain_UseReadOnlyBlackboardView {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_FireCursors {
|
||||
public const nint m_Outflows = 0x48; // CUtlVector<CPulse_OutflowConnection>
|
||||
public const nint m_bWaitForChildOutflows = 0x60; // bool
|
||||
public const nint m_OnFinished = 0x68; // CPulse_ResumePoint
|
||||
public const nint m_OnCanceled = 0xB0; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Timeline__TimelineEvent_t {
|
||||
public const nint m_flTimeFromPrevious = 0x0; // float32
|
||||
public const nint m_EventOutflow = 0x8; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_IntervalTimer__CursorState_t {
|
||||
public const nint m_StartTime = 0x0; // GameTime_t
|
||||
public const nint m_EndTime = 0x4; // GameTime_t
|
||||
public const nint m_flWaitInterval = 0x8; // float32
|
||||
public const nint m_flWaitIntervalHigh = 0xC; // float32
|
||||
public const nint m_bCompleteOnNextWake = 0x10; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_BaseRequirement {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_BaseState {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class OutflowWithRequirements_t {
|
||||
public const nint m_Connection = 0x0; // CPulse_OutflowConnection
|
||||
public const nint m_DestinationFlowNodeID = 0x48; // PulseDocNodeID_t
|
||||
public const nint m_RequirementNodeIDs = 0x50; // CUtlVector<PulseDocNodeID_t>
|
||||
public const nint m_nCursorStateBlockIndex = 0x68; // CUtlVector<int32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_IsRequirementValid {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Value_Gradient {
|
||||
public const nint m_Gradient = 0x48; // CColorGradient
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
public static class CPulseCursorFuncs {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PulseNodeDynamicOutflows_t__DynamicOutflow_t {
|
||||
public const nint m_OutflowID = 0x0; // CGlobalSymbol
|
||||
public const nint m_Connection = 0x8; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Test_MultiOutflow_WithParams {
|
||||
public const nint m_Out1 = 0x48; // SignatureOutflow_Continue
|
||||
public const nint m_Out2 = 0x90; // SignatureOutflow_Continue
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class CBasePulseGraphInstance {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Inflow_GraphHook {
|
||||
public const nint m_HookName = 0x80; // PulseSymbol_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class SignatureOutflow_Resume {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Test_MultiOutflow_WithParams_Yielding__CursorState_t {
|
||||
public const nint nTestStep = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
public static class CPulseTurtleGraphicsCursor {
|
||||
public const nint m_Color = 0xD0; // Color
|
||||
public const nint m_vPos = 0xD4; // Vector2D
|
||||
public const nint m_flHeadingDeg = 0xDC; // float32
|
||||
public const nint m_bPenUp = 0xE0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field 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
|
||||
// Field 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
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Test_MultiInflow_NoDefault {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
public static class CPulseCell_WaitForCursorsWithTagBase {
|
||||
public const nint m_nCursorsAllowedToWait = 0x48; // int32
|
||||
public const nint m_WaitComplete = 0x50; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_InvokeBinding {
|
||||
public const nint m_RegisterMap = 0x0; // PulseRegisterMap_t
|
||||
public const nint m_FuncName = 0x30; // PulseSymbol_t
|
||||
public const nint m_nCellIndex = 0x40; // PulseRuntimeCellIndex_t
|
||||
public const nint m_nSrcChunk = 0x44; // PulseRuntimeChunkIndex_t
|
||||
public const nint m_nSrcInstruction = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_IntervalTimer {
|
||||
public const nint m_Completed = 0x48; // CPulse_ResumePoint
|
||||
public const nint m_OnInterval = 0x90; // SignatureOutflow_Continue
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
public static class CPulseTestScriptLib {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_BaseLerp {
|
||||
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
public static class CPulseCell_Value_TestValue50 {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Test_MultiOutflow_WithParams_Yielding {
|
||||
public const nint m_Out1 = 0x48; // SignatureOutflow_Continue
|
||||
public const nint m_AsyncChild1 = 0x90; // SignatureOutflow_Continue
|
||||
public const nint m_AsyncChild2 = 0xD8; // SignatureOutflow_Continue
|
||||
public const nint m_YieldResume1 = 0x120; // SignatureOutflow_Resume
|
||||
public const nint m_YieldResume2 = 0x168; // SignatureOutflow_Resume
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Value_Curve {
|
||||
public const nint m_Curve = 0x48; // CPiecewiseCurve
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Inflow_EventHandler {
|
||||
public const nint m_EventName = 0x80; // PulseSymbol_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_BaseFlow {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Step_TestDomainTracepoint {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
||||
public const nint m_Shuffle = 0x0; // CUtlVectorFixedGrowable<uint8,8>
|
||||
public const nint m_nNextShuffle = 0x20; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_BaseLerp__CursorState_t {
|
||||
public const nint m_StartTime = 0x0; // GameTime_t
|
||||
public const nint m_EndTime = 0x4; // GameTime_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class CPulseGraphInstance_TestDomain_Derived {
|
||||
public const nint m_nInstanceValueX = 0x160; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class CPulseCell_WaitForCursorsWithTagBase__CursorState_t {
|
||||
public const nint m_TagName = 0x0; // PulseSymbol_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
public static class CPulseArraylib {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 9
|
||||
public static class CPulseGraphInstance_TestDomain {
|
||||
public const nint m_bIsRunningUnitTests = 0x130; // bool
|
||||
public const nint m_bExplicitTimeStepping = 0x131; // bool
|
||||
public const nint m_bExpectingToDestroyWithYieldedCursors = 0x132; // bool
|
||||
public const nint m_bQuietTracepoints = 0x133; // bool
|
||||
public const nint m_bExpectingCursorTerminatedDueToMaxInstructions = 0x134; // bool
|
||||
public const nint m_nCursorsTerminatedDueToMaxInstructions = 0x138; // int32
|
||||
public const nint m_nNextValidateIndex = 0x13C; // int32
|
||||
public const nint m_Tracepoints = 0x140; // CUtlVector<CUtlString>
|
||||
public const nint m_bTestYesOrNoPath = 0x158; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class SignatureOutflow_Continue {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Timeline {
|
||||
public const nint m_TimelineEvents = 0x48; // CUtlVector<CPulseCell_Timeline::TimelineEvent_t>
|
||||
public const nint m_bWaitForChildOutflows = 0x60; // bool
|
||||
public const nint m_OnFinished = 0x68; // CPulse_ResumePoint
|
||||
public const nint m_OnCanceled = 0xB0; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Inflow_EntOutputHandler {
|
||||
public const nint m_SourceEntity = 0x80; // PulseSymbol_t
|
||||
public const nint m_SourceOutput = 0x90; // PulseSymbol_t
|
||||
public const nint m_ExpectedParamType = 0xA0; // CPulseValueFullType
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
public static class CPulseCell_Outflow_TestExplicitYesNo {
|
||||
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
||||
public const nint m_No = 0x90; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
public static class CPulseCell_Outflow_TestRandomYesNo {
|
||||
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
||||
public const nint m_No = 0x90; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
||||
public const nint m_nNextIndex = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_LimitCount__InstanceState_t {
|
||||
public const nint m_nCurrentCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class FakeEntity_tAPI {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Test_MultiInflow_WithDefault {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Step_DebugLog {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_BaseYieldingInflow {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PulseNodeDynamicOutflows_t {
|
||||
public const nint m_Outflows = 0x0; // CUtlVector<PulseNodeDynamicOutflows_t::DynamicOutflow_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class CPulseCell_IsRequirementValid__Criteria_t {
|
||||
public const nint m_bIsValid = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Inflow_ObservableVariableListener {
|
||||
public const nint m_nBlackboardReference = 0x80; // PulseRuntimeBlackboardReferenceIndex_t
|
||||
public const nint m_bSelfReference = 0x82; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Outflow_CycleOrdered {
|
||||
public const nint m_Outputs = 0x48; // CUtlVector<CPulse_OutflowConnection>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PulseSelectorOutflowList_t {
|
||||
public const nint m_Outflows = 0x0; // CUtlVector<OutflowWithRequirements_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class CPulseGraphInstance_TurtleGraphics {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Val_TestDomainGetEntityName {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
public static class CPulseCell_Inflow_Wait {
|
||||
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_TestWaitWithCursorState {
|
||||
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
public const nint m_WakeCancel = 0x90; // CPulse_ResumePoint
|
||||
public const nint m_WakeFail = 0xD8; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Outflow_CycleShuffled {
|
||||
public const nint m_Outputs = 0x48; // CUtlVector<CPulse_OutflowConnection>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Inflow_Method {
|
||||
public const nint m_MethodName = 0x80; // PulseSymbol_t
|
||||
public const nint m_Description = 0x90; // CUtlString
|
||||
public const nint m_bIsPublic = 0x98; // bool
|
||||
public const nint m_ReturnType = 0xA0; // CPulseValueFullType
|
||||
public const nint m_Args = 0xB8; // CUtlLeanVector<CPulseRuntimeMethodArg>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_BaseValue {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
public static class CPulseCell_BooleanSwitchState {
|
||||
public const nint m_Condition = 0x48; // PulseObservableBoolExpression_t
|
||||
public const nint m_SubGraph = 0xC0; // CPulse_OutflowConnection
|
||||
public const nint m_WhenTrue = 0x108; // CPulse_OutflowConnection
|
||||
public const nint m_WhenFalse = 0x150; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class FakeEntityDerivedB_tAPI {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Inflow_Yield {
|
||||
public const nint m_UnyieldResume = 0x48; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
public static class CPulseMathlib {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class CPulseCell_Unknown {
|
||||
public const nint m_UnknownKeys = 0x48; // KeyValues3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Outflow_CycleRandom {
|
||||
public const nint m_Outputs = 0x48; // CUtlVector<CPulse_OutflowConnection>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Step_PublicOutput {
|
||||
public const nint m_OutputIndex = 0x48; // PulseRuntimeOutputIndex_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Val_TestDomainFindEntityByName {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_BlackboardReference {
|
||||
public const nint m_hBlackboardResource = 0x0; // CStrongHandle<InfoForResourceTypeIPulseGraphDef>
|
||||
public const nint m_BlackboardResource = 0x8; // PulseSymbol_t
|
||||
public const nint m_nNodeID = 0x18; // PulseDocNodeID_t
|
||||
public const nint m_NodeName = 0x20; // CGlobalSymbol
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_Value_RandomInt {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPulseEditorHeaderText
|
||||
public static class CPulseCell_Step_TestDomainEntFire {
|
||||
public const nint m_Input = 0x48; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class FakeEntityDerivedA_tAPI {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
public static class CPulseCell_ExampleSelector {
|
||||
public const nint m_OutflowList = 0x48; // PulseSelectorOutflowList_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_CallInfo {
|
||||
public const nint m_PortName = 0x0; // PulseSymbol_t
|
||||
public const nint m_nEditorNodeID = 0x10; // PulseDocNodeID_t
|
||||
public const nint m_RegisterMap = 0x18; // PulseRegisterMap_t
|
||||
public const nint m_CallMethodID = 0x48; // PulseDocNodeID_t
|
||||
public const nint m_nSrcChunk = 0x4C; // PulseRuntimeChunkIndex_t
|
||||
public const nint m_nSrcInstruction = 0x50; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_InlineNodeSkipSelector {
|
||||
public const nint m_nFlowNodeID = 0x48; // PulseDocNodeID_t
|
||||
public const nint m_bAnd = 0x4C; // bool
|
||||
public const nint m_PassOutflow = 0x50; // PulseSelectorOutflowList_t
|
||||
public const nint m_FailOutflow = 0x68; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
public static class CPulseCell_ExampleCriteria__Criteria_t {
|
||||
public const nint m_flFloatValue1 = 0x0; // float32
|
||||
public const nint m_flFloatValue2 = 0x4; // float32
|
||||
public const nint m_bMyBool = 0x8; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
public static class CPulseCell_ExampleCriteria {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
public static class CPulseCell_LimitCount {
|
||||
public const nint m_nLimitCount = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Step_CallExternalMethod {
|
||||
public const nint m_MethodName = 0x48; // PulseSymbol_t
|
||||
public const nint m_GameBlackboard = 0x58; // PulseSymbol_t
|
||||
public const nint m_ExpectedArgs = 0x68; // CUtlLeanVector<CPulseRuntimeMethodArg>
|
||||
public const nint m_nAsyncCallMode = 0x78; // PulseMethodCallMode_t
|
||||
public const nint m_OnFinished = 0x80; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PulseObservableBoolExpression_t {
|
||||
public const nint m_EvaluateConnection = 0x0; // CPulse_OutflowConnection
|
||||
public const nint m_DependentObservableVars = 0x48; // CUtlVector<PulseRuntimeVarIndex_t>
|
||||
public const nint m_DependentObservableBlackboardReferences = 0x60; // CUtlVector<PulseRuntimeBlackboardReferenceIndex_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class CPulseCell_LimitCount__Criteria_t {
|
||||
public const nint m_bLimitCountPasses = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Step_TestDomainCreateFakeEntity {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_CursorQueue {
|
||||
public const nint m_nCursorsAllowedToRunParallel = 0x98; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_Value_RandomFloat {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class CPulseExecCursor {
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,877 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-11-05 06:01:01.132204 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: pulse_system.dll
|
||||
// Class count: 97
|
||||
// Enum count: 5
|
||||
namespace pulse_system_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 2
|
||||
enum class PulseBestOutflowRules_t : uint32_t {
|
||||
SORT_BY_NUMBER_OF_VALID_CRITERIA = 0x0,
|
||||
SORT_BY_OUTFLOW_INDEX = 0x1
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
enum class PulseTestEnumShape_t : uint32_t {
|
||||
CIRCLE = 0x64,
|
||||
SQUARE = 0xC8,
|
||||
TRIANGLE = 0x12C
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
enum class PulseCursorCancelPriority_t : uint32_t {
|
||||
None = 0x0,
|
||||
CancelOnSucceeded = 0x1,
|
||||
SoftCancel = 0x2,
|
||||
HardCancel = 0x3
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 2
|
||||
enum class PulseMethodCallMode_t : uint32_t {
|
||||
SYNC_WAIT_FOR_COMPLETION = 0x0,
|
||||
ASYNC_FIRE_AND_FORGET = 0x1
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 5
|
||||
enum class PulseTestEnumColor_t : uint32_t {
|
||||
BLACK = 0x0,
|
||||
WHITE = 0x1,
|
||||
RED = 0x2,
|
||||
GREEN = 0x3,
|
||||
BLUE = 0x4
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
namespace CPulseCell_Step_TestDomainDestroyFakeEntity {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
namespace CPulseCell_WaitForCursorsWithTag {
|
||||
constexpr std::ptrdiff_t m_bTagSelfWhenComplete = 0x98; // bool
|
||||
constexpr std::ptrdiff_t m_nDesiredKillPriority = 0x9C; // PulseCursorCancelPriority_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Test_NoInflow {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace CPulseGraphInstance_TestDomain_FakeEntityOwner {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Base {
|
||||
constexpr std::ptrdiff_t m_nEditorNodeID = 0x8; // PulseDocNodeID_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace CPulse_ResumePoint {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
namespace CTestDomainDerived_Cursor {
|
||||
constexpr std::ptrdiff_t m_nCursorValueA = 0xD0; // int32
|
||||
constexpr std::ptrdiff_t m_nCursorValueB = 0xD4; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
namespace CPulseCell_PickBestOutflowSelector {
|
||||
constexpr std::ptrdiff_t m_nCheckType = 0x48; // PulseBestOutflowRules_t
|
||||
constexpr std::ptrdiff_t m_OutflowList = 0x50; // PulseSelectorOutflowList_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
namespace CPulseTestFuncs_LibraryA {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPulseEditorHeaderIcon
|
||||
// MPropertyFriendlyName
|
||||
namespace CPulseCell_WaitForObservable {
|
||||
constexpr std::ptrdiff_t m_Condition = 0x48; // PulseObservableBoolExpression_t
|
||||
constexpr std::ptrdiff_t m_OnTrue = 0xC0; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
namespace CPulse_OutflowConnection {
|
||||
constexpr std::ptrdiff_t m_SourceOutflowName = 0x0; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_nDestChunk = 0x10; // PulseRuntimeChunkIndex_t
|
||||
constexpr std::ptrdiff_t m_nInstruction = 0x14; // int32
|
||||
constexpr std::ptrdiff_t m_OutflowRegisterMap = 0x18; // PulseRegisterMap_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseGraphDef {
|
||||
constexpr std::ptrdiff_t m_DomainIdentifier = 0x8; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_DomainSubType = 0x18; // CPulseValueFullType
|
||||
constexpr std::ptrdiff_t m_ParentMapName = 0x30; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_ParentXmlName = 0x40; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_Chunks = 0x50; // CUtlVector<CPulse_Chunk*>
|
||||
constexpr std::ptrdiff_t m_Cells = 0x68; // CUtlVector<CPulseCell_Base*>
|
||||
constexpr std::ptrdiff_t m_Vars = 0x80; // CUtlVector<CPulse_Variable>
|
||||
constexpr std::ptrdiff_t m_PublicOutputs = 0x98; // CUtlVector<CPulse_PublicOutput>
|
||||
constexpr std::ptrdiff_t m_InvokeBindings = 0xB0; // CUtlVector<CPulse_InvokeBinding*>
|
||||
constexpr std::ptrdiff_t m_CallInfos = 0xC8; // CUtlVector<CPulse_CallInfo*>
|
||||
constexpr std::ptrdiff_t m_Constants = 0xE0; // CUtlVector<CPulse_Constant>
|
||||
constexpr std::ptrdiff_t m_DomainValues = 0xF8; // CUtlVector<CPulse_DomainValue>
|
||||
constexpr std::ptrdiff_t m_BlackboardReferences = 0x110; // CUtlVector<CPulse_BlackboardReference>
|
||||
constexpr std::ptrdiff_t m_OutputConnections = 0x128; // CUtlVector<CPulse_OutputConnection*>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace CPulseGraphInstance_TestDomain_UseReadOnlyBlackboardView {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_FireCursors {
|
||||
constexpr std::ptrdiff_t m_Outflows = 0x48; // CUtlVector<CPulse_OutflowConnection>
|
||||
constexpr std::ptrdiff_t m_bWaitForChildOutflows = 0x60; // bool
|
||||
constexpr std::ptrdiff_t m_OnFinished = 0x68; // CPulse_ResumePoint
|
||||
constexpr std::ptrdiff_t m_OnCanceled = 0xB0; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Timeline__TimelineEvent_t {
|
||||
constexpr std::ptrdiff_t m_flTimeFromPrevious = 0x0; // float32
|
||||
constexpr std::ptrdiff_t m_EventOutflow = 0x8; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_IntervalTimer__CursorState_t {
|
||||
constexpr std::ptrdiff_t m_StartTime = 0x0; // GameTime_t
|
||||
constexpr std::ptrdiff_t m_EndTime = 0x4; // GameTime_t
|
||||
constexpr std::ptrdiff_t m_flWaitInterval = 0x8; // float32
|
||||
constexpr std::ptrdiff_t m_flWaitIntervalHigh = 0xC; // float32
|
||||
constexpr std::ptrdiff_t m_bCompleteOnNextWake = 0x10; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_BaseRequirement {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPulseEditorHeaderIcon
|
||||
namespace CPulseCell_BaseState {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace OutflowWithRequirements_t {
|
||||
constexpr std::ptrdiff_t m_Connection = 0x0; // CPulse_OutflowConnection
|
||||
constexpr std::ptrdiff_t m_DestinationFlowNodeID = 0x48; // PulseDocNodeID_t
|
||||
constexpr std::ptrdiff_t m_RequirementNodeIDs = 0x50; // CUtlVector<PulseDocNodeID_t>
|
||||
constexpr std::ptrdiff_t m_nCursorStateBlockIndex = 0x68; // CUtlVector<int32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_IsRequirementValid {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
namespace CPulseCell_Value_Gradient {
|
||||
constexpr std::ptrdiff_t m_Gradient = 0x48; // CColorGradient
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
namespace CPulseCursorFuncs {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PulseNodeDynamicOutflows_t__DynamicOutflow_t {
|
||||
constexpr std::ptrdiff_t m_OutflowID = 0x0; // CGlobalSymbol
|
||||
constexpr std::ptrdiff_t m_Connection = 0x8; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Test_MultiOutflow_WithParams {
|
||||
constexpr std::ptrdiff_t m_Out1 = 0x48; // SignatureOutflow_Continue
|
||||
constexpr std::ptrdiff_t m_Out2 = 0x90; // SignatureOutflow_Continue
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace CBasePulseGraphInstance {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Inflow_GraphHook {
|
||||
constexpr std::ptrdiff_t m_HookName = 0x80; // PulseSymbol_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace SignatureOutflow_Resume {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Test_MultiOutflow_WithParams_Yielding__CursorState_t {
|
||||
constexpr std::ptrdiff_t nTestStep = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
namespace CPulseTurtleGraphicsCursor {
|
||||
constexpr std::ptrdiff_t m_Color = 0xD0; // Color
|
||||
constexpr std::ptrdiff_t m_vPos = 0xD4; // Vector2D
|
||||
constexpr std::ptrdiff_t m_flHeadingDeg = 0xDC; // float32
|
||||
constexpr std::ptrdiff_t m_bPenUp = 0xE0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field 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
|
||||
// Field 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
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Test_MultiInflow_NoDefault {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
namespace CPulseCell_WaitForCursorsWithTagBase {
|
||||
constexpr std::ptrdiff_t m_nCursorsAllowedToWait = 0x48; // int32
|
||||
constexpr std::ptrdiff_t m_WaitComplete = 0x50; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulse_InvokeBinding {
|
||||
constexpr std::ptrdiff_t m_RegisterMap = 0x0; // PulseRegisterMap_t
|
||||
constexpr std::ptrdiff_t m_FuncName = 0x30; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_nCellIndex = 0x40; // PulseRuntimeCellIndex_t
|
||||
constexpr std::ptrdiff_t m_nSrcChunk = 0x44; // PulseRuntimeChunkIndex_t
|
||||
constexpr std::ptrdiff_t m_nSrcInstruction = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
namespace CPulseCell_IntervalTimer {
|
||||
constexpr std::ptrdiff_t m_Completed = 0x48; // CPulse_ResumePoint
|
||||
constexpr std::ptrdiff_t m_OnInterval = 0x90; // SignatureOutflow_Continue
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
namespace CPulseTestScriptLib {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_BaseLerp {
|
||||
constexpr std::ptrdiff_t m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
namespace CPulseCell_Value_TestValue50 {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Test_MultiOutflow_WithParams_Yielding {
|
||||
constexpr std::ptrdiff_t m_Out1 = 0x48; // SignatureOutflow_Continue
|
||||
constexpr std::ptrdiff_t m_AsyncChild1 = 0x90; // SignatureOutflow_Continue
|
||||
constexpr std::ptrdiff_t m_AsyncChild2 = 0xD8; // SignatureOutflow_Continue
|
||||
constexpr std::ptrdiff_t m_YieldResume1 = 0x120; // SignatureOutflow_Resume
|
||||
constexpr std::ptrdiff_t m_YieldResume2 = 0x168; // SignatureOutflow_Resume
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
namespace CPulseCell_Value_Curve {
|
||||
constexpr std::ptrdiff_t m_Curve = 0x48; // CPiecewiseCurve
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Inflow_EventHandler {
|
||||
constexpr std::ptrdiff_t m_EventName = 0x80; // PulseSymbol_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_BaseFlow {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
namespace CPulseCell_Step_TestDomainTracepoint {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
||||
constexpr std::ptrdiff_t m_Shuffle = 0x0; // CUtlVectorFixedGrowable<uint8,8>
|
||||
constexpr std::ptrdiff_t m_nNextShuffle = 0x20; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_BaseLerp__CursorState_t {
|
||||
constexpr std::ptrdiff_t m_StartTime = 0x0; // GameTime_t
|
||||
constexpr std::ptrdiff_t m_EndTime = 0x4; // GameTime_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace CPulseGraphInstance_TestDomain_Derived {
|
||||
constexpr std::ptrdiff_t m_nInstanceValueX = 0x160; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace CPulseCell_WaitForCursorsWithTagBase__CursorState_t {
|
||||
constexpr std::ptrdiff_t m_TagName = 0x0; // PulseSymbol_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
namespace CPulseArraylib {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 9
|
||||
namespace CPulseGraphInstance_TestDomain {
|
||||
constexpr std::ptrdiff_t m_bIsRunningUnitTests = 0x130; // bool
|
||||
constexpr std::ptrdiff_t m_bExplicitTimeStepping = 0x131; // bool
|
||||
constexpr std::ptrdiff_t m_bExpectingToDestroyWithYieldedCursors = 0x132; // bool
|
||||
constexpr std::ptrdiff_t m_bQuietTracepoints = 0x133; // bool
|
||||
constexpr std::ptrdiff_t m_bExpectingCursorTerminatedDueToMaxInstructions = 0x134; // bool
|
||||
constexpr std::ptrdiff_t m_nCursorsTerminatedDueToMaxInstructions = 0x138; // int32
|
||||
constexpr std::ptrdiff_t m_nNextValidateIndex = 0x13C; // int32
|
||||
constexpr std::ptrdiff_t m_Tracepoints = 0x140; // CUtlVector<CUtlString>
|
||||
constexpr std::ptrdiff_t m_bTestYesOrNoPath = 0x158; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace SignatureOutflow_Continue {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Timeline {
|
||||
constexpr std::ptrdiff_t m_TimelineEvents = 0x48; // CUtlVector<CPulseCell_Timeline::TimelineEvent_t>
|
||||
constexpr std::ptrdiff_t m_bWaitForChildOutflows = 0x60; // bool
|
||||
constexpr std::ptrdiff_t m_OnFinished = 0x68; // CPulse_ResumePoint
|
||||
constexpr std::ptrdiff_t m_OnCanceled = 0xB0; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Inflow_EntOutputHandler {
|
||||
constexpr std::ptrdiff_t m_SourceEntity = 0x80; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_SourceOutput = 0x90; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_ExpectedParamType = 0xA0; // CPulseValueFullType
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
namespace CPulseCell_Outflow_TestExplicitYesNo {
|
||||
constexpr std::ptrdiff_t m_Yes = 0x48; // CPulse_OutflowConnection
|
||||
constexpr std::ptrdiff_t m_No = 0x90; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
namespace CPulseCell_Outflow_TestRandomYesNo {
|
||||
constexpr std::ptrdiff_t m_Yes = 0x48; // CPulse_OutflowConnection
|
||||
constexpr std::ptrdiff_t m_No = 0x90; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
||||
constexpr std::ptrdiff_t m_nNextIndex = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_LimitCount__InstanceState_t {
|
||||
constexpr std::ptrdiff_t m_nCurrentCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace FakeEntity_tAPI {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Test_MultiInflow_WithDefault {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Step_DebugLog {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_BaseYieldingInflow {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PulseNodeDynamicOutflows_t {
|
||||
constexpr std::ptrdiff_t m_Outflows = 0x0; // CUtlVector<PulseNodeDynamicOutflows_t::DynamicOutflow_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace CPulseCell_IsRequirementValid__Criteria_t {
|
||||
constexpr std::ptrdiff_t m_bIsValid = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Inflow_ObservableVariableListener {
|
||||
constexpr std::ptrdiff_t m_nBlackboardReference = 0x80; // PulseRuntimeBlackboardReferenceIndex_t
|
||||
constexpr std::ptrdiff_t m_bSelfReference = 0x82; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Outflow_CycleOrdered {
|
||||
constexpr std::ptrdiff_t m_Outputs = 0x48; // CUtlVector<CPulse_OutflowConnection>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PulseSelectorOutflowList_t {
|
||||
constexpr std::ptrdiff_t m_Outflows = 0x0; // CUtlVector<OutflowWithRequirements_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace CPulseGraphInstance_TurtleGraphics {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
namespace CPulseCell_Val_TestDomainGetEntityName {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
namespace CPulseCell_Inflow_Wait {
|
||||
constexpr std::ptrdiff_t m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_TestWaitWithCursorState {
|
||||
constexpr std::ptrdiff_t m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
constexpr std::ptrdiff_t m_WakeCancel = 0x90; // CPulse_ResumePoint
|
||||
constexpr std::ptrdiff_t m_WakeFail = 0xD8; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Outflow_CycleShuffled {
|
||||
constexpr std::ptrdiff_t m_Outputs = 0x48; // CUtlVector<CPulse_OutflowConnection>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Inflow_Method {
|
||||
constexpr std::ptrdiff_t m_MethodName = 0x80; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_Description = 0x90; // CUtlString
|
||||
constexpr std::ptrdiff_t m_bIsPublic = 0x98; // bool
|
||||
constexpr std::ptrdiff_t m_ReturnType = 0xA0; // CPulseValueFullType
|
||||
constexpr std::ptrdiff_t m_Args = 0xB8; // CUtlLeanVector<CPulseRuntimeMethodArg>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_BaseValue {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
namespace CPulseCell_BooleanSwitchState {
|
||||
constexpr std::ptrdiff_t m_Condition = 0x48; // PulseObservableBoolExpression_t
|
||||
constexpr std::ptrdiff_t m_SubGraph = 0xC0; // CPulse_OutflowConnection
|
||||
constexpr std::ptrdiff_t m_WhenTrue = 0x108; // CPulse_OutflowConnection
|
||||
constexpr std::ptrdiff_t m_WhenFalse = 0x150; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace FakeEntityDerivedB_tAPI {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Inflow_Yield {
|
||||
constexpr std::ptrdiff_t m_UnyieldResume = 0x48; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPropertyDescription
|
||||
namespace CPulseMathlib {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace CPulseCell_Unknown {
|
||||
constexpr std::ptrdiff_t m_UnknownKeys = 0x48; // KeyValues3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Outflow_CycleRandom {
|
||||
constexpr std::ptrdiff_t m_Outputs = 0x48; // CUtlVector<CPulse_OutflowConnection>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Step_PublicOutput {
|
||||
constexpr std::ptrdiff_t m_OutputIndex = 0x48; // PulseRuntimeOutputIndex_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
namespace CPulseCell_Val_TestDomainFindEntityByName {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulse_BlackboardReference {
|
||||
constexpr std::ptrdiff_t m_hBlackboardResource = 0x0; // CStrongHandle<InfoForResourceTypeIPulseGraphDef>
|
||||
constexpr std::ptrdiff_t m_BlackboardResource = 0x8; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_nNodeID = 0x18; // PulseDocNodeID_t
|
||||
constexpr std::ptrdiff_t m_NodeName = 0x20; // CGlobalSymbol
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
namespace CPulseCell_Value_RandomInt {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPulseEditorHeaderText
|
||||
namespace CPulseCell_Step_TestDomainEntFire {
|
||||
constexpr std::ptrdiff_t m_Input = 0x48; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace FakeEntityDerivedA_tAPI {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
// MPulseEditorCanvasItemSpecKV3
|
||||
namespace CPulseCell_ExampleSelector {
|
||||
constexpr std::ptrdiff_t m_OutflowList = 0x48; // PulseSelectorOutflowList_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulse_CallInfo {
|
||||
constexpr std::ptrdiff_t m_PortName = 0x0; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_nEditorNodeID = 0x10; // PulseDocNodeID_t
|
||||
constexpr std::ptrdiff_t m_RegisterMap = 0x18; // PulseRegisterMap_t
|
||||
constexpr std::ptrdiff_t m_CallMethodID = 0x48; // PulseDocNodeID_t
|
||||
constexpr std::ptrdiff_t m_nSrcChunk = 0x4C; // PulseRuntimeChunkIndex_t
|
||||
constexpr std::ptrdiff_t m_nSrcInstruction = 0x50; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_InlineNodeSkipSelector {
|
||||
constexpr std::ptrdiff_t m_nFlowNodeID = 0x48; // PulseDocNodeID_t
|
||||
constexpr std::ptrdiff_t m_bAnd = 0x4C; // bool
|
||||
constexpr std::ptrdiff_t m_PassOutflow = 0x50; // PulseSelectorOutflowList_t
|
||||
constexpr std::ptrdiff_t m_FailOutflow = 0x68; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
namespace CPulseCell_ExampleCriteria__Criteria_t {
|
||||
constexpr std::ptrdiff_t m_flFloatValue1 = 0x0; // float32
|
||||
constexpr std::ptrdiff_t m_flFloatValue2 = 0x4; // float32
|
||||
constexpr std::ptrdiff_t m_bMyBool = 0x8; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
namespace CPulseCell_ExampleCriteria {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
namespace CPulseCell_LimitCount {
|
||||
constexpr std::ptrdiff_t m_nLimitCount = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CPulseCell_Step_CallExternalMethod {
|
||||
constexpr std::ptrdiff_t m_MethodName = 0x48; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_GameBlackboard = 0x58; // PulseSymbol_t
|
||||
constexpr std::ptrdiff_t m_ExpectedArgs = 0x68; // CUtlLeanVector<CPulseRuntimeMethodArg>
|
||||
constexpr std::ptrdiff_t m_nAsyncCallMode = 0x78; // PulseMethodCallMode_t
|
||||
constexpr std::ptrdiff_t m_OnFinished = 0x80; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PulseObservableBoolExpression_t {
|
||||
constexpr std::ptrdiff_t m_EvaluateConnection = 0x0; // CPulse_OutflowConnection
|
||||
constexpr std::ptrdiff_t m_DependentObservableVars = 0x48; // CUtlVector<PulseRuntimeVarIndex_t>
|
||||
constexpr std::ptrdiff_t m_DependentObservableBlackboardReferences = 0x60; // CUtlVector<PulseRuntimeBlackboardReferenceIndex_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace CPulseCell_LimitCount__Criteria_t {
|
||||
constexpr std::ptrdiff_t m_bLimitCountPasses = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
namespace CPulseCell_Step_TestDomainCreateFakeEntity {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
namespace CPulseCell_CursorQueue {
|
||||
constexpr std::ptrdiff_t m_nCursorsAllowedToRunParallel = 0x98; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
namespace CPulseCell_Value_RandomFloat {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace CPulseExecCursor {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user