Struct game_library::GeneratedMaps
source · pub struct GeneratedMaps {
pub biome_map: Vec<Vec<Marker>>,
pub object_map: Vec<Vec<usize>>,
/* private fields */
}
Expand description
Stores in the generated biome map and generated object map.
This is used to store the results of the noise generation, and then used to generate the actual realm. The default map size is 1000x1000.
Fields§
§biome_map: Vec<Vec<Marker>>
The biome map.
object_map: Vec<Vec<usize>>
The object map.
Implementations§
source§impl GeneratedMaps
impl GeneratedMaps
sourcepub const DEFAULT_SIZE: (usize, usize) = _
pub const DEFAULT_SIZE: (usize, usize) = _
The default size of the map.
sourcepub fn get_biome(&self, pos: Vec2) -> Marker
pub fn get_biome(&self, pos: Vec2) -> Marker
Ask for the biome at the given position.
Each tile is a 16x16 px but is accessed via the x and y coordinates of the tile.
The world origin is in the exact center of the map. This is represented by a 0,0 coordinate being at the middle index of the map.
sourcepub fn map_to_world(&self, pos: (usize, usize)) -> Vec3
pub fn map_to_world(&self, pos: (usize, usize)) -> Vec3
Function to transform map coordinates to world coordinates.
The world origin is in the exact center of the map. This is represented by a 0,0 coordinate being at the middle index of the map.
The world grid is 16x16 pixels per tile.
Note
This function has possible truncation and precision loss. This is because the world coordinates are floats and the map coordinates are usize.
Parameters
pos
: The map position to convert to world coordinates. It setspos.z
to 0.0.
Returns
The world position for the given map coordinates.
sourcepub fn world_to_map(&self, pos: Vec3) -> (usize, usize)
pub fn world_to_map(&self, pos: Vec3) -> (usize, usize)
Function to transform world coordinates to map coordinates.
The world origin is in the exact center of the map. This is represented by a 0,0 world coordinate being at the middle index of the map (width/2, height/2).
The world grid is 16x16 pixels per tile.
Note
This function has possible truncation and precision loss. This is because the world coordinates are floats and the map coordinates are usize.
Parameters
pos
: The world position to convert to map coordinates.pos.z
is ignored.
Returns
A tuple of the x and y coordinates of the map for the given world position.
If the world position is out of bounds, then (0,0)
is returned.
sourcepub const fn dimensions(&self) -> (usize, usize)
pub const fn dimensions(&self) -> (usize, usize)
Get the dimensions of the map.
Returns a tuple of the width and height of the map.
sourcepub fn reset(&mut self)
pub fn reset(&mut self)
Reset the maps to be empty.
This will clear the biome and object maps and reset them to be empty. It will also
add the correct amount of empty vectors to the maps (just like during a new
call)
sourcepub fn reset_with_dimensions(&mut self, width: usize, height: usize)
pub fn reset_with_dimensions(&mut self, width: usize, height: usize)
Resets the maps to be empty and sets the dimensions to the given size.
This will clear the biome and object maps and reset them to be empty. It will also
add the correct amount of empty vectors to the maps (just like during a new
call)
and set the dimensions to the given size.
sourcepub fn insert_biome(&mut self, pos: Vec2, biome: Marker)
pub fn insert_biome(&mut self, pos: Vec2, biome: Marker)
Add a biome to the map at the given position.
sourcepub fn insert_object(&mut self, pos: Vec2, object: usize)
pub fn insert_object(&mut self, pos: Vec2, object: usize)
Add an object to the map at the given position.
sourcepub fn push_biome(&mut self, x_pos: usize, biome: Marker)
pub fn push_biome(&mut self, x_pos: usize, biome: Marker)
Push a biome onto the map.
Trait Implementations§
source§impl Clone for GeneratedMaps
impl Clone for GeneratedMaps
source§fn clone(&self) -> GeneratedMaps
fn clone(&self) -> GeneratedMaps
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GeneratedMaps
impl Debug for GeneratedMaps
source§impl Default for GeneratedMaps
impl Default for GeneratedMaps
source§impl Hash for GeneratedMaps
impl Hash for GeneratedMaps
source§impl PartialEq for GeneratedMaps
impl PartialEq for GeneratedMaps
source§fn eq(&self, other: &GeneratedMaps) -> bool
fn eq(&self, other: &GeneratedMaps) -> bool
self
and other
values to be equal, and is used
by ==
.impl Eq for GeneratedMaps
impl Resource for GeneratedMaps
impl StructuralEq for GeneratedMaps
impl StructuralPartialEq for GeneratedMaps
Auto Trait Implementations§
impl RefUnwindSafe for GeneratedMaps
impl Send for GeneratedMaps
impl Sync for GeneratedMaps
impl Unpin for GeneratedMaps
impl UnwindSafe for GeneratedMaps
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
[ShaderType
] for self
. When used in [AsBindGroup
]
derives, it is safe to assume that all images in self
exist.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
§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>
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>
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)
&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)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> DynEq for T
impl<T> DynEq for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Self
using data from the given [World
].§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian()
.§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.