HexagonMap

Struct HexagonMap 

Source
pub struct HexagonMap<T> { /* private fields */ }
Expand description

A sparse hexagon map, if your map size will grow, or most areas will be blank, this is a better choice.

Implementations§

Source§

impl<T> HexagonMap<T>

Source

pub fn action_field( &self, start: CubicPoint, action: f64, ) -> ActionFieldSolver<'_, T>

Set the passable function.

§Arguments
  • passable: A function that returns true if the point is passable.

returns: PathFinder

§Examples
Source§

impl<T> HexagonMap<T>

Source

pub fn points_all(&self) -> GetHexagonPoints<'_, T>

Source

pub fn points_mut(&mut self) -> MutGetHexagonPoints<'_, T>

Source§

impl<T> HexagonMap<T>

Source

pub fn points_count(&self) -> usize

Count all defined points in the map.

Source

pub fn points_nearby(&self, source: CubicPoint) -> Vec<CubicPoint>

Find at most 6 points that are exists and adjacent to given point.

Source

pub fn joints_nearby(&self, source: CubicPoint) -> Vec<Joint>

Find at most 6 joints that are exists and adjacent to given point.

Source

pub fn points_around( &self, source: CubicPoint, steps: usize, ) -> GetHexagonAround<'_, T>

Find all points that are within a certain distance of a point.

Source§

impl<T> HexagonMap<T>

Source

pub fn path_finder( &self, start: CubicPoint, end: CubicPoint, ) -> PathFinder<'_, T>

Set the passable function.

§Arguments
  • passable: A function that returns true if the point is passable.

returns: PathFinder

§Examples
Source§

impl<T: Default> HexagonMap<T>

Source

pub fn circle(diameter: usize) -> Self

Source

pub fn rhombus(width: usize, height: usize) -> Self

Source

pub fn width_first(rows: usize, columns: usize, odd_left: bool) -> Self

Create a width first hexagon map.

§Arguments
  • width: row count
  • height: column count
  • odd_left: Fill the extra line at left if width is odd.

returns: HexagonMap

§Examples
let map = HexagonMap::<u8>::width_first(5, 5, true);
assert_eq!(map.points_count(), 25)
Source

pub fn height_first(rows: usize, columns: usize, odd_up: bool) -> Self

Source§

impl<T> HexagonMap<T>

Source

pub fn get_point(&self, point: CubicPoint) -> Option<&T>

Get the value at a point, if it exists.

Source

pub fn add_point(&mut self, point: CubicPoint, value: T) -> Option<T>

Add a point to the map, if it already exists, return the old value.

Source

pub fn mut_point(&mut self, point: CubicPoint) -> Option<&mut T>

Get a mutable reference to a point, if it exists.

Source

pub fn remove_point(&mut self, point: CubicPoint) -> Option<T>

Remove a point from the map, if it exists, return the old value.

Auto Trait Implementations§

§

impl<T> Freeze for HexagonMap<T>

§

impl<T> RefUnwindSafe for HexagonMap<T>
where T: RefUnwindSafe,

§

impl<T> Send for HexagonMap<T>
where T: Send,

§

impl<T> Sync for HexagonMap<T>
where T: Sync,

§

impl<T> Unpin for HexagonMap<T>

§

impl<T> UnwindSafe for HexagonMap<T>
where T: RefUnwindSafe,

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. 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.