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
use crate::bounding_volume::{BoundingVolume, SimdAABB, AABB};
#[cfg(feature = "dim3")]
use crate::math::Vector;
use crate::math::{Point, Real};
use crate::simd::{SimdReal, SIMD_WIDTH};
use simba::simd::{SimdBool, SimdValue};
use std::ops::Range;
use super::{utils::split_indices_wrt_dim, IndexedData, NodeIndex, QBVHNode, QBVH};
#[allow(dead_code)]
struct QBVHIncrementalBuilderStep {
range: Range<usize>,
parent: NodeIndex,
}
#[allow(dead_code)]
struct QBVHIncrementalBuilder<T> {
qbvh: QBVH<T>,
to_insert: Vec<QBVHIncrementalBuilderStep>,
aabbs: Vec<AABB>,
indices: Vec<usize>,
}
#[allow(dead_code)]
impl<T: IndexedData> QBVHIncrementalBuilder<T> {
pub fn new() -> Self {
Self {
qbvh: QBVH::new(),
to_insert: Vec::new(),
aabbs: Vec::new(),
indices: Vec::new(),
}
}
pub fn update_single_depth(&mut self) {
if let Some(to_insert) = self.to_insert.pop() {
let indices = &mut self.indices[to_insert.range];
if indices.len() <= 4 {
let id = self.qbvh.nodes.len();
let mut aabb = AABB::new_invalid();
let mut leaf_aabbs = [AABB::new_invalid(); 4];
let mut proxy_ids = [u32::MAX; 4];
for (k, id) in indices.iter().enumerate() {
aabb.merge(&self.aabbs[*id]);
leaf_aabbs[k] = self.aabbs[*id];
proxy_ids[k] = *id as u32;
}
let node = QBVHNode {
simd_aabb: SimdAABB::from(leaf_aabbs),
children: proxy_ids,
parent: to_insert.parent,
leaf: true,
dirty: false,
};
self.qbvh.nodes[to_insert.parent.index as usize].children
[to_insert.parent.lane as usize] = id as u32;
self.qbvh.nodes[to_insert.parent.index as usize]
.simd_aabb
.replace(to_insert.parent.lane as usize, aabb);
self.qbvh.nodes.push(node);
return;
}
let mut center = Point::origin();
#[cfg(feature = "dim3")]
let mut variance = Vector::zeros();
let denom = 1.0 / (indices.len() as Real);
let mut aabb = AABB::new_invalid();
for i in &*indices {
let coords = self.aabbs[*i].center().coords;
aabb.merge(&self.aabbs[*i]);
center += coords * denom;
#[cfg(feature = "dim3")]
{
variance += coords.component_mul(&coords) * denom;
}
}
#[cfg(feature = "dim3")]
{
variance = variance - center.coords.component_mul(¢er.coords);
}
#[allow(unused_mut)]
let mut subdiv_dims = [0, 1];
#[cfg(feature = "dim3")]
{
let min = variance.imin();
subdiv_dims[0] = (min + 1) % 3;
subdiv_dims[1] = (min + 2) % 3;
}
let (left, right) =
split_indices_wrt_dim(indices, &self.aabbs, ¢er, subdiv_dims[0], true);
let (left_bottom, left_top) =
split_indices_wrt_dim(left, &self.aabbs, ¢er, subdiv_dims[1], true);
let (right_bottom, right_top) =
split_indices_wrt_dim(right, &self.aabbs, ¢er, subdiv_dims[1], true);
let node = QBVHNode {
simd_aabb: SimdAABB::new_invalid(),
children: [0; 4],
parent: to_insert.parent,
leaf: false,
dirty: false,
};
let id = self.qbvh.nodes.len() as u32;
self.qbvh.nodes.push(node);
let a = left_bottom.len();
let b = a + left_top.len();
let c = b + right_bottom.len();
let d = c + right_top.len();
self.to_insert.push(QBVHIncrementalBuilderStep {
range: 0..a,
parent: NodeIndex::new(id, 0),
});
self.to_insert.push(QBVHIncrementalBuilderStep {
range: a..b,
parent: NodeIndex::new(id, 1),
});
self.to_insert.push(QBVHIncrementalBuilderStep {
range: b..c,
parent: NodeIndex::new(id, 2),
});
self.to_insert.push(QBVHIncrementalBuilderStep {
range: c..d,
parent: NodeIndex::new(id, 3),
});
self.qbvh.nodes[to_insert.parent.index as usize].children
[to_insert.parent.lane as usize] = id as u32;
self.qbvh.nodes[to_insert.parent.index as usize]
.simd_aabb
.replace(to_insert.parent.lane as usize, aabb);
}
}
}
impl<T: IndexedData> QBVH<T> {
pub fn pre_update(&mut self, data: T) {
let id = data.index();
let node_id = self.proxies[id].node.index;
let node = &mut self.nodes[node_id as usize];
if !node.dirty {
node.dirty = true;
self.dirty_nodes.push_back(node_id);
}
}
pub fn update<F>(&mut self, aabb_builder: F, dilation_factor: Real)
where
F: Fn(&T) -> AABB,
{
let dilation_factor = SimdReal::splat(dilation_factor);
while let Some(id) = self.dirty_nodes.pop_front() {
if let Some(node) = self.nodes.get(id as usize) {
let mut new_aabbs = [AABB::new_invalid(); SIMD_WIDTH];
for (child_id, new_aabb) in node.children.iter().zip(new_aabbs.iter_mut()) {
if node.leaf {
if let Some(proxy) = self.proxies.get(*child_id as usize) {
*new_aabb = aabb_builder(&proxy.data);
}
} else {
if let Some(node) = self.nodes.get(*child_id as usize) {
*new_aabb = node.simd_aabb.to_merged_aabb();
}
}
}
let node = &mut self.nodes[id as usize];
let new_simd_aabb = SimdAABB::from(new_aabbs);
if !node.simd_aabb.contains(&new_simd_aabb).all() {
node.simd_aabb = new_simd_aabb;
node.simd_aabb.dilate_by_factor(dilation_factor);
self.dirty_nodes.push_back(node.parent.index);
}
node.dirty = false;
}
}
}
}