infinite_rs

Struct ModuleFile

source
pub struct ModuleFile {
    pub files: Vec<ModuleFileEntry>,
    /* private fields */
}
Expand description

Module structure which contains the layout of the entire module file.

Fields§

§files: Vec<ModuleFileEntry>

Metadata regarding compression and layout of files (tags).

Implementations§

source§

impl ModuleFile

source

pub fn new() -> Self

source

pub fn read(&mut self, file_path: String) -> Result<(), Error>

Reads the module file from the given file path. This function reads the entire structure of the module file. It also calculates and stores important offsets within the file.

§Arguments
  • file_path - A string slice that holds the path to the module file.
§Returns

Returns Ok(()) if the read operation is successful, or an Error containing the I/O error if any reading operation fails.

source

pub fn read_tag(&mut self, index: u32) -> Result<(), Error>

Reads a specific tag from the module file.

This function reads a specific tag from the module file based on the provided index. It checks if the tag is not a resource tag (indicated by a tag_id of -1) and then reads the tag data from the module file. It also utilizes the HD1 stream if the file entry has the flag set for it and the stream is loaded.

§Arguments
  • index - The index of the file entry to read the tag from. This index corresponds to the position of the file entry in the files vector.
§Returns

Returns Ok(()) if the read operation is successful, or an Error containing the I/O error if any reading operation fails.

source

pub fn read_tag_from_id( &mut self, global_id: i32, ) -> Result<Option<usize>, Error>

Searches for the index of the tag given the global_id.

This function searches for the index of a tag in the files vector using the provided global_id. If the tag is found, it reads the tag using the read_tag function and stores it in the index.

§Arguments
  • global_id - The global tag ID of the file to find. This ID is used to identify the specific tag within the module file.
§Returns

Returns the index of the file if successful, wrapped in Some(usize). If the tag is not found, it returns None. Any I/O error encountered during the operation is also returned if it occurs.

source

pub fn read_resources( &mut self, index: u32, ) -> Result<Vec<&ModuleFileEntry>, Error>

Reads the resources referenced by a module entry.

This function reads the resources referenced by a specific module entry. It retrieves the resources based on the provided index and returns them as a vector of references to ModuleFileEntry.

§Arguments
  • index - Index of the file to read the resources of. This index corresponds to the position of the file entry in the files vector.
§Returns

Returns Ok(Vec<&ModuleFileEntry>) if the read operation is successful, containing a vector of references to ModuleFileEntry. If the requested resource wasn’t found in the module, an anyhow::Error is returned.

Trait Implementations§

source§

impl Debug for ModuleFile

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ModuleFile

source§

fn default() -> ModuleFile

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.