Struct Entry

Source
pub struct Entry {
    pub sound_resref: Option<FixedSizeString<16>>,
    pub _volume_variance: u32,
    pub _pitch_variance: u32,
    pub sound_length: Option<f32>,
    /* private fields */
}
Expand description

TLK entry data

Note: when the TLK is parsed using Tlk::from_bytes, the Entry’s text is stored as an offset in Tlk::strings_data: Vec<u8>

Fields§

§sound_resref: Option<FixedSizeString<16>>

Sound file name, if any

§_volume_variance: u32

Unused

§_pitch_variance: u32

Unused

§sound_length: Option<f32>

Sound length, if any

Implementations§

Source§

impl Entry

Source

pub fn is_empty(&self) -> bool

Returns true if the entry does not contain any text, sound or sound length

Source

pub fn get_str<'a>(&'a self, strings_data: &'a [u8]) -> Option<&'a str>

Returns a TLK entry text. May fail if the provided entry comes from another TLK

§Panics

if the entry references data that is out of strings_data bounds or is invalid utf8 data

Source

pub fn get_str_len(&self) -> usize

Returns a TLK entry text length in bytes

Source

pub fn into_owned(self, strings_data: &[u8]) -> Self

Remove any reference to external data

§Panics

if the entry references data that is out of strings_data bounds or is invalid utf8 data

Source

pub fn to_owned(&self, strings_data: &[u8]) -> Self

Returns a copy of this entry, that does not contain any reference to external data

§Panics

if the entry references data that is out of strings_data bounds or is invalid utf8 data

Source

pub fn to_string_pretty( &self, index: u32, index_padding: usize, user_indices: bool, strings_data: &[u8], ) -> String

Formats a single TLK entry to text (used by Tlk::to_string_pretty)

  • index: Entry strref
  • index_padding: Character width of the left side containing the strref
  • user_indices: true to display index as a user strref
  • strings_data: string data vector for non-owned TLK entries
§Panics

if the entry references data that is out of strings_data bounds or is invalid utf8 data

Trait Implementations§

Source§

impl Clone for Entry

Source§

fn clone(&self) -> Entry

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Entry

Source§

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

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

impl Default for Entry

Source§

fn default() -> Entry

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

impl<'de> Deserialize<'de> for Entry

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

§

impl Freeze for Entry

§

impl RefUnwindSafe for Entry

§

impl Send for Entry

§

impl Sync for Entry

§

impl Unpin for Entry

§

impl UnwindSafe for Entry

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,