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
|
// Copyright 2009-2020 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include "bvh_node_base.h"
namespace embree
{
/*! Motion Blur AABBNode */
template<typename NodeRef, int N>
struct AABBNodeMB_t : public BaseNode_t<NodeRef, N>
{
using BaseNode_t<NodeRef,N>::children;
typedef BVHNodeRecord<NodeRef> NodeRecord;
typedef BVHNodeRecordMB<NodeRef> NodeRecordMB;
typedef BVHNodeRecordMB4D<NodeRef> NodeRecordMB4D;
struct Create
{
template<typename BuildRecord>
__forceinline NodeRef operator() (BuildRecord* children, const size_t num, const FastAllocator::CachedAllocator& alloc) const
{
AABBNodeMB_t* node = (AABBNodeMB_t*) alloc.malloc0(sizeof(AABBNodeMB_t),NodeRef::byteNodeAlignment); node->clear();
return NodeRef::encodeNode(node);
}
};
struct Set
{
template<typename BuildRecord>
__forceinline NodeRecordMB operator() (const BuildRecord& precord, const BuildRecord* crecords, NodeRef ref, NodeRecordMB* children, const size_t num) const
{
AABBNodeMB_t* node = ref.getAABBNodeMB();
LBBox3fa bounds = empty;
for (size_t i=0; i<num; i++) {
node->setRef(i,children[i].ref);
node->setBounds(i,children[i].lbounds);
bounds.extend(children[i].lbounds);
}
return NodeRecordMB(ref,bounds);
}
};
struct SetTimeRange
{
__forceinline SetTimeRange(BBox1f tbounds) : tbounds(tbounds) {}
template<typename BuildRecord>
__forceinline NodeRecordMB operator() (const BuildRecord& precord, const BuildRecord* crecords, NodeRef ref, NodeRecordMB* children, const size_t num) const
{
AABBNodeMB_t* node = ref.getAABBNodeMB();
LBBox3fa bounds = empty;
for (size_t i=0; i<num; i++) {
node->setRef(i, children[i].ref);
node->setBounds(i, children[i].lbounds, tbounds);
bounds.extend(children[i].lbounds);
}
return NodeRecordMB(ref,bounds);
}
BBox1f tbounds;
};
/*! Clears the node. */
__forceinline void clear() {
lower_x = lower_y = lower_z = vfloat<N>(pos_inf);
upper_x = upper_y = upper_z = vfloat<N>(neg_inf);
lower_dx = lower_dy = lower_dz = vfloat<N>(0.0f);
upper_dx = upper_dy = upper_dz = vfloat<N>(0.0f);
BaseNode_t<NodeRef,N>::clear();
}
/*! Sets ID of child. */
__forceinline void setRef(size_t i, NodeRef ref) {
children[i] = ref;
}
/*! Sets bounding box of child. */
__forceinline void setBounds(size_t i, const BBox3fa& bounds0_i, const BBox3fa& bounds1_i)
{
/*! for empty bounds we have to avoid inf-inf=nan */
BBox3fa bounds0(min(bounds0_i.lower,Vec3fa(+FLT_MAX)),max(bounds0_i.upper,Vec3fa(-FLT_MAX)));
BBox3fa bounds1(min(bounds1_i.lower,Vec3fa(+FLT_MAX)),max(bounds1_i.upper,Vec3fa(-FLT_MAX)));
bounds0 = bounds0.enlarge_by(4.0f*float(ulp));
bounds1 = bounds1.enlarge_by(4.0f*float(ulp));
Vec3fa dlower = bounds1.lower-bounds0.lower;
Vec3fa dupper = bounds1.upper-bounds0.upper;
lower_x[i] = bounds0.lower.x; lower_y[i] = bounds0.lower.y; lower_z[i] = bounds0.lower.z;
upper_x[i] = bounds0.upper.x; upper_y[i] = bounds0.upper.y; upper_z[i] = bounds0.upper.z;
lower_dx[i] = dlower.x; lower_dy[i] = dlower.y; lower_dz[i] = dlower.z;
upper_dx[i] = dupper.x; upper_dy[i] = dupper.y; upper_dz[i] = dupper.z;
}
/*! Sets bounding box of child. */
__forceinline void setBounds(size_t i, const LBBox3fa& bounds) {
setBounds(i, bounds.bounds0, bounds.bounds1);
}
/*! Sets bounding box of child. */
__forceinline void setBounds(size_t i, const LBBox3fa& bounds, const BBox1f& tbounds) {
setBounds(i, bounds.global(tbounds));
}
/*! Sets bounding box and ID of child. */
__forceinline void set(size_t i, NodeRef ref, const BBox3fa& bounds) {
lower_x[i] = bounds.lower.x; lower_y[i] = bounds.lower.y; lower_z[i] = bounds.lower.z;
upper_x[i] = bounds.upper.x; upper_y[i] = bounds.upper.y; upper_z[i] = bounds.upper.z;
children[i] = ref;
}
/*! Sets bounding box and ID of child. */
__forceinline void set(size_t i, const NodeRecordMB4D& child)
{
setRef(i, child.ref);
setBounds(i, child.lbounds, child.dt);
}
/*! Return bounding box for time 0 */
__forceinline BBox3fa bounds0(size_t i) const {
return BBox3fa(Vec3fa(lower_x[i],lower_y[i],lower_z[i]),
Vec3fa(upper_x[i],upper_y[i],upper_z[i]));
}
/*! Return bounding box for time 1 */
__forceinline BBox3fa bounds1(size_t i) const {
return BBox3fa(Vec3fa(lower_x[i]+lower_dx[i],lower_y[i]+lower_dy[i],lower_z[i]+lower_dz[i]),
Vec3fa(upper_x[i]+upper_dx[i],upper_y[i]+upper_dy[i],upper_z[i]+upper_dz[i]));
}
/*! Returns bounds of node. */
__forceinline BBox3fa bounds() const {
return BBox3fa(Vec3fa(reduce_min(min(lower_x,lower_x+lower_dx)),
reduce_min(min(lower_y,lower_y+lower_dy)),
reduce_min(min(lower_z,lower_z+lower_dz))),
Vec3fa(reduce_max(max(upper_x,upper_x+upper_dx)),
reduce_max(max(upper_y,upper_y+upper_dy)),
reduce_max(max(upper_z,upper_z+upper_dz))));
}
/*! Return bounding box of child i */
__forceinline BBox3fa bounds(size_t i) const {
return merge(bounds0(i),bounds1(i));
}
/*! Return linear bounding box of child i */
__forceinline LBBox3fa lbounds(size_t i) const {
return LBBox3fa(bounds0(i),bounds1(i));
}
/*! Return bounding box of child i at specified time */
__forceinline BBox3fa bounds(size_t i, float time) const {
return lerp(bounds0(i),bounds1(i),time);
}
/*! Returns the expected surface area when randomly sampling the time. */
__forceinline float expectedHalfArea(size_t i) const {
return lbounds(i).expectedHalfArea();
}
/*! Returns the expected surface area when randomly sampling the time. */
__forceinline float expectedHalfArea(size_t i, const BBox1f& t0t1) const {
return lbounds(i).expectedHalfArea(t0t1);
}
/*! swap two children of the node */
__forceinline void swap(size_t i, size_t j)
{
assert(i<N && j<N);
std::swap(children[i],children[j]);
std::swap(lower_x[i],lower_x[j]);
std::swap(upper_x[i],upper_x[j]);
std::swap(lower_y[i],lower_y[j]);
std::swap(upper_y[i],upper_y[j]);
std::swap(lower_z[i],lower_z[j]);
std::swap(upper_z[i],upper_z[j]);
std::swap(lower_dx[i],lower_dx[j]);
std::swap(upper_dx[i],upper_dx[j]);
std::swap(lower_dy[i],lower_dy[j]);
std::swap(upper_dy[i],upper_dy[j]);
std::swap(lower_dz[i],lower_dz[j]);
std::swap(upper_dz[i],upper_dz[j]);
}
/*! compacts a node (moves empty children to the end) */
__forceinline static void compact(AABBNodeMB_t* a)
{
/* find right most filled node */
ssize_t j=N;
for (j=j-1; j>=0; j--)
if (a->child(j) != NodeRef::emptyNode)
break;
/* replace empty nodes with filled nodes */
for (ssize_t i=0; i<j; i++) {
if (a->child(i) == NodeRef::emptyNode) {
a->swap(i,j);
for (j=j-1; j>i; j--)
if (a->child(j) != NodeRef::emptyNode)
break;
}
}
}
/*! Returns reference to specified child */
__forceinline NodeRef& child(size_t i) { assert(i<N); return children[i]; }
__forceinline const NodeRef& child(size_t i) const { assert(i<N); return children[i]; }
/*! stream output operator */
friend embree_ostream operator<<(embree_ostream cout, const AABBNodeMB_t& n)
{
cout << "AABBNodeMB {" << embree_endl;
for (size_t i=0; i<N; i++)
{
const BBox3fa b0 = n.bounds0(i);
const BBox3fa b1 = n.bounds1(i);
cout << " child" << i << " { " << embree_endl;
cout << " bounds0 = " << b0 << ", " << embree_endl;
cout << " bounds1 = " << b1 << ", " << embree_endl;
cout << " }";
}
cout << "}";
return cout;
}
public:
vfloat<N> lower_x; //!< X dimension of lower bounds of all N children.
vfloat<N> upper_x; //!< X dimension of upper bounds of all N children.
vfloat<N> lower_y; //!< Y dimension of lower bounds of all N children.
vfloat<N> upper_y; //!< Y dimension of upper bounds of all N children.
vfloat<N> lower_z; //!< Z dimension of lower bounds of all N children.
vfloat<N> upper_z; //!< Z dimension of upper bounds of all N children.
vfloat<N> lower_dx; //!< X dimension of lower bounds of all N children.
vfloat<N> upper_dx; //!< X dimension of upper bounds of all N children.
vfloat<N> lower_dy; //!< Y dimension of lower bounds of all N children.
vfloat<N> upper_dy; //!< Y dimension of upper bounds of all N children.
vfloat<N> lower_dz; //!< Z dimension of lower bounds of all N children.
vfloat<N> upper_dz; //!< Z dimension of upper bounds of all N children.
};
}
|