make collider Option<> on EntityWithGraphics
This commit is contained in:
committed by
Sébastien Crozet
parent
53700db860
commit
3b0d256464
@@ -63,8 +63,10 @@ impl GraphicsManager {
|
|||||||
let body = body.unwrap_or(RigidBodyHandle::invalid());
|
let body = body.unwrap_or(RigidBodyHandle::invalid());
|
||||||
if let Some(sns) = self.b2sn.get_mut(&body) {
|
if let Some(sns) = self.b2sn.get_mut(&body) {
|
||||||
for sn in sns.iter_mut() {
|
for sn in sns.iter_mut() {
|
||||||
if sn.collider == collider {
|
if let Some(sn_c) = sn.collider {
|
||||||
commands.entity(sn.entity).despawn();
|
if sn_c == collider {
|
||||||
|
commands.entity(sn.entity).despawn();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -216,11 +218,11 @@ impl GraphicsManager {
|
|||||||
for collider_handle in bodies[handle].colliders() {
|
for collider_handle in bodies[handle].colliders() {
|
||||||
let color = self.c2color.get(collider_handle).copied().unwrap_or(color);
|
let color = self.c2color.get(collider_handle).copied().unwrap_or(color);
|
||||||
let collider = &colliders[*collider_handle];
|
let collider = &colliders[*collider_handle];
|
||||||
self.do_add_shape(
|
self.add_shape(
|
||||||
commands,
|
commands,
|
||||||
meshes,
|
meshes,
|
||||||
materials,
|
materials,
|
||||||
*collider_handle,
|
Some(*collider_handle),
|
||||||
collider.shape(),
|
collider.shape(),
|
||||||
collider.is_sensor(),
|
collider.is_sensor(),
|
||||||
collider.position(),
|
collider.position(),
|
||||||
@@ -264,11 +266,11 @@ impl GraphicsManager {
|
|||||||
let color = *self.b2color.get(&collider_parent).unwrap();
|
let color = *self.b2color.get(&collider_parent).unwrap();
|
||||||
let color = self.c2color.get(&handle).copied().unwrap_or(color);
|
let color = self.c2color.get(&handle).copied().unwrap_or(color);
|
||||||
let mut nodes = std::mem::replace(self.b2sn.get_mut(&collider_parent).unwrap(), Vec::new());
|
let mut nodes = std::mem::replace(self.b2sn.get_mut(&collider_parent).unwrap(), Vec::new());
|
||||||
self.do_add_shape(
|
self.add_shape(
|
||||||
commands,
|
commands,
|
||||||
meshes,
|
meshes,
|
||||||
materials,
|
materials,
|
||||||
handle,
|
Some(handle),
|
||||||
collider.shape(),
|
collider.shape(),
|
||||||
collider.is_sensor(),
|
collider.is_sensor(),
|
||||||
collider.position(),
|
collider.position(),
|
||||||
@@ -279,12 +281,12 @@ impl GraphicsManager {
|
|||||||
self.b2sn.insert(collider_parent, nodes);
|
self.b2sn.insert(collider_parent, nodes);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn do_add_shape(
|
pub fn add_shape(
|
||||||
&mut self,
|
&mut self,
|
||||||
commands: &mut Commands,
|
commands: &mut Commands,
|
||||||
meshes: &mut Assets<Mesh>,
|
meshes: &mut Assets<Mesh>,
|
||||||
materials: &mut Assets<StandardMaterial>,
|
materials: &mut Assets<StandardMaterial>,
|
||||||
handle: ColliderHandle,
|
handle: Option<ColliderHandle>,
|
||||||
shape: &dyn Shape,
|
shape: &dyn Shape,
|
||||||
sensor: bool,
|
sensor: bool,
|
||||||
pos: &Isometry<f32>,
|
pos: &Isometry<f32>,
|
||||||
@@ -294,7 +296,7 @@ impl GraphicsManager {
|
|||||||
) {
|
) {
|
||||||
if let Some(compound) = shape.as_compound() {
|
if let Some(compound) = shape.as_compound() {
|
||||||
for (shape_pos, shape) in compound.shapes() {
|
for (shape_pos, shape) in compound.shapes() {
|
||||||
self.do_add_shape(
|
self.add_shape(
|
||||||
commands,
|
commands,
|
||||||
meshes,
|
meshes,
|
||||||
materials,
|
materials,
|
||||||
@@ -394,6 +396,14 @@ impl GraphicsManager {
|
|||||||
pub fn nodes_mut(&mut self) -> impl Iterator<Item = &mut EntityWithGraphics> {
|
pub fn nodes_mut(&mut self) -> impl Iterator<Item = &mut EntityWithGraphics> {
|
||||||
self.b2sn.values_mut().flat_map(|val| val.iter_mut())
|
self.b2sn.values_mut().flat_map(|val| val.iter_mut())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn prefab_meshes(&self) -> &HashMap<ShapeType, Handle<Mesh>> {
|
||||||
|
&self.prefab_meshes
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn prefab_meshes_mut(&mut self) -> &mut HashMap<ShapeType, Handle<Mesh>> {
|
||||||
|
&mut self.prefab_meshes
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for GraphicsManager {
|
impl Default for GraphicsManager {
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ pub struct EntityWithGraphics {
|
|||||||
pub entity: Entity,
|
pub entity: Entity,
|
||||||
pub color: Point3<f32>,
|
pub color: Point3<f32>,
|
||||||
pub base_color: Point3<f32>,
|
pub base_color: Point3<f32>,
|
||||||
pub collider: ColliderHandle,
|
pub collider: Option<ColliderHandle>,
|
||||||
pub delta: Isometry<f32>,
|
pub delta: Isometry<f32>,
|
||||||
pub opacity: f32,
|
pub opacity: f32,
|
||||||
material: Handle<StandardMaterial>,
|
material: Handle<StandardMaterial>,
|
||||||
@@ -36,7 +36,7 @@ impl EntityWithGraphics {
|
|||||||
materials: &mut Assets<StandardMaterial>,
|
materials: &mut Assets<StandardMaterial>,
|
||||||
prefab_meshs: &HashMap<ShapeType, Handle<Mesh>>,
|
prefab_meshs: &HashMap<ShapeType, Handle<Mesh>>,
|
||||||
shape: &dyn Shape,
|
shape: &dyn Shape,
|
||||||
collider: ColliderHandle,
|
collider: Option<ColliderHandle>,
|
||||||
collider_pos: Isometry<f32>,
|
collider_pos: Isometry<f32>,
|
||||||
delta: Isometry<f32>,
|
delta: Isometry<f32>,
|
||||||
color: Point3<f32>,
|
color: Point3<f32>,
|
||||||
@@ -136,7 +136,7 @@ impl EntityWithGraphics {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn update(&mut self, colliders: &ColliderSet, components: &mut Query<(&mut Transform,)>) {
|
pub fn update(&mut self, colliders: &ColliderSet, components: &mut Query<(&mut Transform,)>) {
|
||||||
if let Some(co) = colliders.get(self.collider) {
|
if let Some(Some(co)) = self.collider.map(|c| colliders.get(c)) {
|
||||||
if let Ok(mut pos) = components.get_component_mut::<Transform>(self.entity) {
|
if let Ok(mut pos) = components.get_component_mut::<Transform>(self.entity) {
|
||||||
let co_pos = co.position() * self.delta;
|
let co_pos = co.position() * self.delta;
|
||||||
pos.translation.x = co_pos.translation.vector.x;
|
pos.translation.x = co_pos.translation.vector.x;
|
||||||
@@ -159,7 +159,7 @@ impl EntityWithGraphics {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn object(&self) -> ColliderHandle {
|
pub fn object(&self) -> Option<ColliderHandle> {
|
||||||
self.collider
|
self.collider
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user