ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/octree.c
Revision: 2.4
Committed: Mon Aug 24 16:38:44 1998 UTC (25 years, 8 months ago) by gwlarson
Content type: text/plain
Branch: MAIN
Changes since 2.3: +1 -1 lines
Log Message:
changed octree block size and increased node limit to 100 million leaves

File Contents

# Content
1 /* Copyright (c) 1986 Regents of the University of California */
2
3 #ifndef lint
4 static char SCCSid[] = "$SunId$ LBL";
5 #endif
6
7 /*
8 * octree.c - routines dealing with octrees and cubes.
9 *
10 * 7/28/85
11 */
12
13 #include "standard.h"
14
15 #include "octree.h"
16
17 OCTREE *octblock[MAXOBLK]; /* our octree */
18 static OCTREE ofreelist = EMPTY; /* freed octree nodes */
19 static OCTREE treetop = 0; /* next free node */
20
21
22 OCTREE
23 octalloc() /* allocate an octree */
24 {
25 register OCTREE freet;
26
27 if ((freet = ofreelist) != EMPTY) {
28 ofreelist = octkid(freet, 0);
29 return(freet);
30 }
31 freet = treetop;
32 if (octti(freet) == 0) {
33 errno = 0;
34 if (octbi(freet) >= MAXOBLK)
35 return(EMPTY);
36 if ((octblock[octbi(freet)] = (OCTREE *)bmalloc(
37 (unsigned)OCTBLKSIZ*8*sizeof(OCTREE))) == NULL)
38 return(EMPTY);
39 }
40 treetop += 8;
41 return(freet);
42 }
43
44
45 octfree(ot) /* free an octree */
46 register OCTREE ot;
47 {
48 register int i;
49
50 if (!istree(ot))
51 return;
52 for (i = 0; i < 8; i++)
53 octfree(octkid(ot, i));
54 octkid(ot, 0) = ofreelist;
55 ofreelist = ot;
56 }
57
58
59 octdone() /* free EVERYTHING */
60 {
61 register int i;
62
63 for (i = 0; i < MAXOBLK; i++) {
64 if (octblock[i] == NULL)
65 break;
66 bfree((char *)octblock[i], (unsigned)256*8*sizeof(OCTREE));
67 octblock[i] = NULL;
68 }
69 ofreelist = EMPTY;
70 treetop = 0;
71 }
72
73
74 OCTREE
75 combine(ot) /* recursively combine nodes */
76 register OCTREE ot;
77 {
78 register int i;
79 register OCTREE ores;
80
81 if (!istree(ot)) /* not a tree */
82 return(ot);
83 ores = octkid(ot, 0) = combine(octkid(ot, 0));
84 for (i = 1; i < 8; i++)
85 if ((octkid(ot, i) = combine(octkid(ot, i))) != ores)
86 ores = ot;
87 if (!istree(ores)) { /* all were identical leaves */
88 octkid(ot, 0) = ofreelist;
89 ofreelist = ot;
90 }
91 return(ores);
92 }
93
94
95 culocate(cu, pt) /* locate point within cube */
96 register CUBE *cu;
97 register FVECT pt;
98 {
99 register int i;
100 int branch;
101
102 while (istree(cu->cutree)) {
103 cu->cusize *= 0.5;
104 branch = 0;
105 for (i = 0; i < 3; i++)
106 if (cu->cuorg[i] + cu->cusize <= pt[i]) {
107 cu->cuorg[i] += cu->cusize;
108 branch |= 1 << i;
109 }
110 cu->cutree = octkid(cu->cutree, branch);
111 }
112 }
113
114
115 cucopy(cu1, cu2) /* copy cu2 into cu1 */
116 register CUBE *cu1, *cu2;
117 {
118 cu1->cutree = cu2->cutree;
119 cu1->cusize = cu2->cusize;
120 VCOPY(cu1->cuorg, cu2->cuorg);
121 }
122
123
124 incube(cu, pt) /* determine if a point is inside a cube */
125 register CUBE *cu;
126 register FVECT pt;
127 {
128 if (cu->cuorg[0] > pt[0] || pt[0] >= cu->cuorg[0] + cu->cusize)
129 return(0);
130 if (cu->cuorg[1] > pt[1] || pt[1] >= cu->cuorg[1] + cu->cusize)
131 return(0);
132 if (cu->cuorg[2] > pt[2] || pt[2] >= cu->cuorg[2] + cu->cusize)
133 return(0);
134 return(1);
135 }