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.10 by greg, Wed Dec 12 22:43:57 1990 UTC vs.
Revision 1.13 by greg, Mon Aug 5 08:58:52 1991 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
1 > /* Copyright (c) 1991 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 37 | Line 37 | int  load;
37   CUBE  *scene;
38   char  *ofn[];
39   {
40 <        char  sbuf[128];
40 >        extern int  fputs();
41 >        char  sbuf[512];
42          int  nf;
43          OBJECT  fnobjects;
44          register int  i;
# Line 54 | Line 55 | char  *ofn[];
55                  }
56          }
57                                          /* get header */
58 <        if (load & IO_INFO)
59 <                copyheader(infp, stdout);
59 <        else
60 <                getheader(infp, NULL);
58 >        if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : NULL) < 0)
59 >                octerror(USER, "not an octree");
60                                          /* check format */
61          if (getint(2) != OCTMAGIC)
62 <                octerror(USER, "invalid octree format");
62 >                octerror(USER, "incompatible octree format");
63                                          /* get boundaries */
64          if (load & IO_BOUNDS) {
65                  for (i = 0; i < 3; i++)
# Line 97 | Line 96 | char  *ofn[];
96                                  }
97                          while (getobj() != OVOID)
98                                  ;
99 +                } else if (load & IO_SCENE) {           /* consistency checks */
100 +                                                /* check object count */
101 +                        if (nobjects != objorig+fnobjects)
102 +                                octerror(USER, "bad object count; octree stale?");
103 +                                                /* check for non-surfaces */
104 +                        if (nonsurfinset(objorig, fnobjects))
105 +                                octerror(USER, "non-surface in set; octree stale?");
106                  }
107          }
108          fclose(infp);
103                                        /* consistency checks */
104        if (load & IO_SCENE) {
105                                        /* check object count */
106                if (nobjects != objorig+fnobjects)
107                        octerror(USER, "bad object count; octree stale?");
108                                        /* check for non-surfaces */
109                if (nonsurfinset(objorig, fnobjects))
110                        octerror(USER, "non-surface in set; octree stale?");
111        }
109          return(nf);
110   }
111  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines