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.4 by greg, Mon Jul 13 15:36:29 1992 UTC vs.
Revision 2.12 by greg, Fri Mar 7 15:45:26 1997 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1992 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 21 | Line 21 | static char SCCSid[] = "$SunId$ LBL";
21   static double  ogetflt();
22   static long  ogetint();
23   static char  *ogetstr();
24 < static int  getobj(), octerror();
24 > static int  nonsurfinset();
25 > static int  getobj(), octerror(), skiptree();
26   static OCTREE  getfullnode(), gettree();
27  
28   static char  *infn;                     /* input file name */
29   static FILE  *infp;                     /* input file stream */
30   static int  objsize;                    /* size of stored OBJECT's */
31   static OBJECT  objorig;                 /* zeroeth object */
32 + static OBJECT  fnobjects;               /* number of objects in this file */
33   static short  otypmap[NUMOTYPE+8];      /* object type map */
34  
35  
# Line 38 | Line 40 | int  load;
40   CUBE  *scene;
41   char  *ofn[];
42   {
41        extern int  fputs();
43          char  sbuf[512];
44          int  nf;
44        OBJECT  fnobjects;
45          register int  i;
46          long  m;
47          
# Line 56 | Line 56 | char  *ofn[];
56                          error(SYSTEM, errmsg);
57                  }
58          }
59 + #ifdef MSDOS
60 +        setmode(fileno(infp), O_BINARY);
61 + #endif
62                                          /* get header */
63 <        if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : NULL) < 0)
63 >        if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : (FILE *)NULL) < 0)
64                  octerror(USER, "not an octree");
65                                          /* check format */
66          if ((objsize = ogetint(2)-OCTMAGIC) <= 0 ||
# Line 88 | Line 91 | char  *ofn[];
91          if (fnobjects != m)
92                  octerror(USER, "too many objects");
93  
94 <        if (load & IO_TREE) {
92 <                                                /* get the octree */
94 >        if (load & IO_TREE)                     /* get the octree */
95                  scene->cutree = gettree();
96 <                if (load & IO_SCENE)            /* get the scene */
97 <                    if (nf == 0) {
98 <                        for (i = 0; *ogetstr(sbuf); i++)
99 <                                if ((otypmap[i] = otype(sbuf)) < 0) {
100 <                                        sprintf(errmsg, "unknown type \"%s\"",
101 <                                                        sbuf);
102 <                                        octerror(WARNING, errmsg);
103 <                                }
104 <                        while (getobj() != OVOID)
105 <                                ;
106 <                    } else {                    /* consistency checks */
107 <                                        /* check object count */
108 <                        if (nobjects != objorig+fnobjects)
109 <                                octerror(USER, "bad object count; octree stale?");
110 <                                        /* check for non-surfaces */
111 <                        if (nonsurfinset(objorig, fnobjects))
112 <                                octerror(USER, "modifier in tree; octree stale?");
113 <                    }
114 <        }
96 >        else if (load & IO_SCENE && nf == 0)
97 >                skiptree();
98 >                
99 >        if (load & IO_SCENE)            /* get the scene */
100 >            if (nf == 0) {
101 >                for (i = 0; *ogetstr(sbuf); i++)
102 >                        if ((otypmap[i] = otype(sbuf)) < 0) {
103 >                                sprintf(errmsg, "unknown type \"%s\"", sbuf);
104 >                                octerror(WARNING, errmsg);
105 >                        }
106 >                while (getobj() != OVOID)
107 >                        ;
108 >            } else {                    /* consistency checks */
109 >                                /* check object count */
110 >                if (nobjects != objorig+fnobjects)
111 >                        octerror(USER, "bad object count; octree stale?");
112 >                                /* check for non-surfaces */
113 >                if (dosets(nonsurfinset))
114 >                        octerror(USER, "modifier in tree; octree stale?");
115 >            }
116          fclose(infp);
117          return(nf);
118   }
# Line 130 | Line 133 | char  *s;
133   static OCTREE
134   getfullnode()                   /* get a set, return fullnode */
135   {
136 <        OBJECT  set[MAXSET+1];
136 >        OBJECT  set[MAXSET+1];
137          register int  i;
138          register long  m;
139  
# Line 163 | Line 166 | static double
166   ogetflt()                       /* get a floating point number */
167   {
168          extern double  getflt();
169 <        double  r;
169 >        double  r;
170  
171          r = getflt(infp);
172          if (feof(infp))
# Line 175 | Line 178 | ogetflt()                      /* get a floating point number */
178   static OCTREE
179   gettree()                       /* get a pre-ordered octree */
180   {
181 <        register OCTREE  ot;
181 >        register OCTREE  ot;
182          register int  i;
183          
184          switch (getc(infp)) {
# Line 197 | Line 200 | gettree()                      /* get a pre-ordered octree */
200   }
201  
202  
203 + static int
204 + nonsurfinset(os)                        /* check set for modifier */
205 + register OBJECT  *os;
206 + {
207 +        register OBJECT  s;
208 +        register int  i;
209 +
210 +        for (i = *os; i-- > 0; )
211 +                if ((s = *++os) >= objorig && s < objorig+fnobjects &&
212 +                                ismodifier(objptr(s)->otype))
213 +                        return(1);
214 +        return(0);
215 + }
216 +
217 +
218   static
219 + skiptree()                              /* skip octree on input */
220 + {
221 +        register int  i;
222 +        
223 +        switch (getc(infp)) {
224 +        case OT_EMPTY:
225 +                return;
226 +        case OT_FULL:
227 +                for (i = ogetint(objsize)*objsize; i-- > 0; )
228 +                        if (getc(infp) == EOF)
229 +                                octerror(USER, "truncated octree");
230 +                return;
231 +        case OT_TREE:
232 +                for (i = 0; i < 8; i++)
233 +                        skiptree();
234 +                return;
235 +        case EOF:
236 +                octerror(USER, "truncated octree");
237 +        default:
238 +                octerror(USER, "damaged octree");
239 +        }
240 + }
241 +
242 +
243 + static
244   getobj()                                /* get next object */
245   {
246          char  sbuf[MAXSTR];
247          int  obj;
248          register int  i;
249          register long  m;
250 <        register OBJREC  *objp;
250 >        register OBJREC  *objp;
251  
252          i = ogetint(1);
253          if (i == -1)
# Line 230 | Line 273 | getobj()                               /* get next object */
273                          objp->oargs.sarg[i] = savestr(ogetstr(sbuf));
274          } else
275                  objp->oargs.sarg = NULL;
276 < #ifdef  IARGS
276 > #ifdef  IARGS
277          if (objp->oargs.niargs = ogetint(2)) {
278                  objp->oargs.iarg = (long *)bmalloc
279                                  (objp->oargs.niargs*sizeof(long));
# Line 252 | Line 295 | getobj()                               /* get next object */
295                  objp->oargs.farg = NULL;
296                                                  /* initialize */
297          objp->os = NULL;
255        objp->lastrno = -1;
298                                                  /* insert */
299          insertobject(obj);
300          return(obj);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines