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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
|
/*
* Copyright 1999-2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*
*/
package javax.media.j3d;
abstract class BHNode {
static final byte BH_TYPE_INTERNAL = 1;
static final byte BH_TYPE_LEAF = 2;
static final int NUMBER_OF_PLANES = 6;
static final boolean debug = false;
static final boolean debug2 = false;
BHNode parent;
byte nodeType;
BoundingBox bHull = null;
boolean mark;
BHNode () {
this.parent = null;
mark = false;
}
BHNode (BHNode parent) {
this.parent = parent;
mark = false;
}
BHNode (BHNode parent, BoundingBox bHull) {
this.parent = parent;
mark = false;
this.bHull = bHull;
}
BHNode getParent () {
return (this.parent) ;
}
abstract void computeBoundingHull();
abstract void updateMarkedBoundingHull();
abstract void destroyTree(BHNode[] bhArr, int[] index);
void setParent (BHNode node) {
this.parent = node;
}
BoundingBox getBoundingHull() {
return (this.bHull);
}
void setBoundingHull(BoundingBox bHull) {
this.bHull = bHull;
}
// given two nodes determine the bHull surrounding them, ie. the parent hull
void combineBHull(BHNode node1, BHNode node2 ) {
BoundingBox bHull1 = null;
BoundingBox bHull2 = null;
bHull1 = node1.getBoundingHull();
bHull2 = node2.getBoundingHull();
if(this.bHull==null)
this.bHull = new BoundingBox(bHull1);
else
this.bHull.set(bHull1);
this.bHull.combine(bHull2);
}
// returns true iff the bHull is completely inside this
// bounding hull i.e. bHull values are strictly less
// than or equal to all this.bHull values
boolean isInside(BoundingBox bHull) {
if(bHull == null)
return false;
if( this.bHull.isEmpty() || bHull.isEmpty() ) {
return false;
}
if( this.bHull.upper.x < bHull.upper.x ||
this.bHull.upper.y < bHull.upper.y ||
this.bHull.upper.z < bHull.upper.z ||
this.bHull.lower.x > bHull.lower.x ||
this.bHull.lower.y > bHull.lower.y ||
this.bHull.lower.z > bHull.lower.z )
return false;
else
return true;
}
// finds the node matching the search element in the tree and returns
// the node if found, else it returns null if the node couldn't be found
BHNode findNode(BHNode node) {
BHNode fNode = null;
if ( this.nodeType == BHNode.BH_TYPE_LEAF) {
if ( this == node ) {
return this;
}
}
else {
if (((BHInternalNode) this).rChild.isInside(node.bHull)) {
fNode = ((BHInternalNode)this).rChild.findNode(node);
if(fNode != null) {
return fNode;
}
}
if (((BHInternalNode)this).lChild.isInside(node.bHull)) {
return ((BHInternalNode)this).lChild.findNode(node);
}
}
return null;
}
void deleteFromParent() {
BHInternalNode parent;
// System.err.println("deleteFromParent - this " + this );
parent = (BHInternalNode) (this.parent);
if(parent != null) {
if(parent.rChild == this)
parent.rChild = null;
else if(parent.lChild == this)
parent.lChild = null;
else {
if(debug2) {
System.err.println("BHNode.java: Trouble! No match found. This can't happen.");
System.err.println("this " + this );
if ( this.nodeType == BHNode.BH_TYPE_INTERNAL) {
System.err.println("rChild " + ((BHInternalNode)this).rChild +
" lChild " + ((BHInternalNode)this).lChild);
}
System.err.println("parent " + parent +
" parent.rChild " + parent.rChild +
" parent.lChild " + parent.lChild);
}
}
}
}
// delete all leaf nodes marked with DELETE_UPDATE and update the
// bounds of the parents node
BHNode deleteAndUpdateMarkedNodes() {
if (this.mark == true) {
if (this.nodeType == BH_TYPE_LEAF) {
this.deleteFromParent();
return null;
} else {
if(debug)
if(((BHInternalNode)(this)).rChild == ((BHInternalNode)(this)).lChild)
System.err.println("rChild " + ((BHInternalNode)(this)).rChild +
" lChild " + ((BHInternalNode)(this)).lChild);
if(((BHInternalNode)(this)).rChild != null)
((BHInternalNode)(this)).rChild =
((BHInternalNode)(this)).rChild.deleteAndUpdateMarkedNodes();
if(((BHInternalNode)(this)).lChild != null)
((BHInternalNode)(this)).lChild =
((BHInternalNode)(this)).lChild.deleteAndUpdateMarkedNodes();
if ((((BHInternalNode)(this)).rChild == null) &&
(((BHInternalNode)(this)).lChild == null)) {
this.deleteFromParent();
return null;
} else {
if ( ((BHInternalNode)this).rChild == null ) {
BHNode leftChild = ((BHInternalNode)this).lChild;
leftChild.parent = this.parent;
// delete self, return lChild
this.deleteFromParent();
return leftChild;
} else if ( ((BHInternalNode)this).lChild == null ) {
BHNode rightChild = ((BHInternalNode)this).rChild;
rightChild.parent = this.parent;
// delete self, return rChild
this.deleteFromParent();
return rightChild;
} else {
// recompute your bounds and return yourself
this.combineBHull(((BHInternalNode)this).rChild,
((BHInternalNode)this).lChild);
// update the parent's pointers
((BHInternalNode)this).rChild.parent = this;
((BHInternalNode)this).lChild.parent = this;
this.mark = false;
return this;
}
}
}
} else {
// mark is NOT set, simply return self
return this;
}
}
// generic tree gathering statistics operations
int countNumberOfInternals() {
if ( this.nodeType == BHNode.BH_TYPE_LEAF ) {
return 0;
} else {
return (((BHInternalNode)this).rChild.countNumberOfInternals() +
((BHInternalNode)this).lChild.countNumberOfInternals() + 1 );
}
}
// recursively traverse the tree and compute the total number of leaves
int countNumberOfLeaves() {
if ( this.nodeType == BHNode.BH_TYPE_LEAF ) {
return 1;
} else {
return ( ((BHInternalNode)this).rChild.countNumberOfLeaves() +
((BHInternalNode)this).lChild.countNumberOfLeaves() );
}
}
// traverse tree and compute the maximum depth to a leaf
int computeMaxDepth (int currentDepth) {
if ( this.nodeType == BHNode.BH_TYPE_LEAF ) {
return (currentDepth);
} else {
int rightDepth = ((BHInternalNode)this).rChild.computeMaxDepth(currentDepth + 1);
int leftDepth = ((BHInternalNode)this).lChild.computeMaxDepth(currentDepth + 1);
if( rightDepth > leftDepth )
return rightDepth;
return leftDepth;
}
}
// compute the average depth of the leaves ...
float computeAverageLeafDepth ( int numberOfLeaves, int currentDepth ) {
int sumOfDepths = this.computeSumOfDepths(0);
return ( (float)sumOfDepths / (float)numberOfLeaves );
}
int computeSumOfDepths ( int currentDepth ) {
if ( this.nodeType == BHNode.BH_TYPE_LEAF ) {
return ( currentDepth );
} else {
return (((BHInternalNode)this).rChild.computeSumOfDepths(currentDepth + 1) +
((BHInternalNode)this).lChild.computeSumOfDepths(currentDepth + 1) ) ;
}
}
}
|