use crate::index::{IndexedEnvelope, RStarBackend, SpatialIndex2D};
use crate::options::TouchPolicy;
use crate::polygonizer::{
bounding_rect_3d, guaranteed_interior_probe, rings_share_edge, rings_touch_at_vertex,
};
use crate::types::Polygon3D;
use crate::utils::simd::SimdRing;
#[cfg(feature = "parallel")]
use rayon::prelude::*;
use rstar::AABB;
pub struct ContainmentForest {
pub tree: RStarBackend,
pub simd_shells: Vec<Option<SimdRing>>,
pub shell_areas: Vec<Option<f64>>,
}
impl ContainmentForest {
pub fn new(shells: &[Polygon3D]) -> Self {
let mut simd_shells: Vec<Option<SimdRing>> = Vec::with_capacity(shells.len());
let mut shell_areas: Vec<Option<f64>> = Vec::with_capacity(shells.len());
#[cfg(feature = "parallel")]
{
let (shells_p, areas_p): (Vec<_>, Vec<_>) = shells
.par_iter()
.map(|s| {
(
Some(SimdRing::new_3d(&s.exterior)),
Some(s.exterior_unsigned_area_2d()),
)
})
.unzip();
simd_shells.extend(shells_p);
shell_areas.extend(areas_p);
}
#[cfg(not(feature = "parallel"))]
{
let (shells_p, areas_p): (Vec<_>, Vec<_>) = shells
.iter()
.map(|s| {
(
Some(SimdRing::new_3d(&s.exterior)),
Some(s.exterior_unsigned_area_2d()),
)
})
.unzip();
simd_shells.extend(shells_p);
shell_areas.extend(areas_p);
}
let mut indexed_shells = Vec::with_capacity(shells.len());
for (i, shell) in shells.iter().enumerate() {
if let Some(bbox) = bounding_rect_3d(&shell.exterior) {
let aabb: AABB<[f64; 2]> =
AABB::from_corners([bbox.min().x, bbox.min().y], [bbox.max().x, bbox.max().y]);
indexed_shells.push(IndexedEnvelope { aabb, index: i });
}
}
let tree = RStarBackend::new(indexed_shells);
Self {
tree,
simd_shells,
shell_areas,
}
}
pub fn filter_polygonal(&self, shells: &[Polygon3D], touch_policy: &TouchPolicy) -> Vec<bool> {
let mut keep_mask = vec![true; shells.len()];
let mut container_counts = vec![0; shells.len()];
let probe_points: Vec<Option<geo_types::Point<f64>>> = shells
.iter()
.map(|s| guaranteed_interior_probe(&s.exterior))
.collect();
for (i, shell) in shells.iter().enumerate() {
let bbox: geo::Rect<f64> = match bounding_rect_3d(&shell.exterior) {
Some(b) => b,
None => {
keep_mask[i] = false;
continue;
}
};
let aabb: AABB<[f64; 2]> =
AABB::from_corners([bbox.min().x, bbox.min().y], [bbox.max().x, bbox.max().y]);
let candidates = self.tree.locate_in_envelope_intersecting(&aabb);
let probe = probe_points[i];
if let Some(probe_pt) = probe {
for cand_idx in candidates {
let j = cand_idx;
if i == j {
continue;
}
let simd_shell = match &self.simd_shells[j] {
Some(s) => s,
None => continue,
};
if simd_shell.contains(probe_pt.0) {
let area_i = match self.shell_areas[i] {
Some(a) => a,
None => continue,
};
let area_j = match self.shell_areas[j] {
Some(a) => a,
None => continue,
};
if area_j > area_i || ((area_j - area_i).abs() < 1e-9 && j < i) {
let touch_ok = match touch_policy {
TouchPolicy::AllowPointTouchDisallowEdgeShare => {
!rings_share_edge(&shells[j].exterior, &shell.exterior, 1e-10)
}
TouchPolicy::TreatAnyTouchAsDisjoint => {
!rings_share_edge(&shells[j].exterior, &shell.exterior, 1e-10)
&& !rings_touch_at_vertex(
&shells[j].exterior,
&shell.exterior,
1e-10,
)
}
TouchPolicy::AllowEdgeShare => true,
};
if touch_ok {
container_counts[i] += 1;
}
}
}
}
} else {
keep_mask[i] = false;
}
}
for (keep, count) in keep_mask.iter_mut().zip(container_counts.iter()) {
if *keep && count % 2 != 0 {
*keep = false;
}
}
keep_mask
}
pub fn assign_hole(
&self,
hole_3d: &Polygon3D,
shells: &[Polygon3D],
touch_policy: &TouchPolicy,
) -> Option<usize> {
let bbox = bounding_rect_3d(&hole_3d.exterior)?;
let hole_aabb: AABB<[f64; 2]> =
AABB::from_corners([bbox.min().x, bbox.min().y], [bbox.max().x, bbox.max().y]);
let candidates = self.tree.locate_in_envelope_intersecting(&hole_aabb);
let mut best_shell_idx = None;
let mut min_area = f64::MAX;
let probe_point = guaranteed_interior_probe(&hole_3d.exterior)?;
let hole_area = hole_3d.exterior_unsigned_area_2d();
for cand_idx in candidates {
let idx = cand_idx;
let simd_shell = match &self.simd_shells[idx] {
Some(s) => s,
None => continue,
};
if simd_shell.contains(probe_point.0) {
let area = match self.shell_areas[idx] {
Some(a) => a,
None => continue,
};
if area > hole_area + 1e-6 && area < min_area {
let touch_ok = match touch_policy {
TouchPolicy::AllowPointTouchDisallowEdgeShare => {
!rings_share_edge(&shells[idx].exterior, &hole_3d.exterior, 1e-10)
}
TouchPolicy::TreatAnyTouchAsDisjoint => {
!rings_share_edge(&shells[idx].exterior, &hole_3d.exterior, 1e-10)
&& !rings_touch_at_vertex(
&shells[idx].exterior,
&hole_3d.exterior,
1e-10,
)
}
TouchPolicy::AllowEdgeShare => true,
};
if touch_ok {
min_area = area;
best_shell_idx = Some(idx);
}
}
}
}
best_shell_idx
}
}