1 |
– |
/* Copyright (c) 1992 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 |
< |
static double ogetflt(); |
21 |
< |
static long ogetint(); |
22 |
< |
static char *ogetstr(); |
23 |
< |
static int getobj(), octerror(); |
24 |
< |
static 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 |
|
{ |
41 |
– |
extern int fputs(); |
42 |
|
char sbuf[512]; |
43 |
|
int nf; |
44 |
< |
OBJECT fnobjects; |
45 |
< |
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 (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : NULL) < 0) |
66 |
> |
if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : (FILE *)NULL) < 0) |
67 |
|
octerror(USER, "not an octree"); |
68 |
|
/* check format */ |
69 |
|
if ((objsize = ogetint(2)-OCTMAGIC) <= 0 || |
94 |
|
if (fnobjects != m) |
95 |
|
octerror(USER, "too many objects"); |
96 |
|
|
97 |
< |
if (load & IO_TREE) /* get the octree */ |
97 |
> |
if (load & IO_TREE) /* get the octree */ |
98 |
|
scene->cutree = gettree(); |
99 |
|
else if (load & IO_SCENE && nf == 0) |
100 |
|
skiptree(); |
101 |
|
|
102 |
< |
if (load & IO_SCENE) /* get the scene */ |
102 |
> |
if (load & IO_SCENE) { /* get the scene */ |
103 |
|
if (nf == 0) { |
104 |
< |
for (i = 0; *ogetstr(sbuf); i++) |
105 |
< |
if ((otypmap[i] = otype(sbuf)) < 0) { |
106 |
< |
sprintf(errmsg, "unknown type \"%s\"", sbuf); |
101 |
< |
octerror(WARNING, errmsg); |
102 |
< |
} |
103 |
< |
while (getobj() != OVOID) |
104 |
< |
; |
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 (nonsurfinset(objorig, fnobjects)) |
112 |
> |
if (dosets(nonsurfinset)) |
113 |
|
octerror(USER, "modifier in tree; octree stale?"); |
114 |
|
} |
115 |
< |
fclose(infp); |
115 |
> |
} |
116 |
> |
/* close the input */ |
117 |
> |
if (infn[0] == '!') |
118 |
> |
pclose(infp); |
119 |
> |
else |
120 |
> |
fclose(infp); |
121 |
|
return(nf); |
122 |
|
} |
123 |
|
|
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 |
|
|
170 |
|
ogetflt() /* get a floating point number */ |
171 |
|
{ |
172 |
|
extern double getflt(); |
173 |
< |
double r; |
173 |
> |
double r; |
174 |
|
|
175 |
|
r = getflt(infp); |
176 |
|
if (feof(infp)) |
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 |
< |
skiptree() /* skip octree on input */ |
208 |
> |
static int |
209 |
> |
nonsurfinset(os) /* check set for modifier */ |
210 |
> |
register OBJECT *os; |
211 |
|
{ |
212 |
+ |
register OBJECT s; |
213 |
|
register int i; |
214 |
+ |
|
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 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); i-- > 0; ) |
233 |
< |
ogetint(objsize); |
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++) |
245 |
|
} |
246 |
|
|
247 |
|
|
248 |
< |
static |
225 |
< |
getobj() /* get next object */ |
226 |
< |
{ |
227 |
< |
char sbuf[MAXSTR]; |
228 |
< |
int obj; |
229 |
< |
register int i; |
230 |
< |
register long m; |
231 |
< |
register OBJREC *objp; |
232 |
< |
|
233 |
< |
i = ogetint(1); |
234 |
< |
if (i == -1) |
235 |
< |
return(OVOID); /* terminator */ |
236 |
< |
if ((obj = newobject()) == OVOID) |
237 |
< |
error(SYSTEM, "out of object space"); |
238 |
< |
objp = objptr(obj); |
239 |
< |
if ((objp->otype = otypmap[i]) < 0) |
240 |
< |
octerror(USER, "reference to unknown type"); |
241 |
< |
if ((m = ogetint(objsize)) != OVOID) { |
242 |
< |
m += objorig; |
243 |
< |
if ((OBJECT)m != m) |
244 |
< |
octerror(USER, "too many objects"); |
245 |
< |
} |
246 |
< |
objp->omod = m; |
247 |
< |
objp->oname = savqstr(ogetstr(sbuf)); |
248 |
< |
if (objp->oargs.nsargs = ogetint(2)) { |
249 |
< |
objp->oargs.sarg = (char **)bmalloc |
250 |
< |
(objp->oargs.nsargs*sizeof(char *)); |
251 |
< |
if (objp->oargs.sarg == NULL) |
252 |
< |
goto memerr; |
253 |
< |
for (i = 0; i < objp->oargs.nsargs; i++) |
254 |
< |
objp->oargs.sarg[i] = savestr(ogetstr(sbuf)); |
255 |
< |
} else |
256 |
< |
objp->oargs.sarg = NULL; |
257 |
< |
#ifdef IARGS |
258 |
< |
if (objp->oargs.niargs = ogetint(2)) { |
259 |
< |
objp->oargs.iarg = (long *)bmalloc |
260 |
< |
(objp->oargs.niargs*sizeof(long)); |
261 |
< |
if (objp->oargs.iarg == NULL) |
262 |
< |
goto memerr; |
263 |
< |
for (i = 0; i < objp->oargs.niargs; i++) |
264 |
< |
objp->oargs.iarg[i] = ogetint(4); |
265 |
< |
} else |
266 |
< |
objp->oargs.iarg = NULL; |
267 |
< |
#endif |
268 |
< |
if (objp->oargs.nfargs = ogetint(2)) { |
269 |
< |
objp->oargs.farg = (FLOAT *)bmalloc |
270 |
< |
(objp->oargs.nfargs*sizeof(FLOAT)); |
271 |
< |
if (objp->oargs.farg == NULL) |
272 |
< |
goto memerr; |
273 |
< |
for (i = 0; i < objp->oargs.nfargs; i++) |
274 |
< |
objp->oargs.farg[i] = ogetflt(); |
275 |
< |
} else |
276 |
< |
objp->oargs.farg = NULL; |
277 |
< |
/* initialize */ |
278 |
< |
objp->os = NULL; |
279 |
< |
objp->lastrno = -1; |
280 |
< |
/* insert */ |
281 |
< |
insertobject(obj); |
282 |
< |
return(obj); |
283 |
< |
memerr: |
284 |
< |
error(SYSTEM, "out of memory in getobj"); |
285 |
< |
} |
286 |
< |
|
287 |
< |
|
288 |
< |
static |
248 |
> |
static void |
249 |
|
octerror(etyp, msg) /* octree error */ |
250 |
|
int etyp; |
251 |
|
char *msg; |