ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rpict.c
Revision: 2.79
Committed: Thu Apr 24 10:28:25 2008 UTC (16 years ago) by schorsch
Content type: text/plain
Branch: MAIN
Changes since 2.78: +5 -1 lines
Log Message:
More fixes for mingw build/install.

File Contents

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