1 |
– |
/* Copyright (c) 1986 Regents of the University of California */ |
2 |
– |
|
1 |
|
#ifndef lint |
2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
2 |
> |
static const char RCSid[] = "$Id$"; |
3 |
|
#endif |
6 |
– |
|
4 |
|
/* |
5 |
|
* readoct.c - routines to read octree information. |
9 |
– |
* |
10 |
– |
* 7/30/85 |
6 |
|
*/ |
7 |
|
|
8 |
< |
#include "standard.h" |
8 |
> |
#include "copyright.h" |
9 |
|
|
10 |
< |
#include "octree.h" |
10 |
> |
#include <stdio.h> |
11 |
> |
#include <time.h> |
12 |
|
|
13 |
+ |
#include "standard.h" |
14 |
+ |
#include "platform.h" |
15 |
+ |
#include "octree.h" |
16 |
|
#include "object.h" |
18 |
– |
|
17 |
|
#include "otypes.h" |
18 |
+ |
#include "resolu.h" |
19 |
|
|
20 |
< |
double atof(); |
21 |
< |
double getflt(); |
22 |
< |
long getint(); |
23 |
< |
char *getstr(); |
24 |
< |
OCTREE getfullnode(), gettree(); |
20 |
> |
static double ogetflt(void); |
21 |
> |
static long ogetint(int); |
22 |
> |
static char *ogetstr(char *); |
23 |
> |
static int nonsurfinset(OBJECT *); |
24 |
> |
static void octerror(int etyp, char *msg); |
25 |
> |
static void skiptree(void); |
26 |
> |
static OCTREE getfullnode(void), gettree(void); |
27 |
|
|
28 |
< |
static char *infn; /* input file name */ |
28 |
> |
static char *infn; /* input file specification */ |
29 |
|
static FILE *infp; /* input file stream */ |
30 |
+ |
static int objsize; /* size of stored OBJECT's */ |
31 |
|
static OBJECT objorig; /* zeroeth object */ |
32 |
< |
static short otypmap[NUMOTYPE+8]; /* object type map */ |
32 |
> |
static OBJECT fnobjects; /* number of objects in this file */ |
33 |
|
|
34 |
|
|
35 |
|
int |
36 |
< |
readoct(fname, load, scene, ofn) /* read in octree from file */ |
37 |
< |
char *fname; |
36 |
> |
readoct(inpspec, load, scene, ofn) /* read in octree file or stream */ |
37 |
> |
char *inpspec; |
38 |
|
int load; |
39 |
|
CUBE *scene; |
40 |
|
char *ofn[]; |
41 |
|
{ |
42 |
< |
char sbuf[128]; |
42 |
> |
char sbuf[512]; |
43 |
|
int nf; |
44 |
< |
register int i; |
44 |
> |
int i; |
45 |
> |
long m; |
46 |
|
|
47 |
< |
if (fname == NULL) { |
47 |
> |
if (inpspec == NULL) { |
48 |
|
infn = "standard input"; |
49 |
|
infp = stdin; |
50 |
+ |
} else if (inpspec[0] == '!') { |
51 |
+ |
infn = inpspec; |
52 |
+ |
if ((infp = popen(inpspec+1, "r")) == NULL) { |
53 |
+ |
sprintf(errmsg, "cannot execute \"%s\"", inpspec); |
54 |
+ |
error(SYSTEM, errmsg); |
55 |
+ |
} |
56 |
|
} else { |
57 |
< |
infn = fname; |
58 |
< |
if ((infp = fopen(fname, "r")) == NULL) { |
57 |
> |
infn = inpspec; |
58 |
> |
if ((infp = fopen(inpspec, "r")) == NULL) { |
59 |
|
sprintf(errmsg, "cannot open octree file \"%s\"", |
60 |
< |
fname); |
60 |
> |
inpspec); |
61 |
|
error(SYSTEM, errmsg); |
62 |
|
} |
63 |
|
} |
64 |
+ |
SET_FILE_BINARY(infp); |
65 |
|
/* get header */ |
66 |
< |
if (load & IO_INFO) |
67 |
< |
copyheader(infp, stdout); |
58 |
< |
else |
59 |
< |
getheader(infp, NULL); |
66 |
> |
if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : (FILE *)NULL) < 0) |
67 |
> |
octerror(USER, "not an octree"); |
68 |
|
/* check format */ |
69 |
< |
if (getint(2) != OCTMAGIC) |
70 |
< |
octerror(USER, "bad octree"); |
69 |
> |
if ((objsize = ogetint(2)-OCTMAGIC) <= 0 || |
70 |
> |
objsize > MAXOBJSIZ || objsize > sizeof(long)) |
71 |
> |
octerror(USER, "incompatible octree format"); |
72 |
|
/* get boundaries */ |
73 |
|
if (load & IO_BOUNDS) { |
74 |
|
for (i = 0; i < 3; i++) |
75 |
< |
scene->cuorg[i] = atof(getstr(sbuf)); |
76 |
< |
scene->cusize = atof(getstr(sbuf)); |
75 |
> |
scene->cuorg[i] = atof(ogetstr(sbuf)); |
76 |
> |
scene->cusize = atof(ogetstr(sbuf)); |
77 |
|
} else { |
78 |
|
for (i = 0; i < 4; i++) |
79 |
< |
getstr(sbuf); |
79 |
> |
ogetstr(sbuf); |
80 |
|
} |
81 |
|
objorig = nobjects; /* set object offset */ |
82 |
|
nf = 0; /* get object files */ |
83 |
< |
while (*getstr(sbuf)) { |
83 |
> |
while (*ogetstr(sbuf)) { |
84 |
|
if (load & IO_SCENE) |
85 |
|
readobj(sbuf); |
86 |
|
if (load & IO_FILES) |
89 |
|
} |
90 |
|
if (load & IO_FILES) |
91 |
|
ofn[nf] = NULL; |
92 |
+ |
/* get number of objects */ |
93 |
+ |
fnobjects = m = ogetint(objsize); |
94 |
+ |
if (fnobjects != m) |
95 |
+ |
octerror(USER, "too many objects"); |
96 |
|
|
97 |
< |
if (load & IO_TREE) { |
85 |
< |
/* get the octree */ |
97 |
> |
if (load & IO_TREE) /* get the octree */ |
98 |
|
scene->cutree = gettree(); |
99 |
< |
/* get the scene */ |
100 |
< |
if (nf == 0 && load & IO_SCENE) { |
101 |
< |
for (i = 0; *getstr(sbuf); i++) |
102 |
< |
if ((otypmap[i] = otype(sbuf)) < 0) { |
103 |
< |
sprintf(errmsg, "unknown type \"%s\"", |
104 |
< |
sbuf); |
105 |
< |
octerror(WARNING, errmsg); |
106 |
< |
} |
107 |
< |
while (getobj() != OVOID) |
108 |
< |
; |
109 |
< |
} |
99 |
> |
else if (load & IO_SCENE && nf == 0) |
100 |
> |
skiptree(); |
101 |
> |
|
102 |
> |
if (load & IO_SCENE) { /* get the scene */ |
103 |
> |
if (nf == 0) { |
104 |
> |
/* load binary scene data */ |
105 |
> |
readscene(infp, objsize); |
106 |
> |
|
107 |
> |
} else { /* consistency checks */ |
108 |
> |
/* check object count */ |
109 |
> |
if (nobjects != objorig+fnobjects) |
110 |
> |
octerror(USER, "bad object count; octree stale?"); |
111 |
> |
/* check for non-surfaces */ |
112 |
> |
if (dosets(nonsurfinset)) |
113 |
> |
octerror(USER, "modifier in tree; octree stale?"); |
114 |
> |
} |
115 |
|
} |
116 |
< |
fclose(infp); |
116 |
> |
/* close the input */ |
117 |
> |
if (infn[0] == '!') |
118 |
> |
pclose(infp); |
119 |
> |
else |
120 |
> |
fclose(infp); |
121 |
|
return(nf); |
122 |
|
} |
123 |
|
|
124 |
|
|
125 |
|
static char * |
126 |
< |
getstr(s) /* get null-terminated string */ |
126 |
> |
ogetstr(s) /* get null-terminated string */ |
127 |
|
char *s; |
128 |
|
{ |
129 |
< |
register char *cp; |
109 |
< |
register int c; |
129 |
> |
extern char *getstr(); |
130 |
|
|
131 |
< |
cp = s; |
132 |
< |
while ((c = getc(infp)) != EOF) |
133 |
< |
if ((*cp++ = c) == '\0') |
114 |
< |
return(s); |
115 |
< |
|
116 |
< |
octerror(USER, "truncated octree"); |
131 |
> |
if (getstr(s, infp) == NULL) |
132 |
> |
octerror(USER, "truncated octree"); |
133 |
> |
return(s); |
134 |
|
} |
135 |
|
|
136 |
|
|
137 |
|
static OCTREE |
138 |
|
getfullnode() /* get a set, return fullnode */ |
139 |
|
{ |
140 |
< |
OBJECT set[MAXSET+1]; |
140 |
> |
OBJECT set[MAXSET+1]; |
141 |
|
register int i; |
142 |
+ |
register long m; |
143 |
|
|
144 |
< |
set[0] = getint(sizeof(OBJECT)); |
127 |
< |
if (set[0] > MAXSET) |
144 |
> |
if ((set[0] = ogetint(objsize)) > MAXSET) |
145 |
|
octerror(USER, "bad set in getfullnode"); |
146 |
< |
for (i = 1; i <= set[0]; i++) |
147 |
< |
set[i] = getint(sizeof(OBJECT)) + objorig; |
146 |
> |
for (i = 1; i <= set[0]; i++) { |
147 |
> |
m = ogetint(objsize) + objorig; |
148 |
> |
if ((set[i] = m) != m) |
149 |
> |
octerror(USER, "too many objects"); |
150 |
> |
} |
151 |
|
return(fullnode(set)); |
152 |
|
} |
153 |
|
|
154 |
|
|
155 |
|
static long |
156 |
< |
getint(siz) /* get a siz-byte integer */ |
157 |
< |
register int siz; |
156 |
> |
ogetint(siz) /* get a siz-byte integer */ |
157 |
> |
int siz; |
158 |
|
{ |
159 |
< |
register int c; |
159 |
> |
extern long getint(); |
160 |
|
register long r; |
161 |
|
|
162 |
< |
c = getc(infp); |
163 |
< |
r = c&0x80 ? -1L : 0L; /* sign extend */ |
164 |
< |
ungetc(c, infp); |
145 |
< |
while (siz--) { |
146 |
< |
if ((c = getc(infp)) == EOF) |
147 |
< |
octerror(USER, "truncated octree"); |
148 |
< |
r <<= 8; |
149 |
< |
r |= c; |
150 |
< |
} |
162 |
> |
r = getint(siz, infp); |
163 |
> |
if (feof(infp)) |
164 |
> |
octerror(USER, "truncated octree"); |
165 |
|
return(r); |
166 |
|
} |
167 |
|
|
168 |
|
|
169 |
|
static double |
170 |
< |
getflt() /* get a floating point number */ |
170 |
> |
ogetflt() /* get a floating point number */ |
171 |
|
{ |
172 |
< |
extern double ldexp(); |
173 |
< |
double d; |
172 |
> |
extern double getflt(); |
173 |
> |
double r; |
174 |
|
|
175 |
< |
d = (double)getint(4)/0x7fffffff; |
176 |
< |
return(ldexp(d, getint(1))); /* sign extend */ |
175 |
> |
r = getflt(infp); |
176 |
> |
if (feof(infp)) |
177 |
> |
octerror(USER, "truncated octree"); |
178 |
> |
return(r); |
179 |
|
} |
180 |
|
|
181 |
|
|
182 |
|
static OCTREE |
183 |
|
gettree() /* get a pre-ordered octree */ |
184 |
|
{ |
185 |
< |
register OCTREE ot; |
185 |
> |
register OCTREE ot; |
186 |
|
register int i; |
187 |
|
|
188 |
|
switch (getc(infp)) { |
201 |
|
default: |
202 |
|
octerror(USER, "damaged octree"); |
203 |
|
} |
204 |
+ |
return NULL; /* pro forma return */ |
205 |
|
} |
206 |
|
|
207 |
|
|
208 |
< |
static |
209 |
< |
getobj() /* get next object */ |
208 |
> |
static int |
209 |
> |
nonsurfinset(os) /* check set for modifier */ |
210 |
> |
register OBJECT *os; |
211 |
|
{ |
212 |
< |
char sbuf[MAXSTR]; |
195 |
< |
int obj; |
212 |
> |
register OBJECT s; |
213 |
|
register int i; |
197 |
– |
register OBJREC *objp; |
214 |
|
|
215 |
< |
i = getint(1); |
216 |
< |
if (i == -1) |
217 |
< |
return(OVOID); /* terminator */ |
218 |
< |
if ((obj = newobject()) == OVOID) |
219 |
< |
error(SYSTEM, "out of object space"); |
204 |
< |
objp = objptr(obj); |
205 |
< |
if ((objp->otype = otypmap[i]) < 0) |
206 |
< |
octerror(USER, "reference to unknown type"); |
207 |
< |
if ((objp->omod = getint(sizeof(OBJECT))) != OVOID) |
208 |
< |
objp->omod += objorig; |
209 |
< |
objp->oname = savqstr(getstr(sbuf)); |
210 |
< |
if (objp->oargs.nsargs = getint(2)) { |
211 |
< |
objp->oargs.sarg = (char **)bmalloc |
212 |
< |
(objp->oargs.nsargs*sizeof(char *)); |
213 |
< |
if (objp->oargs.sarg == NULL) |
214 |
< |
goto memerr; |
215 |
< |
for (i = 0; i < objp->oargs.nsargs; i++) |
216 |
< |
objp->oargs.sarg[i] = savestr(getstr(sbuf)); |
217 |
< |
} else |
218 |
< |
objp->oargs.sarg = NULL; |
219 |
< |
#ifdef IARGS |
220 |
< |
if (objp->oargs.niargs = getint(2)) { |
221 |
< |
objp->oargs.iarg = (long *)bmalloc |
222 |
< |
(objp->oargs.niargs*sizeof(long)); |
223 |
< |
if (objp->oargs.iarg == NULL) |
224 |
< |
goto memerr; |
225 |
< |
for (i = 0; i < objp->oargs.niargs; i++) |
226 |
< |
objp->oargs.iarg[i] = getint(4); |
227 |
< |
} else |
228 |
< |
objp->oargs.iarg = NULL; |
229 |
< |
#endif |
230 |
< |
if (objp->oargs.nfargs = getint(2)) { |
231 |
< |
objp->oargs.farg = (double *)bmalloc |
232 |
< |
(objp->oargs.nfargs*sizeof(double)); |
233 |
< |
if (objp->oargs.farg == NULL) |
234 |
< |
goto memerr; |
235 |
< |
for (i = 0; i < objp->oargs.nfargs; i++) |
236 |
< |
objp->oargs.farg[i] = getflt(); |
237 |
< |
} else |
238 |
< |
objp->oargs.farg = NULL; |
239 |
< |
/* initialize */ |
240 |
< |
objp->os = NULL; |
241 |
< |
objp->lastrno = -1; |
242 |
< |
/* insert */ |
243 |
< |
insertobject(obj); |
244 |
< |
return(obj); |
245 |
< |
memerr: |
246 |
< |
error(SYSTEM, "out of memory in getobj"); |
215 |
> |
for (i = *os; i-- > 0; ) |
216 |
> |
if ((s = *++os) >= objorig && s < objorig+fnobjects && |
217 |
> |
ismodifier(objptr(s)->otype)) |
218 |
> |
return(1); |
219 |
> |
return(0); |
220 |
|
} |
221 |
|
|
222 |
|
|
223 |
< |
static |
223 |
> |
static void |
224 |
> |
skiptree(void) /* skip octree on input */ |
225 |
> |
{ |
226 |
> |
register int i; |
227 |
> |
|
228 |
> |
switch (getc(infp)) { |
229 |
> |
case OT_EMPTY: |
230 |
> |
return; |
231 |
> |
case OT_FULL: |
232 |
> |
for (i = ogetint(objsize)*objsize; i-- > 0; ) |
233 |
> |
if (getc(infp) == EOF) |
234 |
> |
octerror(USER, "truncated octree"); |
235 |
> |
return; |
236 |
> |
case OT_TREE: |
237 |
> |
for (i = 0; i < 8; i++) |
238 |
> |
skiptree(); |
239 |
> |
return; |
240 |
> |
case EOF: |
241 |
> |
octerror(USER, "truncated octree"); |
242 |
> |
default: |
243 |
> |
octerror(USER, "damaged octree"); |
244 |
> |
} |
245 |
> |
} |
246 |
> |
|
247 |
> |
|
248 |
> |
static void |
249 |
|
octerror(etyp, msg) /* octree error */ |
250 |
|
int etyp; |
251 |
|
char *msg; |