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

Comparing ray/src/util/rad.c (file contents):
Revision 2.81 by schorsch, Mon Sep 12 14:40:13 2005 UTC vs.
Revision 2.117 by greg, Wed May 27 14:26:04 2015 UTC

# Line 24 | Line 24 | static const char      RCSid[] = "$Id$";
24    #define RENAMECMD "mv"
25    #include <sys/types.h>
26    #include <sys/wait.h>
27 +  #include <signal.h>
28   #endif
29  
30                                  /* variables (alphabetical by name) */
# Line 35 | Line 36 | static const char      RCSid[] = "$Id$";
36   #define INDIRECT        5               /* indirection in lighting */
37   #define MATERIAL        6               /* material files */
38   #define MKILLUM         7               /* mkillum options */
39 < #define OBJECT          8               /* object files */
40 < #define OCONV           9               /* oconv options */
41 < #define OCTREE          10              /* octree file name */
42 < #define OPTFILE         11              /* rendering options file */
43 < #define PENUMBRAS       12              /* shadow penumbras are desired */
44 < #define PFILT           13              /* pfilt options */
45 < #define PICTURE         14              /* picture file root name */
46 < #define QUALITY         15              /* desired rendering quality */
47 < #define RAWFILE         16              /* raw picture file root name */
48 < #define RENDER          17              /* rendering options */
49 < #define REPORT          18              /* report frequency and errfile */
50 < #define RESOLUTION      19              /* maximum picture resolution */
51 < #define SCENE           20              /* scene files */
52 < #define UP              21              /* view up (X, Y or Z) */
53 < #define VARIABILITY     22              /* level of light variability */
54 < #define VIEWS           23              /* view(s) for picture(s) */
55 < #define ZFILE           24              /* distance file root name */
56 < #define ZONE            25              /* simulation zone */
39 > #define MKPMAP          8               /* mkpmap options */
40 > #define OBJECT          9               /* object files */
41 > #define OCONV           10              /* oconv options */
42 > #define OCTREE          11              /* octree file name */
43 > #define OPTFILE         12              /* rendering options file */
44 > #define PCMAP           13              /* caustic photon map */
45 > #define PENUMBRAS       14              /* shadow penumbras are desired */
46 > #define PFILT           15              /* pfilt options */
47 > #define PGMAP           16              /* global photon map */
48 > #define PICTURE         17              /* picture file root name */
49 > #define QUALITY         18              /* desired rendering quality */
50 > #define RAWFILE         19              /* raw picture file root name */
51 > #define RENDER          20              /* rendering options */
52 > #define REPORT          21              /* report frequency and errfile */
53 > #define RESOLUTION      22              /* maximum picture resolution */
54 > #define RPICT           23              /* rpict parameters */
55 > #define RVU             24              /* rvu parameters */
56 > #define SCENE           25              /* scene files */
57 > #define UP              26              /* view up (X, Y or Z) */
58 > #define VARIABILITY     27              /* level of light variability */
59 > #define VIEWS           28              /* view(s) for picture(s) */
60 > #define ZFILE           29              /* distance file root name */
61 > #define ZONE            30              /* simulation zone */
62                                  /* total number of variables */
63 < int NVARS = 26;
63 > int NVARS = 31;
64  
65   VARIABLE        vv[] = {                /* variable-value pairs */
66          {"AMBFILE",     3,      0,      NULL,   onevalue},
# Line 65 | Line 71 | VARIABLE       vv[] = {                /* variable-value pairs */
71          {"INDIRECT",    3,      0,      NULL,   intvalue},
72          {"materials",   3,      0,      NULL,   catvalues},
73          {"mkillum",     3,      0,      NULL,   catvalues},
74 +        {"mkpmap",      3,      0,      NULL,   catvalues},
75          {"objects",     3,      0,      NULL,   catvalues},
76          {"oconv",       3,      0,      NULL,   catvalues},
77          {"OCTREE",      3,      0,      NULL,   onevalue},
78          {"OPTFILE",     3,      0,      NULL,   onevalue},
79 +        {"PCMAP",       2,      0,      NULL,   onevalue},
80          {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
81          {"pfilt",       2,      0,      NULL,   catvalues},
82 +        {"PGMAP",       2,      0,      NULL,   onevalue},
83          {"PICTURE",     3,      0,      NULL,   onevalue},
84          {"QUALITY",     3,      0,      NULL,   qualvalue},
85          {"RAWFILE",     3,      0,      NULL,   onevalue},
86          {"render",      3,      0,      NULL,   catvalues},
87          {"REPORT",      3,      0,      NULL,   onevalue},
88          {"RESOLUTION",  3,      0,      NULL,   onevalue},
89 +        {"rpict",       3,      0,      NULL,   catvalues},
90 +        {"rvu",         3,      0,      NULL,   catvalues},
91          {"scene",       3,      0,      NULL,   catvalues},
92          {"UP",          2,      0,      NULL,   onevalue},
93          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
# Line 103 | Line 114 | time_t oct0date;               /* date of pre-mkillum octree */
114   char    *oct1name;              /* name of post-mkillum octree */
115   time_t  oct1date;               /* date of post-mkillum octree (>= matdate) */
116  
117 + char    *pgmapname;             /* name of global photon map */
118 + time_t  pgmapdate;              /* date of global photon map (>= oct1date) */
119 + char    *pcmapname;             /* name of caustic photon map */
120 + time_t  pcmapdate;              /* date of caustic photon map (>= oct1date) */
121 +
122   int     nowarn = 0;             /* no warnings */
123   int     explicate = 0;          /* explicate variables */
124   int     silent = 0;             /* do work silently */
# Line 112 | Line 128 | int    sayview = 0;            /* print view out */
128   char    *rvdevice = NULL;       /* rvu output device */
129   char    *viewselect = NULL;     /* specific view only */
130  
131 + #define DEF_RPICT_PATH  "rpict"         /* default rpict path */
132 +
133 +                                /* command paths */
134 + char    c_oconv[256] = "oconv";
135 + char    c_mkillum[256] = "mkillum";
136 + char    c_mkpmap[256] = "mkpmap";
137 + char    c_rvu[256] = "rvu";
138 + char    c_rpict[256] = DEF_RPICT_PATH;
139 + char    c_rpiece[] = "rpiece";
140 + char    c_pfilt[256] = "pfilt";
141 +
142   int     overture = 0;           /* overture calculation needed */
143  
144   int     children_running = 0;   /* set negative in children */
# Line 130 | Line 157 | static void checkfiles(void);
157   static void getoctcube(double   org[3], double  *sizp);
158   static void setdefaults(void);
159   static void oconv(void);
160 + static void mkpmap(void);
161   static char * addarg(char       *op, char       *arg);
162   static void oconvopts(char      *oo);
163   static void mkillumopts(char    *mo);
164 + static void mkpmapopts(char     *mo);
165   static void checkambfile(void);
166   static double ambval(void);
167   static void renderopts(char     *op, char       *po);
# Line 151 | Line 180 | static int touch(char  *fn);
180   static int runcom(char  *cs);
181   static int rmfile(char  *fn);
182   static int mvfile(char  *fold, char     *fnew);
183 < static int next_process(void);
183 > static int next_process(int     reserve);
184   static void wait_process(int    all);
185   static void finish_process(void);
186   static void badvalue(int        vc);
# Line 207 | Line 236 | main(
236          if (i >= argc)
237                  goto userr;
238          rifname = argv[i];
210                                /* check command-line options */
211        if ((nprocs > 1) & (viewselect != NULL))
212                nprocs = 1;
239                                  /* assign Radiance root file name */
240          rootname(radname, rifname);
241                                  /* load variable values */
# Line 232 | Line 258 | main(
258                  printvars(stdout);
259                                  /* build octree (and run mkillum) */
260          oconv();
261 +                                /* run mkpmap if indicated */
262 +        mkpmap();
263                                  /* check date on ambient file */
264          checkambfile();
265                                  /* run simulation */
# Line 253 | Line 281 | userr:
281  
282   static void
283   rootname(               /* remove tail from end of fn */
284 <        register char   *rn,
285 <        register char   *fn
284 >        char    *rn,
285 >        char    *fn
286   )
287   {
288          char    *tp, *dp;
# Line 271 | Line 299 | rootname(              /* remove tail from end of fn */
299  
300   static time_t
301   checklast(                      /* check files and find most recent */
302 <        register char   *fnames
302 >        char    *fnames
303   )
304   {
305          char    thisfile[PATH_MAX];
# Line 301 | Line 329 | newfname(              /* create modified file name */
329          int     pred
330   )
331   {
332 <        register char   *cp;
333 <        register int    n;
332 >        char    *cp;
333 >        int     n;
334          int     suffix;
335  
336          n = 0; cp = orig; suffix = -1;          /* suffix position, length */
# Line 324 | Line 352 | newfname(              /* create modified file name */
352   static void
353   checkfiles(void)                        /* check for existence and modified times */
354   {
355 +        char    fntemp[256];
356          time_t  objdate;
357  
358          if (!vdef(OCTREE)) {
# Line 353 | Line 382 | checkfiles(void)                       /* check for existence and modified
382                                  vnam(OCTREE), vnam(SCENE), vnam(ILLUM));
383                  quit(1);
384          }
385 +        if (vdef(PGMAP)) {
386 +                if (!*sskip2(vval(PGMAP),1)) {
387 +                        fprintf(stderr, "%s: '%s' missing # photons argument\n",
388 +                                        progname, vnam(PGMAP));
389 +                        quit(1);
390 +                }
391 +                atos(fntemp, sizeof(fntemp), vval(PGMAP));
392 +                pgmapname = savqstr(fntemp);
393 +                pgmapdate = fdate(pgmapname);
394 +        }
395 +        if (vdef(PCMAP)) {
396 +                if (!*sskip2(vval(PCMAP),1)) {
397 +                        fprintf(stderr, "%s: '%s' missing # photons argument\n",
398 +                                        progname, vnam(PCMAP));
399 +                        quit(1);
400 +                }
401 +                atos(fntemp, sizeof(fntemp), vval(PCMAP));
402 +                pcmapname = savqstr(fntemp);
403 +                pcmapdate = fdate(pcmapname);
404 +        }
405          matdate = checklast(vval(MATERIAL));
406   }      
407  
# Line 367 | Line 416 | getoctcube(            /* get octree bounding cube */
416          double  min[3], max[3];
417          char    buf[1024];
418          FILE    *fp;
419 <        register int    i;
419 >        int     i;
420  
421          if (osiz <= FTINY) {
422                  if (!nprocs && fdate(oct1name) <
# Line 480 | Line 529 | oconv(void)                            /* run oconv and mkillum if necessary *
529                          touch(vval(OCTREE));
530                  else {                          /* build command */
531                          if (vdef(MATERIAL))
532 <                                sprintf(combuf, "oconv%s %s %s > %s", ocopts,
533 <                                                vval(MATERIAL), vval(SCENE),
534 <                                                vval(OCTREE));
532 >                                sprintf(combuf, "%s%s %s %s > %s", c_oconv,
533 >                                                ocopts, vval(MATERIAL),
534 >                                                vval(SCENE), vval(OCTREE));
535                          else
536 <                                sprintf(combuf, "oconv%s %s > %s", ocopts,
536 >                                sprintf(combuf, "%s%s %s > %s", c_oconv, ocopts,
537                                                  vval(SCENE), vval(OCTREE));
538                          
539                          if (runcom(combuf)) {           /* run it */
# Line 510 | Line 559 | oconv(void)                            /* run oconv and mkillum if necessary *
559                          touch(oct0name);
560                  else {                          /* build command */
561                          if (octreedate)
562 <                                sprintf(combuf, "oconv%s -i %s %s > %s", ocopts,
563 <                                        vval(OCTREE), vval(ILLUM), oct0name);
562 >                                sprintf(combuf, "%s%s -i %s %s > %s", c_oconv,
563 >                                        ocopts, vval(OCTREE),
564 >                                        vval(ILLUM), oct0name);
565                          else if (vdef(MATERIAL))
566 <                                sprintf(combuf, "oconv%s %s %s > %s", ocopts,
567 <                                        vval(MATERIAL), vval(ILLUM), oct0name);
518 <                        else
519 <                                sprintf(combuf, "oconv%s %s > %s", ocopts,
566 >                                sprintf(combuf, "%s%s %s %s > %s", c_oconv,
567 >                                        ocopts, vval(MATERIAL),
568                                          vval(ILLUM), oct0name);
569 +                        else
570 +                                sprintf(combuf, "%s%s %s > %s", c_oconv,
571 +                                        ocopts, vval(ILLUM), oct0name);
572                          if (runcom(combuf)) {           /* run it */
573                                  fprintf(stderr,
574                                  "%s: error generating octree\n\t%s removed\n",
# Line 537 | Line 588 | oconv(void)                            /* run oconv and mkillum if necessary *
588          else {
589                  mkillumopts(mkopts);            /* build mkillum command */
590                  mktemp(illumtmp);
591 <                sprintf(combuf, "mkillum%s %s \"<\" %s > %s", mkopts,
591 >                sprintf(combuf, "%s%s %s \"<\" %s > %s", c_mkillum, mkopts,
592                                  oct0name, vval(ILLUM), illumtmp);
593                  if (runcom(combuf)) {                   /* run it */
594 <                        fprintf(stderr, "%s: error running mkillum\n",
595 <                                        progname);
594 >                        fprintf(stderr, "%s: error running %s\n",
595 >                                        progname, c_mkillum);
596                          unlink(illumtmp);
597                          quit(1);
598                  }
599 +                rmfile(oct0name);
600                                                  /* make octree1 (frozen) */
601                  if (octreedate)
602 <                        sprintf(combuf, "oconv%s -f -i %s %s > %s", ocopts,
603 <                                vval(OCTREE), illumtmp, oct1name);
602 >                        sprintf(combuf, "%s%s -f -i %s %s > %s", c_oconv,
603 >                                ocopts, vval(OCTREE), illumtmp, oct1name);
604                  else if (vdef(MATERIAL))
605 <                        sprintf(combuf, "oconv%s -f %s %s > %s", ocopts,
606 <                                vval(MATERIAL), illumtmp, oct1name);
605 >                        sprintf(combuf, "%s%s -f %s %s > %s", c_oconv,
606 >                                ocopts, vval(MATERIAL), illumtmp, oct1name);
607                  else
608 <                        sprintf(combuf, "oconv%s -f %s > %s", ocopts,
608 >                        sprintf(combuf, "%s%s -f %s > %s", c_oconv, ocopts,
609                                  illumtmp, oct1name);
610                  if (runcom(combuf)) {           /* run it */
611                          fprintf(stderr,
# Line 571 | Line 623 | oconv(void)                            /* run oconv and mkillum if necessary *
623   }
624  
625  
626 + static void
627 + mkpmap(void)                    /* run mkpmap if indicated */
628 + {
629 +        char    combuf[2048], *cp;
630 +        time_t  tnow;
631 +                                /* nothing to do? */
632 +        if ((pgmapname == NULL) | (pgmapdate >= oct1date) &&
633 +                        (pcmapname == NULL) | (pcmapdate >= oct1date))
634 +                return;
635 +                                /* just update existing file dates? */
636 +        if (touchonly && (pgmapname == NULL) | (pgmapdate > 0) &&
637 +                        (pcmapname == NULL) | (pcmapdate > 0)) {
638 +                if (pgmapname != NULL)
639 +                        touch(pgmapname);
640 +                if (pcmapname != NULL)
641 +                        touch(pcmapname);
642 +        } else {                /* else need to (re)run pkpmap */
643 +                strcpy(combuf, c_mkpmap);
644 +                for (cp = combuf; *cp; cp++)
645 +                        ;
646 +                mkpmapopts(cp);
647 +                if (vdef(REPORT)) {
648 +                        char    errfile[256];
649 +                        int     n;
650 +                        double  minutes;
651 +                        n = sscanf(vval(REPORT), "%lf %s", &minutes, errfile);
652 +                        if (n == 2)
653 +                                sprintf(cp, " -t %d -e %s", (int)(minutes*60), errfile);
654 +                        else if (n == 1)
655 +                                sprintf(cp, " -t %d", (int)(minutes*60));
656 +                        else
657 +                                badvalue(REPORT);
658 +                }
659 +                if (pgmapname != NULL && pgmapdate < oct1date) {
660 +                        if (pgmapdate)
661 +                                rmfile(pgmapname);
662 +                        cp = addarg(cp, "-apg");
663 +                        addarg(cp, vval(PGMAP));
664 +                        cp = sskip(sskip(cp));  /* remove any bandwidth */
665 +                        *cp = '\0';
666 +                }
667 +                if (pcmapname != NULL && pcmapdate < oct1date) {
668 +                        if (pcmapdate)
669 +                                rmfile(pcmapname);
670 +                        cp = addarg(cp, "-apc");
671 +                        addarg(cp, vval(PCMAP));
672 +                        cp = sskip(sskip(cp));  /* remove any bandwidth */
673 +                        *cp = '\0';
674 +                }
675 +                cp = addarg(cp, oct1name);
676 +                if (runcom(combuf)) {
677 +                        fprintf(stderr, "%s: error running %s\n",
678 +                                        progname, c_mkpmap);
679 +                        if (pgmapname != NULL && pgmapdate < oct1date)
680 +                                unlink(pgmapname);
681 +                        if (pcmapname != NULL && pcmapdate < oct1date)
682 +                                unlink(pcmapname);
683 +                        quit(1);
684 +                }
685 +        }
686 +        tnow = time((time_t *)NULL);
687 +        if (pgmapname != NULL)
688 +                pgmapdate = tnow;
689 +        if (pcmapname != NULL)
690 +                pcmapdate = tnow;
691 +        oct1date = tnow;        /* trigger ambient file removal if needed */
692 + }
693 +
694 +
695   static char *
696 < addarg(                         /* add argument and advance pointer */
697 < register char   *op,
698 < register char   *arg
696 > addarg(                         /* append argument and advance pointer */
697 > char    *op,
698 > char    *arg
699   )
700   {
701 +        while (*op)
702 +                op++;
703          *op = ' ';
704          while ( (*++op = *arg++) )
705                  ;
# Line 586 | Line 709 | register char  *arg
709  
710   static void
711   oconvopts(                              /* get oconv options */
712 <        register char   *oo
712 >        char    *oo
713   )
714   {
715          /* BEWARE:  This may be called via setdefaults(), so no assumptions */
716  
717          *oo = '\0';
718 <        if (vdef(OCONV))
719 <                addarg(oo, vval(OCONV));
718 >        if (!vdef(OCONV))
719 >                return;
720 >        if (vval(OCONV)[0] != '-') {
721 >                atos(c_oconv, sizeof(c_oconv), vval(OCONV));
722 >                oo = addarg(oo, sskip2(vval(OCONV), 1));
723 >        } else
724 >                oo = addarg(oo, vval(OCONV));
725   }
726  
727  
# Line 604 | Line 732 | mkillumopts(                           /* get mkillum options */
732   {
733          /* BEWARE:  This may be called via setdefaults(), so no assumptions */
734  
735 <        if (nprocs > 1) {
735 >        if (nprocs > 1)
736                  sprintf(mo, " -n %d", nprocs);
737 <                while (*mo)
610 <                        mo++;
611 <        } else
737 >        else
738                  *mo = '\0';
739 <        if (vdef(MKILLUM))
740 <                addarg(mo, vval(MKILLUM));
739 >        if (!vdef(MKILLUM))
740 >                return;
741 >        if (vval(MKILLUM)[0] != '-') {
742 >                atos(c_mkillum, sizeof(c_mkillum), vval(MKILLUM));
743 >                mo = addarg(mo, sskip2(vval(MKILLUM), 1));
744 >        } else
745 >                mo = addarg(mo, vval(MKILLUM));
746   }
747  
748  
749   static void
750 + mkpmapopts(                             /* get mkpmap options */
751 +        char    *mo
752 + )
753 + {
754 +        /* BEWARE:  This may be called via setdefaults(), so no assumptions */
755 +
756 +        *mo = '\0';
757 +        if (!vdef(MKPMAP))
758 +                return;
759 +        if (vval(MKPMAP)[0] != '-') {
760 +                atos(c_mkpmap, sizeof(c_mkpmap), vval(MKPMAP));
761 +                mo = addarg(mo, sskip2(vval(MKPMAP), 1));
762 +        } else
763 +                mo = addarg(mo, vval(MKPMAP));
764 + }
765 +
766 +
767 + static void
768   checkambfile(void)                      /* check date on ambient file */
769   {
770          time_t  afdate;
# Line 656 | Line 805 | renderopts(                    /* set rendering options */
805          char    *po
806   )
807   {
808 +        char    pmapf[256], *bw;
809 +
810          switch(vscale(QUALITY)) {
811          case LOW:
812                  lowqopts(op, po);
# Line 667 | Line 818 | renderopts(                    /* set rendering options */
818                  hiqopts(op, po);
819                  break;
820          }
821 +        if (vdef(PGMAP)) {
822 +                bw = sskip2(vval(PGMAP), 2);
823 +                atos(pmapf, sizeof(pmapf), vval(PGMAP));
824 +                op = addarg(addarg(op, "-ap"), pmapf);
825 +                if (atoi(bw) > 0) op = addarg(op, bw);
826 +        }
827 +        if (vdef(PCMAP)) {
828 +                bw = sskip2(vval(PCMAP), 2);
829 +                atos(pmapf, sizeof(pmapf), vval(PCMAP));
830 +                op = addarg(addarg(op, "-ap"), pmapf);
831 +                if (atoi(bw) > 0) op = addarg(op, bw);
832 +        }
833 +        if (vdef(RENDER))
834 +                op = addarg(op, vval(RENDER));
835 +        if (rvdevice != NULL) {
836 +                if (vdef(RVU))
837 +                        if (vval(RVU)[0] != '-') {
838 +                                atos(c_rvu, sizeof(c_rvu), vval(RVU));
839 +                                po = addarg(po, sskip2(vval(RVU), 1));
840 +                        } else
841 +                                po = addarg(po, vval(RVU));
842 +        } else {
843 +                if (vdef(RPICT))
844 +                        if (vval(RPICT)[0] != '-') {
845 +                                atos(c_rpict, sizeof(c_rpict), vval(RPICT));
846 +                                po = addarg(po, sskip2(vval(RPICT), 1));
847 +                        } else
848 +                                po = addarg(po, vval(RPICT));
849 +        }
850   }
851  
852  
853   static void
854   lowqopts(                       /* low quality rendering options */
855 <        register char   *op,
855 >        char    *op,
856          char    *po
857   )
858   {
# Line 713 | Line 893 | lowqopts(                      /* low quality rendering options */
893                  op = addarg(op, "-ds .4");
894          else
895                  op = addarg(op, "-ds 0");
896 <        op = addarg(op, "-dt .2 -dc .25 -dr 0 -sj 0 -st .5");
896 >        op = addarg(op, "-dt .2 -dc .25 -dr 0 -ss 0 -st .5");
897          if (vdef(AMBFILE)) {
898                  sprintf(op, " -af %s", vval(AMBFILE));
899                  op += strlen(op);
# Line 734 | Line 914 | lowqopts(                      /* low quality rendering options */
914          d = ambval();
915          sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
916          op += strlen(op);
917 <        op = addarg(op, "-lr 6 -lw .01");
738 <        if (vdef(RENDER))
739 <                op = addarg(op, vval(RENDER));
917 >        op = addarg(op, "-lr 6 -lw .003");
918   }
919  
920  
921   static void
922   medqopts(                       /* medium quality rendering options */
923 <        register char   *op,
923 >        char    *op,
924          char    *po
925   )
926   {
# Line 787 | Line 965 | medqopts(                      /* medium quality rendering options */
965          }
966          po = addarg(po, "-pt .08");
967          if (vbool(PENUMBRAS))
968 <                op = addarg(op, "-ds .2 -dj .5");
968 >                op = addarg(op, "-ds .2 -dj .9");
969          else
970                  op = addarg(op, "-ds .3");
971 <        op = addarg(op, "-dt .1 -dc .5 -dr 1 -sj .7 -st .1");
971 >        op = addarg(op, "-dt .1 -dc .5 -dr 1 -ss 1 -st .1");
972          if ( (overture = vint(INDIRECT)) ) {
973                  sprintf(op, " -ab %d", overture);
974                  op += strlen(op);
# Line 814 | Line 992 | medqopts(                      /* medium quality rendering options */
992          d = ambval();
993          sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
994          op += strlen(op);
995 <        op = addarg(op, "-lr 8 -lw .002");
818 <        if (vdef(RENDER))
819 <                op = addarg(op, vval(RENDER));
995 >        op = addarg(op, "-lr 8 -lw 1e-4");
996   }
997  
998  
999   static void
1000   hiqopts(                                /* high quality rendering options */
1001 <        register char   *op,
1001 >        char    *op,
1002          char    *po
1003   )
1004   {
# Line 867 | Line 1043 | hiqopts(                               /* high quality rendering options */
1043          }
1044          po = addarg(po, "-pt .04");
1045          if (vbool(PENUMBRAS))
1046 <                op = addarg(op, "-ds .1 -dj .65");
1046 >                op = addarg(op, "-ds .1 -dj .9");
1047          else
1048                  op = addarg(op, "-ds .2");
1049 <        op = addarg(op, "-dt .05 -dc .75 -dr 3 -sj 1 -st .01");
1049 >        op = addarg(op, "-dt .05 -dc .75 -dr 3 -ss 16 -st .01");
1050          sprintf(op, " -ab %d", overture=vint(INDIRECT)+1);
1051          op += strlen(op);
1052          if (vdef(AMBFILE)) {
# Line 892 | Line 1068 | hiqopts(                               /* high quality rendering options */
1068          d = ambval();
1069          sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
1070          op += strlen(op);
1071 <        op = addarg(op, "-lr 12 -lw .0005");
896 <        if (vdef(RENDER))
897 <                op = addarg(op, vval(RENDER));
1071 >        op = addarg(op, "-lr 12 -lw 1e-5");
1072   }
1073  
1074  
1075 + #ifdef _WIN32
1076   static void
1077 + setenv(                 /* set an environment variable */
1078 +        char    *vname,
1079 +        char    *value
1080 + )
1081 + {
1082 +        char    *evp;
1083 +
1084 +        evp = bmalloc(strlen(vname)+strlen(value)+2);
1085 +        if (evp == NULL)
1086 +                syserr(progname);
1087 +        sprintf(evp, "%s=%s", vname, value);
1088 +        if (putenv(evp) != 0) {
1089 +                fprintf(stderr, "%s: out of environment space\n", progname);
1090 +                quit(1);
1091 +        }
1092 +        if (!silent)
1093 +                printf("set %s\n", evp);
1094 + }
1095 + #endif
1096 +
1097 +
1098 + static void
1099   xferopts(                               /* transfer options if indicated */
1100          char    *ro
1101   )
1102   {
1103          int     fd, n;
1104 <        register char   *cp;
1104 >        char    *cp;
1105          
1106          n = strlen(ro);
1107          if (n < 2)
# Line 933 | Line 1130 | xferopts(                              /* transfer options if indicated */
1130  
1131   static void
1132   pfiltopts(                              /* get pfilt options */
1133 <        register char   *po
1133 >        char    *po
1134   )
1135   {
1136          *po = '\0';
# Line 950 | Line 1147 | pfiltopts(                             /* get pfilt options */
1147                  break;
1148          }
1149          if (vdef(PFILT))
1150 <                po = addarg(po, vval(PFILT));
1150 >                if (vval(PFILT)[0] != '-') {
1151 >                        atos(c_pfilt, sizeof(c_pfilt), vval(PFILT));
1152 >                        po = addarg(po, sskip2(vval(PFILT), 1));
1153 >                } else
1154 >                        po = addarg(po, vval(PFILT));
1155   }
1156  
1157  
1158   static int
1159   matchword(                      /* match white-delimited words */
1160 <        register char   *s1,
1161 <        register char   *s2
1160 >        char    *s1,
1161 >        char    *s2
1162   )
1163   {
1164          while (isspace(*s1)) s1++;
# Line 971 | Line 1172 | matchword(                     /* match white-delimited words */
1172  
1173   static char *
1174   specview(                               /* get proper view spec from vs */
1175 <        register char   *vs
1175 >        char    *vs
1176   )
1177   {
1178          static char     vup[7][12] = {"-vu 0 0 -1","-vu 0 -1 0","-vu -1 0 0",
1179                          "-vu 0 0 1", "-vu 1 0 0","-vu 0 1 0","-vu 0 0 1"};
1180          static char     viewopts[128];
1181 <        register char   *cp;
1181 >        char    *cp;
1182          int     xpos, ypos, zpos, viewtype, upax;
1183 <        register int    i;
1183 >        int     i;
1184          double  cent[3], dim[3], mult, d;
1185  
1186          if (vs == NULL || *vs == '-')
# Line 1012 | Line 1213 | specview(                              /* get proper view spec from vs */
1213          } else if (*vs == 'z') {
1214                  zpos = -1; vs++;
1215          }
1216 <        viewtype = 'v';
1217 <        if((*vs == 'v') | (*vs == 'l') | (*vs == 'a') | (*vs == 'h') | (*vs == 'c'))
1216 >        switch (*vs) {
1217 >        case VT_PER:
1218 >        case VT_PAR:
1219 >        case VT_ANG:
1220 >        case VT_HEM:
1221 >        case VT_PLS:
1222 >        case VT_CYL:
1223                  viewtype = *vs++;
1224 +                break;
1225 +        default:
1226 +                viewtype = VT_PER;
1227 +                break;
1228 +        }
1229          cp = viewopts;
1230          if ((!*vs || isspace(*vs)) && (xpos|ypos|zpos)) {       /* got one! */
1231                  *cp++ = '-'; *cp++ = 'v'; *cp++ = 't'; *cp++ = viewtype;
# Line 1029 | Line 1240 | specview(                              /* get proper view spec from vs */
1240                          cent[i] += .5*dim[i];
1241                  }
1242                  mult = vlet(ZONE)=='E' ? 2. : .45 ;
1243 <                sprintf(cp, " -vp %.2g %.2g %.2g -vd %.2g %.2g %.2g",
1243 >                sprintf(cp, " -vp %.3g %.3g %.3g -vd %.3g %.3g %.3g",
1244                                  cent[0]+xpos*mult*dim[0],
1245                                  cent[1]+ypos*mult*dim[1],
1246                                  cent[2]+zpos*mult*dim[2],
# Line 1056 | Line 1267 | specview(                              /* get proper view spec from vs */
1267                  }
1268                  cp = addarg(cp, vup[upax+3]);
1269                  switch (viewtype) {
1270 <                case 'v':
1270 >                case VT_PER:
1271                          cp = addarg(cp, "-vh 45 -vv 45");
1272                          break;
1273 <                case 'l':
1273 >                case VT_PAR:
1274                          d = sqrt(dim[0]*dim[0]+dim[1]*dim[1]+dim[2]*dim[2]);
1275 <                        sprintf(cp, " -vh %.2g -vv %.2g", d, d);
1275 >                        sprintf(cp, " -vh %.3g -vv %.3g", d, d);
1276                          cp += strlen(cp);
1277                          break;
1278 <                case 'a':
1279 <                case 'h':
1278 >                case VT_ANG:
1279 >                case VT_HEM:
1280 >                case VT_PLS:
1281                          cp = addarg(cp, "-vh 180 -vv 180");
1282                          break;
1283 <                case 'c':
1283 >                case VT_CYL:
1284                          cp = addarg(cp, "-vh 180 -vv 90");
1285                          break;
1286                  }
# Line 1076 | Line 1288 | specview(                              /* get proper view spec from vs */
1288                  while (!isspace(*vs))           /* else skip id */
1289                          if (!*vs++)
1290                                  return(NULL);
1291 <                if (upax) {                     /* specify up vector */
1291 >                if (upax) {                     /* prepend up vector */
1292                          strcpy(cp, vup[upax+3]);
1293                          cp += strlen(cp);
1294                  }
# Line 1100 | Line 1312 | getview(                               /* get view n, or NULL if none */
1312          char    *vn             /* returned view name */
1313   )
1314   {
1315 <        register char   *mv;
1315 >        char    *mv;
1316  
1317          if (viewselect != NULL) {               /* command-line selected */
1318                  if (n)                          /* only do one */
1319                          return(NULL);
1320 +                                        
1321 +                if (isint(viewselect)) {        /* view number? */
1322 +                        n = atoi(viewselect)-1;
1323 +                        goto numview;
1324 +                }
1325                  if (viewselect[0] == '-') {     /* already specified */
1326 <                        if (vn != NULL) *vn = '\0';
1326 >                        if (vn != NULL)
1327 >                                strcpy(vn, "0");
1328                          return(viewselect);
1329                  }
1330                  if (vn != NULL) {
# Line 1115 | Line 1333 | getview(                               /* get view n, or NULL if none */
1333                                  ;
1334                          *vn = '\0';
1335                  }
1118                                                /* view number? */
1119                if (isint(viewselect))
1120                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1336                                                  /* check list */
1337                  while ((mv = nvalue(VIEWS, n++)) != NULL)
1338                          if (matchword(viewselect, mv))
1339                                  return(specview(mv));
1340 +
1341                  return(specview(viewselect));   /* standard view? */
1342          }
1343 + numview:
1344          mv = nvalue(VIEWS, n);          /* use view n */
1345 <        if ((vn != NULL) & (mv != NULL)) {
1346 <                register char   *mv2 = mv;
1347 <                if (*mv2 != '-')
1345 >        if ((vn != NULL) & (mv != NULL))
1346 >                if (*mv != '-') {
1347 >                        char    *mv2 = mv;
1348                          while (*mv2 && !isspace(*mv2))
1349                                  *vn++ = *mv2++;
1350 <                *vn = '\0';
1351 <        }
1350 >                        *vn = '\0';
1351 >                } else
1352 >                        sprintf(vn, "%d", n+1);
1353 >
1354          return(specview(mv));
1355   }
1356  
1357  
1358   static int
1359   myprintview(                    /* print out selected view */
1360 <        register char   *vopts,
1360 >        char    *vopts,
1361          FILE    *fp
1362   )
1363   {
1364          VIEW    vwr;
1365          char    buf[128];
1366 <        register char   *cp;
1366 >        char    *cp;
1367   #ifdef _WIN32
1368   /* XXX Should we allow something like this for all platforms? */
1369   /* XXX Or is it still required at all? */
# Line 1185 | Line 1404 | rvu(                           /* run rvu with first view */
1404                  return;
1405          if (sayview)
1406                  myprintview(vw, stdout);
1407 <        sprintf(combuf, "rvu %s%s%s -R %s ", vw, po, opts, rifname);
1407 >        sprintf(combuf, "%s %s%s%s -R %s ", c_rvu, vw, opts, po, rifname);
1408 >        if (nprocs > 1)
1409 >                sprintf(combuf+strlen(combuf), "-n %d ", nprocs);
1410          if (rvdevice != NULL)
1411                  sprintf(combuf+strlen(combuf), "-o %s ", rvdevice);
1412          if (vdef(EXPOSURE))
1413                  sprintf(combuf+strlen(combuf), "-pe %s ", vval(EXPOSURE));
1414          strcat(combuf, oct1name);
1415          if (runcom(combuf)) {           /* run it */
1416 <                fprintf(stderr, "%s: error running rvu\n", progname);
1416 >                fprintf(stderr, "%s: error running %s\n", progname, c_rvu);
1417                  quit(1);
1418          }
1419   }
1420  
1421  
1422 + static int
1423 + syncf_done(                     /* check if an rpiece sync file is complete */
1424 +        char *sfname
1425 + )
1426 + {
1427 +        FILE    *fp = fopen(sfname, "r");
1428 +        int     todo = 1;
1429 +        int     x, y;
1430 +
1431 +        if (fp == NULL)
1432 +                return(0);
1433 +        if (fscanf(fp, "%d %d", &x, &y) != 2)
1434 +                goto checked;
1435 +        todo = x*y;             /* total number of tiles */
1436 +        if (fscanf(fp, "%d %d", &x, &y) != 2 || (x != 0) | (y != 0))
1437 +                goto checked;
1438 +                                /* XXX assume no redundant tiles */
1439 +        while (fscanf(fp, "%d %d", &x, &y) == 2)
1440 +                if (!--todo)
1441 +                        break;
1442 + checked:
1443 +        fclose(fp);
1444 +        return(!todo);
1445 + }
1446 +
1447 +
1448   static void
1449   rpict(                          /* run rpict and pfilt for each view */
1450          char    *opts,
1451          char    *po
1452   )
1453   {
1454 <        char    combuf[PATH_MAX];
1454 > #define do_rpiece       (sfile[0]!='\0')
1455 >        char    combuf[5*PATH_MAX+512];
1456          char    rawfile[PATH_MAX], picfile[PATH_MAX];
1457          char    zopt[PATH_MAX+4], rep[PATH_MAX+16], res[32];
1458 <        char    rppopt[128], *pfile = NULL;
1458 >        char    rppopt[32], sfile[PATH_MAX], *pfile = NULL;
1459          char    pfopts[128];
1460          char    vs[32], *vw;
1461          int     vn, mult;
1462          FILE    *fp;
1463          time_t  rfdt, pfdt;
1464 +        int     xres, yres;
1465 +        double  aspect;
1466 +        int     n;
1467                                          /* get pfilt options */
1468          pfiltopts(pfopts);
1469                                          /* get resolution, reporting */
# Line 1227 | Line 1478 | rpict(                         /* run rpict and pfilt for each view */
1478                  mult = 3;
1479                  break;
1480          }
1481 <        {
1482 <                int     xres, yres;
1483 <                double  aspect;
1484 <                int     n;
1485 <                n = sscanf(vval(RESOLUTION), "%d %d %lf", &xres, &yres, &aspect);
1486 <                if (n == 3)
1487 <                        sprintf(res, "-x %d -y %d -pa %.3f",
1488 <                                        mult*xres, mult*yres, aspect);
1489 <                else if (n) {
1490 <                        if (n == 1) yres = xres;
1240 <                        sprintf(res, "-x %d -y %d", mult*xres, mult*yres);
1241 <                } else
1242 <                        badvalue(RESOLUTION);
1243 <        }
1481 >        n = sscanf(vval(RESOLUTION), "%d %d %lf", &xres, &yres, &aspect);
1482 >        if (n == 3)
1483 >                sprintf(res, "-x %d -y %d -pa %.3f",
1484 >                                mult*xres, mult*yres, aspect);
1485 >        else if (n) {
1486 >                aspect = 1.;
1487 >                if (n == 1) yres = xres;
1488 >                sprintf(res, "-x %d -y %d", mult*xres, mult*yres);
1489 >        } else
1490 >                badvalue(RESOLUTION);
1491          rep[0] = '\0';
1492          if (vdef(REPORT)) {
1493                  double  minutes;
1247                int     n;
1494                  n = sscanf(vval(REPORT), "%lf %s", &minutes, rawfile);
1495                  if (n == 2)
1496                          sprintf(rep, " -t %d -e %s", (int)(minutes*60), rawfile);
# Line 1254 | Line 1500 | rpict(                         /* run rpict and pfilt for each view */
1500                          badvalue(REPORT);
1501          }
1502                                          /* set up parallel rendering */
1503 <        if ((nprocs > 1) & (!vdef(ZFILE))) {
1504 <                strcpy(rppopt, "-S 1 -PP pfXXXXXX");
1505 <                pfile = rppopt+9;
1506 <                if (mktemp(pfile) == NULL)
1503 >        sfile[0] = '\0';
1504 >        if ((nprocs > 1) & !touchonly & !vdef(ZFILE) &&
1505 >                                        getview(0, vs) != NULL) {
1506 >                if (!strcmp(c_rpict, DEF_RPICT_PATH) &&
1507 >                                getview(1, NULL) == NULL) {
1508 >                        sprintf(sfile, "%s_%s_rpsync.txt",
1509 >                                vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE),
1510 >                                        vs);
1511 >                        strcpy(rppopt, "-PP pfXXXXXX");
1512 >                } else {
1513 >                        strcpy(rppopt, "-S 1 -PP pfXXXXXX");
1514 >                }
1515 >                pfile = rppopt + strlen(rppopt) - 8;
1516 >                if (mktemp(pfile) == NULL) {
1517 >                        if (do_rpiece) {
1518 >                                fprintf(stderr, "%s: cannot create\n", pfile);
1519 >                                quit(1);
1520 >                        }
1521                          pfile = NULL;
1522 +                }
1523          }
1524          vn = 0;                                 /* do each view */
1525          while ((vw = getview(vn++, vs)) != NULL) {
1526                  if (sayview)
1527                          myprintview(vw, stdout);
1528 <                if (!vs[0])
1268 <                        sprintf(vs, "%d", vn);
1269 <                sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1528 >                sprintf(picfile, "%s_%s.hdr", vval(PICTURE), vs);
1529                  if (vdef(ZFILE))
1530                          sprintf(zopt, " -z %s_%s.zbf", vval(ZFILE), vs);
1531                  else
# Line 1287 | Line 1546 | rpict(                         /* run rpict and pfilt for each view */
1546                                  touch(picfile);
1547                          continue;
1548                  }
1549 <                if (next_process()) {           /* parallel running? */
1549 >                                                /* parallel running? */
1550 >                if (do_rpiece) {
1551 >                        if (rfdt < oct1date || !fdate(sfile)) {
1552 >                                int     xdiv = 8+nprocs/3, ydiv = 8+nprocs/3;
1553 >                                if (rfdt >= oct1date) {
1554 >                                        fprintf(stderr,
1555 >                "%s: partial output not created with %s\n", rawfile, c_rpiece);
1556 >                                        quit(1);
1557 >                                }
1558 >                                if (rfdt) {     /* start fresh */
1559 >                                        rmfile(rawfile);
1560 >                                        rfdt = 0;
1561 >                                }
1562 >                                if (!silent)
1563 >                                        printf("\techo %d %d > %s\n",
1564 >                                                        xdiv, ydiv, sfile);
1565 >                                if ((fp = fopen(sfile, "w")) == NULL) {
1566 >                                        fprintf(stderr, "%s: cannot create\n",
1567 >                                                        sfile);
1568 >                                        quit(1);
1569 >                                }
1570 >                                fprintf(fp, "%d %d\n", xdiv, ydiv);
1571 >                                fclose(fp);
1572 >                        }
1573 >                } else if (next_process(0)) {
1574                          if (pfile != NULL)
1575 <                                sleep(20);
1575 >                                sleep(10);
1576                          continue;
1577 <                }
1577 >                } else if (!inchild())
1578 >                        pfile = NULL;
1579                  /* XXX Remember to call finish_process() */
1580                                                  /* build rpict command */
1581 <                if (rfdt >= oct1date) {         /* recover */
1582 <                        sprintf(combuf, "rpict%s%s%s%s -ro %s %s",
1583 <                                rep, po, opts, zopt, rawfile, oct1name);
1584 <                        if (runcom(combuf))     /* run rpict */
1581 >                if (rfdt >= oct1date) {         /* already in progress */
1582 >                        if (do_rpiece) {
1583 >                                sprintf(combuf, "%s -R %s %s%s %s %s%s%s -o %s %s",
1584 >                                                c_rpiece, sfile, rppopt, rep, vw,
1585 >                                                res, opts, po, rawfile, oct1name);
1586 >                                while (next_process(1)) {
1587 >                                        sleep(10);
1588 >                                        combuf[strlen(c_rpiece)+2] = 'F';
1589 >                                }
1590 >                        } else
1591 >                                sprintf(combuf, "%s%s%s%s%s -ro %s %s", c_rpict,
1592 >                                        rep, opts, po, zopt, rawfile, oct1name);
1593 >                        if (runcom(combuf))     /* run rpict/rpiece */
1594                                  goto rperror;
1595                  } else {
1596                          if (overture) {         /* run overture calculation */
1597                                  sprintf(combuf,
1598 <                                "rpict%s %s%s -x 64 -y 64 -ps 1 %s > %s",
1599 <                                                rep, vw, opts,
1598 >                                        "%s%s %s%s -x 64 -y 64 -ps 1 %s > %s",
1599 >                                                c_rpict, rep, vw, opts,
1600                                                  oct1name, overfile);
1601 <                                if (runcom(combuf)) {
1602 <                                        fprintf(stderr,
1601 >                                if (!do_rpiece || !next_process(0)) {
1602 >                                        if (runcom(combuf)) {
1603 >                                                fprintf(stderr,
1604                                          "%s: error in overture for view %s\n",
1605 <                                                progname, vs);
1606 <                                        quit(1);
1607 <                                }
1605 >                                                        progname, vs);
1606 >                                                quit(1);
1607 >                                        }
1608   #ifndef NULL_DEVICE
1609 <                                rmfile(overfile);
1609 >                                        rmfile(overfile);
1610   #endif
1611 +                                } else if (do_rpiece)
1612 +                                        sleep(20);
1613                          }
1614 <                        sprintf(combuf, "rpict%s %s %s%s%s%s %s > %s",
1615 <                                        rep, vw, res, po, opts,
1616 <                                        zopt, oct1name, rawfile);
1617 <                        if (pfile != NULL && inchild()) {
1618 <                                                /* rpict persistent mode */
1619 <                                if (!silent) {
1614 >                        if (do_rpiece) {
1615 >                                sprintf(combuf, "%s -F %s %s%s %s %s%s%s -o %s %s",
1616 >                                                c_rpiece, sfile, rppopt, rep, vw,
1617 >                                                res, opts, po, rawfile, oct1name);
1618 >                                while (next_process(1))
1619 >                                        sleep(10);
1620 >                        } else {
1621 >                                sprintf(combuf, "%s%s %s %s%s%s%s %s > %s",
1622 >                                                c_rpict, rep, vw, res, opts, po,
1623 >                                                zopt, oct1name, rawfile);
1624 >                        }
1625 >                        if ((pfile != NULL) & !do_rpiece) {
1626 >                                if (!silent)
1627                                          printf("\t%s\n", combuf);
1325                                        fflush(stdout);
1326                                }
1327                                sprintf(combuf, "rpict%s %s %s%s%s %s > %s",
1328                                                rep, rppopt, res, po, opts,
1329                                                oct1name, rawfile);
1628                                  fflush(stdout);
1629 +                                sprintf(combuf, "%s%s %s %s%s%s %s > %s",
1630 +                                                c_rpict, rep, rppopt, res,
1631 +                                                opts, po, oct1name, rawfile);
1632                                  fp = popen(combuf, "w");
1633                                  if (fp == NULL)
1634                                          goto rperror;
1635                                  myprintview(vw, fp);
1636                                  if (pclose(fp))
1637                                          goto rperror;
1638 <                        } else {                /* rpict normal mode */
1639 <                                if (runcom(combuf))
1640 <                                        goto rperror;
1638 >                        } else if (runcom(combuf))
1639 >                                goto rperror;
1640 >                }
1641 >                if (do_rpiece) {                /* need to finish raw, first */
1642 >                        finish_process();
1643 >                        wait_process(1);
1644 >                        if (!syncf_done(sfile)) {
1645 >                                fprintf(stderr,
1646 >                        "%s: %s did not complete rendering of view %s\n",
1647 >                                                progname, c_rpiece, vs);
1648 >                                quit(1);
1649                          }
1650                  }
1651                  if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1652                                                  /* build pfilt command */
1653 <                        if (mult > 1)
1654 <                                sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1655 <                                        pfopts, mult, mult, rawfile, picfile);
1653 >                        if (do_rpiece)
1654 >                                sprintf(combuf,
1655 >                                        "%s%s -x %d -y %d -p %.3f %s > %s",
1656 >                                        c_pfilt, pfopts, xres, yres, aspect,
1657 >                                        rawfile, picfile);
1658 >                        else if (mult > 1)
1659 >                                sprintf(combuf, "%s%s -x /%d -y /%d %s > %s",
1660 >                                        c_pfilt, pfopts, mult, mult,
1661 >                                        rawfile, picfile);
1662                          else
1663 <                                sprintf(combuf, "pfilt%s %s > %s", pfopts,
1664 <                                                rawfile, picfile);
1663 >                                sprintf(combuf, "%s%s %s > %s", c_pfilt,
1664 >                                        pfopts, rawfile, picfile);
1665                          if (runcom(combuf)) {   /* run pfilt */
1666                                  fprintf(stderr,
1667                                  "%s: error filtering view %s\n\t%s removed\n",
# Line 1357 | Line 1672 | rpict(                         /* run rpict and pfilt for each view */
1672                  }
1673                                                  /* remove/rename raw file */
1674                  if (vdef(RAWFILE)) {
1675 <                        sprintf(combuf, "%s_%s.pic", vval(RAWFILE), vs);
1675 >                        sprintf(combuf, "%s_%s.hdr", vval(RAWFILE), vs);
1676                          mvfile(rawfile, combuf);
1677                  } else
1678                          rmfile(rawfile);
1679 <                finish_process();               /* exit if child */
1679 >                if (do_rpiece)                  /* done with sync file */
1680 >                        rmfile(sfile);
1681 >                else
1682 >                        finish_process();       /* exit if child */
1683          }
1684          wait_process(1);                /* wait for children to finish */
1685 <        if (pfile != NULL) {            /* clean up rpict persistent mode */
1685 >        if (pfile != NULL) {            /* clean up persistent rpict */
1686                  RT_PID  pid;
1687                  fp = fopen(pfile, "r");
1688                  if (fp != NULL) {
# Line 1378 | Line 1696 | rpict(                         /* run rpict and pfilt for each view */
1696   rperror:
1697          fprintf(stderr, "%s: error rendering view %s\n", progname, vs);
1698          quit(1);
1699 + #undef do_rpiece
1700   }
1701  
1702  
# Line 1390 | Line 1709 | touch(                 /* update a file */
1709                  printf("\ttouch %s\n", fn);
1710          if (!nprocs)
1711                  return(0);
1393 #ifdef notused
1394        if (access(fn, F_OK) == -1)             /* create it */
1395                if (close(open(fn, O_WRONLY|O_CREAT, 0666)) == -1)
1396                        return(-1);
1397 #endif
1712          return(setfdate(fn, time((time_t *)NULL)));
1713   }
1714  
# Line 1408 | Line 1722 | runcom(                        /* run command */
1722                  printf("\t%s\n", cs);
1723          if (!nprocs)
1724                  return(0);
1725 <        fflush(stdout);         /* flush output and pass to shell */
1725 >        fflush(NULL);           /* flush output and pass to shell */
1726          return(system(cs));
1727   }
1728  
# Line 1442 | Line 1756 | mvfile(                /* move a file */
1756  
1757   #ifdef RHAS_FORK_EXEC
1758   static int
1759 < next_process(void)                      /* fork the next process (max. nprocs) */
1759 > next_process(int reserve)               /* fork the next process */
1760   {
1761          RT_PID  child_pid;
1762  
# Line 1453 | Line 1767 | next_process(void)                     /* fork the next process (max. np
1767                                  progname);
1768                  quit(1);
1769          }
1770 +        if (reserve > 0 && children_running >= nprocs-reserve)
1771 +                return(0);              /* caller holding back process(es) */
1772          if (children_running >= nprocs)
1773                  wait_process(0);        /* wait for someone to finish */
1774 <        fflush(stdout);
1774 >        fflush(NULL);                   /* flush output */
1775          child_pid = fork();             /* split process */
1776          if (child_pid == 0) {           /* we're the child */
1777                  children_running = -1;
1778 +                nprocs = 1;
1779                  return(0);
1780          }
1781          if (child_pid > 0) {            /* we're the parent */
# Line 1474 | Line 1791 | wait_process(                  /* wait for process(es) to finish */
1791          int     all
1792   )
1793   {
1794 <        int     ourstatus = 0;
1795 <        RT_PID  pid, status;
1794 >        int     ourstatus = 0, status;
1795 >        RT_PID  pid;
1796  
1797          if (all)
1798                  all = children_running;
# Line 1500 | Line 1817 | wait_process(                  /* wait for process(es) to finish */
1817   }
1818   #else   /* ! RHAS_FORK_EXEC */
1819   static int
1820 < next_process(void)
1820 > next_process(int reserve)
1821   {
1822          return(0);                      /* cannot start new process */
1823   }
# Line 1512 | Line 1829 | int    all;
1829   }
1830   int
1831   kill(pid, sig) /* win|unix_process.c should also wait and kill */
1832 < RT_PID pid, sig;
1832 > RT_PID pid;
1833 > int sig;
1834   {
1835          return 0;
1836   }
# Line 1525 | Line 1843 | finish_process(void)                   /* exit a child process */
1843                  return;                 /* in parent -- noop */
1844          exit(0);
1845   }
1528
1529 #ifdef _WIN32
1530 setenv(vname, value)            /* set an environment variable */
1531 char    *vname, *value;
1532 {
1533        register char   *evp;
1534
1535        evp = bmalloc(strlen(vname)+strlen(value)+2);
1536        if (evp == NULL)
1537                syserr(progname);
1538        sprintf(evp, "%s=%s", vname, value);
1539        if (putenv(evp) != 0) {
1540                fprintf(stderr, "%s: out of environment space\n", progname);
1541                quit(1);
1542        }
1543        if (!silent)
1544                printf("set %s\n", evp);
1545 }
1546 #endif
1846  
1847  
1848   static void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines