ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rpict.c
Revision: 2.60
Committed: Thu Jul 3 21:44:41 2003 UTC (20 years, 9 months ago) by schorsch
Content type: text/plain
Branch: MAIN
Changes since 2.59: +2 -2 lines
Log Message:
Fixed fputnow() call to match prototype.

File Contents

# User Rev Content
1 greg 1.1 #ifndef lint
2 greg 2.54 static const char RCSid[] = "$Id";
3 greg 1.1 #endif
4     /*
5     * rpict.c - routines and variables for picture generation.
6     */
7    
8 greg 2.53 #include "copyright.h"
9 greg 2.52
10 schorsch 2.60 #include "platform.h"
11 greg 1.1 #include "ray.h"
12    
13 greg 2.32 #include <sys/types.h>
14    
15 schorsch 2.57 #ifndef NON_POSIX
16 greg 1.1 #ifdef BSD
17     #include <sys/time.h>
18     #include <sys/resource.h>
19 greg 2.30 #else
20     #include <sys/times.h>
21 greg 2.33 #include <unistd.h>
22 greg 1.34 #endif
23 greg 2.30 #endif
24 greg 1.34
25 schorsch 2.55 #include <time.h>
26 greg 1.14 #include <signal.h>
27 greg 1.1
28     #include "view.h"
29     #include "random.h"
30 schorsch 2.55 #include "paths.h"
31 greg 1.1
32 greg 2.12
33 greg 2.21 #define RFTEMPLATE "rfXXXXXX"
34    
35 greg 2.22 #ifndef SIGCONT
36 schorsch 2.56 #ifdef SIGIO /* XXX can we live without this? */
37 greg 2.22 #define SIGCONT SIGIO
38     #endif
39 schorsch 2.56 #endif
40 greg 2.22
41 greg 2.52 CUBE thescene; /* our scene */
42     OBJECT nsceneobjs; /* number of objects in our scene */
43    
44 greg 1.25 int dimlist[MAXDIM]; /* sampling dimensions */
45     int ndims = 0; /* number of sampling dimensions */
46     int samplendx; /* sample index number */
47    
48 greg 2.52 extern void ambnotify();
49     void (*addobjnotify[])() = {ambnotify, NULL};
50    
51 greg 1.12 VIEW ourview = STDVIEW; /* view parameters */
52     int hresolu = 512; /* horizontal resolution */
53     int vresolu = 512; /* vertical resolution */
54 greg 2.14 double pixaspect = 1.0; /* pixel aspect ratio */
55 greg 1.1
56     int psample = 4; /* pixel sample size */
57 greg 2.14 double maxdiff = .05; /* max. difference for interpolation */
58     double dstrpix = 0.67; /* square pixel distribution */
59 greg 1.1
60 gwlarson 2.49 double mblur = 0.; /* motion blur parameter */
61    
62 greg 2.52 void (*trace)() = NULL; /* trace call */
63    
64     int do_irrad = 0; /* compute irradiance? */
65    
66 greg 2.14 double dstrsrc = 0.0; /* square source distribution */
67     double shadthresh = .05; /* shadow threshold */
68     double shadcert = .5; /* shadow certainty */
69 greg 1.35 int directrelay = 1; /* number of source relays */
70 greg 1.29 int vspretest = 512; /* virtual source pretest density */
71 greg 2.20 int directvis = 1; /* sources visible? */
72 greg 2.14 double srcsizerat = .25; /* maximum ratio source size/dist. */
73 greg 2.41
74     COLOR cextinction = BLKCOLOR; /* global extinction coefficient */
75 greg 2.46 COLOR salbedo = BLKCOLOR; /* global scattering albedo */
76 greg 2.41 double seccg = 0.; /* global scattering eccentricity */
77     double ssampdist = 0.; /* scatter sampling distance */
78 greg 1.1
79 greg 2.14 double specthresh = .15; /* specular sampling threshold */
80     double specjitter = 1.; /* specular sampling jitter */
81 greg 2.5
82 greg 2.40 int backvis = 1; /* back face visibility */
83    
84 greg 1.1 int maxdepth = 6; /* maximum recursion depth */
85 greg 2.14 double minweight = 5e-3; /* minimum ray weight */
86 greg 1.1
87 greg 2.52 char *ambfile = NULL; /* ambient file name */
88 greg 1.1 COLOR ambval = BLKCOLOR; /* ambient value */
89 greg 2.44 int ambvwt = 0; /* initial weight for ambient value */
90 greg 2.14 double ambacc = 0.2; /* ambient accuracy */
91 greg 1.6 int ambres = 32; /* ambient resolution */
92 greg 1.1 int ambdiv = 128; /* ambient divisions */
93     int ambssamp = 0; /* ambient super-samples */
94     int ambounce = 0; /* ambient bounces */
95     char *amblist[128]; /* ambient include/exclude list */
96     int ambincl = -1; /* include == 1, exclude == 0 */
97    
98     int ralrm = 0; /* seconds between reports */
99    
100 greg 2.14 double pctdone = 0.0; /* percentage done */
101 greg 2.32 time_t tlastrept = 0L; /* time at last report */
102 greg 2.52 time_t tstart; /* starting time */
103 greg 1.1
104 greg 2.14 #define MAXDIV 16 /* maximum sample size */
105 greg 1.1
106 greg 2.14 #define pixjitter() (.5+dstrpix*(.5-frandom()))
107 greg 1.1
108 greg 2.47 int hres, vres; /* resolution for this frame */
109 greg 2.8
110 gwlarson 2.49 static VIEW lastview; /* the previous view input */
111    
112 schorsch 2.55 extern char *mktemp(); /* XXX should be in stdlib.h or unistd.h */
113 greg 2.8
114 greg 2.52 void report();
115    
116 greg 2.14 double pixvalue();
117 greg 1.1
118 schorsch 2.58 #ifdef RHAS_STAT
119 greg 2.27 #include <sys/types.h>
120     #include <sys/stat.h>
121     int
122     file_exists(fname) /* ordinary file exists? */
123     char *fname;
124     {
125     struct stat sbuf;
126     if (stat(fname, &sbuf) < 0) return(0);
127     return((sbuf.st_mode & S_IFREG) != 0);
128     }
129 schorsch 2.58 #else
130     #define file_exists(f) (access(f,F_OK)==0)
131 greg 2.27 #endif
132 greg 1.11
133 greg 2.27
134 greg 2.52 void
135 greg 1.1 quit(code) /* quit program */
136     int code;
137     {
138 greg 2.8 if (code) /* report status */
139 greg 1.1 report();
140 schorsch 2.57 #ifndef NON_POSIX
141 greg 2.21 headclean(); /* delete header file */
142     pfclean(); /* clean up persist files */
143 greg 2.52 #endif
144 greg 1.1 exit(code);
145     }
146    
147    
148 schorsch 2.57 #ifndef NON_POSIX
149 greg 2.52 void
150 greg 1.1 report() /* report progress */
151     {
152 greg 2.43 extern char *myhostname();
153 greg 2.30 double u, s;
154     #ifdef BSD
155 greg 1.1 struct rusage rubuf;
156 greg 2.30 #else
157     struct tms tbuf;
158 greg 2.33 double period;
159 greg 2.30 #endif
160 greg 1.1
161 greg 2.32 tlastrept = time((time_t *)NULL);
162 greg 2.30 #ifdef BSD
163 greg 1.1 getrusage(RUSAGE_SELF, &rubuf);
164 greg 2.30 u = rubuf.ru_utime.tv_sec + rubuf.ru_utime.tv_usec/1e6;
165     s = rubuf.ru_stime.tv_sec + rubuf.ru_stime.tv_usec/1e6;
166 greg 1.1 getrusage(RUSAGE_CHILDREN, &rubuf);
167 greg 2.30 u += rubuf.ru_utime.tv_sec + rubuf.ru_utime.tv_usec/1e6;
168     s += rubuf.ru_stime.tv_sec + rubuf.ru_stime.tv_usec/1e6;
169     #else
170     times(&tbuf);
171 greg 2.36 #ifdef _SC_CLK_TCK
172 greg 2.33 period = 1.0 / sysconf(_SC_CLK_TCK);
173 greg 2.36 #else
174     period = 1.0 / 60.0;
175     #endif
176 greg 2.33 u = ( tbuf.tms_utime + tbuf.tms_cutime ) * period;
177     s = ( tbuf.tms_stime + tbuf.tms_cstime ) * period;
178 greg 2.30 #endif
179 greg 1.1
180 greg 2.30 sprintf(errmsg,
181     "%lu rays, %4.2f%% after %.3fu %.3fs %.3fr hours on %s\n",
182     nrays, pctdone, u/3600., s/3600.,
183 greg 2.43 (tlastrept-tstart)/3600., myhostname());
184 greg 1.24 eputs(errmsg);
185 schorsch 2.56 #ifdef SIGCONT
186 greg 2.35 signal(SIGCONT, report);
187     #endif
188 greg 1.24 }
189 greg 1.1 #else
190 greg 2.52 void
191 greg 1.24 report() /* report progress */
192     {
193 greg 2.32 tlastrept = time((time_t *)NULL);
194 greg 2.30 sprintf(errmsg, "%lu rays, %4.2f%% after %5.4f hours\n",
195 greg 1.24 nrays, pctdone, (tlastrept-tstart)/3600.0);
196 greg 1.1 eputs(errmsg);
197     }
198 greg 1.24 #endif
199 greg 1.1
200    
201 greg 2.52 void
202 greg 2.8 rpict(seq, pout, zout, prvr) /* generate image(s) */
203     int seq;
204     char *pout, *zout, *prvr;
205     /*
206     * If seq is greater than zero, then we will render a sequence of
207     * images based on view parameter strings read from the standard input.
208     * If pout is NULL, then all images will be sent to the standard ouput.
209     * If seq is greater than zero and prvr is an integer, then it is the
210     * frame number at which rendering should begin. Preceeding view parameter
211     * strings will be skipped in the input.
212     * If pout and prvr are the same, prvr is renamed to avoid overwriting.
213     * Note that pout and zout should contain %d format specifications for
214     * sequenced file naming.
215     */
216     {
217 greg 2.9 char fbuf[128], fbuf2[128];
218 greg 2.26 int npicts;
219 greg 2.9 register char *cp;
220 greg 2.14 RESOLU rs;
221     double pa;
222 greg 2.8 /* check sampling */
223     if (psample < 1)
224     psample = 1;
225     else if (psample > MAXDIV) {
226     sprintf(errmsg, "pixel sampling reduced from %d to %d",
227     psample, MAXDIV);
228     error(WARNING, errmsg);
229     psample = MAXDIV;
230     }
231     /* get starting frame */
232     if (seq <= 0)
233     seq = 0;
234     else if (prvr != NULL && isint(prvr)) {
235 greg 2.9 register int rn; /* skip to specified view */
236 greg 2.8 if ((rn = atoi(prvr)) < seq)
237     error(USER, "recover frame less than start frame");
238     if (pout == NULL)
239     error(USER, "missing output file specification");
240     for ( ; seq < rn; seq++)
241     if (nextview(stdin) == EOF)
242     error(USER, "unexpected EOF on view input");
243 gwlarson 2.50 setview(&ourview);
244 greg 2.8 prvr = fbuf; /* mark for renaming */
245     }
246 greg 2.18 if (pout != NULL & prvr != NULL) {
247 greg 2.8 sprintf(fbuf, pout, seq);
248 greg 2.18 if (!strcmp(prvr, fbuf)) { /* rename */
249     strcpy(fbuf2, fbuf);
250     for (cp = fbuf2; *cp; cp++)
251     ;
252     while (cp > fbuf2 && !ISDIRSEP(cp[-1]))
253     cp--;
254     strcpy(cp, RFTEMPLATE);
255 greg 2.8 prvr = mktemp(fbuf2);
256 greg 2.28 if (rename(fbuf, prvr) < 0)
257     if (errno == ENOENT) { /* ghost file */
258     sprintf(errmsg,
259     "new output file \"%s\"",
260     fbuf);
261     error(WARNING, errmsg);
262     prvr = NULL;
263     } else { /* serious error */
264     sprintf(errmsg,
265 greg 2.8 "cannot rename \"%s\" to \"%s\"",
266     fbuf, prvr);
267 greg 2.28 error(SYSTEM, errmsg);
268     }
269 greg 2.8 }
270     }
271 greg 2.26 npicts = 0; /* render sequence */
272 greg 2.8 do {
273     if (seq && nextview(stdin) == EOF)
274     break;
275 greg 2.25 pctdone = 0.0;
276 greg 2.8 if (pout != NULL) {
277     sprintf(fbuf, pout, seq);
278 greg 2.27 if (file_exists(fbuf)) {
279     if (prvr != NULL || !strcmp(fbuf, pout)) {
280     sprintf(errmsg,
281     "output file \"%s\" exists",
282     fbuf);
283     error(USER, errmsg);
284     }
285 gwlarson 2.50 setview(&ourview);
286 greg 2.26 continue; /* don't clobber */
287 greg 2.27 }
288 greg 2.8 if (freopen(fbuf, "w", stdout) == NULL) {
289     sprintf(errmsg,
290     "cannot open output file \"%s\"", fbuf);
291     error(SYSTEM, errmsg);
292     }
293 schorsch 2.55 SET_FILE_BINARY(stdout);
294 greg 2.8 dupheader();
295     }
296     hres = hresolu; vres = vresolu; pa = pixaspect;
297     if (prvr != NULL)
298     if (viewfile(prvr, &ourview, &rs) <= 0
299 greg 2.52 || rs.rt != PIXSTANDARD) {
300 greg 2.8 sprintf(errmsg,
301     "cannot recover view parameters from \"%s\"", prvr);
302     error(WARNING, errmsg);
303     } else {
304     pa = 0.0;
305     hres = scanlen(&rs);
306     vres = numscans(&rs);
307     }
308 greg 2.9 if ((cp = setview(&ourview)) != NULL)
309     error(USER, cp);
310 greg 2.8 normaspect(viewaspect(&ourview), &pa, &hres, &vres);
311     if (seq) {
312     if (ralrm > 0) {
313 greg 2.11 fprintf(stderr, "FRAME %d:", seq);
314     fprintview(&ourview, stderr);
315     putc('\n', stderr);
316     fflush(stderr);
317 greg 2.8 }
318     printf("FRAME=%d\n", seq);
319     }
320     fputs(VIEWSTR, stdout);
321     fprintview(&ourview, stdout);
322     putchar('\n');
323     if (pa < .99 || pa > 1.01)
324     fputaspect(pa, stdout);
325 schorsch 2.60 fputnow(stdout);
326 greg 2.8 fputformat(COLRFMT, stdout);
327     putchar('\n');
328     if (zout != NULL)
329 greg 2.9 sprintf(cp=fbuf, zout, seq);
330 greg 2.8 else
331 greg 2.9 cp = NULL;
332     render(cp, prvr);
333 greg 2.8 prvr = NULL;
334 greg 2.26 npicts++;
335 greg 2.8 } while (seq++);
336 greg 2.26 /* check that we did something */
337     if (npicts == 0)
338     error(WARNING, "no output produced");
339 greg 2.8 }
340    
341    
342     nextview(fp) /* get next view from fp */
343     FILE *fp;
344     {
345 greg 2.9 char linebuf[256];
346 greg 2.8
347 gwlarson 2.49 copystruct(&lastview, &ourview);
348 greg 2.8 while (fgets(linebuf, sizeof(linebuf), fp) != NULL)
349 greg 2.9 if (isview(linebuf) && sscanview(&ourview, linebuf) > 0)
350 greg 2.8 return(0);
351     return(EOF);
352     }
353    
354    
355 greg 1.11 render(zfile, oldfile) /* render the scene */
356     char *zfile, *oldfile;
357 greg 1.1 {
358     COLOR *scanbar[MAXDIV+1]; /* scanline arrays of pixel values */
359 greg 1.11 float *zbar[MAXDIV+1]; /* z values */
360 greg 2.2 char *sampdens; /* previous sample density */
361 greg 1.1 int ypos; /* current scanline */
362 greg 1.15 int ystep; /* current y step size */
363 greg 1.33 int hstep; /* h step size */
364 greg 1.16 int zfd;
365 greg 1.1 COLOR *colptr;
366 greg 1.11 float *zptr;
367 greg 1.1 register int i;
368 greg 2.52 /* check for empty image */
369     if (hres <= 0 || vres <= 0) {
370     error(WARNING, "empty output picture");
371     fprtresolu(0, 0, stdout);
372     return;
373     }
374 greg 1.9 /* allocate scanlines */
375 greg 1.1 for (i = 0; i <= psample; i++) {
376 greg 2.8 scanbar[i] = (COLOR *)malloc(hres*sizeof(COLOR));
377 greg 1.1 if (scanbar[i] == NULL)
378 greg 1.11 goto memerr;
379 greg 1.1 }
380 greg 2.2 hstep = (psample*140+49)/99; /* quincunx sampling */
381     ystep = (psample*99+70)/140;
382     if (hstep > 2) {
383 greg 2.8 i = hres/hstep + 2;
384 greg 2.52 if ((sampdens = (char *)malloc(i)) == NULL)
385 greg 2.2 goto memerr;
386     while (i--)
387     sampdens[i] = hstep;
388     } else
389     sampdens = NULL;
390 greg 2.26 /* open z-file */
391 greg 1.11 if (zfile != NULL) {
392 greg 1.16 if ((zfd = open(zfile, O_WRONLY|O_CREAT, 0666)) == -1) {
393 greg 2.26 sprintf(errmsg, "cannot open z-file \"%s\"", zfile);
394 greg 1.11 error(SYSTEM, errmsg);
395     }
396 schorsch 2.55 SET_FD_BINARY(zfd);
397 greg 1.11 for (i = 0; i <= psample; i++) {
398 greg 2.8 zbar[i] = (float *)malloc(hres*sizeof(float));
399 greg 1.11 if (zbar[i] == NULL)
400     goto memerr;
401     }
402     } else {
403 greg 1.16 zfd = -1;
404 greg 1.11 for (i = 0; i <= psample; i++)
405     zbar[i] = NULL;
406     }
407 greg 1.1 /* write out boundaries */
408 greg 2.8 fprtresolu(hres, vres, stdout);
409 greg 1.10 /* recover file and compute first */
410 greg 1.11 i = salvage(oldfile);
411 greg 2.42 if (i >= vres)
412     goto alldone;
413 greg 1.23 if (zfd != -1 && i > 0 &&
414 greg 2.52 lseek(zfd, (off_t)i*hres*sizeof(float), 0) < 0)
415 greg 2.26 error(SYSTEM, "z-file seek error in render");
416 greg 2.8 pctdone = 100.0*i/vres;
417 greg 1.24 if (ralrm > 0) /* report init stats */
418     report();
419 schorsch 2.56 #ifdef SIGCONT
420 greg 1.32 else
421 schorsch 2.56 signal(SIGCONT, report);
422 greg 1.32 #endif
423 greg 2.47 ypos = vres-1 - i; /* initialize sampling */
424 gregl 2.48 if (directvis)
425     init_drawsources(psample);
426 greg 2.8 fillscanline(scanbar[0], zbar[0], sampdens, hres, ypos, hstep);
427 greg 1.10 /* compute scanlines */
428 greg 1.15 for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
429     /* bottom adjust? */
430     if (ypos < 0) {
431     ystep += ypos;
432     ypos = 0;
433     }
434     colptr = scanbar[ystep]; /* move base to top */
435     scanbar[ystep] = scanbar[0];
436 greg 1.1 scanbar[0] = colptr;
437 greg 1.15 zptr = zbar[ystep];
438     zbar[ystep] = zbar[0];
439 greg 1.11 zbar[0] = zptr;
440 greg 1.10 /* fill base line */
441 greg 2.2 fillscanline(scanbar[0], zbar[0], sampdens,
442 greg 2.8 hres, ypos, hstep);
443 greg 1.10 /* fill bar */
444 greg 2.8 fillscanbar(scanbar, zbar, hres, ypos, ystep);
445 gregl 2.48 if (directvis) /* add bitty sources */
446     drawsources(scanbar, zbar, 0, hres, ypos, ystep);
447 greg 1.10 /* write it out */
448 schorsch 2.56 #ifdef SIGCONT
449 greg 2.22 signal(SIGCONT, SIG_IGN); /* don't interrupt writes */
450 greg 1.32 #endif
451 greg 1.15 for (i = ystep; i > 0; i--) {
452 greg 1.17 if (zfd != -1 && write(zfd, (char *)zbar[i],
453 greg 2.8 hres*sizeof(float))
454     < hres*sizeof(float))
455 greg 1.1 goto writerr;
456 greg 2.8 if (fwritescan(scanbar[i], hres, stdout) < 0)
457 greg 1.11 goto writerr;
458     }
459 greg 1.1 if (fflush(stdout) == EOF)
460     goto writerr;
461 greg 1.24 /* record progress */
462 greg 2.8 pctdone = 100.0*(vres-1-ypos)/vres;
463 greg 2.32 if (ralrm > 0 && time((time_t *)NULL) >= tlastrept+ralrm)
464 greg 1.24 report();
465 schorsch 2.56 #ifdef SIGCONT
466 greg 1.32 else
467 greg 2.22 signal(SIGCONT, report);
468 greg 1.32 #endif
469 greg 1.1 }
470 greg 1.11 /* clean up */
471 schorsch 2.56 #ifdef SIGCONT
472 greg 2.22 signal(SIGCONT, SIG_IGN);
473 schorsch 2.56 #endif
474 greg 2.42 if (zfd != -1 && write(zfd, (char *)zbar[0], hres*sizeof(float))
475     < hres*sizeof(float))
476     goto writerr;
477     fwritescan(scanbar[0], hres, stdout);
478     if (fflush(stdout) == EOF)
479     goto writerr;
480     alldone:
481 greg 1.16 if (zfd != -1) {
482 greg 1.20 if (close(zfd) == -1)
483     goto writerr;
484 greg 1.11 for (i = 0; i <= psample; i++)
485 greg 2.52 free((void *)zbar[i]);
486 greg 1.11 }
487 greg 1.1 for (i = 0; i <= psample; i++)
488 greg 2.52 free((void *)scanbar[i]);
489 greg 2.2 if (sampdens != NULL)
490     free(sampdens);
491 greg 1.11 pctdone = 100.0;
492 greg 2.13 if (ralrm > 0)
493     report();
494 schorsch 2.56 #ifdef SIGCONT
495 greg 2.23 signal(SIGCONT, SIG_DFL);
496 schorsch 2.56 #endif
497 greg 1.1 return;
498     writerr:
499     error(SYSTEM, "write error in render");
500 greg 1.11 memerr:
501     error(SYSTEM, "out of memory in render");
502 greg 1.1 }
503    
504    
505 greg 2.2 fillscanline(scanline, zline, sd, xres, y, xstep) /* fill scan at y */
506 greg 2.14 register COLOR *scanline;
507     register float *zline;
508 greg 2.2 register char *sd;
509 greg 1.9 int xres, y, xstep;
510 greg 1.1 {
511 greg 1.33 static int nc = 0; /* number of calls */
512 greg 2.2 int bl = xstep, b = xstep;
513 greg 2.14 double z;
514 greg 1.1 register int i;
515 greg 2.45
516 greg 1.11 z = pixvalue(scanline[0], 0, y);
517     if (zline) zline[0] = z;
518 greg 1.33 /* zig-zag start for quincunx pattern */
519 greg 2.2 for (i = ++nc & 1 ? xstep : xstep/2; i < xres-1+xstep; i += xstep) {
520 greg 1.15 if (i >= xres) {
521     xstep += xres-1-i;
522     i = xres-1;
523     }
524 greg 1.11 z = pixvalue(scanline[i], i, y);
525     if (zline) zline[i] = z;
526 greg 2.2 if (sd) b = sd[0] > sd[1] ? sd[0] : sd[1];
527 greg 2.3 if (i <= xstep)
528     b = fillsample(scanline, zline, 0, y, i, 0, b/2);
529     else
530     b = fillsample(scanline+i-xstep,
531 greg 2.38 zline ? zline+i-xstep : (float *)NULL,
532 greg 2.3 i-xstep, y, xstep, 0, b/2);
533 greg 2.2 if (sd) *sd++ = nc & 1 ? bl : b;
534     bl = b;
535 greg 1.1 }
536 greg 2.2 if (sd && nc & 1) *sd = bl;
537 greg 1.1 }
538    
539    
540 greg 1.11 fillscanbar(scanbar, zbar, xres, y, ysize) /* fill interior */
541 greg 2.14 register COLOR *scanbar[];
542     register float *zbar[];
543 greg 1.9 int xres, y, ysize;
544 greg 1.1 {
545     COLOR vline[MAXDIV+1];
546 greg 1.11 float zline[MAXDIV+1];
547 greg 1.1 int b = ysize;
548     register int i, j;
549 greg 2.45
550 greg 1.8 for (i = 0; i < xres; i++) {
551 greg 1.1 copycolor(vline[0], scanbar[0][i]);
552     copycolor(vline[ysize], scanbar[ysize][i]);
553 greg 1.11 if (zbar[0]) {
554     zline[0] = zbar[0][i];
555     zline[ysize] = zbar[ysize][i];
556     }
557 greg 2.38 b = fillsample(vline, zbar[0] ? zline : (float *)NULL,
558 greg 1.11 i, y, 0, ysize, b/2);
559 greg 2.45
560 greg 1.1 for (j = 1; j < ysize; j++)
561     copycolor(scanbar[j][i], vline[j]);
562 greg 1.11 if (zbar[0])
563     for (j = 1; j < ysize; j++)
564     zbar[j][i] = zline[j];
565 greg 1.1 }
566     }
567    
568    
569     int
570 greg 2.14 fillsample(colline, zline, x, y, xlen, ylen, b) /* fill interior points */
571     register COLOR *colline;
572     register float *zline;
573 greg 1.1 int x, y;
574     int xlen, ylen;
575     int b;
576     {
577 greg 2.14 double ratio;
578     double z;
579 greg 1.1 COLOR ctmp;
580     int ncut;
581     register int len;
582 greg 2.45
583 greg 1.1 if (xlen > 0) /* x or y length is zero */
584     len = xlen;
585     else
586     len = ylen;
587 greg 2.45
588 greg 1.1 if (len <= 1) /* limit recursion */
589     return(0);
590 greg 2.45
591     if (b > 0 ||
592     (zline && 2.*fabs(zline[0]-zline[len]) > maxdiff*(zline[0]+zline[len]))
593 greg 1.11 || bigdiff(colline[0], colline[len], maxdiff)) {
594 greg 2.45
595 greg 1.11 z = pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
596     if (zline) zline[len>>1] = z;
597 greg 1.1 ncut = 1;
598     } else { /* interpolate */
599     copycolor(colline[len>>1], colline[len]);
600     ratio = (double)(len>>1) / len;
601     scalecolor(colline[len>>1], ratio);
602 greg 1.11 if (zline) zline[len>>1] = zline[len] * ratio;
603     ratio = 1.0 - ratio;
604 greg 1.1 copycolor(ctmp, colline[0]);
605     scalecolor(ctmp, ratio);
606     addcolor(colline[len>>1], ctmp);
607 greg 1.11 if (zline) zline[len>>1] += zline[0] * ratio;
608 greg 1.1 ncut = 0;
609     }
610     /* recurse */
611 greg 1.11 ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
612 greg 2.45
613 greg 2.38 ncut += fillsample(colline+(len>>1),
614     zline ? zline+(len>>1) : (float *)NULL,
615 greg 1.11 x+(xlen>>1), y+(ylen>>1),
616     xlen-(xlen>>1), ylen-(ylen>>1), b/2);
617 greg 1.1
618     return(ncut);
619     }
620    
621    
622 greg 1.11 double
623 greg 1.1 pixvalue(col, x, y) /* compute pixel value */
624     COLOR col; /* returned color */
625     int x, y; /* pixel position */
626     {
627 gwlarson 2.49 RAY thisray;
628     FVECT lorg, ldir;
629     double hpos, vpos, lmax, d;
630     /* compute view ray */
631     hpos = (x+pixjitter())/hres;
632     vpos = (y+pixjitter())/vres;
633     if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
634     &ourview, hpos, vpos)) < -FTINY) {
635 greg 1.22 setcolor(col, 0.0, 0.0, 0.0);
636     return(0.0);
637     }
638 greg 1.1
639 gwlarson 2.49 samplendx = pixnumber(x,y,hres,vres); /* set pixel index */
640    
641     /* optional motion blur */
642     if (lastview.type && mblur > FTINY && (lmax = viewray(lorg, ldir,
643     &lastview, hpos, vpos)) >= -FTINY) {
644     register int i;
645     register double d = mblur*(.5-urand(281+samplendx));
646    
647     thisray.rmax = (1.-d)*thisray.rmax + d*lmax;
648     for (i = 3; i--; ) {
649     thisray.rorg[i] = (1.-d)*thisray.rorg[i] + d*lorg[i];
650     thisray.rdir[i] = (1.-d)*thisray.rdir[i] + d*ldir[i];
651     }
652     if (normalize(thisray.rdir) == 0.0)
653     return(0.0);
654     }
655    
656 greg 1.1 rayorigin(&thisray, NULL, PRIMARY, 1.0);
657 greg 1.25
658 greg 1.1 rayvalue(&thisray); /* trace ray */
659    
660     copycolor(col, thisray.rcol); /* return color */
661 greg 2.45
662 greg 1.20 return(thisray.rt); /* return distance */
663 greg 1.1 }
664    
665    
666     int
667     salvage(oldfile) /* salvage scanlines from killed program */
668     char *oldfile;
669     {
670     COLR *scanline;
671     FILE *fp;
672     int x, y;
673    
674     if (oldfile == NULL)
675 greg 2.37 goto gotzip;
676    
677 greg 1.9 if ((fp = fopen(oldfile, "r")) == NULL) {
678 greg 1.1 sprintf(errmsg, "cannot open recover file \"%s\"", oldfile);
679     error(WARNING, errmsg);
680 greg 2.37 goto gotzip;
681 greg 1.1 }
682 schorsch 2.55 SET_FILE_BINARY(fp);
683 greg 1.1 /* discard header */
684 greg 2.19 getheader(fp, NULL, NULL);
685 greg 1.1 /* get picture size */
686 greg 1.36 if (!fscnresolu(&x, &y, fp)) {
687 greg 2.29 sprintf(errmsg, "bad recover file \"%s\" - not removed",
688     oldfile);
689 greg 1.2 error(WARNING, errmsg);
690 greg 1.1 fclose(fp);
691 greg 2.37 goto gotzip;
692 greg 1.1 }
693    
694 greg 2.8 if (x != hres || y != vres) {
695 greg 1.1 sprintf(errmsg, "resolution mismatch in recover file \"%s\"",
696     oldfile);
697     error(USER, errmsg);
698     }
699    
700 greg 2.8 scanline = (COLR *)malloc(hres*sizeof(COLR));
701 greg 1.1 if (scanline == NULL)
702     error(SYSTEM, "out of memory in salvage");
703 greg 2.8 for (y = 0; y < vres; y++) {
704     if (freadcolrs(scanline, hres, fp) < 0)
705 greg 1.1 break;
706 greg 2.8 if (fwritecolrs(scanline, hres, stdout) < 0)
707 greg 1.1 goto writerr;
708     }
709     if (fflush(stdout) == EOF)
710     goto writerr;
711 greg 2.52 free((void *)scanline);
712 greg 1.1 fclose(fp);
713     unlink(oldfile);
714     return(y);
715 greg 2.37 gotzip:
716     if (fflush(stdout) == EOF)
717     error(SYSTEM, "error writing picture header");
718     return(0);
719 greg 1.1 writerr:
720 greg 2.9 sprintf(errmsg, "write error during recovery of \"%s\"", oldfile);
721     error(SYSTEM, errmsg);
722 greg 1.31 }
723    
724    
725     int
726     pixnumber(x, y, xres, yres) /* compute pixel index (brushed) */
727     register int x, y;
728     int xres, yres;
729     {
730     x -= y;
731     while (x < 0)
732     x += xres;
733     return((((x>>2)*yres + y) << 2) + (x & 3));
734 greg 1.1 }