1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-25 13:57:45 +00:00
physis/src/tera.rs
Joshua Goins bb7c74fec8 Redesign how IndexFile parsing works, again
Now it reads much more of the index file format, and tries to handle
index1/index2 differences more opaquely. I'm not yet happy with the API, it
needs a bit more work.
2025-03-06 18:52:26 -05:00

85 lines
1.8 KiB
Rust

// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
use std::io::Cursor;
use crate::ByteSpan;
use binrw::BinRead;
use binrw::binrw;
#[binrw]
#[derive(Debug, Clone, Copy)]
#[brw(little)]
struct PlatePosition {
x: i16,
y: i16,
}
#[binrw]
#[derive(Debug)]
#[brw(little)]
struct TerrainHeader {
version: u32,
plate_count: u32,
plate_size: u32,
clip_distance: f32,
unknown: f32,
#[br(count = 32)]
padding: Vec<u8>,
#[br(count = plate_count)]
positions: Vec<PlatePosition>,
}
#[derive(Debug)]
pub struct PlateModel {
pub position: (f32, f32),
pub filename: String,
}
#[derive(Debug)]
pub struct Terrain {
pub plates: Vec<PlateModel>,
}
impl Terrain {
/// Reads an existing TERA file
pub fn from_existing(buffer: ByteSpan) -> Option<Terrain> {
let mut cursor = Cursor::new(buffer);
let header = TerrainHeader::read(&mut cursor).ok()?;
let mut plates = vec![];
for i in 0..header.plate_count {
plates.push(PlateModel {
position: (
header.plate_size as f32 * (header.positions[i as usize].x as f32 + 0.5),
header.plate_size as f32 * (header.positions[i as usize].y as f32 + 0.5),
),
filename: format!("{:04}.mdl", i),
})
}
Some(Terrain { plates })
}
}
#[cfg(test)]
mod tests {
use std::fs::read;
use std::path::PathBuf;
use super::*;
#[test]
fn test_invalid() {
let mut d = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
d.push("resources/tests");
d.push("random");
// Feeding it invalid data should not panic
Terrain::from_existing(&read(d).unwrap());
}
}