ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rpict.c
Revision: 1.32
Committed: Thu Sep 19 13:55:53 1991 UTC (32 years, 7 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 1.31: +11 -0 lines
Log Message:
improved ALRM signal handling for SYSV

File Contents

# User Rev Content
1 greg 1.24 /* Copyright (c) 1991 Regents of the University of California */
2 greg 1.1
3     #ifndef lint
4     static char SCCSid[] = "$SunId$ LBL";
5     #endif
6    
7     /*
8     * rpict.c - routines and variables for picture generation.
9     *
10     * 8/14/85
11     */
12    
13     #include "ray.h"
14    
15     #ifdef BSD
16     #include <sys/time.h>
17     #include <sys/resource.h>
18 greg 1.14 #else
19     #include <signal.h>
20 greg 1.1 #endif
21 greg 1.18 #include <fcntl.h>
22 greg 1.1
23     #include "view.h"
24    
25     #include "random.h"
26    
27 greg 1.25 int dimlist[MAXDIM]; /* sampling dimensions */
28     int ndims = 0; /* number of sampling dimensions */
29     int samplendx; /* sample index number */
30    
31 greg 1.12 VIEW ourview = STDVIEW; /* view parameters */
32     int hresolu = 512; /* horizontal resolution */
33     int vresolu = 512; /* vertical resolution */
34 greg 1.13 double pixaspect = 1.0; /* pixel aspect ratio */
35 greg 1.1
36     int psample = 4; /* pixel sample size */
37     double maxdiff = .05; /* max. difference for interpolation */
38 greg 1.3 double dstrpix = 0.67; /* square pixel distribution */
39 greg 1.1
40     double dstrsrc = 0.0; /* square source distribution */
41 greg 1.4 double shadthresh = .05; /* shadow threshold */
42 greg 1.5 double shadcert = .5; /* shadow certainty */
43 greg 1.27 int directrelay = 0; /* number of source relays */
44 greg 1.29 int vspretest = 512; /* virtual source pretest density */
45 greg 1.30 int directinvis = 0; /* sources invisible? */
46 greg 1.1
47     int maxdepth = 6; /* maximum recursion depth */
48     double minweight = 5e-3; /* minimum ray weight */
49    
50     COLOR ambval = BLKCOLOR; /* ambient value */
51     double ambacc = 0.2; /* ambient accuracy */
52 greg 1.6 int ambres = 32; /* ambient resolution */
53 greg 1.1 int ambdiv = 128; /* ambient divisions */
54     int ambssamp = 0; /* ambient super-samples */
55     int ambounce = 0; /* ambient bounces */
56     char *amblist[128]; /* ambient include/exclude list */
57     int ambincl = -1; /* include == 1, exclude == 0 */
58    
59     int ralrm = 0; /* seconds between reports */
60    
61     double pctdone = 0.0; /* percentage done */
62    
63 greg 1.24 long tlastrept = 0L; /* time at last report */
64    
65     extern long time();
66     extern long tstart; /* starting time */
67    
68 greg 1.1 extern long nrays; /* number of rays traced */
69    
70 greg 1.26 #define MAXDIV 15 /* maximum sample size */
71 greg 1.1
72     #define pixjitter() (.5+dstrpix*(.5-frandom()))
73    
74 greg 1.11 double pixvalue();
75 greg 1.1
76 greg 1.11
77 greg 1.1 quit(code) /* quit program */
78     int code;
79     {
80     if (code || ralrm > 0) /* report status */
81     report();
82    
83     exit(code);
84     }
85    
86    
87 greg 1.24 #ifdef BSD
88 greg 1.1 report() /* report progress */
89     {
90     struct rusage rubuf;
91     double t;
92    
93     getrusage(RUSAGE_SELF, &rubuf);
94     t = (rubuf.ru_utime.tv_usec + rubuf.ru_stime.tv_usec) / 1e6;
95     t += rubuf.ru_utime.tv_sec + rubuf.ru_stime.tv_sec;
96     getrusage(RUSAGE_CHILDREN, &rubuf);
97     t += (rubuf.ru_utime.tv_usec + rubuf.ru_stime.tv_usec) / 1e6;
98     t += rubuf.ru_utime.tv_sec + rubuf.ru_stime.tv_sec;
99    
100     sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f CPU hours\n",
101     nrays, pctdone, t/3600.0);
102 greg 1.24 eputs(errmsg);
103     tlastrept = time((long *)0);
104     }
105 greg 1.1 #else
106 greg 1.24 report() /* report progress */
107     {
108 greg 1.14 signal(SIGALRM, report);
109 greg 1.24 tlastrept = time((long *)0);
110     sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f hours\n",
111     nrays, pctdone, (tlastrept-tstart)/3600.0);
112 greg 1.1 eputs(errmsg);
113     }
114 greg 1.24 #endif
115 greg 1.1
116    
117 greg 1.11 render(zfile, oldfile) /* render the scene */
118     char *zfile, *oldfile;
119 greg 1.1 {
120 greg 1.16 extern long lseek();
121 greg 1.1 COLOR *scanbar[MAXDIV+1]; /* scanline arrays of pixel values */
122 greg 1.11 float *zbar[MAXDIV+1]; /* z values */
123 greg 1.1 int ypos; /* current scanline */
124 greg 1.15 int ystep; /* current y step size */
125 greg 1.16 int zfd;
126 greg 1.1 COLOR *colptr;
127 greg 1.11 float *zptr;
128 greg 1.1 register int i;
129 greg 1.10 /* check sampling */
130     if (psample < 1)
131 greg 1.1 psample = 1;
132 greg 1.26 else if (psample > MAXDIV) {
133     sprintf(errmsg, "pixel sampling reduced from %d to %d",
134     psample, MAXDIV);
135     error(WARNING, errmsg);
136 greg 1.10 psample = MAXDIV;
137 greg 1.26 }
138 greg 1.9 /* allocate scanlines */
139 greg 1.1 for (i = 0; i <= psample; i++) {
140 greg 1.12 scanbar[i] = (COLOR *)malloc(hresolu*sizeof(COLOR));
141 greg 1.1 if (scanbar[i] == NULL)
142 greg 1.11 goto memerr;
143 greg 1.1 }
144 greg 1.11 /* open z file */
145     if (zfile != NULL) {
146 greg 1.16 if ((zfd = open(zfile, O_WRONLY|O_CREAT, 0666)) == -1) {
147 greg 1.11 sprintf(errmsg, "cannot open z file \"%s\"", zfile);
148     error(SYSTEM, errmsg);
149     }
150     for (i = 0; i <= psample; i++) {
151 greg 1.12 zbar[i] = (float *)malloc(hresolu*sizeof(float));
152 greg 1.11 if (zbar[i] == NULL)
153     goto memerr;
154     }
155     } else {
156 greg 1.16 zfd = -1;
157 greg 1.11 for (i = 0; i <= psample; i++)
158     zbar[i] = NULL;
159     }
160 greg 1.1 /* write out boundaries */
161 greg 1.12 fputresolu(YMAJOR|YDECR, hresolu, vresolu, stdout);
162 greg 1.10 /* recover file and compute first */
163 greg 1.11 i = salvage(oldfile);
164 greg 1.23 if (zfd != -1 && i > 0 &&
165     lseek(zfd, (long)i*hresolu*sizeof(float), 0) == -1)
166 greg 1.11 error(SYSTEM, "z file seek error in render");
167 greg 1.24 pctdone = 100.0*i/vresolu;
168     if (ralrm > 0) /* report init stats */
169     report();
170 greg 1.32 #ifndef BSD
171     else
172     #endif
173     signal(SIGALRM, report);
174 greg 1.12 ypos = vresolu-1 - i;
175     fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
176 greg 1.15 ystep = psample;
177 greg 1.10 /* compute scanlines */
178 greg 1.15 for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
179     /* bottom adjust? */
180     if (ypos < 0) {
181     ystep += ypos;
182     ypos = 0;
183     }
184     colptr = scanbar[ystep]; /* move base to top */
185     scanbar[ystep] = scanbar[0];
186 greg 1.1 scanbar[0] = colptr;
187 greg 1.15 zptr = zbar[ystep];
188     zbar[ystep] = zbar[0];
189 greg 1.11 zbar[0] = zptr;
190 greg 1.10 /* fill base line */
191 greg 1.12 fillscanline(scanbar[0], zbar[0], hresolu, ypos, psample);
192 greg 1.10 /* fill bar */
193 greg 1.15 fillscanbar(scanbar, zbar, hresolu, ypos, ystep);
194 greg 1.10 /* write it out */
195 greg 1.32 #ifndef BSD
196     signal(SIGALRM, SIG_IGN); /* don't interrupt writes */
197     #endif
198 greg 1.15 for (i = ystep; i > 0; i--) {
199 greg 1.17 if (zfd != -1 && write(zfd, (char *)zbar[i],
200     hresolu*sizeof(float))
201 greg 1.16 < hresolu*sizeof(float))
202 greg 1.1 goto writerr;
203 greg 1.17 if (fwritescan(scanbar[i], hresolu, stdout) < 0)
204 greg 1.11 goto writerr;
205     }
206 greg 1.1 if (fflush(stdout) == EOF)
207     goto writerr;
208 greg 1.24 /* record progress */
209     pctdone = 100.0*(vresolu-1-ypos)/vresolu;
210     if (ralrm > 0 && time((long *)0) >= tlastrept+ralrm)
211     report();
212 greg 1.32 #ifndef BSD
213     else
214     signal(SIGALRM, report);
215     #endif
216 greg 1.1 }
217 greg 1.11 /* clean up */
218 greg 1.16 if (zfd != -1) {
219 greg 1.17 if (write(zfd, (char *)zbar[0], hresolu*sizeof(float))
220 greg 1.16 < hresolu*sizeof(float))
221 greg 1.11 goto writerr;
222 greg 1.20 if (close(zfd) == -1)
223     goto writerr;
224 greg 1.11 for (i = 0; i <= psample; i++)
225     free((char *)zbar[i]);
226     }
227 greg 1.15 fwritescan(scanbar[0], hresolu, stdout);
228 greg 1.10 if (fflush(stdout) == EOF)
229     goto writerr;
230 greg 1.1 for (i = 0; i <= psample; i++)
231     free((char *)scanbar[i]);
232 greg 1.11 pctdone = 100.0;
233 greg 1.1 return;
234     writerr:
235     error(SYSTEM, "write error in render");
236 greg 1.11 memerr:
237     error(SYSTEM, "out of memory in render");
238 greg 1.1 }
239    
240    
241 greg 1.11 fillscanline(scanline, zline, xres, y, xstep) /* fill scan line at y */
242 greg 1.1 register COLOR *scanline;
243 greg 1.11 register float *zline;
244 greg 1.9 int xres, y, xstep;
245 greg 1.1 {
246     int b = xstep;
247 greg 1.11 double z;
248 greg 1.1 register int i;
249    
250 greg 1.11 z = pixvalue(scanline[0], 0, y);
251     if (zline) zline[0] = z;
252 greg 1.1
253 greg 1.15 for (i = xstep; i < xres-1+xstep; i += xstep) {
254     if (i >= xres) {
255     xstep += xres-1-i;
256     i = xres-1;
257     }
258 greg 1.11 z = pixvalue(scanline[i], i, y);
259     if (zline) zline[i] = z;
260 greg 1.1
261 greg 1.11 b = fillsample(scanline+i-xstep, zline ? zline+i-xstep : NULL,
262     i-xstep, y, xstep, 0, b/2);
263 greg 1.1 }
264     }
265    
266    
267 greg 1.11 fillscanbar(scanbar, zbar, xres, y, ysize) /* fill interior */
268 greg 1.1 register COLOR *scanbar[];
269 greg 1.11 register float *zbar[];
270 greg 1.9 int xres, y, ysize;
271 greg 1.1 {
272     COLOR vline[MAXDIV+1];
273 greg 1.11 float zline[MAXDIV+1];
274 greg 1.1 int b = ysize;
275     register int i, j;
276    
277 greg 1.8 for (i = 0; i < xres; i++) {
278 greg 1.1
279     copycolor(vline[0], scanbar[0][i]);
280     copycolor(vline[ysize], scanbar[ysize][i]);
281 greg 1.11 if (zbar[0]) {
282     zline[0] = zbar[0][i];
283     zline[ysize] = zbar[ysize][i];
284     }
285 greg 1.1
286 greg 1.11 b = fillsample(vline, zbar[0] ? zline : NULL,
287     i, y, 0, ysize, b/2);
288 greg 1.1
289     for (j = 1; j < ysize; j++)
290     copycolor(scanbar[j][i], vline[j]);
291 greg 1.11 if (zbar[0])
292     for (j = 1; j < ysize; j++)
293     zbar[j][i] = zline[j];
294 greg 1.1 }
295     }
296    
297    
298     int
299 greg 1.11 fillsample(colline, zline, x, y, xlen, ylen, b) /* fill interior points */
300 greg 1.1 register COLOR *colline;
301 greg 1.11 register float *zline;
302 greg 1.1 int x, y;
303     int xlen, ylen;
304     int b;
305     {
306 greg 1.11 extern double fabs();
307 greg 1.1 double ratio;
308 greg 1.11 double z;
309 greg 1.1 COLOR ctmp;
310     int ncut;
311     register int len;
312    
313     if (xlen > 0) /* x or y length is zero */
314     len = xlen;
315     else
316     len = ylen;
317    
318     if (len <= 1) /* limit recursion */
319     return(0);
320    
321 greg 1.11 if (b > 0
322     || (zline && 2.*fabs(zline[0]-zline[len]) > maxdiff*(zline[0]+zline[len]))
323     || bigdiff(colline[0], colline[len], maxdiff)) {
324 greg 1.1
325 greg 1.11 z = pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
326     if (zline) zline[len>>1] = z;
327 greg 1.1 ncut = 1;
328    
329     } else { /* interpolate */
330    
331     copycolor(colline[len>>1], colline[len]);
332     ratio = (double)(len>>1) / len;
333     scalecolor(colline[len>>1], ratio);
334 greg 1.11 if (zline) zline[len>>1] = zline[len] * ratio;
335     ratio = 1.0 - ratio;
336 greg 1.1 copycolor(ctmp, colline[0]);
337     scalecolor(ctmp, ratio);
338     addcolor(colline[len>>1], ctmp);
339 greg 1.11 if (zline) zline[len>>1] += zline[0] * ratio;
340 greg 1.1 ncut = 0;
341     }
342     /* recurse */
343 greg 1.11 ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
344 greg 1.1
345 greg 1.11 ncut += fillsample(colline+(len>>1), zline ? zline+(len>>1) : NULL,
346     x+(xlen>>1), y+(ylen>>1),
347     xlen-(xlen>>1), ylen-(ylen>>1), b/2);
348 greg 1.1
349     return(ncut);
350     }
351    
352    
353 greg 1.11 double
354 greg 1.1 pixvalue(col, x, y) /* compute pixel value */
355     COLOR col; /* returned color */
356     int x, y; /* pixel position */
357     {
358 greg 1.25 static RAY thisray;
359 greg 1.1
360 greg 1.22 if (viewray(thisray.rorg, thisray.rdir, &ourview,
361     (x+pixjitter())/hresolu, (y+pixjitter())/vresolu) < 0) {
362     setcolor(col, 0.0, 0.0, 0.0);
363     return(0.0);
364     }
365 greg 1.1
366     rayorigin(&thisray, NULL, PRIMARY, 1.0);
367 greg 1.25
368 greg 1.31 samplendx = pixnumber(x,y,hresolu,vresolu); /* set pixel index */
369 greg 1.25
370 greg 1.1 rayvalue(&thisray); /* trace ray */
371    
372     copycolor(col, thisray.rcol); /* return color */
373 greg 1.11
374 greg 1.20 return(thisray.rt); /* return distance */
375 greg 1.1 }
376    
377    
378     int
379     salvage(oldfile) /* salvage scanlines from killed program */
380     char *oldfile;
381     {
382     COLR *scanline;
383     FILE *fp;
384     int x, y;
385    
386     if (oldfile == NULL)
387     return(0);
388 greg 1.9
389     if ((fp = fopen(oldfile, "r")) == NULL) {
390 greg 1.1 sprintf(errmsg, "cannot open recover file \"%s\"", oldfile);
391     error(WARNING, errmsg);
392     return(0);
393     }
394     /* discard header */
395     getheader(fp, NULL);
396     /* get picture size */
397 greg 1.7 if (fgetresolu(&x, &y, fp) != (YMAJOR|YDECR)) {
398 greg 1.2 sprintf(errmsg, "bad recover file \"%s\"", oldfile);
399     error(WARNING, errmsg);
400 greg 1.1 fclose(fp);
401     return(0);
402     }
403    
404 greg 1.12 if (x != hresolu || y != vresolu) {
405 greg 1.1 sprintf(errmsg, "resolution mismatch in recover file \"%s\"",
406     oldfile);
407     error(USER, errmsg);
408     }
409    
410 greg 1.12 scanline = (COLR *)malloc(hresolu*sizeof(COLR));
411 greg 1.1 if (scanline == NULL)
412     error(SYSTEM, "out of memory in salvage");
413 greg 1.12 for (y = 0; y < vresolu; y++) {
414     if (freadcolrs(scanline, hresolu, fp) < 0)
415 greg 1.1 break;
416 greg 1.12 if (fwritecolrs(scanline, hresolu, stdout) < 0)
417 greg 1.1 goto writerr;
418     }
419     if (fflush(stdout) == EOF)
420     goto writerr;
421     free((char *)scanline);
422     fclose(fp);
423     unlink(oldfile);
424     return(y);
425     writerr:
426     error(SYSTEM, "write error in salvage");
427 greg 1.31 }
428    
429    
430     int
431     pixnumber(x, y, xres, yres) /* compute pixel index (brushed) */
432     register int x, y;
433     int xres, yres;
434     {
435     x -= y;
436     while (x < 0)
437     x += xres;
438     return((((x>>2)*yres + y) << 2) + (x & 3));
439 greg 1.1 }