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.11 by greg, Mon Aug 29 14:20:37 1994 UTC vs.
Revision 2.17 by schorsch, Sat Jun 7 12:50:20 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 > #ifdef _WIN32
12 > #define popen _popen
13 > #define pclose _pclose
14 > #endif
15  
16 + #include  "standard.h"
17 + #include  "octree.h"
18   #include  "object.h"
18
19   #include  "otypes.h"
20 + #include  "resolu.h"
21  
22   static double  ogetflt();
23   static long  ogetint();
24   static char  *ogetstr();
25 < static int  getobj(), octerror(), skiptree();
25 > static int  nonsurfinset();
26 > static void  octerror(int  etyp, char  *msg);
27 > static void  skiptree(void);
28   static OCTREE  getfullnode(), gettree();
29  
30 < static char  *infn;                     /* input file name */
30 > static char  *infn;                     /* input file specification */
31   static FILE  *infp;                     /* input file stream */
32   static int  objsize;                    /* size of stored OBJECT's */
33   static OBJECT  objorig;                 /* zeroeth object */
34 < static short  otypmap[NUMOTYPE+8];      /* object type map */
34 > static OBJECT  fnobjects;               /* number of objects in this file */
35  
36  
37   int
38 < readoct(fname, load, scene, ofn)        /* read in octree from file */
39 < char  *fname;
38 > readoct(inpspec, load, scene, ofn)      /* read in octree file or stream */
39 > char  *inpspec;
40   int  load;
41   CUBE  *scene;
42   char  *ofn[];
43   {
44          char  sbuf[512];
45          int  nf;
46 <        OBJECT  fnobjects;
44 <        register int  i;
46 >        int  i;
47          long  m;
48          
49 <        if (fname == NULL) {
49 >        if (inpspec == NULL) {
50                  infn = "standard input";
51                  infp = stdin;
52 +        } else if (inpspec[0] == '!') {
53 +                infn = inpspec;
54 +                if ((infp = popen(inpspec+1, "r")) == NULL) {
55 +                        sprintf(errmsg, "cannot execute \"%s\"", inpspec);
56 +                        error(SYSTEM, errmsg);
57 +                }
58          } else {
59 <                infn = fname;
60 <                if ((infp = fopen(fname, "r")) == NULL) {
59 >                infn = inpspec;
60 >                if ((infp = fopen(inpspec, "r")) == NULL) {
61                          sprintf(errmsg, "cannot open octree file \"%s\"",
62 <                                        fname);
62 >                                        inpspec);
63                          error(SYSTEM, errmsg);
64                  }
65          }
66 < #ifdef MSDOS
59 <        setmode(fileno(infp), O_BINARY);
60 < #endif
66 >        SET_FILE_BINARY(infp);
67                                          /* get header */
68          if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : (FILE *)NULL) < 0)
69                  octerror(USER, "not an octree");
# Line 90 | Line 96 | char  *ofn[];
96          if (fnobjects != m)
97                  octerror(USER, "too many objects");
98  
99 <        if (load & IO_TREE)                     /* get the octree */
99 >        if (load & IO_TREE)             /* get the octree */
100                  scene->cutree = gettree();
101          else if (load & IO_SCENE && nf == 0)
102                  skiptree();
103                  
104          if (load & IO_SCENE)            /* get the scene */
105              if (nf == 0) {
106 <                for (i = 0; *ogetstr(sbuf); i++)
107 <                        if ((otypmap[i] = otype(sbuf)) < 0) {
108 <                                sprintf(errmsg, "unknown type \"%s\"", sbuf);
103 <                                octerror(WARNING, errmsg);
104 <                        }
105 <                while (getobj() != OVOID)
106 <                        ;
106 >                                        /* load binary scene data */
107 >                readscene(infp, objsize);
108 >
109              } else {                    /* consistency checks */
110                                  /* check object count */
111                  if (nobjects != objorig+fnobjects)
112                          octerror(USER, "bad object count; octree stale?");
113                                  /* check for non-surfaces */
114 <                if (nonsurfinset(objorig, fnobjects))
114 >                if (dosets(nonsurfinset))
115                          octerror(USER, "modifier in tree; octree stale?");
116              }
117 <        fclose(infp);
117 >                                /* close the input */
118 >        if (infn[0] == '!')
119 >                pclose(infp);
120 >        else
121 >                fclose(infp);
122          return(nf);
123   }
124  
# Line 196 | Line 202 | gettree()                      /* get a pre-ordered octree */
202          default:
203                  octerror(USER, "damaged octree");
204          }
205 +        return NULL; /* pro forma return */
206   }
207  
208  
209 < static
210 < skiptree()                              /* skip octree on input */
209 > static int
210 > nonsurfinset(os)                        /* check set for modifier */
211 > register OBJECT  *os;
212   {
213 +        register OBJECT  s;
214          register int  i;
215 +
216 +        for (i = *os; i-- > 0; )
217 +                if ((s = *++os) >= objorig && s < objorig+fnobjects &&
218 +                                ismodifier(objptr(s)->otype))
219 +                        return(1);
220 +        return(0);
221 + }
222 +
223 +
224 + static void
225 + skiptree(void)                          /* skip octree on input */
226 + {
227 +        register int  i;
228          
229          switch (getc(infp)) {
230          case OT_EMPTY:
# Line 224 | Line 246 | skiptree()                             /* skip octree on input */
246   }
247  
248  
249 < static
228 < getobj()                                /* get next object */
229 < {
230 <        char  sbuf[MAXSTR];
231 <        int  obj;
232 <        register int  i;
233 <        register long  m;
234 <        register OBJREC  *objp;
235 <
236 <        i = ogetint(1);
237 <        if (i == -1)
238 <                return(OVOID);          /* terminator */
239 <        if ((obj = newobject()) == OVOID)
240 <                error(SYSTEM, "out of object space");
241 <        objp = objptr(obj);
242 <        if ((objp->otype = otypmap[i]) < 0)
243 <                octerror(USER, "reference to unknown type");
244 <        if ((m = ogetint(objsize)) != OVOID) {
245 <                m += objorig;
246 <                if ((OBJECT)m != m)
247 <                        octerror(USER, "too many objects");
248 <        }
249 <        objp->omod = m;
250 <        objp->oname = savqstr(ogetstr(sbuf));
251 <        if (objp->oargs.nsargs = ogetint(2)) {
252 <                objp->oargs.sarg = (char **)bmalloc
253 <                                (objp->oargs.nsargs*sizeof(char *));
254 <                if (objp->oargs.sarg == NULL)
255 <                        goto memerr;
256 <                for (i = 0; i < objp->oargs.nsargs; i++)
257 <                        objp->oargs.sarg[i] = savestr(ogetstr(sbuf));
258 <        } else
259 <                objp->oargs.sarg = NULL;
260 < #ifdef  IARGS
261 <        if (objp->oargs.niargs = ogetint(2)) {
262 <                objp->oargs.iarg = (long *)bmalloc
263 <                                (objp->oargs.niargs*sizeof(long));
264 <                if (objp->oargs.iarg == NULL)
265 <                        goto memerr;
266 <                for (i = 0; i < objp->oargs.niargs; i++)
267 <                        objp->oargs.iarg[i] = ogetint(4);
268 <        } else
269 <                objp->oargs.iarg = NULL;
270 < #endif
271 <        if (objp->oargs.nfargs = ogetint(2)) {
272 <                objp->oargs.farg = (FLOAT *)bmalloc
273 <                                (objp->oargs.nfargs*sizeof(FLOAT));
274 <                if (objp->oargs.farg == NULL)
275 <                        goto memerr;
276 <                for (i = 0; i < objp->oargs.nfargs; i++)
277 <                        objp->oargs.farg[i] = ogetflt();
278 <        } else
279 <                objp->oargs.farg = NULL;
280 <                                                /* initialize */
281 <        objp->os = NULL;
282 <                                                /* insert */
283 <        insertobject(obj);
284 <        return(obj);
285 < memerr:
286 <        error(SYSTEM, "out of memory in getobj");
287 < }
288 <
289 <
290 < static
249 > static void
250   octerror(etyp, msg)                     /* octree error */
251   int  etyp;
252   char  *msg;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines