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.4 by greg, Wed Jun 7 21:00:57 1989 UTC vs.
Revision 1.28 by greg, Mon Jun 24 16:10:46 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 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 > int  dimlist[MAXDIM];                   /* sampling dimensions */
28 > int  ndims = 0;                         /* number of sampling dimensions */
29 > int  samplendx;                         /* sample index number */
30  
31 + VIEW  ourview = STDVIEW;                /* view parameters */
32 + int  hresolu = 512;                     /* horizontal resolution */
33 + int  vresolu = 512;                     /* vertical resolution */
34 + double  pixaspect = 1.0;                /* pixel aspect ratio */
35 +
36   int  psample = 4;                       /* pixel sample size */
37   double  maxdiff = .05;                  /* max. difference for interpolation */
38   double  dstrpix = 0.67;                 /* square pixel distribution */
39  
40   double  dstrsrc = 0.0;                  /* square source distribution */
41   double  shadthresh = .05;               /* shadow threshold */
42 + double  shadcert = .5;                  /* shadow certainty */
43 + int  directrelay = 0;                   /* number of source relays */
44 + int  vspretest = 128;                   /* virtual source pretest density */
45  
46   int  maxdepth = 6;                      /* maximum recursion depth */
47   double  minweight = 5e-3;               /* minimum ray weight */
48  
49   COLOR  ambval = BLKCOLOR;               /* ambient value */
50   double  ambacc = 0.2;                   /* ambient accuracy */
51 < int  ambres = 128;                      /* ambient resolution */
51 > int  ambres = 32;                       /* ambient resolution */
52   int  ambdiv = 128;                      /* ambient divisions */
53   int  ambssamp = 0;                      /* ambient super-samples */
54   int  ambounce = 0;                      /* ambient bounces */
# Line 46 | Line 59 | int  ralrm = 0;                                /* seconds between reports */
59  
60   double  pctdone = 0.0;                  /* percentage done */
61  
62 + long  tlastrept = 0L;                   /* time at last report */
63 +
64 + extern long  time();
65 + extern long  tstart;                    /* starting time */
66 +
67   extern long  nrays;                     /* number of rays traced */
68  
69 < #define  MAXDIV         32              /* maximum sample size */
69 > #define  MAXDIV         15              /* maximum sample size */
70  
71   #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
72  
73 + double  pixvalue();
74  
75 +
76   quit(code)                      /* quit program */
77   int  code;
78   {
# Line 63 | Line 83 | int  code;
83   }
84  
85  
86 + #ifdef BSD
87   report()                /* report progress */
88   {
68 #ifdef BSD
89          struct rusage  rubuf;
90          double  t;
91  
# Line 78 | Line 98 | report()               /* report progress */
98  
99          sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f CPU hours\n",
100                          nrays, pctdone, t/3600.0);
101 +        eputs(errmsg);
102 +        tlastrept = time((long *)0);
103 + }
104   #else
105 <        sprintf(errmsg, "%ld rays, %4.2f%% done\n", nrays, pctdone);
106 < #endif
105 > report()                /* report progress */
106 > {
107 >        signal(SIGALRM, report);
108 >        tlastrept = time((long *)0);
109 >        sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f hours\n",
110 >                        nrays, pctdone, (tlastrept-tstart)/3600.0);
111          eputs(errmsg);
85
86        if (ralrm > 0)
87                alarm(ralrm);
112   }
113 + #endif
114  
115  
116 < render(oldfile)                         /* render the scene */
117 < char  *oldfile;
116 > render(zfile, oldfile)                          /* render the scene */
117 > char  *zfile, *oldfile;
118   {
119 +        extern long  lseek();
120          COLOR  *scanbar[MAXDIV+1];      /* scanline arrays of pixel values */
121 +        float  *zbar[MAXDIV+1];         /* z values */
122          int  ypos;                      /* current scanline */
123 +        int  ystep;                     /* current y step size */
124 +        int  zfd;
125          COLOR  *colptr;
126 +        float  *zptr;
127          register int  i;
128 <
128 >                                        /* check sampling */
129          if (psample < 1)
130                  psample = 1;
131 <        else if (psample > MAXDIV)
131 >        else if (psample > MAXDIV) {
132 >                sprintf(errmsg, "pixel sampling reduced from %d to %d",
133 >                                psample, MAXDIV);
134 >                error(WARNING, errmsg);
135                  psample = MAXDIV;
136 <
137 <        ourview.hresolu -= ourview.hresolu % psample;
105 <        ourview.vresolu -= ourview.vresolu % psample;
106 <                
136 >        }
137 >                                        /* allocate scanlines */
138          for (i = 0; i <= psample; i++) {
139 <                scanbar[i] = (COLOR *)malloc((ourview.hresolu+1)*sizeof(COLOR));
139 >                scanbar[i] = (COLOR *)malloc(hresolu*sizeof(COLOR));
140                  if (scanbar[i] == NULL)
141 <                        error(SYSTEM, "out of memory in render");
141 >                        goto memerr;
142          }
143 <        
143 >                                        /* open z file */
144 >        if (zfile != NULL) {
145 >                if ((zfd = open(zfile, O_WRONLY|O_CREAT, 0666)) == -1) {
146 >                        sprintf(errmsg, "cannot open z file \"%s\"", zfile);
147 >                        error(SYSTEM, errmsg);
148 >                }
149 >                for (i = 0; i <= psample; i++) {
150 >                        zbar[i] = (float *)malloc(hresolu*sizeof(float));
151 >                        if (zbar[i] == NULL)
152 >                                goto memerr;
153 >                }
154 >        } else {
155 >                zfd = -1;
156 >                for (i = 0; i <= psample; i++)
157 >                        zbar[i] = NULL;
158 >        }
159                                          /* write out boundaries */
160 <        printf("-Y %d +X %d\n", ourview.vresolu, ourview.hresolu);
161 <
162 <        ypos = ourview.vresolu - salvage(oldfile);      /* find top line */
163 <        fillscanline(scanbar[0], ypos, psample);        /* top scan */
164 <
165 <        for (ypos -= psample; ypos > -psample; ypos -= psample) {
166 <        
167 <                colptr = scanbar[psample];              /* get last scanline */
168 <                scanbar[psample] = scanbar[0];
160 >        fputresolu(YMAJOR|YDECR, hresolu, vresolu, stdout);
161 >                                        /* recover file and compute first */
162 >        i = salvage(oldfile);
163 >        if (zfd != -1 && i > 0 &&
164 >                        lseek(zfd, (long)i*hresolu*sizeof(float), 0) == -1)
165 >                error(SYSTEM, "z file seek error in render");
166 >        pctdone = 100.0*i/vresolu;
167 >        if (ralrm > 0)                  /* report init stats */
168 >                report();
169 >        ypos = vresolu-1 - i;
170 >        fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
171 >        ystep = psample;
172 >                                                /* compute scanlines */
173 >        for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
174 >                                                        /* bottom adjust? */
175 >                if (ypos < 0) {
176 >                        ystep += ypos;
177 >                        ypos = 0;
178 >                }
179 >                colptr = scanbar[ystep];                /* move base to top */
180 >                scanbar[ystep] = scanbar[0];
181                  scanbar[0] = colptr;
182 <
183 <                fillscanline(scanbar[0], ypos, psample);        /* base scan */
184 <        
185 <                fillscanbar(scanbar, ypos, psample);
186 <                
187 <                for (i = psample-1; i >= 0; i--)
188 <                        if (fwritescan(scanbar[i], ourview.hresolu, stdout) < 0)
182 >                zptr = zbar[ystep];
183 >                zbar[ystep] = zbar[0];
184 >                zbar[0] = zptr;
185 >                                                        /* fill base line */
186 >                fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
187 >                                                        /* fill bar */
188 >                fillscanbar(scanbar, zbar, hresolu, ypos, ystep);
189 >                                                        /* write it out */
190 >                for (i = ystep; i > 0; i--) {
191 >                        if (zfd != -1 && write(zfd, (char *)zbar[i],
192 >                                        hresolu*sizeof(float))
193 >                                        < hresolu*sizeof(float))
194                                  goto writerr;
195 +                        if (fwritescan(scanbar[i], hresolu, stdout) < 0)
196 +                                goto writerr;
197 +                }
198                  if (fflush(stdout) == EOF)
199                          goto writerr;
200 <                pctdone = 100.0*(ourview.vresolu-ypos)/ourview.vresolu;
200 >                                                        /* record progress */
201 >                pctdone = 100.0*(vresolu-1-ypos)/vresolu;
202 >                if (ralrm > 0 && time((long *)0) >= tlastrept+ralrm)
203 >                        report();
204          }
205 <                
205 >                                                /* clean up */
206 >        if (zfd != -1) {
207 >                if (write(zfd, (char *)zbar[0], hresolu*sizeof(float))
208 >                                < hresolu*sizeof(float))
209 >                        goto writerr;
210 >                if (close(zfd) == -1)
211 >                        goto writerr;
212 >                for (i = 0; i <= psample; i++)
213 >                        free((char *)zbar[i]);
214 >        }
215 >        fwritescan(scanbar[0], hresolu, stdout);
216 >        if (fflush(stdout) == EOF)
217 >                goto writerr;
218          for (i = 0; i <= psample; i++)
219                  free((char *)scanbar[i]);
220 +        pctdone = 100.0;
221          return;
222   writerr:
223          error(SYSTEM, "write error in render");
224 + memerr:
225 +        error(SYSTEM, "out of memory in render");
226   }
227  
228  
229 < fillscanline(scanline, y, xstep)                /* fill scan line at y */
229 > fillscanline(scanline, zline, xres, y, xstep)   /* fill scan line at y */
230   register COLOR  *scanline;
231 < int  y, xstep;
231 > register float  *zline;
232 > int  xres, y, xstep;
233   {
234          int  b = xstep;
235 +        double  z;
236          register int  i;
237          
238 <        pixvalue(scanline[0], 0, y);
238 >        z = pixvalue(scanline[0], 0, y);
239 >        if (zline) zline[0] = z;
240  
241 <        for (i = xstep; i <= ourview.hresolu; i += xstep) {
242 <        
243 <                pixvalue(scanline[i], i, y);
241 >        for (i = xstep; i < xres-1+xstep; i += xstep) {
242 >                if (i >= xres) {
243 >                        xstep += xres-1-i;
244 >                        i = xres-1;
245 >                }
246 >                z = pixvalue(scanline[i], i, y);
247 >                if (zline) zline[i] = z;
248                  
249 <                b = fillsample(scanline+i-xstep, i-xstep, y, xstep, 0, b/2);
249 >                b = fillsample(scanline+i-xstep, zline ? zline+i-xstep : NULL,
250 >                                i-xstep, y, xstep, 0, b/2);
251          }
252   }
253  
254  
255 < fillscanbar(scanbar, y, ysize)          /* fill interior */
255 > fillscanbar(scanbar, zbar, xres, y, ysize)      /* fill interior */
256   register COLOR  *scanbar[];
257 < int  y, ysize;
257 > register float  *zbar[];
258 > int  xres, y, ysize;
259   {
260          COLOR  vline[MAXDIV+1];
261 +        float  zline[MAXDIV+1];
262          int  b = ysize;
263          register int  i, j;
264          
265 <        for (i = 0; i < ourview.hresolu; i++) {
265 >        for (i = 0; i < xres; i++) {
266                  
267                  copycolor(vline[0], scanbar[0][i]);
268                  copycolor(vline[ysize], scanbar[ysize][i]);
269 +                if (zbar[0]) {
270 +                        zline[0] = zbar[0][i];
271 +                        zline[ysize] = zbar[ysize][i];
272 +                }
273                  
274 <                b = fillsample(vline, i, y, 0, ysize, b/2);
274 >                b = fillsample(vline, zbar[0] ? zline : NULL,
275 >                                i, y, 0, ysize, b/2);
276                  
277                  for (j = 1; j < ysize; j++)
278                          copycolor(scanbar[j][i], vline[j]);
279 +                if (zbar[0])
280 +                        for (j = 1; j < ysize; j++)
281 +                                zbar[j][i] = zline[j];
282          }
283   }
284  
285  
286   int
287 < fillsample(colline, x, y, xlen, ylen, b)        /* fill interior points */
287 > fillsample(colline, zline, x, y, xlen, ylen, b) /* fill interior points */
288   register COLOR  *colline;
289 + register float  *zline;
290   int  x, y;
291   int  xlen, ylen;
292   int  b;
293   {
294 +        extern double  fabs();
295          double  ratio;
296 +        double  z;
297          COLOR  ctmp;
298          int  ncut;
299          register int  len;
# Line 201 | Line 306 | int  b;
306          if (len <= 1)                   /* limit recursion */
307                  return(0);
308          
309 <        if (b > 0 || bigdiff(colline[0], colline[len], maxdiff)) {
309 >        if (b > 0
310 >        || (zline && 2.*fabs(zline[0]-zline[len]) > maxdiff*(zline[0]+zline[len]))
311 >                        || bigdiff(colline[0], colline[len], maxdiff)) {
312          
313 <                pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
313 >                z = pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
314 >                if (zline) zline[len>>1] = z;
315                  ncut = 1;
316                  
317          } else {                                        /* interpolate */
# Line 211 | Line 319 | int  b;
319                  copycolor(colline[len>>1], colline[len]);
320                  ratio = (double)(len>>1) / len;
321                  scalecolor(colline[len>>1], ratio);
322 <                copycolor(ctmp, colline[0]);
322 >                if (zline) zline[len>>1] = zline[len] * ratio;
323                  ratio = 1.0 - ratio;
324 +                copycolor(ctmp, colline[0]);
325                  scalecolor(ctmp, ratio);
326                  addcolor(colline[len>>1], ctmp);
327 +                if (zline) zline[len>>1] += zline[0] * ratio;
328                  ncut = 0;
329          }
330                                                          /* recurse */
331 <        ncut += fillsample(colline, x, y, xlen>>1, ylen>>1, (b-1)/2);
331 >        ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
332          
333 <        ncut += fillsample(colline + (len>>1), x + (xlen>>1), y + (ylen>>1),
334 <                                xlen - (xlen>>1), ylen - (ylen>>1), b/2);
333 >        ncut += fillsample(colline+(len>>1), zline ? zline+(len>>1) : NULL,
334 >                        x+(xlen>>1), y+(ylen>>1),
335 >                        xlen-(xlen>>1), ylen-(ylen>>1), b/2);
336  
337          return(ncut);
338   }
339  
340  
341 + double
342   pixvalue(col, x, y)             /* compute pixel value */
343   COLOR  col;                     /* returned color */
344   int  x, y;                      /* pixel position */
345   {
346 <        static RAY  thisray;    /* our ray for this pixel */
346 >        static RAY  thisray;
347  
348 <        rayview(thisray.rorg, thisray.rdir, &ourview,
349 <                        x + pixjitter(), y + pixjitter());
348 >        if (viewray(thisray.rorg, thisray.rdir, &ourview,
349 >                        (x+pixjitter())/hresolu, (y+pixjitter())/vresolu) < 0) {
350 >                setcolor(col, 0.0, 0.0, 0.0);
351 >                return(0.0);
352 >        }
353  
354          rayorigin(&thisray, NULL, PRIMARY, 1.0);
355 <        
355 >
356 >        samplendx = 3*y + x;                    /* set pixel index */
357 >
358          rayvalue(&thisray);                     /* trace ray */
359  
360          copycolor(col, thisray.rcol);           /* return color */
361 +        
362 +        return(thisray.rt);                     /* return distance */
363   }
364  
365  
# Line 254 | Line 373 | char  *oldfile;
373  
374          if (oldfile == NULL)
375                  return(0);
376 <        else if ((fp = fopen(oldfile, "r")) == NULL) {
376 >        
377 >        if ((fp = fopen(oldfile, "r")) == NULL) {
378                  sprintf(errmsg, "cannot open recover file \"%s\"", oldfile);
379                  error(WARNING, errmsg);
380                  return(0);
# Line 262 | Line 382 | char  *oldfile;
382                                  /* discard header */
383          getheader(fp, NULL);
384                                  /* get picture size */
385 <        if (fscanf(fp, "-Y %d +X %d\n", &y, &x) != 2) {
385 >        if (fgetresolu(&x, &y, fp) != (YMAJOR|YDECR)) {
386                  sprintf(errmsg, "bad recover file \"%s\"", oldfile);
387                  error(WARNING, errmsg);
388                  fclose(fp);
389                  return(0);
390          }
391  
392 <        if (x != ourview.hresolu || y != ourview.vresolu) {
392 >        if (x != hresolu || y != vresolu) {
393                  sprintf(errmsg, "resolution mismatch in recover file \"%s\"",
394                                  oldfile);
395                  error(USER, errmsg);
276                return(0);
396          }
397  
398 <        scanline = (COLR *)malloc(ourview.hresolu*sizeof(COLR));
398 >        scanline = (COLR *)malloc(hresolu*sizeof(COLR));
399          if (scanline == NULL)
400                  error(SYSTEM, "out of memory in salvage");
401 <        for (y = 0; y < ourview.vresolu; y++) {
402 <                if (freadcolrs(scanline, ourview.hresolu, fp) < 0)
401 >        for (y = 0; y < vresolu; y++) {
402 >                if (freadcolrs(scanline, hresolu, fp) < 0)
403                          break;
404 <                if (fwritecolrs(scanline, ourview.hresolu, stdout) < 0)
404 >                if (fwritecolrs(scanline, hresolu, stdout) < 0)
405                          goto writerr;
406          }
407          if (fflush(stdout) == EOF)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines