vbsp (0.7.0-pre4)

Published 2025-03-01 00:04:17 +00:00 by Quaternions

Installation

[registry]
default = "gitea"

[registries.gitea]
index = "sparse+https://git.itzana.me/api/packages/StrafesNET/cargo/" # Sparse index
# index = "https://git.itzana.me/StrafesNET/_cargo-index.git" # Git

[net]
git-fetch-with-cli = true
cargo add vbsp@0.7.0-pre4

About this package

Rust parser for valve bsp files.

VBSP

Rust parser for valve bsp files.

Currently only supports the tf2 version of bsp files, but adding other sourcemod variants should be fairly straight forward.

Example usage

fn main() -> Result<(), vbsp::BspError> {
    let data = std::fs::read("maps/cp_steel.bsp")?;
    let bsp = vbsp::Bsp::read(&data)?;
    println!("{:?}", bsp);

    Ok(())
}

See vbsp-to-gltf or vbspviewer for some more examples of how to use the bsp data.

TODO

  • smooth normals for displacements
  • smooth normals for faces

Credits

This project is adapted from the quake bsp parser and wouldn't be possible without information from the source engine wiki.

Dependencies

ID Version
ahash ^0.8.11
arrayvec ^0.7.6
binrw ^0.14.1
bitflags ^2.8.0
bv ^0.11.1
cgmath ^0.18.0
itertools ^0.14.0
lzma-rs ^0.3.0
num_enum ^0.7.3
serde ^1.0.218
static_assertions ^1.1.0
thiserror ^2.0.11
vdf-reader ^0.2.0
zip ^0.6.3
criterion ^0.5.1
main_error ^0.1.2
obj ^0.10
Details
Cargo
2025-03-01 00:04:17 +00:00
10
Robin Appelman <robin@icewind.nl>
MIT
35 KiB
Assets (1)
Versions (8) View all
0.7.0-pre4 2025-03-01
0.7.0-pre3 2025-02-28
0.7.0-pre 2025-02-26
0.7.0-codegen5 2025-02-25
0.7.0-codegen4 2025-02-22