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.128 by greg, Thu Jan 21 21:36:28 2021 UTC

# Line 9 | Line 9 | static const char      RCSid[] = "$Id$";
9  
10   #include <ctype.h>
11   #include <time.h>
12 + #include <signal.h>
13  
14   #include "platform.h"
15   #include "rtprocess.h"
# Line 16 | Line 17 | static const char      RCSid[] = "$Id$";
17   #include "paths.h"
18   #include "vars.h"
19  
20 < #ifdef _WIN32
20 > #if defined(_WIN32) || defined(_WIN64)
21    #define DELCMD "del"
22    #define RENAMECMD "rename"
23   #else
# Line 24 | Line 25 | static const char      RCSid[] = "$Id$";
25    #define RENAMECMD "mv"
26    #include <sys/types.h>
27    #include <sys/wait.h>
28 +  #include <signal.h>
29   #endif
30  
31                                  /* variables (alphabetical by name) */
# Line 35 | Line 37 | static const char      RCSid[] = "$Id$";
37   #define INDIRECT        5               /* indirection in lighting */
38   #define MATERIAL        6               /* material files */
39   #define MKILLUM         7               /* mkillum options */
40 < #define OBJECT          8               /* object files */
41 < #define OCONV           9               /* oconv options */
42 < #define OCTREE          10              /* octree file name */
43 < #define OPTFILE         11              /* rendering options file */
44 < #define PENUMBRAS       12              /* shadow penumbras are desired */
45 < #define PFILT           13              /* pfilt options */
46 < #define PICTURE         14              /* picture file root name */
47 < #define QUALITY         15              /* desired rendering quality */
48 < #define RAWFILE         16              /* raw picture file root name */
49 < #define RENDER          17              /* rendering options */
50 < #define REPORT          18              /* report frequency and errfile */
51 < #define RESOLUTION      19              /* maximum picture resolution */
52 < #define SCENE           20              /* scene files */
53 < #define UP              21              /* view up (X, Y or Z) */
54 < #define VARIABILITY     22              /* level of light variability */
55 < #define VIEWS           23              /* view(s) for picture(s) */
56 < #define ZFILE           24              /* distance file root name */
57 < #define ZONE            25              /* simulation zone */
40 > #define MKPMAP          8               /* mkpmap options */
41 > #define OBJECT          9               /* object files */
42 > #define OCONV           10              /* oconv options */
43 > #define OCTREE          11              /* octree file name */
44 > #define OPTFILE         12              /* rendering options file */
45 > #define PCMAP           13              /* caustic photon map */
46 > #define PENUMBRAS       14              /* shadow penumbras are desired */
47 > #define PFILT           15              /* pfilt options */
48 > #define PGMAP           16              /* global photon map */
49 > #define PICTURE         17              /* picture file root name */
50 > #define QUALITY         18              /* desired rendering quality */
51 > #define RAWFILE         19              /* raw picture file root name */
52 > #define RENDER          20              /* rendering options */
53 > #define REPORT          21              /* report frequency and errfile */
54 > #define RESOLUTION      22              /* maximum picture resolution */
55 > #define RPICT           23              /* rpict parameters */
56 > #define RVU             24              /* rvu parameters */
57 > #define SCENE           25              /* scene files */
58 > #define UP              26              /* view up (X, Y or Z) */
59 > #define VARIABILITY     27              /* level of light variability */
60 > #define VIEWS           28              /* view(s) for picture(s) */
61 > #define ZFILE           29              /* distance file root name */
62 > #define ZONE            30              /* simulation zone */
63                                  /* total number of variables */
64 < int NVARS = 26;
64 > int NVARS = 31;
65  
66   VARIABLE        vv[] = {                /* variable-value pairs */
67          {"AMBFILE",     3,      0,      NULL,   onevalue},
# Line 65 | Line 72 | VARIABLE       vv[] = {                /* variable-value pairs */
72          {"INDIRECT",    3,      0,      NULL,   intvalue},
73          {"materials",   3,      0,      NULL,   catvalues},
74          {"mkillum",     3,      0,      NULL,   catvalues},
75 +        {"mkpmap",      3,      0,      NULL,   catvalues},
76          {"objects",     3,      0,      NULL,   catvalues},
77          {"oconv",       3,      0,      NULL,   catvalues},
78          {"OCTREE",      3,      0,      NULL,   onevalue},
79          {"OPTFILE",     3,      0,      NULL,   onevalue},
80 +        {"PCMAP",       2,      0,      NULL,   onevalue},
81          {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
82          {"pfilt",       2,      0,      NULL,   catvalues},
83 +        {"PGMAP",       2,      0,      NULL,   onevalue},
84          {"PICTURE",     3,      0,      NULL,   onevalue},
85          {"QUALITY",     3,      0,      NULL,   qualvalue},
86          {"RAWFILE",     3,      0,      NULL,   onevalue},
87          {"render",      3,      0,      NULL,   catvalues},
88          {"REPORT",      3,      0,      NULL,   onevalue},
89          {"RESOLUTION",  3,      0,      NULL,   onevalue},
90 +        {"rpict",       3,      0,      NULL,   catvalues},
91 +        {"rvu",         3,      0,      NULL,   catvalues},
92          {"scene",       3,      0,      NULL,   catvalues},
93          {"UP",          2,      0,      NULL,   onevalue},
94          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
# Line 103 | Line 115 | time_t oct0date;               /* date of pre-mkillum octree */
115   char    *oct1name;              /* name of post-mkillum octree */
116   time_t  oct1date;               /* date of post-mkillum octree (>= matdate) */
117  
118 + char    *pgmapname;             /* name of global photon map */
119 + time_t  pgmapdate;              /* date of global photon map (>= oct1date) */
120 + char    *pcmapname;             /* name of caustic photon map */
121 + time_t  pcmapdate;              /* date of caustic photon map (>= oct1date) */
122 +
123   int     nowarn = 0;             /* no warnings */
124   int     explicate = 0;          /* explicate variables */
125   int     silent = 0;             /* do work silently */
# Line 112 | Line 129 | int    sayview = 0;            /* print view out */
129   char    *rvdevice = NULL;       /* rvu output device */
130   char    *viewselect = NULL;     /* specific view only */
131  
132 + #define DEF_RPICT_PATH  "rpict"         /* default rpict path */
133 +
134 +                                /* command paths */
135 + char    c_oconv[256] = "oconv";
136 + char    c_mkillum[256] = "mkillum";
137 + char    c_mkpmap[256] = "mkpmap";
138 + char    c_rvu[256] = "rvu";
139 + char    c_rpict[256] = DEF_RPICT_PATH;
140 + char    c_rpiece[] = "rpiece";
141 + char    c_pfilt[256] = "pfilt";
142 +
143   int     overture = 0;           /* overture calculation needed */
144  
145   int     children_running = 0;   /* set negative in children */
# Line 130 | Line 158 | static void checkfiles(void);
158   static void getoctcube(double   org[3], double  *sizp);
159   static void setdefaults(void);
160   static void oconv(void);
161 + static void mkpmap(void);
162   static char * addarg(char       *op, char       *arg);
163   static void oconvopts(char      *oo);
164   static void mkillumopts(char    *mo);
165 + static void mkpmapopts(char     *mo);
166   static void checkambfile(void);
167   static double ambval(void);
168   static void renderopts(char     *op, char       *po);
# Line 151 | Line 181 | static int touch(char  *fn);
181   static int runcom(char  *cs);
182   static int rmfile(char  *fn);
183   static int mvfile(char  *fold, char     *fnew);
184 < static int next_process(void);
184 > static int next_process(int     reserve);
185   static void wait_process(int    all);
186   static void finish_process(void);
187   static void badvalue(int        vc);
# Line 207 | Line 237 | main(
237          if (i >= argc)
238                  goto userr;
239          rifname = argv[i];
210                                /* check command-line options */
211        if ((nprocs > 1) & (viewselect != NULL))
212                nprocs = 1;
240                                  /* assign Radiance root file name */
241          rootname(radname, rifname);
242                                  /* load variable values */
# Line 232 | Line 259 | main(
259                  printvars(stdout);
260                                  /* build octree (and run mkillum) */
261          oconv();
262 +                                /* run mkpmap if indicated */
263 +        mkpmap();
264                                  /* check date on ambient file */
265          checkambfile();
266                                  /* run simulation */
# Line 253 | Line 282 | userr:
282  
283   static void
284   rootname(               /* remove tail from end of fn */
285 <        register char   *rn,
286 <        register char   *fn
285 >        char    *rn,
286 >        char    *fn
287   )
288   {
289          char    *tp, *dp;
# Line 271 | Line 300 | rootname(              /* remove tail from end of fn */
300  
301   static time_t
302   checklast(                      /* check files and find most recent */
303 <        register char   *fnames
303 >        char    *fnames
304   )
305   {
306          char    thisfile[PATH_MAX];
# Line 301 | Line 330 | newfname(              /* create modified file name */
330          int     pred
331   )
332   {
333 <        register char   *cp;
334 <        register int    n;
333 >        char    *cp;
334 >        int     n;
335          int     suffix;
336  
337          n = 0; cp = orig; suffix = -1;          /* suffix position, length */
# Line 324 | Line 353 | newfname(              /* create modified file name */
353   static void
354   checkfiles(void)                        /* check for existence and modified times */
355   {
356 +        char    fntemp[256];
357          time_t  objdate;
358  
359          if (!vdef(OCTREE)) {
# Line 353 | Line 383 | checkfiles(void)                       /* check for existence and modified
383                                  vnam(OCTREE), vnam(SCENE), vnam(ILLUM));
384                  quit(1);
385          }
386 +        if (vdef(PGMAP)) {
387 +                if (!*sskip2(vval(PGMAP),1)) {
388 +                        fprintf(stderr, "%s: '%s' missing # photons argument\n",
389 +                                        progname, vnam(PGMAP));
390 +                        quit(1);
391 +                }
392 +                atos(fntemp, sizeof(fntemp), vval(PGMAP));
393 +                pgmapname = savqstr(fntemp);
394 +                pgmapdate = fdate(pgmapname);
395 +        }
396 +        if (vdef(PCMAP)) {
397 +                if (!*sskip2(vval(PCMAP),1)) {
398 +                        fprintf(stderr, "%s: '%s' missing # photons argument\n",
399 +                                        progname, vnam(PCMAP));
400 +                        quit(1);
401 +                }
402 +                atos(fntemp, sizeof(fntemp), vval(PCMAP));
403 +                pcmapname = savqstr(fntemp);
404 +                pcmapdate = fdate(pcmapname);
405 +        }
406          matdate = checklast(vval(MATERIAL));
407   }      
408  
# Line 367 | Line 417 | getoctcube(            /* get octree bounding cube */
417          double  min[3], max[3];
418          char    buf[1024];
419          FILE    *fp;
420 <        register int    i;
420 >        int     i;
421  
422          if (osiz <= FTINY) {
423                  if (!nprocs && fdate(oct1name) <
# Line 480 | Line 530 | oconv(void)                            /* run oconv and mkillum if necessary *
530                          touch(vval(OCTREE));
531                  else {                          /* build command */
532                          if (vdef(MATERIAL))
533 <                                sprintf(combuf, "oconv%s %s %s > %s", ocopts,
534 <                                                vval(MATERIAL), vval(SCENE),
535 <                                                vval(OCTREE));
533 >                                sprintf(combuf, "%s%s %s %s > %s", c_oconv,
534 >                                                ocopts, vval(MATERIAL),
535 >                                                vval(SCENE), vval(OCTREE));
536                          else
537 <                                sprintf(combuf, "oconv%s %s > %s", ocopts,
537 >                                sprintf(combuf, "%s%s %s > %s", c_oconv, ocopts,
538                                                  vval(SCENE), vval(OCTREE));
539                          
540                          if (runcom(combuf)) {           /* run it */
# Line 506 | Line 556 | oconv(void)                            /* run oconv and mkillum if necessary *
556                  return;
557                                                  /* make octree0 */
558          if ((oct0date < scenedate) | (oct0date < illumdate)) {
559 <                if (touchonly && oct0date)
560 <                        touch(oct0name);
561 <                else {                          /* build command */
559 >                if (touchonly && (oct0date || oct1date)) {
560 >                        if (oct0date)
561 >                                touch(oct0name);
562 >                } else {                        /* build command */
563                          if (octreedate)
564 <                                sprintf(combuf, "oconv%s -i %s %s > %s", ocopts,
565 <                                        vval(OCTREE), vval(ILLUM), oct0name);
564 >                                sprintf(combuf, "%s%s -i %s %s > %s", c_oconv,
565 >                                        ocopts, vval(OCTREE),
566 >                                        vval(ILLUM), oct0name);
567                          else if (vdef(MATERIAL))
568 <                                sprintf(combuf, "oconv%s %s %s > %s", ocopts,
569 <                                        vval(MATERIAL), vval(ILLUM), oct0name);
518 <                        else
519 <                                sprintf(combuf, "oconv%s %s > %s", ocopts,
568 >                                sprintf(combuf, "%s%s %s %s > %s", c_oconv,
569 >                                        ocopts, vval(MATERIAL),
570                                          vval(ILLUM), oct0name);
571 +                        else
572 +                                sprintf(combuf, "%s%s %s > %s", c_oconv,
573 +                                        ocopts, vval(ILLUM), oct0name);
574                          if (runcom(combuf)) {           /* run it */
575                                  fprintf(stderr,
576                                  "%s: error generating octree\n\t%s removed\n",
# Line 531 | Line 584 | oconv(void)                            /* run oconv and mkillum if necessary *
584                          oct0date = octreedate;
585                  if (oct0date < illumdate)       /* ditto */
586                          oct0date = illumdate;
587 <                }
587 >        }
588          if (touchonly && oct1date)
589                  touch(oct1name);
590          else {
591                  mkillumopts(mkopts);            /* build mkillum command */
592                  mktemp(illumtmp);
593 <                sprintf(combuf, "mkillum%s %s \"<\" %s > %s", mkopts,
593 >                sprintf(combuf, "%s%s %s \"<\" %s > %s", c_mkillum, mkopts,
594                                  oct0name, vval(ILLUM), illumtmp);
595                  if (runcom(combuf)) {                   /* run it */
596 <                        fprintf(stderr, "%s: error running mkillum\n",
597 <                                        progname);
596 >                        fprintf(stderr, "%s: error running %s\n",
597 >                                        progname, c_mkillum);
598                          unlink(illumtmp);
599                          quit(1);
600                  }
601 +                rmfile(oct0name);
602                                                  /* make octree1 (frozen) */
603                  if (octreedate)
604 <                        sprintf(combuf, "oconv%s -f -i %s %s > %s", ocopts,
605 <                                vval(OCTREE), illumtmp, oct1name);
604 >                        sprintf(combuf, "%s%s -f -i %s %s > %s", c_oconv,
605 >                                ocopts, vval(OCTREE), illumtmp, oct1name);
606                  else if (vdef(MATERIAL))
607 <                        sprintf(combuf, "oconv%s -f %s %s > %s", ocopts,
608 <                                vval(MATERIAL), illumtmp, oct1name);
607 >                        sprintf(combuf, "%s%s -f %s %s > %s", c_oconv,
608 >                                ocopts, vval(MATERIAL), illumtmp, oct1name);
609                  else
610 <                        sprintf(combuf, "oconv%s -f %s > %s", ocopts,
610 >                        sprintf(combuf, "%s%s -f %s > %s", c_oconv, ocopts,
611                                  illumtmp, oct1name);
612                  if (runcom(combuf)) {           /* run it */
613                          fprintf(stderr,
# Line 571 | Line 625 | oconv(void)                            /* run oconv and mkillum if necessary *
625   }
626  
627  
628 + static void
629 + mkpmap(void)                    /* run mkpmap if indicated */
630 + {
631 +        char    combuf[2048], *cp;
632 +        time_t  tnow;
633 +                                /* nothing to do? */
634 +        if ((pgmapname == NULL) | (pgmapdate >= oct1date) &&
635 +                        (pcmapname == NULL) | (pcmapdate >= oct1date))
636 +                return;
637 +                                /* just update existing file dates? */
638 +        if (touchonly && (pgmapname == NULL) | (pgmapdate > 0) &&
639 +                        (pcmapname == NULL) | (pcmapdate > 0)) {
640 +                if (pgmapname != NULL)
641 +                        touch(pgmapname);
642 +                if (pcmapname != NULL)
643 +                        touch(pcmapname);
644 +        } else {                /* else need to (re)run pkpmap */
645 +                strcpy(combuf, c_mkpmap);
646 +                for (cp = combuf; *cp; cp++)
647 +                        ;
648 +                mkpmapopts(cp);
649 +                                /* force file overwrite */
650 +                cp = addarg(cp, "-fo+");
651 +                if (vdef(REPORT)) {
652 +                        char    errfile[256];
653 +                        int     n;
654 +                        double  minutes;
655 +                        n = sscanf(vval(REPORT), "%lf %s", &minutes, errfile);
656 +                        if (n == 2)
657 +                                sprintf(cp, " -t %d -e %s", (int)(minutes*60), errfile);
658 +                        else if (n == 1)
659 +                                sprintf(cp, " -t %d", (int)(minutes*60));
660 +                        else
661 +                                badvalue(REPORT);
662 +                }
663 +                if (pgmapname != NULL && pgmapdate < oct1date) {
664 +                        cp = addarg(cp, "-apg");
665 +                        addarg(cp, vval(PGMAP));
666 +                        cp = sskip(sskip(cp));  /* remove any bandwidth */
667 +                        *cp = '\0';
668 +                }
669 +                if (pcmapname != NULL && pcmapdate < oct1date) {
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)
738 <                        mo++;
737 >        else
738 >                *mo = '\0';
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 +        if (nprocs > 1)
757 +                sprintf(mo, " -n %d", nprocs);
758 +        else
759                  *mo = '\0';
760 <        if (vdef(MKILLUM))
761 <                addarg(mo, vval(MKILLUM));
760 >        if (!vdef(MKPMAP))
761 >                return;
762 >        if (vval(MKPMAP)[0] != '-') {
763 >                atos(c_mkpmap, sizeof(c_mkpmap), vval(MKPMAP));
764 >                mo = addarg(mo, sskip2(vval(MKPMAP), 1));
765 >        } else
766 >                mo = addarg(mo, vval(MKPMAP));
767   }
768  
769  
# Line 638 | Line 790 | ambval(void)                           /* compute ambient value */
790   {
791          if (vdef(EXPOSURE)) {
792                  if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
793 <                        return(.5/pow(2.,vflt(EXPOSURE)));
794 <                return(.5/vflt(EXPOSURE));
793 >                        return(.18/pow(2.,vflt(EXPOSURE)));
794 >                return(.18/vflt(EXPOSURE));
795          }
796          if (vlet(ZONE) == 'E')
797                  return(10.);
# Line 656 | Line 808 | renderopts(                    /* set rendering options */
808          char    *po
809   )
810   {
811 +        char    pmapf[256], *bw;
812 +
813 +        if (vdef(PGMAP)) {
814 +                *op = '\0';
815 +                bw = sskip2(vval(PGMAP), 2);
816 +                atos(pmapf, sizeof(pmapf), vval(PGMAP));
817 +                op = addarg(addarg(op, "-ap"), pmapf);
818 +                if (atoi(bw) > 0) op = addarg(op, bw);
819 +        }
820          switch(vscale(QUALITY)) {
821          case LOW:
822                  lowqopts(op, po);
# Line 667 | Line 828 | renderopts(                    /* set rendering options */
828                  hiqopts(op, po);
829                  break;
830          }
831 +        if (vdef(PCMAP)) {
832 +                bw = sskip2(vval(PCMAP), 2);
833 +                atos(pmapf, sizeof(pmapf), vval(PCMAP));
834 +                op = addarg(addarg(op, "-ap"), pmapf);
835 +                if (atoi(bw) > 0) op = addarg(op, bw);
836 +        }
837 +        if (vdef(RENDER)) {
838 +                op = addarg(op, vval(RENDER));
839 +                bw = strstr(vval(RENDER), "-aa ");
840 +                if (bw != NULL && atof(bw+4) <= FTINY)
841 +                        overture = 0;
842 +        }
843 +        if (rvdevice != NULL) {
844 +                if (vdef(RVU)) {
845 +                        if (vval(RVU)[0] != '-') {
846 +                                atos(c_rvu, sizeof(c_rvu), vval(RVU));
847 +                                po = addarg(po, sskip2(vval(RVU), 1));
848 +                        } else
849 +                                po = addarg(po, vval(RVU));
850 +                }
851 +        } else {
852 +                if (vdef(RPICT)) {
853 +                        if (vval(RPICT)[0] != '-') {
854 +                                atos(c_rpict, sizeof(c_rpict), vval(RPICT));
855 +                                po = addarg(po, sskip2(vval(RPICT), 1));
856 +                        } else
857 +                                po = addarg(po, vval(RPICT));
858 +                }
859 +        }
860   }
861  
862  
863   static void
864   lowqopts(                       /* low quality rendering options */
865 <        register char   *op,
865 >        char    *op,
866          char    *po
867   )
868   {
# Line 713 | Line 903 | lowqopts(                      /* low quality rendering options */
903                  op = addarg(op, "-ds .4");
904          else
905                  op = addarg(op, "-ds 0");
906 <        op = addarg(op, "-dt .2 -dc .25 -dr 0 -sj 0 -st .5");
906 >        op = addarg(op, "-dt .2 -dc .25 -dr 0 -ss 0 -st .5");
907          if (vdef(AMBFILE)) {
908                  sprintf(op, " -af %s", vval(AMBFILE));
909                  op += strlen(op);
# Line 734 | Line 924 | lowqopts(                      /* low quality rendering options */
924          d = ambval();
925          sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
926          op += strlen(op);
927 <        op = addarg(op, "-lr 6 -lw .01");
738 <        if (vdef(RENDER))
739 <                op = addarg(op, vval(RENDER));
927 >        op = addarg(op, "-lr 6 -lw .003");
928   }
929  
930  
931   static void
932   medqopts(                       /* medium quality rendering options */
933 <        register char   *op,
933 >        char    *op,
934          char    *po
935   )
936   {
# Line 787 | Line 975 | medqopts(                      /* medium quality rendering options */
975          }
976          po = addarg(po, "-pt .08");
977          if (vbool(PENUMBRAS))
978 <                op = addarg(op, "-ds .2 -dj .5");
978 >                op = addarg(op, "-ds .2 -dj .9");
979          else
980                  op = addarg(op, "-ds .3");
981 <        op = addarg(op, "-dt .1 -dc .5 -dr 1 -sj .7 -st .1");
981 >        op = addarg(op, "-dt .1 -dc .5 -dr 1 -ss 1 -st .1");
982          if ( (overture = vint(INDIRECT)) ) {
983                  sprintf(op, " -ab %d", overture);
984                  op += strlen(op);
# Line 814 | Line 1002 | medqopts(                      /* medium quality rendering options */
1002          d = ambval();
1003          sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
1004          op += strlen(op);
1005 <        op = addarg(op, "-lr 8 -lw .002");
818 <        if (vdef(RENDER))
819 <                op = addarg(op, vval(RENDER));
1005 >        op = addarg(op, "-lr 8 -lw 1e-4");
1006   }
1007  
1008  
1009   static void
1010   hiqopts(                                /* high quality rendering options */
1011 <        register char   *op,
1011 >        char    *op,
1012          char    *po
1013   )
1014   {
# Line 867 | Line 1053 | hiqopts(                               /* high quality rendering options */
1053          }
1054          po = addarg(po, "-pt .04");
1055          if (vbool(PENUMBRAS))
1056 <                op = addarg(op, "-ds .1 -dj .65");
1056 >                op = addarg(op, "-ds .1 -dj .9");
1057          else
1058                  op = addarg(op, "-ds .2");
1059 <        op = addarg(op, "-dt .05 -dc .75 -dr 3 -sj 1 -st .01");
1059 >        op = addarg(op, "-dt .05 -dc .75 -dr 3 -ss 16 -st .01");
1060          sprintf(op, " -ab %d", overture=vint(INDIRECT)+1);
1061          op += strlen(op);
1062          if (vdef(AMBFILE)) {
# Line 892 | Line 1078 | hiqopts(                               /* high quality rendering options */
1078          d = ambval();
1079          sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
1080          op += strlen(op);
1081 <        op = addarg(op, "-lr 12 -lw .0005");
896 <        if (vdef(RENDER))
897 <                op = addarg(op, vval(RENDER));
1081 >        op = addarg(op, "-lr 12 -lw 1e-5");
1082   }
1083  
1084  
1085 + #if defined(_WIN32) || defined(_WIN64)
1086   static void
1087 + setenv(                 /* set an environment variable */
1088 +        char    *vname,
1089 +        char    *value
1090 + )
1091 + {
1092 +        char    *evp;
1093 +
1094 +        evp = bmalloc(strlen(vname)+strlen(value)+2);
1095 +        if (evp == NULL)
1096 +                syserr(progname);
1097 +        sprintf(evp, "%s=%s", vname, value);
1098 +        if (putenv(evp) != 0) {
1099 +                fprintf(stderr, "%s: out of environment space\n", progname);
1100 +                quit(1);
1101 +        }
1102 +        if (!silent)
1103 +                printf("set %s\n", evp);
1104 + }
1105 + #endif
1106 +
1107 +
1108 + static void
1109   xferopts(                               /* transfer options if indicated */
1110          char    *ro
1111   )
1112   {
1113          int     fd, n;
1114 <        register char   *cp;
1114 >        char    *cp;
1115          
1116          n = strlen(ro);
1117          if (n < 2)
# Line 922 | Line 1129 | xferopts(                              /* transfer options if indicated */
1129                          syserr(vval(OPTFILE));
1130                  sprintf(ro, " @%s", vval(OPTFILE));
1131          }
1132 < #ifdef _WIN32
1132 > #if defined(_WIN32) || defined(_WIN64)
1133          else if (n > 50) {
1134                  setenv("ROPT", ro+1);
1135                  strcpy(ro, " $ROPT");
# Line 933 | Line 1140 | xferopts(                              /* transfer options if indicated */
1140  
1141   static void
1142   pfiltopts(                              /* get pfilt options */
1143 <        register char   *po
1143 >        char    *po
1144   )
1145   {
1146          *po = '\0';
# Line 949 | Line 1156 | pfiltopts(                             /* get pfilt options */
1156                  po = addarg(po, "-m .25");
1157                  break;
1158          }
1159 <        if (vdef(PFILT))
1160 <                po = addarg(po, vval(PFILT));
1159 >        if (vdef(PFILT)) {
1160 >                if (vval(PFILT)[0] != '-') {
1161 >                        atos(c_pfilt, sizeof(c_pfilt), vval(PFILT));
1162 >                        po = addarg(po, sskip2(vval(PFILT), 1));
1163 >                } else
1164 >                        po = addarg(po, vval(PFILT));
1165 >        }
1166   }
1167  
1168  
1169   static int
1170   matchword(                      /* match white-delimited words */
1171 <        register char   *s1,
1172 <        register char   *s2
1171 >        char    *s1,
1172 >        char    *s2
1173   )
1174   {
1175          while (isspace(*s1)) s1++;
# Line 971 | Line 1183 | matchword(                     /* match white-delimited words */
1183  
1184   static char *
1185   specview(                               /* get proper view spec from vs */
1186 <        register char   *vs
1186 >        char    *vs
1187   )
1188   {
1189          static char     vup[7][12] = {"-vu 0 0 -1","-vu 0 -1 0","-vu -1 0 0",
1190                          "-vu 0 0 1", "-vu 1 0 0","-vu 0 1 0","-vu 0 0 1"};
1191          static char     viewopts[128];
1192 <        register char   *cp;
1192 >        char    *cp;
1193          int     xpos, ypos, zpos, viewtype, upax;
1194 <        register int    i;
1194 >        int     i;
1195          double  cent[3], dim[3], mult, d;
1196  
1197          if (vs == NULL || *vs == '-')
# Line 1012 | Line 1224 | specview(                              /* get proper view spec from vs */
1224          } else if (*vs == 'z') {
1225                  zpos = -1; vs++;
1226          }
1227 <        viewtype = 'v';
1228 <        if((*vs == 'v') | (*vs == 'l') | (*vs == 'a') | (*vs == 'h') | (*vs == 'c'))
1227 >        switch (*vs) {
1228 >        case VT_PER:
1229 >        case VT_PAR:
1230 >        case VT_ANG:
1231 >        case VT_HEM:
1232 >        case VT_PLS:
1233 >        case VT_CYL:
1234                  viewtype = *vs++;
1235 +                break;
1236 +        default:
1237 +                viewtype = VT_PER;
1238 +                break;
1239 +        }
1240          cp = viewopts;
1241          if ((!*vs || isspace(*vs)) && (xpos|ypos|zpos)) {       /* got one! */
1242                  *cp++ = '-'; *cp++ = 'v'; *cp++ = 't'; *cp++ = viewtype;
# Line 1029 | Line 1251 | specview(                              /* get proper view spec from vs */
1251                          cent[i] += .5*dim[i];
1252                  }
1253                  mult = vlet(ZONE)=='E' ? 2. : .45 ;
1254 <                sprintf(cp, " -vp %.2g %.2g %.2g -vd %.2g %.2g %.2g",
1254 >                sprintf(cp, " -vp %.3g %.3g %.3g -vd %.3g %.3g %.3g",
1255                                  cent[0]+xpos*mult*dim[0],
1256                                  cent[1]+ypos*mult*dim[1],
1257                                  cent[2]+zpos*mult*dim[2],
# Line 1056 | Line 1278 | specview(                              /* get proper view spec from vs */
1278                  }
1279                  cp = addarg(cp, vup[upax+3]);
1280                  switch (viewtype) {
1281 <                case 'v':
1281 >                case VT_PER:
1282                          cp = addarg(cp, "-vh 45 -vv 45");
1283                          break;
1284 <                case 'l':
1284 >                case VT_PAR:
1285                          d = sqrt(dim[0]*dim[0]+dim[1]*dim[1]+dim[2]*dim[2]);
1286 <                        sprintf(cp, " -vh %.2g -vv %.2g", d, d);
1286 >                        sprintf(cp, " -vh %.3g -vv %.3g", d, d);
1287                          cp += strlen(cp);
1288                          break;
1289 <                case 'a':
1290 <                case 'h':
1289 >                case VT_ANG:
1290 >                case VT_HEM:
1291 >                case VT_PLS:
1292                          cp = addarg(cp, "-vh 180 -vv 180");
1293                          break;
1294 <                case 'c':
1294 >                case VT_CYL:
1295                          cp = addarg(cp, "-vh 180 -vv 90");
1296                          break;
1297                  }
# Line 1076 | Line 1299 | specview(                              /* get proper view spec from vs */
1299                  while (!isspace(*vs))           /* else skip id */
1300                          if (!*vs++)
1301                                  return(NULL);
1302 <                if (upax) {                     /* specify up vector */
1302 >                if (upax) {                     /* prepend up vector */
1303                          strcpy(cp, vup[upax+3]);
1304                          cp += strlen(cp);
1305                  }
# Line 1084 | Line 1307 | specview(                              /* get proper view spec from vs */
1307          if (cp == viewopts)             /* append any additional options */
1308                  vs++;           /* skip prefixed space if unneeded */
1309          strcpy(cp, vs);
1310 < #ifdef _WIN32
1310 > #if defined(_WIN32) || defined(_WIN64)
1311          if (strlen(viewopts) > 40) {
1312                  setenv("VIEW", viewopts);
1313                  return("$VIEW");
# Line 1100 | Line 1323 | getview(                               /* get view n, or NULL if none */
1323          char    *vn             /* returned view name */
1324   )
1325   {
1326 <        register char   *mv;
1326 >        char    *mv;
1327  
1328          if (viewselect != NULL) {               /* command-line selected */
1329                  if (n)                          /* only do one */
1330                          return(NULL);
1331 +                                        
1332 +                if (isint(viewselect)) {        /* view number? */
1333 +                        n = atoi(viewselect)-1;
1334 +                        goto numview;
1335 +                }
1336                  if (viewselect[0] == '-') {     /* already specified */
1337 <                        if (vn != NULL) *vn = '\0';
1337 >                        if (vn != NULL)
1338 >                                strcpy(vn, "0");
1339                          return(viewselect);
1340                  }
1341                  if (vn != NULL) {
# Line 1115 | Line 1344 | getview(                               /* get view n, or NULL if none */
1344                                  ;
1345                          *vn = '\0';
1346                  }
1118                                                /* view number? */
1119                if (isint(viewselect))
1120                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1347                                                  /* check list */
1348                  while ((mv = nvalue(VIEWS, n++)) != NULL)
1349                          if (matchword(viewselect, mv))
1350                                  return(specview(mv));
1351 +
1352                  return(specview(viewselect));   /* standard view? */
1353          }
1354 + numview:
1355          mv = nvalue(VIEWS, n);          /* use view n */
1356          if ((vn != NULL) & (mv != NULL)) {
1357 <                register char   *mv2 = mv;
1358 <                if (*mv2 != '-')
1357 >                if (*mv != '-') {
1358 >                        char    *mv2 = mv;
1359                          while (*mv2 && !isspace(*mv2))
1360                                  *vn++ = *mv2++;
1361 <                *vn = '\0';
1361 >                        *vn = '\0';
1362 >                } else
1363 >                        sprintf(vn, "%d", n+1);
1364          }
1365          return(specview(mv));
1366   }
# Line 1138 | Line 1368 | getview(                               /* get view n, or NULL if none */
1368  
1369   static int
1370   myprintview(                    /* print out selected view */
1371 <        register char   *vopts,
1371 >        char    *vopts,
1372          FILE    *fp
1373   )
1374   {
1375          VIEW    vwr;
1376          char    buf[128];
1377 <        register char   *cp;
1378 < #ifdef _WIN32
1377 >        char    *cp;
1378 > #if defined(_WIN32) || defined(_WIN64)
1379   /* XXX Should we allow something like this for all platforms? */
1380   /* XXX Or is it still required at all? */
1381   again:
1382   #endif
1383          if (vopts == NULL)
1384                  return(-1);
1385 < #ifdef _WIN32
1385 > #if defined(_WIN32) || defined(_WIN64)
1386          if (vopts[0] == '$') {
1387                  vopts = getenv(vopts+1);
1388                  goto again;
# Line 1185 | Line 1415 | rvu(                           /* run rvu with first view */
1415                  return;
1416          if (sayview)
1417                  myprintview(vw, stdout);
1418 <        sprintf(combuf, "rvu %s%s%s -R %s ", vw, po, opts, rifname);
1418 >        sprintf(combuf, "%s %s%s%s -R %s ", c_rvu, vw, opts, po, rifname);
1419 >        if (nprocs > 1)
1420 >                sprintf(combuf+strlen(combuf), "-n %d ", nprocs);
1421          if (rvdevice != NULL)
1422                  sprintf(combuf+strlen(combuf), "-o %s ", rvdevice);
1423          if (vdef(EXPOSURE))
1424                  sprintf(combuf+strlen(combuf), "-pe %s ", vval(EXPOSURE));
1425          strcat(combuf, oct1name);
1426          if (runcom(combuf)) {           /* run it */
1427 <                fprintf(stderr, "%s: error running rvu\n", progname);
1427 >                fprintf(stderr, "%s: error running %s\n", progname, c_rvu);
1428                  quit(1);
1429          }
1430   }
1431  
1432  
1433 + static int
1434 + syncf_done(                     /* check if an rpiece sync file is complete */
1435 +        char *sfname
1436 + )
1437 + {
1438 +        FILE    *fp = fopen(sfname, "r");
1439 +        int     todo = 1;
1440 +        int     x, y;
1441 +
1442 +        if (fp == NULL)
1443 +                return(0);
1444 +        if (fscanf(fp, "%d %d", &x, &y) != 2)
1445 +                goto checked;
1446 +        todo = x*y;             /* total number of tiles */
1447 +        if (fscanf(fp, "%d %d", &x, &y) != 2 || (x != 0) | (y != 0))
1448 +                goto checked;
1449 +                                /* XXX assume no redundant tiles */
1450 +        while (fscanf(fp, "%d %d", &x, &y) == 2)
1451 +                if (!--todo)
1452 +                        break;
1453 + checked:
1454 +        fclose(fp);
1455 +        return(!todo);
1456 + }
1457 +
1458 +
1459   static void
1460   rpict(                          /* run rpict and pfilt for each view */
1461          char    *opts,
1462          char    *po
1463   )
1464   {
1465 <        char    combuf[PATH_MAX];
1465 > #define do_rpiece       (sfile[0]!='\0')
1466 >        char    combuf[5*PATH_MAX+512];
1467          char    rawfile[PATH_MAX], picfile[PATH_MAX];
1468          char    zopt[PATH_MAX+4], rep[PATH_MAX+16], res[32];
1469 <        char    rppopt[128], *pfile = NULL;
1469 >        char    rppopt[32], sfile[PATH_MAX], *pfile = NULL;
1470          char    pfopts[128];
1471          char    vs[32], *vw;
1472          int     vn, mult;
1473          FILE    *fp;
1474          time_t  rfdt, pfdt;
1475 +        int     xres, yres;
1476 +        double  aspect;
1477 +        int     n;
1478                                          /* get pfilt options */
1479          pfiltopts(pfopts);
1480                                          /* get resolution, reporting */
# Line 1227 | Line 1489 | rpict(                         /* run rpict and pfilt for each view */
1489                  mult = 3;
1490                  break;
1491          }
1492 <        {
1493 <                int     xres, yres;
1494 <                double  aspect;
1495 <                int     n;
1496 <                n = sscanf(vval(RESOLUTION), "%d %d %lf", &xres, &yres, &aspect);
1497 <                if (n == 3)
1498 <                        sprintf(res, "-x %d -y %d -pa %.3f",
1499 <                                        mult*xres, mult*yres, aspect);
1500 <                else if (n) {
1501 <                        if (n == 1) yres = xres;
1240 <                        sprintf(res, "-x %d -y %d", mult*xres, mult*yres);
1241 <                } else
1242 <                        badvalue(RESOLUTION);
1243 <        }
1492 >        n = sscanf(vval(RESOLUTION), "%d %d %lf", &xres, &yres, &aspect);
1493 >        if (n == 3)
1494 >                sprintf(res, "-x %d -y %d -pa %.3f",
1495 >                                mult*xres, mult*yres, aspect);
1496 >        else if (n) {
1497 >                aspect = 1.;
1498 >                if (n == 1) yres = xres;
1499 >                sprintf(res, "-x %d -y %d", mult*xres, mult*yres);
1500 >        } else
1501 >                badvalue(RESOLUTION);
1502          rep[0] = '\0';
1503          if (vdef(REPORT)) {
1504                  double  minutes;
1247                int     n;
1505                  n = sscanf(vval(REPORT), "%lf %s", &minutes, rawfile);
1506                  if (n == 2)
1507                          sprintf(rep, " -t %d -e %s", (int)(minutes*60), rawfile);
# Line 1254 | Line 1511 | rpict(                         /* run rpict and pfilt for each view */
1511                          badvalue(REPORT);
1512          }
1513                                          /* set up parallel rendering */
1514 <        if ((nprocs > 1) & (!vdef(ZFILE))) {
1515 <                strcpy(rppopt, "-S 1 -PP pfXXXXXX");
1516 <                pfile = rppopt+9;
1517 <                if (mktemp(pfile) == NULL)
1514 >        sfile[0] = '\0';
1515 >        if ((nprocs > 1) & !touchonly & !vdef(ZFILE) &&
1516 >                                        getview(0, vs) != NULL) {
1517 >                if (!strcmp(c_rpict, DEF_RPICT_PATH) &&
1518 >                                getview(1, NULL) == NULL) {
1519 >                        sprintf(sfile, "%s_%s_rpsync.txt",
1520 >                                vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE),
1521 >                                        vs);
1522 >                        strcpy(rppopt, "-PP pfXXXXXX");
1523 >                } else {
1524 >                        strcpy(rppopt, "-S 1 -PP pfXXXXXX");
1525 >                }
1526 >                pfile = rppopt + strlen(rppopt) - 8;
1527 >                if (mktemp(pfile) == NULL) {
1528 >                        if (do_rpiece) {
1529 >                                fprintf(stderr, "%s: cannot create\n", pfile);
1530 >                                quit(1);
1531 >                        }
1532 >                        pfile[-5] = '\0';
1533                          pfile = NULL;
1534 +                }
1535          }
1536          vn = 0;                                 /* do each view */
1537          while ((vw = getview(vn++, vs)) != NULL) {
1538                  if (sayview)
1539                          myprintview(vw, stdout);
1540 <                if (!vs[0])
1268 <                        sprintf(vs, "%d", vn);
1269 <                sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1540 >                sprintf(picfile, "%s_%s.hdr", vval(PICTURE), vs);
1541                  if (vdef(ZFILE))
1542                          sprintf(zopt, " -z %s_%s.zbf", vval(ZFILE), vs);
1543                  else
# Line 1287 | Line 1558 | rpict(                         /* run rpict and pfilt for each view */
1558                                  touch(picfile);
1559                          continue;
1560                  }
1561 <                if (next_process()) {           /* parallel running? */
1561 >                                                /* parallel running? */
1562 >                if (do_rpiece) {
1563 >                        if (rfdt < oct1date || !fdate(sfile)) {
1564 >                                int     xdiv = 8+nprocs/3, ydiv = 8+nprocs/3;
1565 >                                if (rfdt >= oct1date) {
1566 >                                        fprintf(stderr,
1567 >                "%s: partial output not created with %s\n", rawfile, c_rpiece);
1568 >                                        quit(1);
1569 >                                }
1570 >                                if (rfdt) {     /* start fresh */
1571 >                                        rmfile(rawfile);
1572 >                                        rfdt = 0;
1573 >                                }
1574 >                                if (!silent)
1575 >                                        printf("\techo %d %d > %s\n",
1576 >                                                        xdiv, ydiv, sfile);
1577 >                                if ((fp = fopen(sfile, "w")) == NULL) {
1578 >                                        fprintf(stderr, "%s: cannot create\n",
1579 >                                                        sfile);
1580 >                                        quit(1);
1581 >                                }
1582 >                                fprintf(fp, "%d %d\n", xdiv, ydiv);
1583 >                                fclose(fp);
1584 >                        }
1585 >                } else if (next_process(0)) {
1586                          if (pfile != NULL)
1587 <                                sleep(20);
1587 >                                sleep(10);
1588                          continue;
1589 <                }
1589 >                } else if (!inchild())
1590 >                        pfile = NULL;
1591                  /* XXX Remember to call finish_process() */
1592                                                  /* build rpict command */
1593 <                if (rfdt >= oct1date) {         /* recover */
1594 <                        sprintf(combuf, "rpict%s%s%s%s -ro %s %s",
1595 <                                rep, po, opts, zopt, rawfile, oct1name);
1596 <                        if (runcom(combuf))     /* run rpict */
1593 >                if (rfdt >= oct1date) {         /* already in progress */
1594 >                        if (do_rpiece) {
1595 >                                sprintf(combuf, "%s -R %s %s%s %s %s%s%s -o %s %s",
1596 >                                                c_rpiece, sfile, rppopt, rep, vw,
1597 >                                                res, opts, po, rawfile, oct1name);
1598 >                                while (next_process(1)) {
1599 >                                        sleep(10);
1600 >                                        combuf[strlen(c_rpiece)+2] = 'F';
1601 >                                }
1602 >                        } else
1603 >                                sprintf(combuf, "%s%s%s%s%s -ro %s %s", c_rpict,
1604 >                                        rep, opts, po, zopt, rawfile, oct1name);
1605 >                        if (runcom(combuf))     /* run rpict/rpiece */
1606                                  goto rperror;
1607                  } else {
1608                          if (overture) {         /* run overture calculation */
1609                                  sprintf(combuf,
1610 <                                "rpict%s %s%s -x 64 -y 64 -ps 1 %s > %s",
1611 <                                                rep, vw, opts,
1610 >                                        "%s%s %s%s -x 64 -y 64 -ps 1 %s > %s",
1611 >                                                c_rpict, rep, vw, opts,
1612                                                  oct1name, overfile);
1613 <                                if (runcom(combuf)) {
1614 <                                        fprintf(stderr,
1613 >                                if (!do_rpiece || !next_process(0)) {
1614 >                                        if (runcom(combuf)) {
1615 >                                                fprintf(stderr,
1616                                          "%s: error in overture for view %s\n",
1617 <                                                progname, vs);
1618 <                                        quit(1);
1619 <                                }
1617 >                                                        progname, vs);
1618 >                                                quit(1);
1619 >                                        }
1620   #ifndef NULL_DEVICE
1621 <                                rmfile(overfile);
1621 >                                        rmfile(overfile);
1622   #endif
1623 +                                } else if (do_rpiece)
1624 +                                        sleep(20);
1625                          }
1626 <                        sprintf(combuf, "rpict%s %s %s%s%s%s %s > %s",
1627 <                                        rep, vw, res, po, opts,
1628 <                                        zopt, oct1name, rawfile);
1629 <                        if (pfile != NULL && inchild()) {
1630 <                                                /* rpict persistent mode */
1631 <                                if (!silent) {
1626 >                        if (do_rpiece) {
1627 >                                sprintf(combuf, "%s -F %s %s%s %s %s%s%s -o %s %s",
1628 >                                                c_rpiece, sfile, rppopt, rep, vw,
1629 >                                                res, opts, po, rawfile, oct1name);
1630 >                                while (next_process(1))
1631 >                                        sleep(10);
1632 >                        } else {
1633 >                                sprintf(combuf, "%s%s %s %s%s%s%s %s > %s",
1634 >                                                c_rpict, rep, vw, res, opts, po,
1635 >                                                zopt, oct1name, rawfile);
1636 >                        }
1637 >                        if ((pfile != NULL) & !do_rpiece) {
1638 >                                if (!silent)
1639                                          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);
1640                                  fflush(stdout);
1641 +                                sprintf(combuf, "%s%s %s %s%s%s %s > %s",
1642 +                                                c_rpict, rep, rppopt, res,
1643 +                                                opts, po, oct1name, rawfile);
1644                                  fp = popen(combuf, "w");
1645                                  if (fp == NULL)
1646                                          goto rperror;
1647                                  myprintview(vw, fp);
1648                                  if (pclose(fp))
1649                                          goto rperror;
1650 <                        } else {                /* rpict normal mode */
1651 <                                if (runcom(combuf))
1652 <                                        goto rperror;
1650 >                        } else if (runcom(combuf))
1651 >                                goto rperror;
1652 >                }
1653 >                if (do_rpiece) {                /* need to finish raw, first */
1654 >                        finish_process();
1655 >                        wait_process(1);
1656 >                        if (!syncf_done(sfile)) {
1657 >                                fprintf(stderr,
1658 >                        "%s: %s did not complete rendering of view %s\n",
1659 >                                                progname, c_rpiece, vs);
1660 >                                quit(1);
1661                          }
1662                  }
1663                  if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1664                                                  /* build pfilt command */
1665 <                        if (mult > 1)
1666 <                                sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1667 <                                        pfopts, mult, mult, rawfile, picfile);
1665 >                        if (do_rpiece)
1666 >                                sprintf(combuf,
1667 >                                        "%s%s -x %d -y %d -p %.3f %s > %s",
1668 >                                        c_pfilt, pfopts, xres, yres, aspect,
1669 >                                        rawfile, picfile);
1670 >                        else if (mult > 1)
1671 >                                sprintf(combuf, "%s%s -x /%d -y /%d %s > %s",
1672 >                                        c_pfilt, pfopts, mult, mult,
1673 >                                        rawfile, picfile);
1674                          else
1675 <                                sprintf(combuf, "pfilt%s %s > %s", pfopts,
1676 <                                                rawfile, picfile);
1675 >                                sprintf(combuf, "%s%s %s > %s", c_pfilt,
1676 >                                        pfopts, rawfile, picfile);
1677                          if (runcom(combuf)) {   /* run pfilt */
1678                                  fprintf(stderr,
1679                                  "%s: error filtering view %s\n\t%s removed\n",
# Line 1357 | Line 1684 | rpict(                         /* run rpict and pfilt for each view */
1684                  }
1685                                                  /* remove/rename raw file */
1686                  if (vdef(RAWFILE)) {
1687 <                        sprintf(combuf, "%s_%s.pic", vval(RAWFILE), vs);
1687 >                        sprintf(combuf, "%s_%s.hdr", vval(RAWFILE), vs);
1688                          mvfile(rawfile, combuf);
1689                  } else
1690                          rmfile(rawfile);
1691 <                finish_process();               /* exit if child */
1691 >                if (do_rpiece)                  /* done with sync file */
1692 >                        rmfile(sfile);
1693 >                else
1694 >                        finish_process();       /* exit if child */
1695          }
1696          wait_process(1);                /* wait for children to finish */
1697 <        if (pfile != NULL) {            /* clean up rpict persistent mode */
1697 >        if (pfile != NULL) {            /* clean up persistent rpict */
1698                  RT_PID  pid;
1699                  fp = fopen(pfile, "r");
1700                  if (fp != NULL) {
# Line 1378 | Line 1708 | rpict(                         /* run rpict and pfilt for each view */
1708   rperror:
1709          fprintf(stderr, "%s: error rendering view %s\n", progname, vs);
1710          quit(1);
1711 + #undef do_rpiece
1712   }
1713  
1714  
# Line 1390 | Line 1721 | touch(                 /* update a file */
1721                  printf("\ttouch %s\n", fn);
1722          if (!nprocs)
1723                  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
1724          return(setfdate(fn, time((time_t *)NULL)));
1725   }
1726  
# Line 1408 | Line 1734 | runcom(                        /* run command */
1734                  printf("\t%s\n", cs);
1735          if (!nprocs)
1736                  return(0);
1737 <        fflush(stdout);         /* flush output and pass to shell */
1737 >        fflush(NULL);           /* flush output and pass to shell */
1738          return(system(cs));
1739   }
1740  
# Line 1442 | Line 1768 | mvfile(                /* move a file */
1768  
1769   #ifdef RHAS_FORK_EXEC
1770   static int
1771 < next_process(void)                      /* fork the next process (max. nprocs) */
1771 > next_process(int reserve)               /* fork the next process */
1772   {
1773          RT_PID  child_pid;
1774  
# Line 1453 | Line 1779 | next_process(void)                     /* fork the next process (max. np
1779                                  progname);
1780                  quit(1);
1781          }
1782 +        if (reserve > 0 && children_running >= nprocs-reserve)
1783 +                return(0);              /* caller holding back process(es) */
1784          if (children_running >= nprocs)
1785                  wait_process(0);        /* wait for someone to finish */
1786 <        fflush(stdout);
1786 >        fflush(NULL);                   /* flush output */
1787          child_pid = fork();             /* split process */
1788          if (child_pid == 0) {           /* we're the child */
1789                  children_running = -1;
1790 +                nprocs = 1;
1791                  return(0);
1792          }
1793          if (child_pid > 0) {            /* we're the parent */
# Line 1474 | Line 1803 | wait_process(                  /* wait for process(es) to finish */
1803          int     all
1804   )
1805   {
1806 <        int     ourstatus = 0;
1807 <        RT_PID  pid, status;
1806 >        int     ourstatus = 0, status;
1807 >        RT_PID  pid;
1808  
1809          if (all)
1810                  all = children_running;
# Line 1500 | Line 1829 | wait_process(                  /* wait for process(es) to finish */
1829   }
1830   #else   /* ! RHAS_FORK_EXEC */
1831   static int
1832 < next_process(void)
1832 > next_process(int reserve)
1833   {
1834          return(0);                      /* cannot start new process */
1835   }
# Line 1512 | Line 1841 | int    all;
1841   }
1842   int
1843   kill(pid, sig) /* win|unix_process.c should also wait and kill */
1844 < RT_PID pid, sig;
1844 > RT_PID pid;
1845 > int sig;
1846   {
1847          return 0;
1848   }
# Line 1525 | Line 1855 | finish_process(void)                   /* exit a child process */
1855                  return;                 /* in parent -- noop */
1856          exit(0);
1857   }
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
1858  
1859  
1860   static void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines