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.11 by greg, Thu Feb 7 11:00:42 1991 UTC vs.
Revision 2.19 by greg, Wed Jul 16 01:32:53 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 > #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 < extern double  atof();
21 < static double  getflt();
22 < static long  getint();
23 < static char  *getstr();
20 > static double  ogetflt();
21 > static long  ogetint();
22 > static char  *ogetstr();
23 > static int  nonsurfinset();
24 > static void  octerror(int  etyp, char  *msg);
25 > static void  skiptree(void);
26   static OCTREE  getfullnode(), gettree();
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[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 (load & IO_INFO)
67 <                copyheader(infp, stdout);
59 <        else
60 <                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, "invalid octree format");
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)
# Line 82 | Line 90 | char  *ofn[];
90          if (load & IO_FILES)
91                  ofn[nf] = NULL;
92                                          /* get number of objects */
93 <        fnobjects = getint(sizeof(OBJECT));
93 >        fnobjects = m = ogetint(objsize);
94 >        if (fnobjects != m)
95 >                octerror(USER, "too many objects");
96  
97 <        if (load & IO_TREE) {
88 <                                                /* 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 <                                ;
100 <                }
101 <        }
102 <        fclose(infp);
103 <                                        /* consistency checks */
104 <        if (load & IO_SCENE) {
105 <                                        /* check object count */
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 (nonsurfinset(objorig, fnobjects))
113 <                        octerror(USER, "non-surface in set; octree stale?");
114 <        }
111 >                                /* check for non-surfaces */
112 >                if (dosets(nonsurfinset))
113 >                        octerror(USER, "modifier in tree; octree stale?");
114 >            }
115 >                                /* close the input */
116 >        if (infn[0] == '!')
117 >                pclose(infp);
118 >        else
119 >                fclose(infp);
120          return(nf);
121   }
122  
123  
124   static char *
125 < getstr(s)                       /* get null-terminated string */
125 > ogetstr(s)                      /* get null-terminated string */
126   char  *s;
127   {
128 <        register char  *cp;
121 <        register int  c;
128 >        extern char  *getstr();
129  
130 <        cp = s;
131 <        while ((c = getc(infp)) != EOF)
132 <                if ((*cp++ = c) == '\0')
126 <                        return(s);
127 <                
128 <        octerror(USER, "truncated octree");
130 >        if (getstr(s, infp) == NULL)
131 >                octerror(USER, "truncated octree");
132 >        return(s);
133   }
134  
135  
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  
143 <        set[0] = getint(sizeof(OBJECT));
139 <        if (set[0] > MAXSET)
143 >        if ((set[0] = ogetint(objsize)) > MAXSET)
144                  octerror(USER, "bad set in getfullnode");
145 <        for (i = 1; i <= set[0]; i++)
146 <                set[i] = getint(sizeof(OBJECT)) + objorig;
145 >        for (i = 1; i <= set[0]; i++) {
146 >                m = ogetint(objsize) + objorig;
147 >                if ((set[i] = m) != m)
148 >                        octerror(USER, "too many objects");
149 >        }
150          return(fullnode(set));
151   }      
152  
153  
154   static long
155 < getint(siz)                     /* get a siz-byte integer */
156 < register int  siz;
155 > ogetint(siz)                    /* get a siz-byte integer */
156 > int  siz;
157   {
158 <        register int  c;
158 >        extern long  getint();
159          register long  r;
160  
161 <        if ((c = getc(infp)) == EOF)
162 <                goto end_file;
163 <        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 <        }
161 >        r = getint(siz, infp);
162 >        if (feof(infp))
163 >                octerror(USER, "truncated octree");
164          return(r);
164 end_file:
165        octerror(USER, "truncated octree");
165   }
166  
167  
168   static double
169 < getflt()                        /* get a floating point number */
169 > ogetflt()                       /* get a floating point number */
170   {
171 <        extern double  ldexp();
172 <        double  d;
171 >        extern double  getflt();
172 >        double  r;
173  
174 <        d = (double)getint(4)/0x7fffffff;
175 <        return(ldexp(d, (int)getint(1)));
174 >        r = getflt(infp);
175 >        if (feof(infp))
176 >                octerror(USER, "truncated octree");
177 >        return(r);
178   }
179          
180  
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 199 | 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 < getobj()                                /* get next object */
207 > static int
208 > nonsurfinset(os)                        /* check set for modifier */
209 > register OBJECT  *os;
210   {
211 <        char  sbuf[MAXSTR];
209 <        int  obj;
211 >        register OBJECT  s;
212          register int  i;
211        register OBJREC  *objp;
213  
214 <        i = getint(1);
215 <        if (i == -1)
216 <                return(OVOID);          /* terminator */
217 <        if ((obj = newobject()) == OVOID)
218 <                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");
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
222 > static void
223 > skiptree(void)                          /* skip octree on input */
224 > {
225 >        register int  i;
226 >        
227 >        switch (getc(infp)) {
228 >        case OT_EMPTY:
229 >                return;
230 >        case OT_FULL:
231 >                for (i = ogetint(objsize)*objsize; i-- > 0; )
232 >                        if (getc(infp) == EOF)
233 >                                octerror(USER, "truncated octree");
234 >                return;
235 >        case OT_TREE:
236 >                for (i = 0; i < 8; i++)
237 >                        skiptree();
238 >                return;
239 >        case EOF:
240 >                octerror(USER, "truncated octree");
241 >        default:
242 >                octerror(USER, "damaged octree");
243 >        }
244 > }
245 >
246 >
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