aboutsummaryrefslogtreecommitdiff
path: root/stockton-levels/src/q3/planes.rs
blob: b4d3217fcf3559819386d236feafc84688295d4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const PLANE_SIZE: usize = (4 * 3) + 4;

use super::Q3BspFile;
use crate::coords::CoordSystem;
use crate::helpers::{slice_to_f32, slice_to_vec3};
use crate::traits::planes::*;
use crate::types::{ParseError, Result};

/// Parse a lump of planes.
/// A lump is (data length / plane size) planes long
pub fn from_data(data: &[u8]) -> Result<Box<[Plane]>> {
    let length = data.len() / PLANE_SIZE;
    if data.is_empty() || data.len() % PLANE_SIZE != 0 || length % 2 != 0 {
        return Err(ParseError::Invalid);
    }

    let mut planes = Vec::with_capacity(length / 2);
    for n in 0..length {
        let offset = n * PLANE_SIZE;
        let plane = &data[offset..offset + PLANE_SIZE];
        planes.push(Plane {
            normal: slice_to_vec3(&plane[0..12]),
            dist: slice_to_f32(&plane[12..16]),
        });
    }

    Ok(planes.into_boxed_slice())
}

impl<T: CoordSystem> HasPlanes<T> for Q3BspFile<T> {
    type PlanesIter<'a> = std::slice::Iter<'a, Plane>;

    fn planes_iter(&self) -> Self::PlanesIter<'_> {
        self.planes.iter()
    }

    fn get_plane(&self, idx: u32) -> &Plane {
        &self.planes[idx as usize]
    }
}