pub struct CollisionGroups { /* private fields */ }
Expand description

Groups of collision used to filter which object interact with which other one.

There are at most 30 groups indexed from 0 to 29 (included). This identifies collidable entities by combining three attributes:

  • A set of group this structure is member of.
  • A collision group whitelist.
  • A collision group blacklist.

For two entities to interact, they must be member of at least one group part of each-other’s whitelists, and must not be part of any blacklisted group. The blacklist always has priority on the whitelist.

Example

For example if the object A is such that:

  • It is part of the groups 1, 3, and 6.
  • It whitelists the groups 6 and 7.
  • It blacklists the group 1.

Let there be an object B such that:

  • It is part of the groups 1, 3, and 7.
  • It whitelists the groups 3 and 7.
  • It does not blacklist anything.

and an object C such that:

  • It is part of the groups 6 and 9.
  • It whitelists the groups 3 and 7.
  • It does not blacklist anything.

Then we have:

  • A and C can interact because A whitelists the group 6 (which C is part of), and, reciprocally, C whitelists the group 3 (which A is part of).
  • A and B will not interact because B is part of the group 1 which is blacklisted by A.
  • Finally, B and C will not interact either because, even if C whitelists the group 3 (which B is part of), B does not whitelists the groups 6 nor 9 (which B is part of).

Implementations§

source§

impl CollisionGroups

source

pub fn new() -> CollisionGroups

Creates a new CollisionGroups that enables interactions with everything except self-interaction.

source

pub fn empty() -> CollisionGroups

Creates a new CollisionGroups that disables interactions with everything.

source

pub fn with_membership(self, groups: &[usize]) -> CollisionGroups

Returns a copy of this object, updated with a new set of membership groups.

Examples
const GROUP_A: usize = 0;
const GROUP_B: usize = 29;
let groups = CollisionGroups::new().with_membership(&[GROUP_A, GROUP_B]);
assert!(groups.is_member_of(GROUP_A));
assert!(groups.is_member_of(GROUP_B));
source

pub fn with_whitelist(self, groups: &[usize]) -> CollisionGroups

Returns a copy of this object, updated with a new set of whitelisted groups.

Examples
const GROUP_A: usize = 0;
const GROUP_B: usize = 29;
let group_a = CollisionGroups::new().with_whitelist(&[GROUP_B]);
assert!(!group_a.is_group_whitelisted(GROUP_A));
assert!(group_a.is_group_whitelisted(GROUP_B));
source

pub fn with_blacklist(self, groups: &[usize]) -> CollisionGroups

Returns a copy of this object, updated with a new set of blacklisted groups.

Examples
const GROUP_A: usize = 0;
const GROUP_B: usize = 29;
let group_a = CollisionGroups::new().with_blacklist(&[GROUP_B]);
assert!(!group_a.is_group_blacklisted(GROUP_A));
assert!(group_a.is_group_blacklisted(GROUP_B));
source

pub fn max_group_id() -> usize

The maximum allowed group identifier.

source

pub fn add_membership_by_mask(self, group_mask: u32) -> CollisionGroups

adds this entity to the given group by a mask of bits where each bit index represent a group

source

pub fn remove_membership_by_mask(self, group_mask: u32) -> CollisionGroups

removes this entity from the given group by a mask of bits where each bit index represent a group

source

pub fn with_membership_by_mask(self, group_mask: u32) -> CollisionGroups

Replaces the membership with a mask of bits where each bit index represent a group

source

pub fn add_whitelist_by_mask(self, group_mask: u32) -> CollisionGroups

adds this entity to this entity whitelist by a mask of bits where each bit index represent a group

source

pub fn remove_whitelist_by_mask(self, group_mask: u32) -> CollisionGroups

remove this entity from this entity whitelist by a mask of bits where each bit index represent a group

source

pub fn with_whitelist_by_mask(self, group_mask: u32) -> CollisionGroups

