Rust crate for parsing, and operating with Quake 1, 2, and GoldSrc BSP files.
- Parsing
.bspfiles with the BSP29 BSP2, BSP30 BSP38, and Qbism formats. - Structured easy access to the bsp data.
- BSP raycasting.
- Mesh generation.
- Lightmap atlas generation either per-style or per-slot (
.litsupported). - BSPX support, including built-in structures for the
RGBLIGHTING,LIGHTGRID_OCTREE,BRUSHLIST, andDECOUPLED_LMlumps.
use qbsp::prelude::*;
let _ = BspData::parse(BspParseInput {
bsp: &[], // Data of the bsp file.
lit: None, // Optional lit file for colored lighting if no `RGBLIGHTING` BSPX lump is present.
settings: BspParseSettings::default(),
});I might work on these at a later date, but if anyone wants to help out or just give some ideas, they're more than welcome to!
- More flexible meshing API
- BSP writing