pub struct SceneStream<'a> {
pub chunk: &'a [u8],
pub header: ScnHeader,
pub scn: &'a [u8],
pub str_index_list: &'a [u8],
pub str_list: &'a [u8],
pub label_list: &'a [u8],
pub z_label_list: &'a [u8],
pub scn_prop_name_map: HashMap<u32, String>,
pub scn_cmd_name_map: HashMap<u32, String>,
pub call_prop_name_map: HashMap<u32, String>,
pub pc: usize,
}Fields§
§chunk: &'a [u8]§header: ScnHeader§scn: &'a [u8]§str_index_list: &'a [u8]§str_list: &'a [u8]§label_list: &'a [u8]§z_label_list: &'a [u8]§scn_prop_name_map: HashMap<u32, String>§scn_cmd_name_map: HashMap<u32, String>§call_prop_name_map: HashMap<u32, String>§pc: usizeImplementations§
Source§impl<'a> SceneStream<'a>
impl<'a> SceneStream<'a>
pub fn new(chunk: &'a [u8]) -> Result<Self>
pub fn eof(&self) -> bool
pub fn get_prg_cntr(&self) -> usize
pub fn set_prg_cntr(&mut self, prg_cntr: usize) -> Result<()>
pub fn jump_to_label(&mut self, label_no: usize) -> Result<()>
pub fn jump_to_z_label(&mut self, z_no: usize) -> Result<()>
pub fn scn_cmd_offset(&self, cmd_no: usize) -> Result<usize>
pub fn next_scn_cmd_offset_after(&self, start: usize) -> Result<Option<usize>>
pub fn pop_u8(&mut self) -> Result<u8>
pub fn pop_u16(&mut self) -> Result<u16>
pub fn pop_i32(&mut self) -> Result<i32>
pub fn pop_str(&mut self) -> Result<String>
pub fn get_string(&self, str_id: usize) -> Result<String>
Trait Implementations§
Source§impl<'a> Clone for SceneStream<'a>
impl<'a> Clone for SceneStream<'a>
Source§fn clone(&self) -> SceneStream<'a>
fn clone(&self) -> SceneStream<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for SceneStream<'a>
impl<'a> RefUnwindSafe for SceneStream<'a>
impl<'a> Send for SceneStream<'a>
impl<'a> Sync for SceneStream<'a>
impl<'a> Unpin for SceneStream<'a>
impl<'a> UnsafeUnpin for SceneStream<'a>
impl<'a> UnwindSafe for SceneStream<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.