Replaces the whitelist with a mask of bits where each bit index represent a group

source

pub fn add_blacklist_by_mask(self, group_mask: u32) -> CollisionGroups

adds this entity to this entity blacklist by a mask of bits where each bit index represent a group

source

pub fn remove_blacklist_by_mask(self, group_mask: u32) -> CollisionGroups

remove this entity from this entity blacklist by a mask of bits where each bit index represent a group

source

pub fn with_blacklist_by_mask(self, group_mask: u32) -> CollisionGroups

Replaces the blacklist with a mask of bits where each bit index represent a group

source

pub fn modify_membership(&mut self, group_id: usize, add: bool)

Adds or removes this entity from the given group.

source

pub fn modify_whitelist(&mut self, group_id: usize, add: bool)

Adds or removes the given group from this entity whitelist.

source

pub fn modify_blacklist(&mut self, group_id: usize, add: bool)

Adds or removes this entity from the given group.

source

pub fn set_membership(&mut self, groups: &[usize])

Make this object member of the given groups only.

source

pub fn set_whitelist(&mut self, groups: &[usize])

Whitelists the given groups only (others will be un-whitelisted).

source

pub fn set_blacklist(&mut self, groups: &[usize])

Blacklists the given groups only (others will be un-blacklisted).

source

pub fn copy_membership(&mut self, other: &CollisionGroups)

Copies the membership of another collision groups.

source

pub fn copy_whitelist(&mut self, other: &CollisionGroups)

Copies the whitelist of another collision groups.

source

pub fn copy_blacklist(&mut self, other: &CollisionGroups)

Copies the blacklist of another collision groups.

source

pub fn enable_self_interaction(&mut self)

Allows the object to interact with itself.

source

pub fn disable_self_interaction(&mut self)

Prevents the object from interacting with itself.

source

pub fn is_member_of(&self, group_id: usize) -> bool

Tests if this entity is part of the given group.

source

pub fn is_group_whitelisted(&self, group_id: usize) -> bool

Tests if the given group is whitelisted.

source

pub fn is_group_blacklisted(&self, group_id: usize) -> bool

Tests if the given group is blacklisted.

source

pub fn can_interact_with(&self, group_id: usize) -> bool

Tests whether interactions with a given group is possible.

Collision is possible if group_id is whitelisted but not blacklisted.

source

pub fn can_interact_with_groups(&self, other: &CollisionGroups) -> bool

Tests whether two collision groups have at least one group in common.

source

pub fn can_interact_with_self(&self) -> bool

Tests whether self-interaction is enabled.

Trait Implementations§

source§

impl Clone for CollisionGroups

source§

fn clone(&self) -> CollisionGroups

Returns a copy 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 CollisionGroups

source§

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

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

impl Default for CollisionGroups

source§

fn default() -> CollisionGroups

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

impl Copy for CollisionGroups

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for Twhere T: Any,

§

fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>

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, Global>) -> Rc<dyn Any, Global>

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)

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)

Convert &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 Twhere T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T, Global>) -> Arc<dyn Any + Send + Sync, Global>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
§

impl<T> Finalize for T

§

unsafe fn finalize_raw(data: *mut ())

Safety Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Initialize for Twhere T: Default,

§

fn initialize(&mut self)

§

unsafe fn initialize_raw(data: *mut ())

Safety Read more
source§

impl<T, U> Into<U> for Twhere 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> Same<T> for T

§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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> UserData for Twhere T: Clone + Any + Send + Sync,

source§

fn clone_boxed(&self) -> Box<dyn UserData, Global>

Clone this trait-object.
source§

fn to_any(&self) -> Box<dyn Any + Send + Sync, Global>

Clone as its super-trait trait objects.
source§

fn as_any(&self) -> &(dyn Any + Send + Sync + 'static)

Downcast to Any.
§

impl<T> Component for Twhere T: Send + Sync + 'static,