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.6 by greg, Mon Jul 10 15:21:30 1989 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  
25   #include  "random.h"
26  
27 < VIEW  ourview = STDVIEW(512);           /* view parameters */
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 53 | Line 59 | extern long  nrays;                    /* number of rays traced */
59  
60   #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
61  
62 + double  pixvalue();
63  
64 +
65   quit(code)                      /* quit program */
66   int  code;
67   {
# Line 80 | 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 89 | Line 98 | report()               /* report progress */
98   }
99  
100  
101 < render(oldfile)                         /* render the scene */
102 < char  *oldfile;
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 +        int  zfd;
110          COLOR  *colptr;
111 +        float  *zptr;
112          register int  i;
113 <
113 >                                        /* check sampling */
114          if (psample < 1)
115                  psample = 1;
116          else if (psample > MAXDIV)
117                  psample = MAXDIV;
118 <
105 <        ourview.hresolu -= ourview.hresolu % psample;
106 <        ourview.vresolu -= ourview.vresolu % psample;
107 <                
118 >                                        /* allocate scanlines */
119          for (i = 0; i <= psample; i++) {
120 <                scanbar[i] = (COLOR *)malloc((ourview.hresolu+1)*sizeof(COLOR));
120 >                scanbar[i] = (COLOR *)malloc(hresolu*sizeof(COLOR));
121                  if (scanbar[i] == NULL)
122 <                        error(SYSTEM, "out of memory in render");
122 >                        goto memerr;
123          }
124 <        
124 >                                        /* open z file */
125 >        if (zfile != 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 >                }
130 >                for (i = 0; i <= psample; i++) {
131 >                        zbar[i] = (float *)malloc(hresolu*sizeof(float));
132 >                        if (zbar[i] == NULL)
133 >                                goto memerr;
134 >                }
135 >        } else {
136 >                zfd = -1;
137 >                for (i = 0; i <= psample; i++)
138 >                        zbar[i] = NULL;
139 >        }
140                                          /* write out boundaries */
141 <        printf("-Y %d +X %d\n", ourview.vresolu, ourview.hresolu);
142 <
143 <        ypos = ourview.vresolu - salvage(oldfile);      /* find top line */
144 <        fillscanline(scanbar[0], ypos, psample);        /* top scan */
145 <
146 <        for (ypos -= psample; ypos > -psample; ypos -= psample) {
147 <        
148 <                colptr = scanbar[psample];              /* get last scanline */
149 <                scanbar[psample] = scanbar[0];
141 >        fputresolu(YMAJOR|YDECR, hresolu, vresolu, stdout);
142 >                                        /* recover file and compute first */
143 >        i = salvage(oldfile);
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 -= 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 <
163 <                fillscanline(scanbar[0], ypos, psample);        /* base scan */
164 <        
165 <                fillscanbar(scanbar, ypos, psample);
166 <                
167 <                for (i = psample-1; i >= 0; i--)
168 <                        if (fwritescan(scanbar[i], ourview.hresolu, stdout) < 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, ystep);
169 >                                                        /* write it out */
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)
176 +                                goto writerr;
177 +                }
178                  if (fflush(stdout) == EOF)
179                          goto writerr;
135                pctdone = 100.0*(ourview.vresolu-ypos)/ourview.vresolu;
180          }
181 <                
181 >                                                /* clean up */
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++)
195                  free((char *)scanbar[i]);
196 +        pctdone = 100.0;
197          return;
198   writerr:
199          error(SYSTEM, "write error in render");
200 + memerr:
201 +        error(SYSTEM, "out of memory in render");
202   }
203  
204  
205 < fillscanline(scanline, y, xstep)                /* fill scan line at y */
205 > fillscanline(scanline, zline, xres, y, xstep)   /* fill scan line at y */
206   register COLOR  *scanline;
207 < int  y, xstep;
207 > register float  *zline;
208 > int  xres, y, xstep;
209   {
210          int  b = xstep;
211 +        double  z;
212          register int  i;
213          
214 <        pixvalue(scanline[0], 0, y);
214 >        z = pixvalue(scanline[0], 0, y);
215 >        if (zline) zline[0] = z;
216  
217 <        for (i = xstep; i <= ourview.hresolu; i += xstep) {
218 <        
219 <                pixvalue(scanline[i], i, y);
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, i-xstep, y, xstep, 0, b/2);
225 >                b = fillsample(scanline+i-xstep, zline ? zline+i-xstep : NULL,
226 >                                i-xstep, y, xstep, 0, b/2);
227          }
228   }
229  
230  
231 < fillscanbar(scanbar, y, ysize)          /* fill interior */
231 > fillscanbar(scanbar, zbar, xres, y, ysize)      /* fill interior */
232   register COLOR  *scanbar[];
233 < int  y, ysize;
233 > register float  *zbar[];
234 > int  xres, y, ysize;
235   {
236          COLOR  vline[MAXDIV+1];
237 +        float  zline[MAXDIV+1];
238          int  b = ysize;
239          register int  i, j;
240          
241 <        for (i = 0; i < ourview.hresolu; i++) {
241 >        for (i = 0; i < xres; i++) {
242                  
243                  copycolor(vline[0], scanbar[0][i]);
244                  copycolor(vline[ysize], scanbar[ysize][i]);
245 +                if (zbar[0]) {
246 +                        zline[0] = zbar[0][i];
247 +                        zline[ysize] = zbar[ysize][i];
248 +                }
249                  
250 <                b = fillsample(vline, i, y, 0, ysize, b/2);
250 >                b = fillsample(vline, zbar[0] ? zline : NULL,
251 >                                i, y, 0, ysize, b/2);
252                  
253                  for (j = 1; j < ysize; j++)
254                          copycolor(scanbar[j][i], vline[j]);
255 +                if (zbar[0])
256 +                        for (j = 1; j < ysize; j++)
257 +                                zbar[j][i] = zline[j];
258          }
259   }
260  
261  
262   int
263 < fillsample(colline, x, y, xlen, ylen, b)        /* fill interior points */
263 > fillsample(colline, zline, x, y, xlen, ylen, b) /* fill interior points */
264   register COLOR  *colline;
265 + register float  *zline;
266   int  x, y;
267   int  xlen, ylen;
268   int  b;
269   {
270 +        extern double  fabs();
271          double  ratio;
272 +        double  z;
273          COLOR  ctmp;
274          int  ncut;
275          register int  len;
# Line 202 | Line 282 | int  b;
282          if (len <= 1)                   /* limit recursion */
283                  return(0);
284          
285 <        if (b > 0 || bigdiff(colline[0], colline[len], maxdiff)) {
285 >        if (b > 0
286 >        || (zline && 2.*fabs(zline[0]-zline[len]) > maxdiff*(zline[0]+zline[len]))
287 >                        || bigdiff(colline[0], colline[len], maxdiff)) {
288          
289 <                pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
289 >                z = pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
290 >                if (zline) zline[len>>1] = z;
291                  ncut = 1;
292                  
293          } else {                                        /* interpolate */
# Line 212 | Line 295 | int  b;
295                  copycolor(colline[len>>1], colline[len]);
296                  ratio = (double)(len>>1) / len;
297                  scalecolor(colline[len>>1], ratio);
298 <                copycolor(ctmp, colline[0]);
298 >                if (zline) zline[len>>1] = zline[len] * ratio;
299                  ratio = 1.0 - ratio;
300 +                copycolor(ctmp, colline[0]);
301                  scalecolor(ctmp, ratio);
302                  addcolor(colline[len>>1], ctmp);
303 +                if (zline) zline[len>>1] += zline[0] * ratio;
304                  ncut = 0;
305          }
306                                                          /* recurse */
307 <        ncut += fillsample(colline, x, y, xlen>>1, ylen>>1, (b-1)/2);
307 >        ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
308          
309 <        ncut += fillsample(colline + (len>>1), x + (xlen>>1), y + (ylen>>1),
310 <                                xlen - (xlen>>1), ylen - (ylen>>1), b/2);
309 >        ncut += fillsample(colline+(len>>1), zline ? zline+(len>>1) : NULL,
310 >                        x+(xlen>>1), y+(ylen>>1),
311 >                        xlen-(xlen>>1), ylen-(ylen>>1), b/2);
312  
313          return(ncut);
314   }
315  
316  
317 + double
318   pixvalue(col, x, y)             /* compute pixel value */
319   COLOR  col;                     /* returned color */
320   int  x, y;                      /* pixel position */
321   {
322          static RAY  thisray;    /* our ray for this pixel */
323  
324 <        rayview(thisray.rorg, thisray.rdir, &ourview,
325 <                        x + pixjitter(), y + pixjitter());
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          
332          rayvalue(&thisray);                     /* trace ray */
333  
334          copycolor(col, thisray.rcol);           /* return color */
335 +        
336 +        return(thisray.rt);                     /* return distance */
337   }
338  
339  
# Line 255 | Line 347 | char  *oldfile;
347  
348          if (oldfile == NULL)
349                  return(0);
350 <        else if ((fp = fopen(oldfile, "r")) == NULL) {
350 >        
351 >        if ((fp = fopen(oldfile, "r")) == NULL) {
352                  sprintf(errmsg, "cannot open recover file \"%s\"", oldfile);
353                  error(WARNING, errmsg);
354                  return(0);
# Line 263 | Line 356 | char  *oldfile;
356                                  /* discard header */
357          getheader(fp, NULL);
358                                  /* get picture size */
359 <        if (fscanf(fp, "-Y %d +X %d\n", &y, &x) != 2) {
359 >        if (fgetresolu(&x, &y, fp) != (YMAJOR|YDECR)) {
360                  sprintf(errmsg, "bad recover file \"%s\"", oldfile);
361                  error(WARNING, errmsg);
362                  fclose(fp);
363                  return(0);
364          }
365  
366 <        if (x != ourview.hresolu || y != ourview.vresolu) {
366 >        if (x != hresolu || y != vresolu) {
367                  sprintf(errmsg, "resolution mismatch in recover file \"%s\"",
368                                  oldfile);
369                  error(USER, errmsg);
277                return(0);
370          }
371  
372 <        scanline = (COLR *)malloc(ourview.hresolu*sizeof(COLR));
372 >        scanline = (COLR *)malloc(hresolu*sizeof(COLR));
373          if (scanline == NULL)
374                  error(SYSTEM, "out of memory in salvage");
375 <        for (y = 0; y < ourview.vresolu; y++) {
376 <                if (freadcolrs(scanline, ourview.hresolu, fp) < 0)
375 >        for (y = 0; y < vresolu; y++) {
376 >                if (freadcolrs(scanline, hresolu, fp) < 0)
377                          break;
378 <                if (fwritecolrs(scanline, ourview.hresolu, stdout) < 0)
378 >                if (fwritecolrs(scanline, hresolu, stdout) < 0)
379                          goto writerr;
380          }
381          if (fflush(stdout) == EOF)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines