ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/readoct.c
(Generate patch)

Comparing ray/src/common/readoct.c (file contents):
Revision 2.6 by greg, Thu Aug 6 09:29:38 1992 UTC vs.
Revision 2.20 by schorsch, Thu Jul 17 09:21:29 2003 UTC

# Line 1 | Line 1
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 ||
# Line 88 | Line 94 | char  *ofn[];
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 */
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 >                                /* close the input */
116 >        if (infn[0] == '!')
117 >                pclose(infp);
118 >        else
119 >                fclose(infp);
120          return(nf);
121   }
122  
# Line 130 | Line 136 | char  *s;
136   static OCTREE
137   getfullnode()                   /* get a set, return fullnode */
138   {
139 <        OBJECT  set[MAXSET+1];
139 >        OBJECT  set[MAXSET+1];
140          register int  i;
141          register long  m;
142  
# Line 163 | Line 169 | static double
169   ogetflt()                       /* get a floating point number */
170   {
171          extern double  getflt();
172 <        double  r;
172 >        double  r;
173  
174          r = getflt(infp);
175          if (feof(infp))
# Line 175 | Line 181 | ogetflt()                      /* get a floating point number */
181   static OCTREE
182   gettree()                       /* get a pre-ordered octree */
183   {
184 <        register OCTREE  ot;
184 >        register OCTREE  ot;
185          register int  i;
186          
187          switch (getc(infp)) {
# Line 194 | Line 200 | gettree()                      /* get a pre-ordered octree */
200          default:
201                  octerror(USER, "damaged octree");
202          }
203 +        return NULL; /* pro forma return */
204   }
205  
206  
207 < static
208 < skiptree()                              /* skip octree on input */
207 > static int
208 > nonsurfinset(os)                        /* check set for modifier */
209 > register OBJECT  *os;
210   {
211 +        register OBJECT  s;
212          register int  i;
213 +
214 +        for (i = *os; i-- > 0; )
215 +                if ((s = *++os) >= objorig && s < objorig+fnobjects &&
216 +                                ismodifier(objptr(s)->otype))
217 +                        return(1);
218 +        return(0);
219 + }
220 +
221 +
222 + static void
223 + skiptree(void)                          /* skip octree on input */
224 + {
225 +        register int  i;
226          
227          switch (getc(infp)) {
228          case OT_EMPTY:
# Line 222 | Line 244 | skiptree()                             /* skip octree on input */
244   }
245  
246  
247 < static
226 < getobj()                                /* get next object */
227 < {
228 <        char  sbuf[MAXSTR];
229 <        int  obj;
230 <        register int  i;
231 <        register long  m;
232 <        register OBJREC  *objp;
233 <
234 <        i = ogetint(1);
235 <        if (i == -1)
236 <                return(OVOID);          /* terminator */
237 <        if ((obj = newobject()) == OVOID)
238 <                error(SYSTEM, "out of object space");
239 <        objp = objptr(obj);
240 <        if ((objp->otype = otypmap[i]) < 0)
241 <                octerror(USER, "reference to unknown type");
242 <        if ((m = ogetint(objsize)) != OVOID) {
243 <                m += objorig;
244 <                if ((OBJECT)m != m)
245 <                        octerror(USER, "too many objects");
246 <        }
247 <        objp->omod = m;
248 <        objp->oname = savqstr(ogetstr(sbuf));
249 <        if (objp->oargs.nsargs = ogetint(2)) {
250 <                objp->oargs.sarg = (char **)bmalloc
251 <                                (objp->oargs.nsargs*sizeof(char *));
252 <                if (objp->oargs.sarg == NULL)
253 <                        goto memerr;
254 <                for (i = 0; i < objp->oargs.nsargs; i++)
255 <                        objp->oargs.sarg[i] = savestr(ogetstr(sbuf));
256 <        } else
257 <                objp->oargs.sarg = NULL;
258 < #ifdef  IARGS
259 <        if (objp->oargs.niargs = ogetint(2)) {
260 <                objp->oargs.iarg = (long *)bmalloc
261 <                                (objp->oargs.niargs*sizeof(long));
262 <                if (objp->oargs.iarg == NULL)
263 <                        goto memerr;
264 <                for (i = 0; i < objp->oargs.niargs; i++)
265 <                        objp->oargs.iarg[i] = ogetint(4);
266 <        } else
267 <                objp->oargs.iarg = NULL;
268 < #endif
269 <        if (objp->oargs.nfargs = ogetint(2)) {
270 <                objp->oargs.farg = (FLOAT *)bmalloc
271 <                                (objp->oargs.nfargs*sizeof(FLOAT));
272 <                if (objp->oargs.farg == NULL)
273 <                        goto memerr;
274 <                for (i = 0; i < objp->oargs.nfargs; i++)
275 <                        objp->oargs.farg[i] = ogetflt();
276 <        } else
277 <                objp->oargs.farg = NULL;
278 <                                                /* initialize */
279 <        objp->os = NULL;
280 <        objp->lastrno = -1;
281 <                                                /* insert */
282 <        insertobject(obj);
283 <        return(obj);
284 < memerr:
285 <        error(SYSTEM, "out of memory in getobj");
286 < }
287 <
288 <
289 < static
247 > static void
248   octerror(etyp, msg)                     /* octree error */
249   int  etyp;
250   char  *msg;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines