bevy_rapier2d/geometry/collider.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
use std::fmt;
#[cfg(all(feature = "dim3", feature = "async-collider"))]
use {
crate::geometry::{TriMeshFlags, VHACDParameters},
bevy::utils::HashMap,
};
use bevy::prelude::*;
use bevy::utils::HashSet;
use rapier::geometry::Shape;
use rapier::prelude::{ColliderHandle, InteractionGroups, SharedShape};
use crate::dynamics::{CoefficientCombineRule, MassProperties};
use crate::math::Vect;
#[cfg(doc)]
use rapier::{dynamics::RigidBody, geometry::ContactForceEvent};
/// The Rapier handle of a collider that was inserted to the physics scene.
#[derive(Copy, Clone, Debug, Component)]
pub struct RapierColliderHandle(pub ColliderHandle);
/// A component which will be replaced by the specified collider type after the referenced mesh become available.
#[cfg(all(feature = "dim3", feature = "async-collider"))]
#[derive(Component, Debug, Clone, Default)]
pub struct AsyncCollider(pub ComputedColliderShape);
/// A component which will be replaced the specified collider types on children with meshes after the referenced scene become available.
#[cfg(all(feature = "dim3", feature = "async-collider"))]
#[derive(Component, Debug, Clone)]
pub struct AsyncSceneCollider {
/// Collider type for each scene mesh not included in [`Self::named_shapes`]. If [`None`], then all
/// shapes will be skipped for processing except [`Self::named_shapes`].
pub shape: Option<ComputedColliderShape>,
/// Shape types for meshes by name. If shape is [`None`], then it will be skipped for
/// processing.
pub named_shapes: HashMap<String, Option<ComputedColliderShape>>,
}
#[cfg(all(feature = "dim3", feature = "async-collider"))]
impl Default for AsyncSceneCollider {
fn default() -> Self {
Self {
shape: Some(Default::default()),
named_shapes: Default::default(),
}
}
}
/// Shape type based on a Bevy mesh asset.
#[cfg(all(feature = "dim3", feature = "async-collider"))]
#[derive(Debug, Clone)]
pub enum ComputedColliderShape {
/// Triangle-mesh.
TriMesh(TriMeshFlags),
/// Convex hull.
ConvexHull,
/// Convex decomposition.
ConvexDecomposition(VHACDParameters),
}
#[cfg(all(feature = "dim3", feature = "async-collider"))]
impl Default for ComputedColliderShape {
fn default() -> Self {
Self::TriMesh(TriMeshFlags::MERGE_DUPLICATE_VERTICES)
}
}
/// A geometric entity that can be attached to a [`RigidBody`] so it can be affected by contacts
/// and intersection queries.
///
/// Related components:
/// - [`ColliderMassProperties`]
/// - [`Friction`]
/// - [`Restitution`]
/// - [`Sensor`]
/// - [`CollisionGroups`]
/// - [`SolverGroups`]
/// - [`ActiveCollisionTypes`]
/// - [`ActiveEvents`]
/// - [`ContactForceEventThreshold`]
/// - [`CollidingEntities`]
/// - [`ColliderScale`]
/// - [`ColliderDisabled`]
#[derive(Component, Clone)] // TODO: Reflect
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct Collider {
/// The raw shape from Rapier.
pub raw: SharedShape,
pub(crate) unscaled: SharedShape,
pub(crate) scale: Vect,
}
impl From<SharedShape> for Collider {
fn from(shared_shape: SharedShape) -> Collider {
Collider {
raw: shared_shape.clone(),
unscaled: shared_shape,
scale: Vect::ONE,
}
}
}
impl<'a> From<&'a Collider> for &'a dyn Shape {
fn from(collider: &'a Collider) -> &'a dyn Shape {
&*collider.raw
}
}
impl fmt::Debug for Collider {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.as_typed_shape().fmt(f)
}
}
/// Overwrites the default application of [`GlobalTransform`] scale to a [`Collider`]'s shapes.
#[derive(Copy, Clone, Debug, PartialEq, Component, Reflect)]
pub enum ColliderScale {
/// This scale will be multiplied with the scale in the [`GlobalTransform`] component
/// before being applied to the collider.
Relative(Vect),
/// This scale will replace the one specified in the [`GlobalTransform`] component.
Absolute(Vect),
}
/// Indicates whether or not the [`Collider`] is a sensor.
#[derive(Copy, Clone, Default, Debug, PartialEq, Eq, Component, Reflect)]
#[reflect(Component, PartialEq)]
pub struct Sensor;
/// Custom mass-properties of a [`Collider`].
#[derive(Copy, Clone, Debug, PartialEq, Component, Reflect)]
#[reflect(Component, PartialEq)]
pub enum ColliderMassProperties {
/// The mass-properties are computed automatically from the collider’s shape and this density.
Density(f32),
/// The mass-properties are computed automatically from the collider’s shape and this mass.
Mass(f32),
/// The mass-properties of the collider are replaced by the ones specified here.
MassProperties(MassProperties),
}
impl Default for ColliderMassProperties {
fn default() -> Self {
Self::Density(1.0)
}
}
/// The friction affecting a [`Collider`].
#[derive(Copy, Clone, Debug, PartialEq, Component, Reflect)]
#[reflect(Component, PartialEq)]
pub struct Friction {
/// The friction coefficient of a collider.
///
/// The greater the value, the stronger the friction forces will be.
/// Should be `>= 0`.
pub coefficient: f32,
/// The rule applied to combine the friction coefficients of two colliders in contact.
pub combine_rule: CoefficientCombineRule,
}
impl Default for Friction {
fn default() -> Self {
Self {
coefficient: 0.5,
combine_rule: CoefficientCombineRule::Average,
}
}
}
impl Friction {
/// Creates a [`Friction`] component from the given friction coefficient, and using the default
/// [`CoefficientCombineRule::Average`] coefficient combine rule.
pub const fn new(coefficient: f32) -> Self {
Self {
coefficient,
combine_rule: CoefficientCombineRule::Average,
}
}
/// Creates a [`Friction`] component from the given friction coefficient, and using the default
/// [`CoefficientCombineRule::Average`] coefficient combine rule.
pub const fn coefficient(coefficient: f32) -> Self {
Self {
coefficient,
combine_rule: CoefficientCombineRule::Average,
}
}
}
/// The restitution affecting a [`Collider`].
#[derive(Copy, Clone, Debug, PartialEq, Component, Reflect)]
#[reflect(Component, PartialEq)]
pub struct Restitution {
/// The restitution coefficient of a collider.
///
/// The greater the value, the stronger the restitution forces will be.
/// Should be `>= 0`.
pub coefficient: f32,
/// The rule applied to combine the friction coefficients of two colliders in contact.
pub combine_rule: CoefficientCombineRule,
}
impl Restitution {
/// Creates a [`Restitution`] component from the given restitution coefficient, and using the default
/// [`CoefficientCombineRule::Average`] coefficient combine rule.
pub const fn new(coefficient: f32) -> Self {
Self {
coefficient,
combine_rule: CoefficientCombineRule::Average,
}
}
/// Creates a [`Restitution`] component from the given restitution coefficient, and using the default
/// [`CoefficientCombineRule::Average`] coefficient combine rule.
pub const fn coefficient(coefficient: f32) -> Self {
Self {
coefficient,
combine_rule: CoefficientCombineRule::Average,
}
}
}
impl Default for Restitution {
fn default() -> Self {
Self {
coefficient: 0.0,
combine_rule: CoefficientCombineRule::Average,
}
}
}
#[derive(Component, Reflect, Debug, Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
#[reflect(Component, Hash, PartialEq)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
/// Flags affecting whether or not collision-detection happens between two colliders
/// depending on the type of rigid-bodies they are attached to.
pub struct ActiveCollisionTypes(u16);
bitflags::bitflags! {
impl ActiveCollisionTypes: u16 {
/// Enable collision-detection between a collider attached to a dynamic body
/// and another collider attached to a dynamic body.
const DYNAMIC_DYNAMIC = 0b0000_0000_0000_0001;
/// Enable collision-detection between a collider attached to a dynamic body
/// and another collider attached to a kinematic body.
const DYNAMIC_KINEMATIC = 0b0000_0000_0000_1100;
/// Enable collision-detection between a collider attached to a dynamic body
/// and another collider attached to a fixed body (or not attached to any body).
const DYNAMIC_STATIC = 0b0000_0000_0000_0010;
/// Enable collision-detection between a collider attached to a kinematic body
/// and another collider attached to a kinematic body.
const KINEMATIC_KINEMATIC = 0b1100_1100_0000_0000;
/// Enable collision-detection between a collider attached to a kinematic body
/// and another collider attached to a fixed body (or not attached to any body).
const KINEMATIC_STATIC = 0b0010_0010_0000_0000;
/// Enable collision-detection between a collider attached to a fixed body (or
/// not attached to any body) and another collider attached to a fixed body (or
/// not attached to any body).
const STATIC_STATIC = 0b0000_0000_0010_0000;
}
}
impl Default for ActiveCollisionTypes {
fn default() -> Self {
Self::DYNAMIC_DYNAMIC | Self::DYNAMIC_KINEMATIC | Self::DYNAMIC_STATIC
}
}
impl From<ActiveCollisionTypes> for rapier::geometry::ActiveCollisionTypes {
fn from(collision_types: ActiveCollisionTypes) -> rapier::geometry::ActiveCollisionTypes {
rapier::geometry::ActiveCollisionTypes::from_bits(collision_types.bits())
.expect("Internal error: invalid active events conversion.")
}
}
/// A bit mask identifying groups for interaction.
#[derive(Component, Reflect, Copy, Clone, Debug, PartialEq, Eq, Hash)]
#[reflect(Component, Hash, PartialEq)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct Group(u32);
bitflags::bitflags! {
impl Group: u32 {
/// The group n°1.
const GROUP_1 = 1 << 0;
/// The group n°2.
const GROUP_2 = 1 << 1;
/// The group n°3.
const GROUP_3 = 1 << 2;
/// The group n°4.
const GROUP_4 = 1 << 3;
/// The group n°5.
const GROUP_5 = 1 << 4;
/// The group n°6.
const GROUP_6 = 1 << 5;
/// The group n°7.
const GROUP_7 = 1 << 6;
/// The group n°8.
const GROUP_8 = 1 << 7;
/// The group n°9.
const GROUP_9 = 1 << 8;
/// The group n°10.
const GROUP_10 = 1 << 9;
/// The group n°11.
const GROUP_11 = 1 << 10;
/// The group n°12.
const GROUP_12 = 1 << 11;
/// The group n°13.
const GROUP_13 = 1 << 12;
/// The group n°14.
const GROUP_14 = 1 << 13;
/// The group n°15.
const GROUP_15 = 1 << 14;
/// The group n°16.
const GROUP_16 = 1 << 15;
/// The group n°17.
const GROUP_17 = 1 << 16;
/// The group n°18.
const GROUP_18 = 1 << 17;
/// The group n°19.
const GROUP_19 = 1 << 18;
/// The group n°20.
const GROUP_20 = 1 << 19;
/// The group n°21.
const GROUP_21 = 1 << 20;
/// The group n°22.
const GROUP_22 = 1 << 21;
/// The group n°23.
const GROUP_23 = 1 << 22;
/// The group n°24.
const GROUP_24 = 1 << 23;
/// The group n°25.
const GROUP_25 = 1 << 24;
/// The group n°26.
const GROUP_26 = 1 << 25;
/// The group n°27.
const GROUP_27 = 1 << 26;
/// The group n°28.
const GROUP_28 = 1 << 27;
/// The group n°29.
const GROUP_29 = 1 << 28;
/// The group n°30.
const GROUP_30 = 1 << 29;
/// The group n°31.
const GROUP_31 = 1 << 30;
/// The group n°32.
const GROUP_32 = 1 << 31;
/// All of the groups.
const ALL = u32::MAX;
/// None of the groups.
const NONE = 0;
}
}
impl Default for Group {
fn default() -> Self {
Group::ALL
}
}
/// Pairwise collision filtering using bit masks.
///
/// This filtering method is based on two 32-bit values:
/// - The interaction groups memberships.
/// - The interaction groups filter.
///
/// An interaction is allowed between two filters `a` and `b` when two conditions
/// are met simultaneously:
/// - The groups membership of `a` has at least one bit set to `1` in common with the groups filter of `b`.
/// - The groups membership of `b` has at least one bit set to `1` in common with the groups filter of `a`.
///
/// In other words, interactions are allowed between two filter iff. the following condition is met:
/// ```ignore
/// (self.memberships & rhs.filter) != 0 && (rhs.memberships & self.filter) != 0
/// ```
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, Component, Reflect)]
#[reflect(Component, Hash, PartialEq)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct CollisionGroups {
/// Groups memberships.
pub memberships: Group,
/// Groups filter.
pub filters: Group,
}
impl CollisionGroups {
/// Creates a new collision-groups with the given membership masks and filter masks.
pub const fn new(memberships: Group, filters: Group) -> Self {
Self {
memberships,
filters,
}
}
}
impl From<CollisionGroups> for InteractionGroups {
fn from(collision_groups: CollisionGroups) -> InteractionGroups {
InteractionGroups {
memberships: rapier::geometry::Group::from_bits(collision_groups.memberships.bits())
.unwrap(),
filter: rapier::geometry::Group::from_bits(collision_groups.filters.bits()).unwrap(),
}
}
}
/// Pairwise constraints resolution filtering using bit masks.
///
/// This follows the same rules as the `CollisionGroups`.
#[derive(Copy, Clone, Default, Debug, PartialEq, Eq, Hash, Component, Reflect)]
#[reflect(Component, Hash, PartialEq)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct SolverGroups {
/// Groups memberships.
pub memberships: Group,
/// Groups filter.
pub filters: Group,
}
impl SolverGroups {
/// Creates a new collision-groups with the given membership masks and filter masks.
pub const fn new(memberships: Group, filters: Group) -> Self {
Self {
memberships,
filters,
}
}
}
impl From<SolverGroups> for InteractionGroups {
fn from(solver_groups: SolverGroups) -> InteractionGroups {
InteractionGroups {
memberships: rapier::geometry::Group::from_bits(solver_groups.memberships.bits())
.unwrap(),
filter: rapier::geometry::Group::from_bits(solver_groups.filters.bits()).unwrap(),
}
}
}
#[derive(Default, Component, Reflect, Debug, Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
#[reflect(Component)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
/// Flags affecting the behavior of the constraints solver for a given contact manifold.
pub struct ActiveHooks(u32);
bitflags::bitflags! {
impl ActiveHooks: u32 {
/// If set, Rapier will call `PhysicsHooks::filter_contact_pair` whenever relevant.
const FILTER_CONTACT_PAIRS = 0b0001;
/// If set, Rapier will call `PhysicsHooks::filter_intersection_pair` whenever relevant.
const FILTER_INTERSECTION_PAIR = 0b0010;
/// If set, Rapier will call `PhysicsHooks::modify_solver_contact` whenever relevant.
const MODIFY_SOLVER_CONTACTS = 0b0100;
}
}
impl From<ActiveHooks> for rapier::pipeline::ActiveHooks {
fn from(active_hooks: ActiveHooks) -> rapier::pipeline::ActiveHooks {
rapier::pipeline::ActiveHooks::from_bits(active_hooks.bits())
.expect("Internal error: invalid active events conversion.")
}
}
#[derive(Default, Component, Reflect, Debug, Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
#[reflect(Component)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
/// Flags affecting the events generated for this [`Collider`].
pub struct ActiveEvents(u32);
bitflags::bitflags! {
impl ActiveEvents: u32 {
/// If set, Rapier will call `EventHandler::handle_collision_event`
/// whenever relevant for this [`Collider`].
const COLLISION_EVENTS = 0b0001;
/// If set, Rapier will call `EventHandler::handle_contact_force_event`
/// whenever relevant for this [`Collider`].
const CONTACT_FORCE_EVENTS = 0b0010;
}
}
impl From<ActiveEvents> for rapier::pipeline::ActiveEvents {
fn from(active_events: ActiveEvents) -> rapier::pipeline::ActiveEvents {
rapier::pipeline::ActiveEvents::from_bits(active_events.bits())
.expect("Internal error: invalid active events conversion.")
}
}
/// The total force magnitude beyond which a [`ContactForceEvent`] can be emitted.
///
/// This requires that the [`ActiveEvents::CONTACT_FORCE_EVENTS`] flag is set on the
/// entity.
#[derive(Copy, Clone, PartialEq, Component, Reflect)]
#[reflect(Component)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct ContactForceEventThreshold(pub f32);
impl Default for ContactForceEventThreshold {
fn default() -> Self {
Self(f32::MAX)
}
}
/// Sets the contact skin of the collider.
///
/// The contact skin acts as if the collider was enlarged with a skin of width `skin_thickness`
/// around it, keeping objects further apart when colliding.
///
/// A non-zero contact skin can increase performance, and in some cases, stability. However
/// it creates a small gap between colliding object (equal to the sum of their skin). If the
/// skin is sufficiently small, this might not be visually significant or can be hidden by the
/// rendering assets.
#[derive(Copy, Clone, PartialEq, Default, Component, Reflect)]
#[reflect(Component)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct ContactSkin(pub f32);
/// Component which will be filled (if present) with a list of entities with which the current
/// entity is currently in contact.
///
/// This currently only updates when on an entity with a `Collider`, and if the
/// [`ActiveEvents::COLLISION_EVENTS`] is set on this entity or the entity it
/// collided with.
#[derive(Component, Default, Reflect)]
#[reflect(Component)]
pub struct CollidingEntities(pub(crate) HashSet<Entity>);
impl CollidingEntities {
/// Returns the number of colliding entities.
#[must_use]
pub fn len(&self) -> usize {
self.0.len()
}
/// Returns `true` if there is no colliding entities.
#[must_use]
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
/// Returns `true` if the collisions contains the specified entity.
#[must_use]
pub fn contains(&self, entity: Entity) -> bool {
self.0.contains(&entity)
}
/// An iterator visiting all colliding entities in arbitrary order.
pub fn iter(&self) -> impl Iterator<Item = Entity> + '_ {
self.0.iter().copied()
}
}
/// Indicates whether or not the collider is disabled explicitly by the user.
#[derive(Copy, Clone, Default, Debug, PartialEq, Eq, Component, Reflect)]
#[reflect(Component, PartialEq)]
pub struct ColliderDisabled;
/// We restrict the scaling increment to 1.0e-4, to avoid numerical jitter
/// due to the extraction of scaling factor from the GlobalTransform matrix.
pub fn get_snapped_scale(scale: Vect) -> Vect {
fn snap_value(new: f32) -> f32 {
const PRECISION: f32 = 1.0e4;
(new * PRECISION).round() / PRECISION
}
Vect {
x: snap_value(scale.x),
y: snap_value(scale.y),
#[cfg(feature = "dim3")]
z: snap_value(scale.z),
}
}