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.12 by greg, Mon Jan 8 13:38:01 1990 UTC vs.
Revision 1.23 by greg, Thu Nov 1 12:06:01 1990 UTC

# Line 15 | Line 15 | static char SCCSid[] = "$SunId$ LBL";
15   #ifdef BSD
16   #include  <sys/time.h>
17   #include  <sys/resource.h>
18 + #else
19 + #include  <signal.h>
20   #endif
21 + #include  <fcntl.h>
22  
23   #include  "view.h"
24  
# Line 24 | Line 27 | static char SCCSid[] = "$SunId$ LBL";
27   VIEW  ourview = STDVIEW;                /* view parameters */
28   int  hresolu = 512;                     /* horizontal resolution */
29   int  vresolu = 512;                     /* vertical resolution */
30 + double  pixaspect = 1.0;                /* pixel aspect ratio */
31  
32   int  psample = 4;                       /* pixel sample size */
33   double  maxdiff = .05;                  /* max. difference for interpolation */
# Line 84 | Line 88 | report()               /* report progress */
88          sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f CPU hours\n",
89                          nrays, pctdone, t/3600.0);
90   #else
91 +        signal(SIGALRM, report);
92          sprintf(errmsg, "%ld rays, %4.2f%% done\n", nrays, pctdone);
93   #endif
94          eputs(errmsg);
# Line 96 | 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 <        FILE  *zfp;
108 >        int  ystep;                     /* current y step size */
109 >        int  zfd;
110          COLOR  *colptr;
111          float  *zptr;
112          register int  i;
# Line 116 | 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 126 | 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 134 | 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 && i > 0 &&
145 >                        lseek(zfd, (long)i*hresolu*sizeof(float), 0) == -1)
146                  error(SYSTEM, "z file seek error in render");
147          ypos = vresolu-1 - i;
148          fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
149 +        ystep = psample;
150                                                  /* compute scanlines */
151 <        for (ypos -= psample; ypos >= 0; ypos -= psample) {
152 <        
153 <                pctdone = 100.0*(vresolu-ypos-psample)/vresolu;
154 <
155 <                colptr = scanbar[psample];              /* move base to top */
156 <                scanbar[psample] = scanbar[0];
151 >        for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
152 >                                                        /* record progress */
153 >                pctdone = 100.0*(vresolu-1-ypos-ystep)/vresolu;
154 >                                                        /* bottom adjust? */
155 >                if (ypos < 0) {
156 >                        ystep += ypos;
157 >                        ypos = 0;
158 >                }
159 >                colptr = scanbar[ystep];                /* move base to top */
160 >                scanbar[ystep] = scanbar[0];
161                  scanbar[0] = colptr;
162 <                zptr = zbar[psample];
163 <                zbar[psample] = zbar[0];
162 >                zptr = zbar[ystep];
163 >                zbar[ystep] = zbar[0];
164                  zbar[0] = zptr;
165                                                          /* fill base line */
166                  fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
167                                                          /* fill bar */
168 <                fillscanbar(scanbar, zbar, hresolu, ypos, psample);
168 >                fillscanbar(scanbar, zbar, hresolu, ypos, ystep);
169                                                          /* write it out */
170 <                for (i = psample; i > 0; i--) {
171 <                        if (zfp != NULL && fwrite(zbar[i],sizeof(float),hresolu,zfp) != hresolu)
170 >                for (i = ystep; i > 0; i--) {
171 >                        if (zfd != -1 && write(zfd, (char *)zbar[i],
172 >                                        hresolu*sizeof(float))
173 >                                        < hresolu*sizeof(float))
174                                  goto writerr;
175 <                        if (fwritescan(scanbar[i],hresolu,stdout) < 0)
175 >                        if (fwritescan(scanbar[i], hresolu, stdout) < 0)
176                                  goto writerr;
177                  }
163                if (zfp != NULL && fflush(zfp) == EOF)
164                        goto writerr;
178                  if (fflush(stdout) == EOF)
179                          goto writerr;
180          }
168                                                /* compute residual */
169        colptr = scanbar[psample];
170        scanbar[psample] = scanbar[0];
171        scanbar[0] = colptr;
172        zptr = zbar[psample];
173        zbar[psample] = zbar[0];
174        zbar[0] = zptr;
175        if (ypos > -psample) {
176                fillscanline(scanbar[-ypos], zbar[-ypos], hresolu, 0, psample);
177                fillscanbar(scanbar-ypos, zbar-ypos, hresolu, 0, psample+ypos);
178        }
179        for (i = psample; i+ypos >= 0; i--) {
180                if (zfp != NULL && fwrite(zbar[i],sizeof(float),hresolu,zfp) != hresolu)
181                        goto writerr;
182                if (fwritescan(scanbar[i], hresolu, stdout) < 0)
183                        goto writerr;
184        }
181                                                  /* clean up */
182 <        if (zfp != NULL) {
183 <                if (fclose(zfp) == EOF)
182 >        if (zfd != -1) {
183 >                if (write(zfd, (char *)zbar[0], hresolu*sizeof(float))
184 >                                < hresolu*sizeof(float))
185                          goto writerr;
186 +                if (close(zfd) == -1)
187 +                        goto writerr;
188                  for (i = 0; i <= psample; i++)
189                          free((char *)zbar[i]);
190          }
191 +        fwritescan(scanbar[0], hresolu, stdout);
192          if (fflush(stdout) == EOF)
193                  goto writerr;
194          for (i = 0; i <= psample; i++)
# Line 214 | Line 214 | int  xres, y, xstep;
214          z = pixvalue(scanline[0], 0, y);
215          if (zline) zline[0] = z;
216  
217 <        for (i = xstep; i < xres; i += xstep) {
218 <        
217 >        for (i = xstep; i < xres-1+xstep; i += xstep) {
218 >                if (i >= xres) {
219 >                        xstep += xres-1-i;
220 >                        i = xres-1;
221 >                }
222                  z = pixvalue(scanline[i], i, y);
223                  if (zline) zline[i] = z;
224                  
225                  b = fillsample(scanline+i-xstep, zline ? zline+i-xstep : NULL,
226                                  i-xstep, y, xstep, 0, b/2);
227          }
225        if (i-xstep < xres-1) {
226                z = pixvalue(scanline[xres-1], xres-1, y);
227                if (zline) zline[xres-1] = z;
228                fillsample(scanline+i-xstep, zline ? zline+i-xstep : NULL,
229                                i-xstep, y, xres-1-(i-xstep), 0, b/2);
230        }
228   }
229  
230  
# Line 239 | Line 236 | int  xres, y, ysize;
236          COLOR  vline[MAXDIV+1];
237          float  zline[MAXDIV+1];
238          int  b = ysize;
242        double  z;
239          register int  i, j;
240          
241          for (i = 0; i < xres; i++) {
# Line 325 | Line 321 | int  x, y;                     /* pixel position */
321   {
322          static RAY  thisray;    /* our ray for this pixel */
323  
324 <        viewray(thisray.rorg, thisray.rdir, &ourview,
325 <                        (x+pixjitter())/hresolu, (y+pixjitter())/vresolu);
324 >        if (viewray(thisray.rorg, thisray.rdir, &ourview,
325 >                        (x+pixjitter())/hresolu, (y+pixjitter())/vresolu) < 0) {
326 >                setcolor(col, 0.0, 0.0, 0.0);
327 >                return(0.0);
328 >        }
329  
330          rayorigin(&thisray, NULL, PRIMARY, 1.0);
331          
# Line 334 | Line 333 | int  x, y;                     /* pixel position */
333  
334          copycolor(col, thisray.rcol);           /* return color */
335          
336 <        return(thisray.rot);                    /* return distance */
336 >        return(thisray.rt);                     /* return distance */
337   }
338  
339  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines