Struct screeps::pathfinder::LocalCostMatrix
source · pub struct LocalCostMatrix { /* private fields */ }
Implementations
sourceimpl LocalCostMatrix
impl LocalCostMatrix
pub fn new() -> Self
pub fn set(&mut self, x: u8, y: u8, val: u8)
pub fn get(&self, x: u8, y: u8) -> u8
sourcepub fn upload(&self) -> CostMatrix<'static>
pub fn upload(&self) -> CostMatrix<'static>
Copies all data into an JavaScript CostMatrix for use.
This is slower than as_uploaded
, but much safer.
sourcepub unsafe fn as_uploaded<'a>(&'a self) -> CostMatrix<'a>
pub unsafe fn as_uploaded<'a>(&'a self) -> CostMatrix<'a>
Temporarily exposes the bits of this matrix as a cost matrix.
Unsafety
There are two main invariants you must uphold after using this function:
-
The
CostMatrix
can only be used in JS code as long as thisLocalCostMatrix
is alive. Doing otherwise will result in undefined behavior, mainly JS being allowed to read/ manipulate uninitialized rust memory or rust memory that’s been repurposed. -
The
set
method of the cost matrix must not be used - it must be read only. This takes &self, but technically allows mutation of the inner Vec via JavaScript access. You should not use this method, or you will invoke Rust undefined behavior.
The CostMatrix returned will reference the internal data of this LocalCostMatrix
.
Trait Implementations
sourceimpl Clone for LocalCostMatrix
impl Clone for LocalCostMatrix
sourcefn clone(&self) -> LocalCostMatrix
fn clone(&self) -> LocalCostMatrix
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more