1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-24 05:27:45 +00:00

Add ULD module

This commit is contained in:
Joshua Goins 2024-04-29 20:06:34 -04:00
parent f818cf5376
commit bb2effcd70
2 changed files with 46 additions and 0 deletions

View file

@ -126,3 +126,6 @@ pub mod dic;
#[doc(hidden)] #[doc(hidden)]
pub const PHYSIS_VERSION: &str = env!("CARGO_PKG_VERSION"); pub const PHYSIS_VERSION: &str = env!("CARGO_PKG_VERSION");
/// Reading ULD files
pub mod uld;

43
src/uld.rs Normal file
View file

@ -0,0 +1,43 @@
// 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::binrw;
use binrw::BinRead;
#[binrw]
#[derive(Debug)]
#[brw(little)]
struct UldHeader {
#[br(count = 4)]
#[bw(pad_size_to = 4)]
#[bw(map = |x : &String | x.as_bytes())]
#[br(map = | x: Vec<u8> | String::from_utf8(x).unwrap().trim_matches(char::from(0)).to_string())]
pub identifier: String,
#[br(count = 4)]
#[bw(pad_size_to = 4)]
#[bw(map = |x : &String | x.as_bytes())]
#[br(map = | x: Vec<u8> | String::from_utf8(x).unwrap().trim_matches(char::from(0)).to_string())]
pub version: String,
component_offset: u32,
widget_offset: u32
}
#[derive(Debug)]
pub struct Uld {
}
impl Uld {
/// Reads an existing ULD file
pub fn from_existing(buffer: ByteSpan) -> Option<Self> {
let mut cursor = Cursor::new(buffer);
let header = UldHeader::read(&mut cursor).ok()?;
Some(Uld{})
}
}