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 1.8 by greg, Thu Sep 6 23:32:45 1990 UTC vs.
Revision 2.17 by schorsch, Sat Jun 7 12:50:20 2003 UTC

# Line 1 | Line 1
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 > #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 < extern double  atof();
23 < static double  getflt();
24 < static long  getint();
25 < static char  *getstr();
22 > static double  ogetflt();
23 > static long  ogetint();
24 > static char  *ogetstr();
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[128];
44 >        char  sbuf[512];
45          int  nf;
46 <        OBJECT  fnobjects;
47 <        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 +        SET_FILE_BINARY(infp);
67                                          /* get header */
68 <        if (load & IO_INFO)
69 <                copyheader(infp, stdout);
59 <        else
60 <                getheader(infp, NULL);
68 >        if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : (FILE *)NULL) < 0)
69 >                octerror(USER, "not an octree");
70                                          /* check format */
71 <        if (getint(2) != OCTMAGIC)
72 <                octerror(USER, "invalid octree format");
71 >        if ((objsize = ogetint(2)-OCTMAGIC) <= 0 ||
72 >                        objsize > MAXOBJSIZ || objsize > sizeof(long))
73 >                octerror(USER, "incompatible octree format");
74                                          /* get boundaries */
75          if (load & IO_BOUNDS) {
76                  for (i = 0; i < 3; i++)
77 <                        scene->cuorg[i] = atof(getstr(sbuf));
78 <                scene->cusize = atof(getstr(sbuf));
77 >                        scene->cuorg[i] = atof(ogetstr(sbuf));
78 >                scene->cusize = atof(ogetstr(sbuf));
79          } else {
80                  for (i = 0; i < 4; i++)
81 <                        getstr(sbuf);
81 >                        ogetstr(sbuf);
82          }
83          objorig = nobjects;             /* set object offset */
84          nf = 0;                         /* get object files */
85 <        while (*getstr(sbuf)) {
85 >        while (*ogetstr(sbuf)) {
86                  if (load & IO_SCENE)
87                          readobj(sbuf);
88                  if (load & IO_FILES)
# Line 82 | Line 92 | char  *ofn[];
92          if (load & IO_FILES)
93                  ofn[nf] = NULL;
94                                          /* get number of objects */
95 <        fnobjects = getint(sizeof(OBJECT));
95 >        fnobjects = m = ogetint(objsize);
96 >        if (fnobjects != m)
97 >                octerror(USER, "too many objects");
98  
99 <        if (load & IO_TREE) {
88 <                                                /* get the octree */
99 >        if (load & IO_TREE)             /* get the octree */
100                  scene->cutree = gettree();
101 <                                                /* get the scene */
102 <                if (nf == 0 && load & IO_SCENE) {
103 <                        for (i = 0; *getstr(sbuf); i++)
104 <                                if ((otypmap[i] = otype(sbuf)) < 0) {
105 <                                        sprintf(errmsg, "unknown type \"%s\"",
106 <                                                        sbuf);
107 <                                        octerror(WARNING, errmsg);
108 <                                }
109 <                        while (getobj() != OVOID)
110 <                                ;
100 <                }
101 <        }
102 <        fclose(infp);
103 <                                        /* consistency checks */
104 <        if (load & IO_SCENE) {
105 <                                        /* check object count */
101 >        else if (load & IO_SCENE && nf == 0)
102 >                skiptree();
103 >                
104 >        if (load & IO_SCENE)            /* get the scene */
105 >            if (nf == 0) {
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 -- stale octree?");
113 <                                        /* check for non-surfaces */
114 <                if (nonsurfinset(objorig, fnobjects))
115 <                        octerror(USER, "non-surface in set -- stale octree?");
116 <        }
112 >                        octerror(USER, "bad object count; octree stale?");
113 >                                /* check for non-surfaces */
114 >                if (dosets(nonsurfinset))
115 >                        octerror(USER, "modifier in tree; octree stale?");
116 >            }
117 >                                /* close the input */
118 >        if (infn[0] == '!')
119 >                pclose(infp);
120 >        else
121 >                fclose(infp);
122          return(nf);
123   }
124  
125  
126   static char *
127 < getstr(s)                       /* get null-terminated string */
127 > ogetstr(s)                      /* get null-terminated string */
128   char  *s;
129   {
130 <        register char  *cp;
121 <        register int  c;
130 >        extern char  *getstr();
131  
132 <        cp = s;
133 <        while ((c = getc(infp)) != EOF)
134 <                if ((*cp++ = c) == '\0')
126 <                        return(s);
127 <                
128 <        octerror(USER, "truncated octree");
132 >        if (getstr(s, infp) == NULL)
133 >                octerror(USER, "truncated octree");
134 >        return(s);
135   }
136  
137  
138   static OCTREE
139   getfullnode()                   /* get a set, return fullnode */
140   {
141 <        OBJECT  set[MAXSET+1];
141 >        OBJECT  set[MAXSET+1];
142          register int  i;
143 +        register long  m;
144  
145 <        set[0] = getint(sizeof(OBJECT));
139 <        if (set[0] > MAXSET)
145 >        if ((set[0] = ogetint(objsize)) > MAXSET)
146                  octerror(USER, "bad set in getfullnode");
147 <        for (i = 1; i <= set[0]; i++)
148 <                set[i] = getint(sizeof(OBJECT)) + objorig;
147 >        for (i = 1; i <= set[0]; i++) {
148 >                m = ogetint(objsize) + objorig;
149 >                if ((set[i] = m) != m)
150 >                        octerror(USER, "too many objects");
151 >        }
152          return(fullnode(set));
153   }      
154  
155  
156   static long
157 < getint(siz)                     /* get a siz-byte integer */
158 < register int  siz;
157 > ogetint(siz)                    /* get a siz-byte integer */
158 > int  siz;
159   {
160 <        register int  c;
160 >        extern long  getint();
161          register long  r;
162  
163 <        if ((c = getc(infp)) == EOF)
164 <                goto end_file;
165 <        r = 0x80&c ? -1<<8|c : c;               /* sign extend */
157 <        while (--siz > 0) {
158 <                if ((c = getc(infp)) == EOF)
159 <                        goto end_file;
160 <                r <<= 8;
161 <                r |= c;
162 <        }
163 >        r = getint(siz, infp);
164 >        if (feof(infp))
165 >                octerror(USER, "truncated octree");
166          return(r);
164 end_file:
165        octerror(USER, "truncated octree");
167   }
168  
169  
170   static double
171 < getflt()                        /* get a floating point number */
171 > ogetflt()                       /* get a floating point number */
172   {
173 <        extern double  ldexp();
174 <        double  d;
173 >        extern double  getflt();
174 >        double  r;
175  
176 <        d = (double)getint(4)/0x7fffffff;
177 <        return(ldexp(d, getint(1)));
176 >        r = getflt(infp);
177 >        if (feof(infp))
178 >                octerror(USER, "truncated octree");
179 >        return(r);
180   }
181          
182  
183   static OCTREE
184   gettree()                       /* get a pre-ordered octree */
185   {
186 <        register OCTREE  ot;
186 >        register OCTREE  ot;
187          register int  i;
188          
189          switch (getc(infp)) {
# Line 199 | 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 < getobj()                                /* get next object */
209 > static int
210 > nonsurfinset(os)                        /* check set for modifier */
211 > register OBJECT  *os;
212   {
213 <        char  sbuf[MAXSTR];
209 <        int  obj;
213 >        register OBJECT  s;
214          register int  i;
211        register OBJREC  *objp;
215  
216 <        i = getint(1);
217 <        if (i == -1)
218 <                return(OVOID);          /* terminator */
219 <        if ((obj = newobject()) == OVOID)
220 <                error(SYSTEM, "out of object space");
218 <        objp = objptr(obj);
219 <        if ((objp->otype = otypmap[i]) < 0)
220 <                octerror(USER, "reference to unknown type");
221 <        if ((objp->omod = getint(sizeof(OBJECT))) != OVOID)
222 <                objp->omod += objorig;
223 <        objp->oname = savqstr(getstr(sbuf));
224 <        if (objp->oargs.nsargs = getint(2)) {
225 <                objp->oargs.sarg = (char **)bmalloc
226 <                                (objp->oargs.nsargs*sizeof(char *));
227 <                if (objp->oargs.sarg == NULL)
228 <                        goto memerr;
229 <                for (i = 0; i < objp->oargs.nsargs; i++)
230 <                        objp->oargs.sarg[i] = savestr(getstr(sbuf));
231 <        } else
232 <                objp->oargs.sarg = NULL;
233 < #ifdef  IARGS
234 <        if (objp->oargs.niargs = getint(2)) {
235 <                objp->oargs.iarg = (long *)bmalloc
236 <                                (objp->oargs.niargs*sizeof(long));
237 <                if (objp->oargs.iarg == NULL)
238 <                        goto memerr;
239 <                for (i = 0; i < objp->oargs.niargs; i++)
240 <                        objp->oargs.iarg[i] = getint(4);
241 <        } else
242 <                objp->oargs.iarg = NULL;
243 < #endif
244 <        if (objp->oargs.nfargs = getint(2)) {
245 <                objp->oargs.farg = (double *)bmalloc
246 <                                (objp->oargs.nfargs*sizeof(double));
247 <                if (objp->oargs.farg == NULL)
248 <                        goto memerr;
249 <                for (i = 0; i < objp->oargs.nfargs; i++)
250 <                        objp->oargs.farg[i] = getflt();
251 <        } else
252 <                objp->oargs.farg = NULL;
253 <                                                /* initialize */
254 <        objp->os = NULL;
255 <        objp->lastrno = -1;
256 <                                                /* insert */
257 <        insertobject(obj);
258 <        return(obj);
259 < memerr:
260 <        error(SYSTEM, "out of memory in getobj");
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
224 > static void
225 > skiptree(void)                          /* skip octree on input */
226 > {
227 >        register int  i;
228 >        
229 >        switch (getc(infp)) {
230 >        case OT_EMPTY:
231 >                return;
232 >        case OT_FULL:
233 >                for (i = ogetint(objsize)*objsize; i-- > 0; )
234 >                        if (getc(infp) == EOF)
235 >                                octerror(USER, "truncated octree");
236 >                return;
237 >        case OT_TREE:
238 >                for (i = 0; i < 8; i++)
239 >                        skiptree();
240 >                return;
241 >        case EOF:
242 >                octerror(USER, "truncated octree");
243 >        default:
244 >                octerror(USER, "damaged octree");
245 >        }
246 > }
247 >
248 >
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