ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rtcontrib.c
(Generate patch)

Comparing ray/src/util/rtcontrib.c (file contents):
Revision 1.15 by greg, Thu Jun 9 18:27:44 2005 UTC vs.
Revision 1.57 by greg, Sun Sep 26 15:44:00 2010 UTC

# Line 14 | Line 14 | static const char RCSid[] = "$Id$";
14   #include  "color.h"
15   #include  "resolu.h"
16   #include  "lookup.h"
17 + #include  "random.h"
18   #include  "calcomp.h"
19  
20 + #ifndef MAXMODLIST
21   #define MAXMODLIST      1024            /* maximum modifiers we'll track */
22 + #endif
23  
24   int     treebufsiz = BUFSIZ;            /* current tree buffer size */
25  
26   typedef double  DCOLOR[3];              /* double-precision color */
27  
28   /*
29 < * The modcont structure is used to accumulate ray contributions
29 > * The MODCONT structure is used to accumulate ray contributions
30   * for a particular modifier, which may be subdivided into bins
31 < * if binv is non-NULL.  If outspec contains a %s in it, this will
31 > * if binv evaluates > 0.  If outspec contains a %s in it, this will
32   * be replaced with the modifier name.  If outspec contains a %d in it,
33   * this will be used to create one output file per bin, otherwise all bins
34   * will be written to the same file, in order.  If the global outfmt
# Line 44 | Line 47 | static void mcfree(void *p) { epfree((*(MODCONT *)p).b
47  
48   LUTAB   modconttab = LU_SINIT(NULL,mcfree);     /* modifier lookup table */
49  
50 < /* close output stream */
51 < static void closefile(void *p) { fclose((FILE *)p); }
50 > /*
51 > * The STREAMOUT structure holds an open FILE pointer and a count of
52 > * the number of RGB triplets per record, or 0 if unknown.
53 > */
54 > typedef struct {
55 >        FILE            *ofp;           /* output file pointer */
56 >        int             outpipe;        /* output is to a pipe */
57 >        int             reclen;         /* triplets/record */
58 >        int             xr, yr;         /* output resolution for picture */
59 > } STREAMOUT;
60  
61 < LUTAB   ofiletab = LU_SINIT(free,closefile);    /* output file table */
61 > /* close output stream and free record */
62 > static void
63 > closestream(void *p)
64 > {
65 >        STREAMOUT       *sop = (STREAMOUT *)p;
66 >        int             status;
67 >        if (sop->outpipe)
68 >                status = pclose(sop->ofp);
69 >        else
70 >                status = fclose(sop->ofp);
71 >        if (status)
72 >                error(SYSTEM, "error closing output stream");
73 >        free(p);
74 > }
75  
76 + LUTAB   ofiletab = LU_SINIT(free,closestream);  /* output file table */
77 +
78   #define OF_MODIFIER     01
79   #define OF_BIN          02
80  
81 < FILE *getofile(const char *ospec, const char *mname, int bn);
81 > STREAMOUT *getostream(const char *ospec, const char *mname, int bn, int noopen);
82   int ofname(char *oname, const char *ospec, const char *mname, int bn);
83   void printheader(FILE *fout, const char *info);
84 + void printresolu(FILE *fout, int xr, int yr);
85  
86   /*
87   * The rcont structure is used to manage i/o with a particular
# Line 72 | Line 99 | struct rtproc {
99   };                              /* rtrace process buffer */
100  
101                                          /* rtrace command and defaults */
102 < char            *rtargv[256] = { "rtrace", "-dj", ".5", "-dr", "3",
103 <                                "-ab", "1", "-ad", "128", };
102 > char            *rtargv[256+2*MAXMODLIST] = { "rtrace",
103 >                                "-dj", ".9", "-dr", "3",
104 >                                "-ab", "1", "-ad", "350", };
105 >
106   int  rtargc = 9;
107                                          /* overriding rtrace options */
108 < char            *myrtopts[] = { "-o~~TmWdp", "-h-", "-x", "1", "-y", "0",
108 > char            *myrtopts[] = { "-h-", "-x", "1", "-y", "0",
109                                  "-dt", "0", "-as", "0", "-aa", "0", NULL };
110  
111 + #define RTCOEFF         "-o~~TmWdp"     /* compute coefficients only */
112 + #define RTCONTRIB       "-o~~TmVdp"     /* compute ray contributions */
113 +
114   struct rtproc   rt0;                    /* head of rtrace process list */
115  
116   struct rtproc   *rt_unproc = NULL;      /* unprocessed ray trees */
117  
118 < char    persistfn[] = "pfXXXXXX";       /* persist file name */
118 > #define PERSIST_NONE    0               /* no persist file */
119 > #define PERSIST_SINGLE  1               /* user set -P persist */
120 > #define PERSIST_PARALL  2               /* user set -PP persist */
121 > #define PERSIST_OURS    3               /* -PP persist belongs to us */
122 > int     persist_state = PERSIST_NONE;   /* persist file state */
123 > char    persistfn[] = "pfXXXXXX";       /* our persist file name, if set */
124  
125   int             gargc;                  /* global argc */
126   char            **gargv;                /* global argv */
# Line 95 | Line 132 | int            inpfmt = 'a';           /* input format */
132   int             outfmt = 'a';           /* output format */
133  
134   int             header = 1;             /* output header? */
135 + int             force_open = 0;         /* truncate existing output? */
136 + int             recover = 0;            /* recover previous output? */
137 + int             accumulate = 1;         /* input rays per output record */
138   int             xres = 0;               /* horiz. output resolution */
139   int             yres = 0;               /* vert. output resolution */
140  
141 + int             account;                /* current accumulation count */
142   unsigned long   raysleft;               /* number of rays left to trace */
143   long            waitflush;              /* how long until next flush */
144  
# Line 109 | Line 150 | int            using_stdout = 0;       /* are we using stdout? */
150   const char      *modname[MAXMODLIST];   /* ordered modifier name list */
151   int             nmods = 0;              /* number of modifiers */
152  
153 < MODCONT *addmodifier(char *modn, char *outf, char *binv);
153 > #define queue_length()          (lastray - lastdone)
154  
155 + MODCONT *growmodifier(MODCONT *mp, int nb);
156 + MODCONT *addmodifier(char *modn, char *outf, char *binv, int bincnt);
157 + void addmodfile(char *fname, char *outf, char *binv, int bincnt);
158 +
159   void init(int np);
160   int done_rprocs(struct rtproc *rtp);
161 + void reload_output(void);
162   void recover_output(FILE *fin);
163   void trace_contribs(FILE *fin);
164   struct rtproc *wait_rproc(void);
# Line 122 | Line 168 | void process_queue(void);
168  
169   void put_contrib(const DCOLOR cnt, FILE *fout);
170   void add_contrib(const char *modn);
171 < void done_contrib(void);
171 > void done_contrib(int navg);
172  
173 + /* return number of open rtrace processes */
174 + static int
175 + nrtprocs(void)
176 + {
177 +        int     nrtp = 0;
178 +        struct rtproc   *rtp;
179 +
180 +        for (rtp = &rt0; rtp != NULL; rtp = rtp->next)
181 +                nrtp += rtp->pd.running;
182 +        return(nrtp);
183 + }
184 +
185   /* set input/output format */
186   static void
187   setformat(const char *fmt)
# Line 163 | Line 221 | fmterr:
221   int
222   main(int argc, char *argv[])
223   {
224 +        int     contrib = 0;
225          int     nprocs = 1;
167        int     recover = 0;
226          char    *curout = NULL;
227          char    *binval = NULL;
228 +        int     bincnt = 0;
229          char    fmt[8];
230          int     i, j;
231 +                                /* need at least one argument */
232 +        if (argc < 2) {
233 +                fprintf(stderr,
234 + "Usage: %s [-n nprocs][-V][-r][-e expr][-f source][-o ospec][-b binv] {-m mod | -M file} [rtrace options] octree\n",
235 +                        argv[0]);
236 +                exit(1);
237 +        }
238                                  /* global program name */
239          gargv = argv;
240                                  /* initialize calcomp routines */
# Line 181 | Line 247 | main(int argc, char *argv[])
247                  while ((j = expandarg(&argc, &argv, i)) > 0)
248                          ;
249                  if (j < 0) {
250 <                        fprintf(stderr, "%s: cannot expand '%s'",
250 >                        fprintf(stderr, "%s: cannot expand '%s'\n",
251                                          argv[0], argv[i]);
252                          exit(1);
253                  }
254                  if (argv[i][0] == '-')
255                          switch (argv[i][1]) {
190                        case 'r':               /* recover output */
191                                if (argv[i][2]) break;
192                                recover++;
193                                continue;
256                          case 'n':               /* number of processes */
257 <                                if (argv[i][2] || i >= argc-1) break;
257 >                                if (argv[i][2] || i >= argc-2) break;
258                                  nprocs = atoi(argv[++i]);
259                                  if (nprocs <= 0)
260                                          error(USER, "illegal number of processes");
261                                  continue;
262 +                        case 'V':               /* output contributions */
263 +                                switch (argv[i][2]) {
264 +                                case '\0':
265 +                                        contrib = !contrib;
266 +                                        continue;
267 +                                case '+': case '1':
268 +                                case 'T': case 't':
269 +                                case 'Y': case 'y':
270 +                                        contrib = 1;
271 +                                        continue;
272 +                                case '-': case '0':
273 +                                case 'F': case 'f':
274 +                                case 'N': case 'n':
275 +                                        contrib = 0;
276 +                                        continue;
277 +                                }
278 +                                break;
279 +                        case 'c':               /* input rays per output */
280 +                                if (argv[i][2] || i >= argc-2) break;
281 +                                accumulate = atoi(argv[++i]);
282 +                                continue;
283 +                        case 'r':               /* recover output */
284 +                                if (argv[i][2]) break;
285 +                                recover = 1;
286 +                                continue;
287                          case 'h':               /* output header? */
288                                  switch (argv[i][2]) {
289                                  case '\0':
# Line 214 | Line 301 | main(int argc, char *argv[])
301                                          continue;
302                                  }
303                                  break;
304 <                        case 'f':               /* file or i/o format */
304 >                        case 'f':               /* file or force or format */
305                                  if (!argv[i][2]) {
306                                          char    *fpath;
307 <                                        if (i >= argc-1) break;
307 >                                        if (i >= argc-2) break;
308                                          fpath = getpath(argv[++i],
309                                                          getrlibpath(), R_OK);
310                                          if (fpath == NULL) {
# Line 229 | Line 316 | main(int argc, char *argv[])
316                                          fcompile(fpath);
317                                          continue;
318                                  }
319 +                                if (argv[i][2] == 'o') {
320 +                                        force_open = 1;
321 +                                        continue;
322 +                                }
323                                  setformat(argv[i]+2);
324                                  continue;
325                          case 'e':               /* expression */
326 <                                if (argv[i][2] || i >= argc-1) break;
326 >                                if (argv[i][2] || i >= argc-2) break;
327                                  scompile(argv[++i], NULL, 0);
328                                  continue;
329                          case 'o':               /* output file spec. */
330 <                                if (argv[i][2] || i >= argc-1) break;
330 >                                if (argv[i][2] || i >= argc-2) break;
331                                  curout = argv[++i];
332                                  continue;
333                          case 'x':               /* horiz. output resolution */
334 <                                if (argv[i][2] || i >= argc-1) break;
334 >                                if (argv[i][2] || i >= argc-2) break;
335                                  xres = atoi(argv[++i]);
336                                  continue;
337                          case 'y':               /* vert. output resolution */
338 <                                if (argv[i][2] || i >= argc-1) break;
338 >                                if (argv[i][2] || i >= argc-2) break;
339                                  yres = atoi(argv[++i]);
340                                  continue;
341 <                        case 'b':               /* bin expression */
342 <                                if (argv[i][2] || i >= argc-1) break;
341 >                        case 'b':               /* bin expression/count */
342 >                                if (i >= argc-2) break;
343 >                                if (argv[i][2] == 'n') {
344 >                                        bincnt = (int)(eval(argv[++i]) + .5);
345 >                                        continue;
346 >                                }
347 >                                if (argv[i][2]) break;
348                                  binval = argv[++i];
349                                  continue;
350                          case 'm':               /* modifier name */
351 <                                if (argv[i][2] || i >= argc-1) break;
351 >                                if (argv[i][2] || i >= argc-2) break;
352                                  rtargv[rtargc++] = "-ti";
353                                  rtargv[rtargc++] = argv[++i];
354 <                                addmodifier(argv[i], curout, binval);
354 >                                addmodifier(argv[i], curout, binval, bincnt);
355                                  continue;
356 +                        case 'M':               /* modifier file */
357 +                                if (argv[i][2] || i >= argc-2) break;
358 +                                rtargv[rtargc++] = "-tI";
359 +                                rtargv[rtargc++] = argv[++i];
360 +                                addmodfile(argv[i], curout, binval, bincnt);
361 +                                continue;
362 +                        case 'P':               /* persist file */
363 +                                if (i >= argc-2) break;
364 +                                persist_state = (argv[i][2] == 'P') ?
365 +                                                PERSIST_PARALL : PERSIST_SINGLE;
366 +                                rtargv[rtargc++] = argv[i];
367 +                                rtargv[rtargc++] = argv[++i];
368 +                                continue;
369                          }
370                  rtargv[rtargc++] = argv[i];     /* assume rtrace option */
371          }
372 +        if (accumulate <= 0)    /* no output flushing for single record */
373 +                xres = yres = 0;
374                                  /* set global argument list */
375          gargc = argc; gargv = argv;
376                                  /* add "mandatory" rtrace settings */
377          for (j = 0; myrtopts[j] != NULL; j++)
378                  rtargv[rtargc++] = myrtopts[j];
379 +        rtargv[rtargc++] = contrib ? RTCONTRIB : RTCOEFF;
380                                  /* just asking for defaults? */
381          if (!strcmp(argv[i], "-defaults")) {
382 <                char    sxres[16], syres[16];
382 >                char    nps[8], sxres[16], syres[16];
383                  char    *rtpath;
384 <                printf("-n  %-2d\t\t\t\t# number of processes\n", nprocs);
384 >                printf("-c %-5d\t\t\t# accumulated rays per record\n",
385 >                                accumulate);
386 >                printf("-V%c\t\t\t\t# output %s\n", contrib ? '+' : '-',
387 >                                contrib ? "contributions" : "coefficients");
388                  fflush(stdout);                 /* report OUR options */
389 +                rtargv[rtargc++] = "-n";
390 +                sprintf(nps, "%d", nprocs);
391 +                rtargv[rtargc++] = nps;
392                  rtargv[rtargc++] = header ? "-h+" : "-h-";
393                  sprintf(fmt, "-f%c%c", inpfmt, outfmt);
394                  rtargv[rtargc++] = fmt;
# Line 280 | Line 398 | main(int argc, char *argv[])
398                  rtargv[rtargc++] = "-y";
399                  sprintf(syres, "%d", yres);
400                  rtargv[rtargc++] = syres;
283                rtargv[rtargc++] = "-oTW";
401                  rtargv[rtargc++] = "-defaults";
402                  rtargv[rtargc] = NULL;
403                  rtpath = getpath(rtargv[0], getenv("PATH"), X_OK);
# Line 294 | Line 411 | main(int argc, char *argv[])
411                  exit(1);
412          }
413          if (nprocs > 1) {       /* add persist file if parallel */
414 <                rtargv[rtargc++] = "-PP";
415 <                rtargv[rtargc++] = mktemp(persistfn);
414 >                if (persist_state == PERSIST_SINGLE)
415 >                        error(USER, "use -PP option for multiple processes");
416 >                if (persist_state == PERSIST_NONE) {
417 >                        rtargv[rtargc++] = "-PP";
418 >                        rtargv[rtargc++] = mktemp(persistfn);
419 >                        persist_state = PERSIST_OURS;
420 >                }
421          }
422                                  /* add format string */
423          sprintf(fmt, "-f%cf", inpfmt);
# Line 305 | Line 427 | main(int argc, char *argv[])
427                  error(USER, "missing octree argument");
428          rtargv[rtargc++] = octree = argv[i];
429          rtargv[rtargc] = NULL;
430 <                                /* start rtrace & compute contributions */
430 >                                /* start rtrace & recover if requested */
431          init(nprocs);
432 <        if (recover)            /* perform recovery if requested */
311 <                recover_output(stdin);
432 >                                /* compute contributions */
433          trace_contribs(stdin);
434 +                                /* clean up */
435          quit(0);
436   }
437  
438 + #ifndef SIGALRM
439 + #define SIGALRM SIGTERM
440 + #endif
441   /* kill persistent rtrace process */
442   static void
443   killpersist(void)
444   {
445          FILE    *fp = fopen(persistfn, "r");
446 <        int     pid;
446 >        RT_PID  pid;
447  
448          if (fp == NULL)
449                  return;
# Line 352 | Line 477 | quit(int status)
477   {
478          int     rtstat;
479  
480 <        if (rt0.next != NULL)           /* terminate persistent rtrace */
480 >        if (persist_state == PERSIST_OURS)  /* terminate waiting rtrace */
481                  killpersist();
482                                          /* clean up rtrace process(es) */
483          rtstat = done_rprocs(&rt0);
# Line 419 | Line 544 | init(int np)
544                          raysleft = yres;
545          } else
546                  raysleft = 0;
547 <        waitflush = xres;
547 >        if ((account = accumulate) > 0)
548 >                raysleft *= accumulate;
549 >        waitflush = (yres > 0) & (xres > 1) ? 0 : xres;
550 >        if (!recover)
551 >                return;
552 >                                        /* recover previous values */
553 >        if (accumulate <= 0)
554 >                reload_output();
555 >        else
556 >                recover_output(stdin);
557   }
558  
559 + /* grow modifier to accommodate more bins */
560 + MODCONT *
561 + growmodifier(MODCONT *mp, int nb)
562 + {
563 +        if (nb <= mp->nbins)
564 +                return mp;
565 +        mp = (MODCONT *)realloc(mp, sizeof(MODCONT) + sizeof(DCOLOR)*(nb-1));
566 +        if (mp == NULL)
567 +                error(SYSTEM, "out of memory in growmodifier");
568 +        memset(mp->cbin+mp->nbins, 0, sizeof(DCOLOR)*(nb-mp->nbins));
569 +        mp->nbins = nb;
570 +        return mp;
571 + }
572 +
573   /* add modifier to our list to track */
574   MODCONT *
575 < addmodifier(char *modn, char *outf, char *binv)
575 > addmodifier(char *modn, char *outf, char *binv, int bincnt)
576   {
577          LUENT   *lep = lu_find(&modconttab, modn);
578          MODCONT *mp;
579 +        int     i;
580          
581          if (lep->data != NULL) {
582                  sprintf(errmsg, "duplicate modifier '%s'", modn);
583                  error(USER, errmsg);
584          }
585          if (nmods >= MAXMODLIST)
586 <                error(USER, "too many modifiers");
586 >                error(INTERNAL, "too many modifiers");
587          modname[nmods++] = modn;        /* XXX assumes static string */
588          lep->key = modn;                /* XXX assumes static string */
589          mp = (MODCONT *)malloc(sizeof(MODCONT));
590          if (mp == NULL)
591                  error(SYSTEM, "out of memory in addmodifier");
443        lep->data = (char *)mp;
592          mp->outspec = outf;             /* XXX assumes static string */
593          mp->modname = modn;             /* XXX assumes static string */
594 <        if (binv != NULL)
595 <                mp->binv = eparse(binv);
596 <        else
597 <                mp->binv = eparse("0");
598 <        mp->nbins = 1;
594 >        if (binv == NULL)
595 >                binv = "0";             /* use single bin if unspecified */
596 >        mp->binv = eparse(binv);
597 >        if (mp->binv->type == NUM) {    /* check value if constant */
598 >                bincnt = (int)(evalue(mp->binv) + 1.5);
599 >                if (bincnt != 1) {
600 >                        sprintf(errmsg, "illegal non-zero constant for bin (%s)",
601 >                                        binv);
602 >                        error(USER, errmsg);
603 >                }
604 >        }
605 >        mp->nbins = 1;                  /* initialize results holder */
606          setcolor(mp->cbin[0], 0., 0., 0.);
607 +        if (bincnt > 1)
608 +                mp = growmodifier(mp, bincnt);
609 +        lep->data = (char *)mp;
610 +                                        /* allocate output streams */
611 +        for (i = bincnt; i-- > 0; )
612 +                getostream(mp->outspec, mp->modname, i, 1);
613          return mp;
614   }
615  
616 + /* add modifiers from a file list */
617 + void
618 + addmodfile(char *fname, char *outf, char *binv, int bincnt)
619 + {
620 +        char    *mname[MAXMODLIST];
621 +        int     i;
622 +                                        /* find the file & store strings */
623 +        if (wordfile(mname, getpath(fname, getrlibpath(), R_OK)) < 0) {
624 +                sprintf(errmsg, "cannot find modifier file '%s'", fname);
625 +                error(SYSTEM, errmsg);
626 +        }
627 +        for (i = 0; mname[i]; i++)      /* add each one */
628 +                addmodifier(mname[i], outf, binv, bincnt);
629 + }
630 +
631   /* put string to stderr */
632   void
633   eputs(char  *s)
# Line 491 | Line 667 | ofname(char *oname, const char *ospec, const char *mna
667                                  mnp = cp;
668                                  break;
669                          case 'd':
670 +                        case 'i':
671 +                        case 'o':
672 +                        case 'x':
673 +                        case 'X':
674                                  if (bnp != NULL)
675                                          return -1;
676                                  bnp = cp;
# Line 549 | Line 729 | printheader(FILE *fout, const char *info)
729                  break;
730          }
731          fputc('\n', fout);
552        if (xres > 0) {
553                if (yres > 0)                   /* resolution string */
554                        fprtresolu(xres, yres, fout);
555                fflush(fout);
556        }
732   }
733  
734 < /* Get output file pointer (open and write header if new) */
735 < FILE *
736 < getofile(const char *ospec, const char *mname, int bn)
734 > /* write resolution string to given output stream */
735 > void
736 > printresolu(FILE *fout, int xr, int yr)
737   {
738 <        int             ofl;
739 <        char            oname[1024];
740 <        LUENT           *lep;
738 >        if ((xr > 0) & (yr > 0))        /* resolution string */
739 >                fprtresolu(xr, yr, fout);
740 > }
741 >
742 > /* Get output stream pointer (open and write header if new and noopen==0) */
743 > STREAMOUT *
744 > getostream(const char *ospec, const char *mname, int bn, int noopen)
745 > {
746 >        static const DCOLOR     nocontrib = BLKCOLOR;
747 >        static STREAMOUT        stdos;
748 >        int                     ofl;
749 >        char                    oname[1024];
750 >        LUENT                   *lep;
751 >        STREAMOUT               *sop;
752          
753          if (ospec == NULL) {                    /* use stdout? */
754 <                if (!using_stdout) {
754 >                if (!noopen && !using_stdout) {
755                          if (outfmt != 'a')
756                                  SET_FILE_BINARY(stdout);
757                          if (header)
758                                  printheader(stdout, NULL);
759 +                        printresolu(stdout, xres, yres);
760 +                        if (waitflush > 0)
761 +                                fflush(stdout);
762 +                        stdos.xr = xres; stdos.yr = yres;
763 +                        using_stdout = 1;
764                  }
765 <                using_stdout = 1;
766 <                return stdout;
765 >                stdos.ofp = stdout;
766 >                stdos.reclen += noopen;
767 >                return &stdos;
768          }
769          ofl = ofname(oname, ospec, mname, bn);  /* get output name */
770          if (ofl < 0) {
# Line 582 | Line 774 | getofile(const char *ospec, const char *mname, int bn)
774          lep = lu_find(&ofiletab, oname);        /* look it up */
775          if (lep->key == NULL)                   /* new entry */
776                  lep->key = strcpy((char *)malloc(strlen(oname)+1), oname);
777 <        if (lep->data == NULL) {                /* open output file */
778 <                FILE            *fp;
779 <                int             i;
780 <                if (oname[0] == '!')            /* output to command */
781 <                        fp = popen(oname+1, "w");
782 <                else
783 <                        fp = fopen(oname, "w");
784 <                if (fp == NULL) {
785 <                        sprintf(errmsg, "cannot open '%s' for writing", oname);
786 <                        error(SYSTEM, errmsg);
777 >        sop = (STREAMOUT *)lep->data;
778 >        if (sop == NULL) {                      /* allocate stream */
779 >                sop = (STREAMOUT *)malloc(sizeof(STREAMOUT));
780 >                if (sop == NULL)
781 >                        error(SYSTEM, "out of memory in getostream");
782 >                sop->outpipe = oname[0] == '!';
783 >                sop->reclen = 0;
784 >                sop->ofp = NULL;                /* open iff noopen==0 */
785 >                sop->xr = xres; sop->yr = yres;
786 >                lep->data = (char *)sop;
787 >                if (!sop->outpipe & !force_open & !recover &&
788 >                                access(oname, F_OK) == 0) {
789 >                        errno = EEXIST;         /* file exists */
790 >                        goto openerr;
791                  }
792 +        }
793 +        if (!noopen && sop->ofp == NULL) {      /* open output stream */
794 +                long            i;
795 +                if (oname[0] == '!')            /* output to command */
796 +                        sop->ofp = popen(oname+1, "w");
797 +                else                            /* else open file */
798 +                        sop->ofp = fopen(oname, "w");
799 +                if (sop->ofp == NULL)
800 +                        goto openerr;
801                  if (outfmt != 'a')
802 <                        SET_FILE_BINARY(fp);
802 >                        SET_FILE_BINARY(sop->ofp);
803                  if (header) {
804                          char    info[512];
805                          char    *cp = info;
806 <                        if (ofl & OF_MODIFIER) {
806 >                        if (ofl & OF_MODIFIER || sop->reclen == 1) {
807                                  sprintf(cp, "MODIFIER=%s\n", mname);
808                                  while (*cp) ++cp;
809                          }
# Line 607 | Line 812 | getofile(const char *ospec, const char *mname, int bn)
812                                  while (*cp) ++cp;
813                          }
814                          *cp = '\0';
815 <                        printheader(fp, info);
815 >                        printheader(sop->ofp, info);
816                  }
817 +                if (accumulate > 0) {           /* global resolution */
818 +                        sop->xr = xres; sop->yr = yres;
819 +                }
820 +                printresolu(sop->ofp, sop->xr, sop->yr);
821                                                  /* play catch-up */
822 <                for (i = 0; i < lastdone; i++) {
823 <                        static const DCOLOR     nocontrib = BLKCOLOR;
824 <                        put_contrib(nocontrib, fp);
822 >                for (i = accumulate > 0 ? lastdone/accumulate : 0; i--; ) {
823 >                        int     j = sop->reclen;
824 >                        if (j <= 0) j = 1;
825 >                        while (j--)
826 >                                put_contrib(nocontrib, sop->ofp);
827                          if (outfmt == 'a')
828 <                                putc('\n', fp);
828 >                                putc('\n', sop->ofp);
829                  }
830 <                if (xres > 0)
831 <                        fflush(fp);
621 <                lep->data = (char *)fp;
830 >                if (waitflush > 0)
831 >                        fflush(sop->ofp);
832          }
833 <        return (FILE *)lep->data;               /* return open file pointer */
833 >        sop->reclen += noopen;                  /* add to length if noopen */
834 >        return sop;                             /* return output stream */
835 > openerr:
836 >        sprintf(errmsg, "cannot open '%s' for writing", oname);
837 >        error(SYSTEM, errmsg);
838 >        return NULL;    /* pro forma return */
839   }
840  
841   /* read input ray into buffer */
842   int
843   getinp(char *buf, FILE *fp)
844   {
845 +        double  dv[3], *dvp;
846 +        float   *fvp;
847          char    *cp;
848          int     i;
849  
# Line 635 | Line 852 | getinp(char *buf, FILE *fp)
852                  cp = buf;               /* make sure we get 6 floats */
853                  for (i = 0; i < 6; i++) {
854                          if (fgetword(cp, buf+127-cp, fp) == NULL)
855 <                                return 0;
855 >                                return -1;
856 >                        if (i >= 3)
857 >                                dv[i-3] = atof(cp);
858                          if ((cp = fskip(cp)) == NULL || *cp)
859 <                                return 0;
859 >                                return -1;
860                          *cp++ = ' ';
861                  }
862                  getc(fp);               /* get/put eol */
863                  *cp-- = '\0'; *cp = '\n';
864 +                if (DOT(dv,dv) <= FTINY*FTINY)
865 +                        return 0;       /* dummy ray */
866                  return strlen(buf);
867          case 'f':
868                  if (fread(buf, sizeof(float), 6, fp) < 6)
869 <                        return 0;
869 >                        return -1;
870 >                fvp = (float *)buf + 3;
871 >                if (DOT(fvp,fvp) <= FTINY*FTINY)
872 >                        return 0;       /* dummy ray */
873                  return sizeof(float)*6;
874          case 'd':
875                  if (fread(buf, sizeof(double), 6, fp) < 6)
876 <                        return 0;
876 >                        return -1;
877 >                dvp = (double *)buf + 3;
878 >                if (DOT(dvp,dvp) <= FTINY*FTINY)
879 >                        return 0;       /* dummy ray */
880                  return sizeof(double)*6;
881          }
882          error(INTERNAL, "botched input format");
883 <        return 0;       /* pro forma return */
883 >        return -1;      /* pro forma return */
884   }
885  
886   static float    rparams[9];             /* traced ray parameters */
# Line 683 | Line 910 | add_contrib(const char *modn)
910          bn = (int)(evalue(mp->binv) + .5);
911          if (bn <= 0)
912                  bn = 0;
913 <        else if (bn > mp->nbins) {      /* new bin */
914 <                mp = (MODCONT *)realloc(mp, sizeof(MODCONT) +
688 <                                                bn*sizeof(DCOLOR));
689 <                if (mp == NULL)
690 <                        error(SYSTEM, "out of memory in add_contrib");
691 <                memset(mp->cbin+mp->nbins, 0, sizeof(DCOLOR)*(bn+1-mp->nbins));
692 <                mp->nbins = bn+1;
693 <                le->data = (char *)mp;
694 <        }
913 >        else if (bn >= mp->nbins)       /* new bin */
914 >                le->data = (char *)(mp = growmodifier(mp, bn+1));
915          addcolor(mp->cbin[bn], rparams);
916   }
917  
# Line 699 | Line 919 | add_contrib(const char *modn)
919   static int
920   puteol(const LUENT *e, void *p)
921   {
922 <        FILE    *fp = (FILE *)e->data;
922 >        STREAMOUT       *sop = (STREAMOUT *)e->data;
923  
924          if (outfmt == 'a')
925 <                putc('\n', fp);
925 >                putc('\n', sop->ofp);
926          if (!waitflush)
927 <                fflush(fp);
928 <        if (ferror(fp)) {
927 >                fflush(sop->ofp);
928 >        if (ferror(sop->ofp)) {
929                  sprintf(errmsg, "write error on file '%s'", e->key);
930                  error(SYSTEM, errmsg);
931          }
# Line 724 | Line 944 | put_contrib(const DCOLOR cnt, FILE *fout)
944                  fprintf(fout, "%.6e\t%.6e\t%.6e\t", cnt[0], cnt[1], cnt[2]);
945                  break;
946          case 'f':
947 <                fv[0] = cnt[0];
728 <                fv[1] = cnt[1];
729 <                fv[2] = cnt[2];
947 >                copycolor(fv, cnt);
948                  fwrite(fv, sizeof(float), 3, fout);
949                  break;
950          case 'd':
# Line 739 | Line 957 | put_contrib(const DCOLOR cnt, FILE *fout)
957          default:
958                  error(INTERNAL, "botched output format");
959          }
960 +        if (waitflush < 0 && frandom() < 0.001)
961 +                fflush(fout);                   /* staggers writes */
962   }
963  
964 < /* output ray tallies and clear for next primary */
964 > /* output ray tallies and clear for next accumulation */
965   void
966 < done_contrib(void)
966 > done_contrib(int navg)
967   {
968 <        int     i, j;
969 <        MODCONT *mp;
970 <        FILE    *fp;
968 >        double          sf = 1.;
969 >        int             i, j;
970 >        MODCONT         *mp;
971 >        STREAMOUT       *sop;
972 >                                                /* set average scaling */
973 >        if (navg > 1)
974 >                sf = 1. / (double)navg;
975                                                  /* output modifiers in order */
976          for (i = 0; i < nmods; i++) {
977                  mp = (MODCONT *)lu_find(&modconttab,modname[i])->data;
978 <                fp = getofile(mp->outspec, mp->modname, 0);
979 <                put_contrib(mp->cbin[0], fp);
978 >                if (navg > 1)                   /* average scaling */
979 >                        for (j = mp->nbins; j--; )
980 >                                scalecolor(mp->cbin[j], sf);
981 >                sop = getostream(mp->outspec, mp->modname, 0,0);
982 >                put_contrib(mp->cbin[0], sop->ofp);
983                  if (mp->nbins > 3 &&            /* minor optimization */
984 <                                fp == getofile(mp->outspec, mp->modname, 1))
984 >                                sop == getostream(mp->outspec, mp->modname, 1,0))
985                          for (j = 1; j < mp->nbins; j++)
986 <                                put_contrib(mp->cbin[j], fp);
986 >                                put_contrib(mp->cbin[j], sop->ofp);
987                  else
988                          for (j = 1; j < mp->nbins; j++)
989                                  put_contrib(mp->cbin[j],
990 <                                        getofile(mp->outspec, mp->modname, j));
991 <                                                /* clear for next ray tree */
990 >                                    getostream(mp->outspec,mp->modname,j,0)->ofp);
991 >                                                /* clear for next time */
992                  memset(mp->cbin, 0, sizeof(DCOLOR)*mp->nbins);
993          }
994          --waitflush;                            /* terminate records */
# Line 769 | Line 996 | done_contrib(void)
996          if (using_stdout & (outfmt == 'a'))
997                  putc('\n', stdout);
998          if (!waitflush) {
999 <                waitflush = xres;
999 >                waitflush = (yres > 0) & (xres > 1) ? 0 : xres;
1000                  if (using_stdout)
1001                          fflush(stdout);
1002          }
# Line 820 | Line 1047 | process_queue(void)
1047                          if (!n || !(isalpha(*cp) | (*cp == '_')))
1048                                  error(USER, "bad modifier name from rtrace");
1049                                          /* get modifier name */
1050 <                        while (n > 0 && *cp != '\t') {
1050 >                        while (n > 1 && *cp != '\t') {
1051 >                                if (mnp - modname >= sizeof(modname)-2)
1052 >                                        error(INTERNAL, "modifier name too long");
1053                                  *mnp++ = *cp++; n--;
1054                          }
1055                          *mnp = '\0';
# Line 832 | Line 1061 | process_queue(void)
1061                          cp += sizeof(float)*9; n -= sizeof(float)*9;
1062                          add_contrib(modname);
1063                  }
1064 <                done_contrib();         /* sum up contributions & output */
1064 >                                        /* time to produce record? */
1065 >                if (account > 0 && !--account)
1066 >                        done_contrib(account = accumulate);
1067                  lastdone = rtp->raynum;
1068 <                free(rtp->buf);         /* free up buffer space */
1068 >                if (rtp->buf != NULL)   /* free up buffer space */
1069 >                        free(rtp->buf);
1070                  rt_unproc = rtp->next;
1071                  free(rtp);              /* done with this ray tree */
1072          }
# Line 882 | Line 1114 | wait_rproc(void)
1114                                  if (rt->bsiz + BUFSIZ <= treebufsiz)
1115                                          rt->bsiz = treebufsiz;
1116                                  else
1117 <                                        rt->bsiz = treebufsiz += BUFSIZ;
1117 >                                        treebufsiz = rt->bsiz += BUFSIZ;
1118                                  rt->buf = (char *)realloc(rt->buf, rt->bsiz);
1119                          }
1120                          if (rt->buf == NULL)
# Line 918 | Line 1150 | get_rproc(void)
1150   void
1151   trace_contribs(FILE *fin)
1152   {
1153 +        static int      ignore_warning_given = 0;
1154          char            inpbuf[128];
1155          int             iblen;
1156          struct rtproc   *rtp;
1157                                                  /* loop over input */
1158 <        while ((iblen = getinp(inpbuf, fin)) > 0) {
1159 <                if (lastray+1 < lastray) {      /* counter rollover? */
1158 >        while ((iblen = getinp(inpbuf, fin)) >= 0) {
1159 >                if (!iblen && accumulate != 1) {
1160 >                        if (!ignore_warning_given++)
1161 >                                error(WARNING,
1162 >                                "dummy ray(s) ignored during accumulation\n");
1163 >                        continue;
1164 >                }
1165 >                if (!iblen ||                   /* need flush/reset? */
1166 >                                queue_length() > 10*nrtprocs() ||
1167 >                                lastray+1 < lastray) {
1168                          while (wait_rproc() != NULL)
1169                                  process_queue();
1170 <                        lastdone = lastray = 0;
1170 >                        if (lastray+1 < lastray)
1171 >                                lastdone = lastray = 0;
1172                  }
1173                  rtp = get_rproc();              /* get avail. rtrace process */
1174 <                rtp->raynum = ++lastray;        /* assign ray to it */
1175 <                writebuf(rtp->pd.w, inpbuf, iblen);
1176 <                if (raysleft && !--raysleft)
1177 <                        break;
1174 >                rtp->raynum = ++lastray;        /* assign ray */
1175 >                if (iblen) {                    /* trace ray if valid */
1176 >                        writebuf(rtp->pd.w, inpbuf, iblen);
1177 >                } else {                        /* else bypass dummy ray */
1178 >                        queue_raytree(rtp);     /* queue empty ray/record */
1179 >                        if ((yres <= 0) | (xres <= 0))
1180 >                                waitflush = 1;  /* flush right after */
1181 >                }
1182                  process_queue();                /* catch up with results */
1183 +                if (raysleft && !--raysleft)
1184 +                        break;                  /* preemptive EOI */
1185          }
1186          while (wait_rproc() != NULL)            /* process outstanding rays */
1187                  process_queue();
1188 +        if (accumulate <= 0)
1189 +                done_contrib(0);                /* output tallies */
1190 +        else if (account < accumulate) {
1191 +                error(WARNING, "partial accumulation in final record");
1192 +                done_contrib(accumulate - account);
1193 +        }
1194          if (raysleft)
1195                  error(USER, "unexpected EOF on input");
1196          lu_done(&ofiletab);                     /* close output files */
1197   }
1198  
1199 + /* get ray contribution from previous file */
1200 + static int
1201 + get_contrib(DCOLOR cnt, FILE *finp)
1202 + {
1203 +        COLOR   fv;
1204 +        COLR    cv;
1205 +
1206 +        switch (outfmt) {
1207 +        case 'a':
1208 +                return(fscanf(finp,"%lf %lf %lf",&cnt[0],&cnt[1],&cnt[2]) == 3);
1209 +        case 'f':
1210 +                if (fread(fv, sizeof(fv[0]), 3, finp) != 3)
1211 +                        return(0);
1212 +                copycolor(cnt, fv);
1213 +                return(1);
1214 +        case 'd':
1215 +                return(fread(cnt, sizeof(cnt[0]), 3, finp) == 3);
1216 +        case 'c':
1217 +                if (fread(cv, sizeof(cv), 1, finp) != 1)
1218 +                        return(0);
1219 +                colr_color(fv, cv);
1220 +                copycolor(cnt, fv);
1221 +                return(1);
1222 +        default:
1223 +                error(INTERNAL, "botched output format");
1224 +        }
1225 +        return(0);      /* pro forma return */
1226 + }
1227 +
1228 + /* close output file opened for input */
1229 + static int
1230 + myclose(const LUENT *e, void *p)
1231 + {
1232 +        STREAMOUT       *sop = (STREAMOUT *)e->data;
1233 +        
1234 +        if (sop->ofp == NULL)
1235 +                return(0);
1236 +        fclose(sop->ofp);
1237 +        sop->ofp = NULL;
1238 +        return(0);
1239 + }
1240 +
1241 + /* load previously accumulated values */
1242 + void
1243 + reload_output(void)
1244 + {
1245 +        int             i, j;
1246 +        MODCONT         *mp;
1247 +        int             ofl;
1248 +        char            oname[1024];
1249 +        char            *fmode = "rb";
1250 +        char            *outvfmt;
1251 +        LUENT           *ment, *oent;
1252 +        int             xr, yr;
1253 +        STREAMOUT       sout;
1254 +        DCOLOR          rgbv;
1255 +
1256 +        switch (outfmt) {
1257 +        case 'a':
1258 +                outvfmt = "ascii";
1259 +                fmode = "r";
1260 +                break;
1261 +        case 'f':
1262 +                outvfmt = "float";
1263 +                break;
1264 +        case 'd':
1265 +                outvfmt = "double";
1266 +                break;
1267 +        case 'c':
1268 +                outvfmt = COLRFMT;
1269 +                break;
1270 +        default:
1271 +                error(INTERNAL, "botched output format");
1272 +                return;
1273 +        }
1274 +                                                /* reload modifier values */
1275 +        for (i = 0; i < nmods; i++) {
1276 +                ment = lu_find(&modconttab,modname[i]);
1277 +                mp = (MODCONT *)ment->data;
1278 +                if (mp->outspec == NULL)
1279 +                        error(USER, "cannot reload from stdout");
1280 +                if (mp->outspec[0] == '!')
1281 +                        error(USER, "cannot reload from command");
1282 +                for (j = 0; ; j++) {            /* load each modifier bin */
1283 +                        ofl = ofname(oname, mp->outspec, mp->modname, j);
1284 +                        if (ofl < 0)
1285 +                                error(USER, "bad output file specification");
1286 +                        oent = lu_find(&ofiletab, oname);
1287 +                        if (oent->data != NULL) {
1288 +                                sout = *(STREAMOUT *)oent->data;
1289 +                        } else {
1290 +                                sout.reclen = 0;
1291 +                                sout.outpipe = 0;
1292 +                                sout.xr = xres; sout.yr = yres;
1293 +                                sout.ofp = NULL;
1294 +                        }
1295 +                        if (sout.ofp == NULL) { /* open output as input */
1296 +                                sout.ofp = fopen(oname, fmode);
1297 +                                if (sout.ofp == NULL) {
1298 +                                        if (j)
1299 +                                                break;  /* assume end of modifier */
1300 +                                        sprintf(errmsg, "missing reload file '%s'",
1301 +                                                        oname);
1302 +                                        error(WARNING, errmsg);
1303 +                                        break;
1304 +                                }
1305 +                                if (header && checkheader(sout.ofp, outvfmt, NULL) != 1) {
1306 +                                        sprintf(errmsg, "format mismatch for '%s'",
1307 +                                                        oname);
1308 +                                        error(USER, errmsg);
1309 +                                }
1310 +                                if ((sout.xr > 0) & (sout.yr > 0) &&
1311 +                                                (!fscnresolu(&xr, &yr, sout.ofp) ||
1312 +                                                        (xr != sout.xr) |
1313 +                                                        (yr != sout.yr))) {
1314 +                                        sprintf(errmsg, "resolution mismatch for '%s'",
1315 +                                                        oname);
1316 +                                        error(USER, errmsg);
1317 +                                }
1318 +                        }
1319 +                                                        /* read in RGB value */
1320 +                        if (!get_contrib(rgbv, sout.ofp)) {
1321 +                                if (!j) {
1322 +                                        fclose(sout.ofp);
1323 +                                        break;          /* ignore empty file */
1324 +                                }
1325 +                                if (j < mp->nbins) {
1326 +                                        sprintf(errmsg, "missing data in '%s'",
1327 +                                                        oname);
1328 +                                        error(USER, errmsg);
1329 +                                }
1330 +                                break;
1331 +                        }
1332 +                        if (j >= mp->nbins)             /* grow modifier size */
1333 +                                ment->data = (char *)(mp = growmodifier(mp, j+1));
1334 +                        copycolor(mp->cbin[j], rgbv);
1335 +                        if (oent->key == NULL)          /* new file entry */
1336 +                                oent->key = strcpy((char *)
1337 +                                                malloc(strlen(oname)+1), oname);
1338 +                        if (oent->data == NULL)
1339 +                                oent->data = (char *)malloc(sizeof(STREAMOUT));
1340 +                        *(STREAMOUT *)oent->data = sout;
1341 +                }
1342 +        }
1343 +        lu_doall(&ofiletab, myclose, NULL);     /* close all files */
1344 + }
1345 +
1346   /* seek on the given output file */
1347   static int
1348   myseeko(const LUENT *e, void *p)
1349   {
1350 <        if (fseeko((FILE *)e->data, *(off_t *)p, SEEK_CUR) < 0) {
1350 >        STREAMOUT       *sop = (STREAMOUT *)e->data;
1351 >        off_t           nbytes = *(off_t *)p;
1352 >        
1353 >        if (sop->reclen > 1)
1354 >                nbytes = nbytes * sop->reclen;
1355 >        if (fseeko(sop->ofp, nbytes, SEEK_CUR) < 0) {
1356                  sprintf(errmsg, "seek error on file '%s'", e->key);
1357                  error(SYSTEM, errmsg);
1358          }
1359 +        return 0;
1360   }
1361  
1362   /* recover output if possible */
1363   void
1364   recover_output(FILE *fin)
1365   {
1366 <        off_t   lastout = -1;
1367 <        int     outvsiz;
1368 <        char    *outvfmt;
1369 <        int     i, j;
1370 <        MODCONT *mp;
1371 <        int     ofl;
1372 <        char    oname[1024];
1373 <        LUENT   *ment, *oent;
1374 <        FILE    *fp;
1375 <        off_t   nvals;
1366 >        off_t           lastout = -1;
1367 >        int             outvsiz, recsiz;
1368 >        char            *outvfmt;
1369 >        int             i, j;
1370 >        MODCONT         *mp;
1371 >        int             ofl;
1372 >        char            oname[1024];
1373 >        LUENT           *ment, *oent;
1374 >        STREAMOUT       sout;
1375 >        off_t           nvals;
1376 >        int             xr, yr;
1377  
1378          switch (outfmt) {
1379          case 'a':
# Line 993 | Line 1401 | recover_output(FILE *fin)
1401                  mp = (MODCONT *)ment->data;
1402                  if (mp->outspec == NULL)
1403                          error(USER, "cannot recover from stdout");
1404 +                if (mp->outspec[0] == '!')
1405 +                        error(USER, "cannot recover from command");
1406                  for (j = 0; ; j++) {            /* check each bin's file */
1407                          ofl = ofname(oname, mp->outspec, mp->modname, j);
1408                          if (ofl < 0)
1409                                  error(USER, "bad output file specification");
1410                          oent = lu_find(&ofiletab, oname);
1411 <                        if (oent->data != NULL) { /* saw this one already */
1411 >                        if (oent->data != NULL) {
1412 >                                sout = *(STREAMOUT *)oent->data;
1413 >                        } else {
1414 >                                sout.reclen = 0;
1415 >                                sout.outpipe = 0;
1416 >                                sout.ofp = NULL;
1417 >                        }
1418 >                        if (sout.ofp != NULL) { /* already open? */
1419                                  if (ofl & OF_BIN)
1420                                          continue;
1421                                  break;
1422                          }
1006                        if (oname[0] == '!')
1007                                error(USER, "cannot recover from command");
1423                                                  /* open output */
1424 <                        fp = fopen(oname, "rb+");
1425 <                        if (fp == NULL)
1426 <                                break;          /* must be end of modifier */
1427 <                        nvals = lseek(fileno(fp), 0, SEEK_END);
1424 >                        sout.ofp = fopen(oname, "rb+");
1425 >                        if (sout.ofp == NULL) {
1426 >                                if (j)
1427 >                                        break;  /* assume end of modifier */
1428 >                                sprintf(errmsg, "missing recover file '%s'",
1429 >                                                oname);
1430 >                                error(WARNING, errmsg);
1431 >                                break;
1432 >                        }
1433 >                        nvals = lseek(fileno(sout.ofp), 0, SEEK_END);
1434                          if (nvals <= 0) {
1435                                  lastout = 0;    /* empty output, quit here */
1436 <                                fclose(fp);
1436 >                                fclose(sout.ofp);
1437                                  break;
1438                          }
1439 <                        lseek(fileno(fp), 0, SEEK_SET);
1440 <                        if (header) {
1020 <                                int     xr, yr;
1021 <                                if (checkheader(fp, outvfmt, NULL) != 1) {
1439 >                        if (!sout.reclen) {
1440 >                                if (!(ofl & OF_BIN)) {
1441                                          sprintf(errmsg,
1442 <                                                "format mismatch for '%s'",
1442 >                                                "need -bn to recover file '%s'",
1443                                                          oname);
1444                                          error(USER, errmsg);
1445                                  }
1446 <                                if (xres > 0 && yres > 0 &&
1447 <                                                (!fscnresolu(&xr, &yr, fp) ||
1448 <                                                        xr != xres ||
1449 <                                                        yr != yres)) {
1450 <                                        sprintf(errmsg,
1451 <                                                "resolution mismatch for '%s'",
1452 <                                                        oname);
1453 <                                        error(USER, errmsg);
1454 <                                }
1446 >                                recsiz = outvsiz;
1447 >                        } else
1448 >                                recsiz = outvsiz * sout.reclen;
1449 >
1450 >                        lseek(fileno(sout.ofp), 0, SEEK_SET);
1451 >                        if (header && checkheader(sout.ofp, outvfmt, NULL) != 1) {
1452 >                                sprintf(errmsg, "format mismatch for '%s'",
1453 >                                                oname);
1454 >                                error(USER, errmsg);
1455                          }
1456 <                        nvals = (nvals - (off_t)ftell(fp)) / outvsiz;
1457 <                        if (lastout < 0 || nvals < lastout)
1456 >                        sout.xr = xres; sout.yr = yres;
1457 >                        if ((sout.xr > 0) & (sout.yr > 0) &&
1458 >                                        (!fscnresolu(&xr, &yr, sout.ofp) ||
1459 >                                                (xr != sout.xr) |
1460 >                                                (yr != sout.yr))) {
1461 >                                sprintf(errmsg, "resolution mismatch for '%s'",
1462 >                                                oname);
1463 >                                error(USER, errmsg);
1464 >                        }
1465 >                        nvals = (nvals - (off_t)ftell(sout.ofp)) / recsiz;
1466 >                        if ((lastout < 0) | (nvals < lastout))
1467                                  lastout = nvals;
1468 <                        if (oent->key == NULL) /* new entry */
1468 >                        if (oent->key == NULL)  /* new entry */
1469                                  oent->key = strcpy((char *)
1470                                                  malloc(strlen(oname)+1), oname);
1471 <                        oent->data = (char *)fp;
1471 >                        if (oent->data == NULL)
1472 >                                oent->data = (char *)malloc(sizeof(STREAMOUT));
1473 >                        *(STREAMOUT *)oent->data = sout;
1474                          if (!(ofl & OF_BIN))
1475                                  break;          /* no bin separation */
1476                  }
1477                  if (!lastout) {                 /* empty output */
1478 <                        error(WARNING, "no data to recover");
1478 >                        error(WARNING, "no previous data to recover");
1479                          lu_done(&ofiletab);     /* reclose all outputs */
1480                          return;
1481                  }
1482 <                if (j > mp->nbins) {            /* preallocate modifier bins */
1483 <                        mp = (MODCONT *)realloc(mp, sizeof(MODCONT) +
1054 <                                                        (j-1)*sizeof(DCOLOR));
1055 <                        if (mp == NULL)
1056 <                                error(SYSTEM, "out of memory in recover_output");
1057 <                        memset(mp->cbin, 0, sizeof(DCOLOR)*mp->nbins);
1058 <                        mp->nbins = j;
1059 <                        ment->data = (char *)mp;
1060 <                }
1482 >                if (j > mp->nbins)              /* reallocate modifier bins */
1483 >                        ment->data = (char *)(mp = growmodifier(mp, j));
1484          }
1485          if (lastout < 0) {
1486 <                error(WARNING, "no existing output to recover");
1486 >                error(WARNING, "no output files to recover");
1487                  return;
1488          }
1489 +        if (raysleft && lastout >= raysleft/accumulate) {
1490 +                error(WARNING, "output appears to be complete");
1491 +                /* XXX should read & discard input? */
1492 +                quit(0);
1493 +        }
1494                                                  /* seek on all files */
1495          nvals = lastout * outvsiz;
1496          lu_doall(&ofiletab, myseeko, &nvals);
1497 <                                                /* discard input */
1497 >                                                /* skip repeated input */
1498          for (nvals = 0; nvals < lastout; nvals++)
1499 <                if (getinp(oname, fin) <= 0)
1499 >                if (getinp(oname, fin) < 0)
1500                          error(USER, "unexpected EOF on input");
1501 <        lastray = lastdone = (unsigned long)lastout;
1501 >        lastray = lastdone = (unsigned long)lastout * accumulate;
1502          if (raysleft)
1503                  raysleft -= lastray;
1504   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines