jagua_rs/collision_detection/
hazard.rsuse crate::entities::placed_item::{PItemKey, PlacedItem};
use crate::geometry::d_transformation::DTransformation;
use crate::geometry::geo_enums::GeoPosition;
use crate::geometry::primitives::simple_polygon::SimplePolygon;
use std::borrow::Borrow;
use std::sync::Arc;
#[derive(Clone, Debug)]
pub struct Hazard {
pub entity: HazardEntity,
pub shape: Arc<SimplePolygon>,
pub active: bool,
}
impl Hazard {
pub fn new(entity: HazardEntity, shape: Arc<SimplePolygon>) -> Self {
Self {
entity,
shape,
active: true,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum HazardEntity {
PlacedItem {
id: usize,
dt: DTransformation,
pk: PItemKey,
},
BinExterior,
BinHole { id: usize },
InferiorQualityZone { quality: usize, id: usize },
}
impl HazardEntity {
pub fn position(&self) -> GeoPosition {
match self {
HazardEntity::PlacedItem { .. } => GeoPosition::Interior,
HazardEntity::BinExterior => GeoPosition::Exterior,
HazardEntity::BinHole { .. } => GeoPosition::Interior,
HazardEntity::InferiorQualityZone { .. } => GeoPosition::Interior,
}
}
pub fn is_dynamic(&self) -> bool {
match self {
HazardEntity::PlacedItem { .. } => true,
HazardEntity::BinExterior => false,
HazardEntity::BinHole { .. } => false,
HazardEntity::InferiorQualityZone { .. } => false,
}
}
pub fn is_universal(&self) -> bool {
match self {
HazardEntity::PlacedItem { .. } => true,
HazardEntity::BinExterior => true,
HazardEntity::BinHole { .. } => true,
HazardEntity::InferiorQualityZone { .. } => false,
}
}
}
impl<T> From<(PItemKey, T)> for HazardEntity
where
T: Borrow<PlacedItem>,
{
fn from((pk, pi): (PItemKey, T)) -> Self {
HazardEntity::PlacedItem {
id: pi.borrow().item_id,
dt: pi.borrow().d_transf,
pk,
}
}
}