ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rpict.c
(Generate patch)

Comparing ray/src/rt/rpict.c (file contents):
Revision 1.15 by greg, Fri Jan 12 09:27:11 1990 UTC vs.
Revision 1.16 by greg, Tue Jan 16 11:30:09 1990 UTC

# Line 18 | Line 18 | static char SCCSid[] = "$SunId$ LBL";
18   #else
19   #include  <signal.h>
20   #endif
21 + #include  <sys/fcntl.h>
22  
23   #include  "view.h"
24  
# Line 100 | Line 101 | report()               /* report progress */
101   render(zfile, oldfile)                          /* render the scene */
102   char  *zfile, *oldfile;
103   {
104 +        extern long  lseek();
105          COLOR  *scanbar[MAXDIV+1];      /* scanline arrays of pixel values */
106          float  *zbar[MAXDIV+1];         /* z values */
107          int  ypos;                      /* current scanline */
108          int  ystep;                     /* current y step size */
109 <        FILE  *zfp;
109 >        int  zfd;
110          COLOR  *colptr;
111          float  *zptr;
112          register int  i;
# Line 121 | Line 123 | char  *zfile, *oldfile;
123          }
124                                          /* open z file */
125          if (zfile != NULL) {
126 <                if ((zfp = fopen(zfile, "a+")) == NULL) {
126 >                if ((zfd = open(zfile, O_WRONLY|O_CREAT, 0666)) == -1) {
127                          sprintf(errmsg, "cannot open z file \"%s\"", zfile);
128                          error(SYSTEM, errmsg);
129                  }
# Line 131 | Line 133 | char  *zfile, *oldfile;
133                                  goto memerr;
134                  }
135          } else {
136 <                zfp = NULL;
136 >                zfd = -1;
137                  for (i = 0; i <= psample; i++)
138                          zbar[i] = NULL;
139          }
# Line 139 | Line 141 | char  *zfile, *oldfile;
141          fputresolu(YMAJOR|YDECR, hresolu, vresolu, stdout);
142                                          /* recover file and compute first */
143          i = salvage(oldfile);
144 <        if (zfp != NULL && fseek(zfp, (long)i*hresolu*sizeof(float), 0) == EOF)
144 >        if (zfd != -1 && lseek(zfd, (long)i*hresolu*sizeof(float), 0) == -1)
145                  error(SYSTEM, "z file seek error in render");
146          ypos = vresolu-1 - i;
147          fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
# Line 165 | Line 167 | char  *zfile, *oldfile;
167                  fillscanbar(scanbar, zbar, hresolu, ypos, ystep);
168                                                          /* write it out */
169                  for (i = ystep; i > 0; i--) {
170 <                        if (zfp != NULL && fwrite(zbar[i],sizeof(float),hresolu,zfp) != hresolu)
170 >                        if (zfd!=-1 && write(zfd,zbar[i],hresolu*sizeof(float))
171 >                                        < hresolu*sizeof(float))
172                                  goto writerr;
173                          if (fwritescan(scanbar[i],hresolu,stdout) < 0)
174                                  goto writerr;
175                  }
173                if (zfp != NULL && fflush(zfp) == EOF)
174                        goto writerr;
176                  if (fflush(stdout) == EOF)
177                          goto writerr;
178          }
179                                                  /* clean up */
180 <        if (zfp != NULL) {
181 <                fwrite(zbar[0], sizeof(float), hresolu, zfp);
182 <                if (fclose(zfp) == EOF)
180 >        if (zfd != -1) {
181 >                if (write(zfd,zbar[0],hresolu*sizeof(float))
182 >                                < hresolu*sizeof(float))
183                          goto writerr;
184 +                close(zfd);
185                  for (i = 0; i <= psample; i++)
186                          free((char *)zbar[i]);
187          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines