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

Comparing ray/src/util/ranimate.c (file contents):
Revision 2.20 by greg, Wed Jul 17 17:45:11 1996 UTC vs.
Revision 2.46 by schorsch, Fri Mar 26 21:36:20 2004 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1996 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Radiance animation control program
6 + *
7 + * The main difference between this program and ranimove is that
8 + * we have many optimizations here for camera motion in static
9 + * environments, calling rpict and pinterp on multiple processors,
10 + * where ranimove puts its emphasis on object motion, and does
11 + * not use any external programs for image generation.
12 + *
13 + * See the ranimate(1) man page for further details.
14   */
15  
16 < #include "standard.h"
16 > #include "copyright.h"
17 >
18 > #include <stdio.h>
19   #include <ctype.h>
13 #include <sys/types.h>
20   #include <sys/stat.h>
21 + #include <time.h>
22 + #include <signal.h>
23 +
24 + #include "platform.h"
25 + #include "paths.h"
26 + #include "rtio.h"
27 + #include "rterror.h"
28 + #include "rtmisc.h"
29   #include "view.h"
30   #include "vars.h"
31   #include "netproc.h"
32 +                                /* default blur samples */
33 + #ifndef DEF_NBLUR
34 + #define DEF_NBLUR       5
35 + #endif
36                                  /* default remote shell */
19 #ifdef _AUX_SOURCE
20 #define REMSH           "remsh"
21 #else
37   #define REMSH           "rsh"
38 < #endif
39 <                                /* input variables */
40 < #define HOST            0               /* rendering host machine */
41 < #define RENDER          1               /* rendering options */
42 < #define PFILT           2               /* pfilt options */
43 < #define PINTERP         3               /* pinterp options */
44 < #define OCTREE          4               /* octree file name */
45 < #define DIRECTORY       5               /* working (sub)directory */
46 < #define BASENAME        6               /* output image base name */
47 < #define VIEWFILE        7               /* animation frame views */
48 < #define START           8               /* starting frame number */
49 < #define END             9               /* ending frame number */
50 < #define RIF             10              /* rad input file */
51 < #define NEXTANIM        11              /* next animation file */
52 < #define ANIMATE         12              /* animation command */
53 < #define TRANSFER        13              /* frame transfer command */
54 < #define ARCHIVE         14              /* archiving command */
55 < #define INTERP          15              /* # frames to interpolate */
56 < #define OVERSAMP        16              /* # times to oversample image */
57 < #define MBLUR           17              /* samples for motion blur */
58 < #define RTRACE          18              /* use rtrace with pinterp? */
59 < #define DISKSPACE       19              /* how much disk space to use */
60 < #define RESOLUTION      20              /* desired final resolution */
61 < #define EXPOSURE        21              /* how to compute exposure */
47 < #define RSH             22              /* remote shell script or program */
38 >                                /* input variables (alphabetical by name) */
39 > #define ANIMATE         0               /* animation command */
40 > #define ARCHIVE         1               /* archiving command */
41 > #define BASENAME        2               /* output image base name */
42 > #define DIRECTORY       3               /* working (sub)directory */
43 > #define DISKSPACE       4               /* how much disk space to use */
44 > #define END             5               /* ending frame number */
45 > #define EXPOSURE        6               /* how to compute exposure */
46 > #define HOST            7               /* rendering host machine */
47 > #define INTERP          8               /* # frames to interpolate */
48 > #define MBLUR           9               /* motion blur parameters */
49 > #define NEXTANIM        10              /* next animation file */
50 > #define OCTREE          11              /* octree file name */
51 > #define OVERSAMP        12              /* # times to oversample image */
52 > #define PFILT           13              /* pfilt options */
53 > #define PINTERP         14              /* pinterp options */
54 > #define RENDER          15              /* rendering options */
55 > #define RESOLUTION      16              /* desired final resolution */
56 > #define RIF             17              /* rad input file */
57 > #define RSH             18              /* remote shell script or program */
58 > #define RTRACE          19              /* use rtrace with pinterp? */
59 > #define START           20              /* starting frame number */
60 > #define TRANSFER        21              /* frame transfer command */
61 > #define VIEWFILE        22              /* animation frame views */
62  
63   int     NVARS = 23;             /* total number of variables */
64  
65   VARIABLE        vv[] = {                /* variable-value pairs */
52        {"host",        4,      0,      NULL,   NULL},
53        {"render",      3,      0,      NULL,   catvalues},
54        {"pfilt",       2,      0,      NULL,   catvalues},
55        {"pinterp",     2,      0,      NULL,   catvalues},
56        {"OCTREE",      3,      0,      NULL,   onevalue},
57        {"DIRECTORY",   3,      0,      NULL,   onevalue},
58        {"BASENAME",    3,      0,      NULL,   onevalue},
59        {"VIEWFILE",    2,      0,      NULL,   onevalue},
60        {"START",       2,      0,      NULL,   intvalue},
61        {"END",         2,      0,      NULL,   intvalue},
62        {"RIF",         3,      0,      NULL,   onevalue},
63        {"NEXTANIM",    3,      0,      NULL,   onevalue},
66          {"ANIMATE",     2,      0,      NULL,   onevalue},
65        {"TRANSFER",    2,      0,      NULL,   onevalue},
67          {"ARCHIVE",     2,      0,      NULL,   onevalue},
68 +        {"BASENAME",    3,      0,      NULL,   onevalue},
69 +        {"DIRECTORY",   3,      0,      NULL,   onevalue},
70 +        {"DISKSPACE",   3,      0,      NULL,   fltvalue},
71 +        {"END",         2,      0,      NULL,   intvalue},
72 +        {"EXPOSURE",    3,      0,      NULL,   onevalue},
73 +        {"host",        4,      0,      NULL,   NULL},
74          {"INTERPOLATE", 3,      0,      NULL,   intvalue},
68        {"OVERSAMPLE",  2,      0,      NULL,   fltvalue},
75          {"MBLUR",       2,      0,      NULL,   onevalue},
76 <        {"RTRACE",      2,      0,      NULL,   boolvalue},
77 <        {"DISKSPACE",   3,      0,      NULL,   fltvalue},
76 >        {"NEXTANIM",    3,      0,      NULL,   onevalue},
77 >        {"OCTREE",      3,      0,      NULL,   onevalue},
78 >        {"OVERSAMPLE",  2,      0,      NULL,   fltvalue},
79 >        {"pfilt",       2,      0,      NULL,   catvalues},
80 >        {"pinterp",     2,      0,      NULL,   catvalues},
81 >        {"render",      3,      0,      NULL,   catvalues},
82          {"RESOLUTION",  3,      0,      NULL,   onevalue},
83 <        {"EXPOSURE",    3,      0,      NULL,   onevalue},
83 >        {"RIF",         3,      0,      NULL,   onevalue},
84          {"RSH",         3,      0,      NULL,   onevalue},
85 +        {"RTRACE",      2,      0,      NULL,   boolvalue},
86 +        {"START",       2,      0,      NULL,   intvalue},
87 +        {"TRANSFER",    2,      0,      NULL,   onevalue},
88 +        {"VIEWFILE",    2,      0,      NULL,   onevalue},
89   };
90  
91   #define SFNAME  "STATUS"                /* status file name */
# Line 93 | Line 107 | int    silent = 0;             /* silent mode? */
107   int     noaction = 0;           /* take no action? */
108  
109   char    *remsh;                 /* remote shell program/script */
110 < char    rendopt[2048] = "";     /* rendering options */
110 > char    rendopt[2048];          /* rendering options */
111   char    rresopt[32];            /* rendering resolution options */
112   char    fresopt[32];            /* filter resolution options */
113   int     pfiltalways;            /* always use pfilt? */
# Line 109 | Line 123 | struct pslot {
123   int     npslots;                /* number of process slots */
124  
125   #define phostname(ps)   ((ps)->hostname[0] ? (ps)->hostname : astat.host)
112
113 struct pslot    *findpslot();
114
126   PSERVER *lastpserver;           /* last process server with error */
127  
128 < VIEW    *getview();
129 < char    *getexp();
128 > static struct pslot * findpslot(int pid);
129 > static void checkdir(void);
130 > static VIEW * getview(int n);
131  
132 < extern time_t   fdate(), time();
132 > static char * dirfile(char *df, register char *path);
133 > static char * getexp(int n);
134 > static int getblur(double *bf);
135 > static int getastat(void);
136 > static void getradfile(char *rfargs);
137 > static void badvalue(int vc);
138 > static int rmfile(char *fn);
139 > static int runcom(char *cs);
140 > static int pruncom(char *com, char *ppins, int maxcopies);
141 > static void bwait(int ncoms);
142 > static int bruncom(char *com, int fout, int (*rf)());
143 > static int serverdown(void);
144 > static pscompfunc donecom;
145 > static int countviews(void);
146 > static int dofilt(int frame, int rvr);
147 > static void archive(void);
148 > static int frecover(int frame);
149 > static int recover(int frame);
150 > static void sethosts(void);
151 > static void walkwait(int first, int last, char *vfn);
152 > static void animrend(int frame, VIEW *vp);
153 > static void transferframes(void);
154 > static void filterframes(void);
155 > static void renderframes(int nframes);
156 > static void animate(void);
157 > static void setdefaults(void);
158 > static void putastat(void);
159  
160  
161 < main(argc, argv)
162 < int     argc;
163 < char    *argv[];
161 > int
162 > main(
163 >        int     argc,
164 >        char    *argv[]
165 > )
166   {
167          int     explicate = 0;
168          int     i;
# Line 150 | Line 190 | char   *argv[];
190          cfname = argv[i];
191                                                  /* load variables */
192          loadvars(cfname);
193 +                                                /* check variables */
194 +        checkvalues();
195                                                  /* did we get DIRECTORY? */
196          checkdir();
197                                                  /* check status */
# Line 183 | Line 225 | char   *argv[];
225                  quit(1);
226          }
227          quit(0);
228 +        return 0; /* pro forma return */
229   userr:
230          fprintf(stderr, "Usage: %s [-s][-n][-w][-e] anim_file\n", progname);
231          quit(1);
232 +        return 1; /* pro forma return */
233   }
234  
235  
236 < getastat()                      /* check/set animation status */
236 > static int
237 > getastat(void)                  /* check/set animation status */
238   {
239          char    sfname[256];
240          FILE    *fp;
# Line 253 | Line 298 | fmterr:
298   }
299  
300  
301 < putastat()                      /* put out current status */
301 > static void
302 > putastat(void)                  /* put out current status */
303   {
304          char    buf[256];
305          FILE    *fp;
# Line 275 | Line 321 | putastat()                     /* put out current status */
321   }
322  
323  
324 < checkdir()                      /* make sure we have our directory */
324 > static void
325 > checkdir(void)                  /* make sure we have our directory */
326   {
327          struct stat     stb;
328  
# Line 297 | Line 344 | checkdir()                     /* make sure we have our directory */
344   }
345  
346  
347 < setdefaults()                   /* set default values */
347 > static void
348 > setdefaults(void)                       /* set default values */
349   {
350          extern char     *atos();
351          int     decades;
# Line 385 | Line 433 | setdefaults()                  /* set default values */
433   }
434  
435  
436 < sethosts()                      /* set up process servers */
436 > static void
437 > sethosts(void)                  /* set up process servers */
438   {
439          extern char     *iskip();
440          char    buf[256], *dir, *uname;
# Line 440 | Line 489 | sethosts()                     /* set up process servers */
489          }
490   }
491  
492 <
493 < getradfile(rfargs)              /* run rad and get needed variables */
445 < char    *rfargs;
492 > static void
493 > getradfile(char *rfargs)                /* run rad and get needed variables */
494   {
495          static short    mvar[] = {OCTREE,PFILT,RESOLUTION,EXPOSURE,-1};
496          char    combuf[256];
497          register int    i;
498          register char   *cp;
499 +        char    *pippt = NULL;
500                                          /* create rad command */
501          sprintf(rendopt, " @%s/render.opt", vval(DIRECTORY));
502          sprintf(combuf,
503          "rad -v 0 -s -e -w %s OPTFILE=%s | egrep '^[ \t]*(NOMATCH",
504                          rfargs, rendopt+2);
505          cp = combuf;
506 <        while (*cp) cp++;               /* match unset variables */
506 >        while (*cp) {
507 >                if (*cp == '|') pippt = cp;
508 >                cp++;
509 >        }                               /* match unset variables */
510          for (i = 0; mvar[i] >= 0; i++)
511                  if (!vdef(mvar[i])) {
512                          *cp++ = '|';
513                          strcpy(cp, vnam(mvar[i]));
514                          while (*cp) cp++;
515 +                        pippt = NULL;
516                  }
517 <        sprintf(cp, ")[ \t]*=' > %s/radset.var", vval(DIRECTORY));
518 <        cp += 11;                       /* point to file name */
519 <        if (system(combuf)) {
520 <                fprintf(stderr, "%s: error executing rad command:\n\t%s\n",
521 <                                progname, combuf);
469 <                quit(1);
517 >        if (pippt != NULL)
518 >                strcpy(pippt, "> " NULL_DEVICE);        /* nothing to match */
519 >        else {
520 >                sprintf(cp, ")[ \t]*=' > %s/radset.var", vval(DIRECTORY));
521 >                cp += 11;               /* point to file name */
522          }
523 <        loadvars(cp);                   /* load variables and remove file */
524 <        unlink(cp);
523 >        system(combuf);                 /* ignore exit code */
524 >        if (pippt == NULL) {            /* load variables and remove file */
525 >                loadvars(cp);
526 >                unlink(cp);
527 >        }
528   }
529  
530  
531 < animate()                       /* run animation */
531 > static void
532 > animate(void)                   /* run animation */
533   {
534          int     xres, yres;
535          float   pa, mult;
# Line 503 | Line 559 | animate()                      /* run animation */
559                                                  progname, vnam(INTERP));
560                          vval(INTERP) = "0";
561                  }
562 <                if (atoi(vval(MBLUR))) {        /* can't handle this yet */
562 >                if (strcmp(vval(MBLUR),"0")) {  /* can't handle this */
563                          if (!nowarn)
564                                  fprintf(stderr,
565                                          "%s: resetting %s=0 for animation\n",
# Line 513 | Line 569 | animate()                      /* run animation */
569          }
570                                          /* figure # frames per batch */
571          d1 = mult*xres*mult*yres*4;             /* space for orig. picture */
572 <        if ((i=vint(INTERP)) || atoi(vval(MBLUR)))
572 >        if ((i=vint(INTERP)) || getblur(NULL) > 1)
573                  d1 += mult*xres*mult*yres*sizeof(float);        /* Z-buffer */
574          d2 = xres*yres*4;                       /* space for final picture */
575          frames_batch = (i+1)*(vflt(DISKSPACE)*1048576.-d1)/(d1+i*d2);
# Line 523 | Line 579 | animate()                      /* run animation */
579                  quit(1);
580          }
581                                          /* initialize archive argument list */
582 <        i = 16;
527 <        if (vdef(ARCHIVE) && strlen(vval(ARCHIVE)) > i)
528 <                i = strlen(vval(ARCHIVE));
582 >        i = vdef(ARCHIVE) ? strlen(vval(ARCHIVE))+132 : 132;
583          arcnext = arcfirst = arcargs + i;
584                                          /* initialize status file */
585          if (astat.rnext == 0)
# Line 546 | Line 600 | animate()                      /* run animation */
600   }
601  
602  
603 < renderframes(nframes)           /* render next nframes frames */
604 < int     nframes;
603 > static void
604 > renderframes(int nframes)               /* render next nframes frames */
605   {
606          static char     vendbuf[16];
607          VIEW    *vp;
# Line 603 | Line 657 | int    nframes;
657   }
658  
659  
660 < filterframes()                          /* catch up with filtering */
660 > static void
661 > filterframes(void)                              /* catch up with filtering */
662   {
608        VIEW    *vp;
663          register int    i;
664  
665          if (astat.tnext < astat.fnext)  /* other work to do first */
666                  return;
667                                          /* filter each view */
668 <        for (i = astat.fnext; i < astat.rnext; i++) {
669 <                if ((vp = getview(i)) == NULL) {        /* get view i */
670 <                        fprintf(stderr,
617 <                        "%s: unexpected error reading view for frame %d\n",
618 <                                        progname, i);
619 <                        quit(1);
620 <                }
621 <                dofilt(i, vp, getexp(i), 0);            /* filter frame */
622 <        }
668 >        for (i = astat.fnext; i < astat.rnext; i++)
669 >                dofilt(i, 0);
670 >
671          bwait(0);                       /* wait for filter processes */
672          archive();                      /* archive originals */
673          astat.fnext = i;                /* update status */
# Line 627 | Line 675 | filterframes()                         /* catch up with filtering */
675   }
676  
677  
678 < transferframes()                        /* catch up with picture transfers */
678 > static void
679 > transferframes(void)                    /* catch up with picture transfers */
680   {
681 <        char    combuf[10240];
681 >        char    combuf[10240], *fbase;
682          register char   *cp;
683          register int    i;
684  
# Line 640 | Line 689 | transferframes()                       /* catch up with picture transfers
689                  putastat();             /* update status */
690                  return;
691          }
692 <        strcpy(combuf, vval(TRANSFER)); /* start transfer command */
693 <        cp = combuf + strlen(combuf);
692 >        strcpy(combuf, "cd ");          /* start transfer command */
693 >        fbase = dirfile(cp = combuf+3, vval(BASENAME));
694 >        if (*cp) {
695 >                while (*++cp) ;
696 >                *cp++ = ';'; *cp++ = ' ';
697 >        } else
698 >                cp = combuf;
699 >        strcpy(cp, vval(TRANSFER));
700 >        while (*cp) cp++;
701                                          /* make argument list */
702          for (i = astat.tnext; i < astat.fnext; i++) {
703                  *cp++ = ' ';
704 <                sprintf(cp, vval(BASENAME), i);
704 >                sprintf(cp, fbase, i);
705                  while (*cp) cp++;
706                  strcpy(cp, ".pic");
707                  cp += 4;
# Line 660 | Line 716 | transferframes()                       /* catch up with picture transfers
716   }
717  
718  
719 < animrend(frame, vp)                     /* start animation frame */
720 < int     frame;
721 < VIEW    *vp;
719 > static void
720 > animrend(                       /* start animation frame */
721 > int     frame,
722 > VIEW    *vp
723 > )
724   {
667        extern int      recover();
725          char    combuf[2048];
726          char    fname[128];
727  
# Line 678 | Line 735 | VIEW   *vp;
735   }
736  
737  
738 < walkwait(first, last, vfn)              /* walk-through frames */
739 < int     first, last;
740 < char    *vfn;
738 > static void
739 > walkwait(               /* walk-through frames */
740 > int     first,
741 > int last,
742 > char    *vfn
743 > )
744   {
745 +        double  blurf;
746 +        int     nblur = getblur(&blurf);
747          char    combuf[2048];
748 <        char    *inspoint;
748 >        register char   *inspoint;
749          register int    i;
750  
751          if (!noaction && vint(INTERP))          /* create dummy frames */
# Line 694 | Line 756 | char   *vfn;
756                                  close(open(combuf, O_RDONLY|O_CREAT, 0666));
757                          }
758                                          /* create command */
759 <        sprintf(combuf, "rpict%s -w0", rendopt);
760 <        if (vint(INTERP) || atoi(vval(MBLUR)))
761 <                sprintf(combuf+strlen(combuf), " -z %s.zbf", vval(BASENAME));
762 <        sprintf(combuf+strlen(combuf), " -o %s.unf %s -S %d",
759 >        sprintf(combuf, "rpict%s%s -w0", rendopt,
760 >                        viewopt(getview(first>1 ? first-1 : 1)));
761 >        inspoint = combuf;
762 >        while (*inspoint) inspoint++;
763 >        if (nblur) {
764 >                sprintf(inspoint, " -pm %.3f", blurf/nblur);
765 >                while (*inspoint) inspoint++;
766 >        }
767 >        if (nblur > 1 || vint(INTERP)) {
768 >                sprintf(inspoint, " -z %s.zbf", vval(BASENAME));
769 >                while (*inspoint) inspoint++;
770 >        }
771 >        sprintf(inspoint, " -o %s.unf %s -S %d",
772                          vval(BASENAME), rresopt, first);
773 <        inspoint = combuf + strlen(combuf);
773 >        while (*inspoint) inspoint++;
774          sprintf(inspoint, " %s < %s", vval(OCTREE), vfn);
775                                          /* run in parallel */
776          i = (last-first+1)/(vint(INTERP)+1);
# Line 719 | Line 790 | char   *vfn;
790   }
791  
792  
793 < int
794 < recover(frame)                          /* recover the specified frame */
724 < int     frame;
793 > static int
794 > recover(int frame)                      /* recover the specified frame */
795   {
796          static int      *rfrm;          /* list of recovered frames */
797          static int      nrfrms = 0;
798 +        double  blurf;
799 +        int     nblur = getblur(&blurf);
800          char    combuf[2048];
801          char    fname[128];
802          register char   *cp;
# Line 740 | Line 812 | int    frame;
812                                  vval(ANIMATE), frame, rendopt);
813          else
814                  sprintf(combuf, "rpict%s -w0", rendopt);
815 <        cp = combuf + strlen(combuf);
816 <        if (vint(INTERP) || atoi(vval(MBLUR))) {
815 >        cp = combuf;
816 >        while (*cp) cp++;
817 >        if (nblur) {
818 >                sprintf(cp, " -pm %.3f", blurf/nblur);
819 >                while (*cp) cp++;
820 >        }
821 >        if (nblur > 1 || vint(INTERP)) {
822                  sprintf(cp, " -z %s.zbf", fname);
823                  while (*cp) cp++;
824          }
# Line 755 | Line 832 | int    frame;
832                  return(1);
833                                          /* add frame to recovered list */
834          if (nrfrms)
835 <                rfrm = (int *)realloc((char *)rfrm, (nrfrms+1)*sizeof(int));
835 >                rfrm = (int *)realloc((void *)rfrm, (nrfrms+1)*sizeof(int));
836          else
837                  rfrm = (int *)malloc(sizeof(int));
838          if (rfrm == NULL) {
# Line 767 | Line 844 | int    frame;
844   }
845  
846  
847 < int
848 < frecover(frame)                         /* recover filtered frame */
772 < int     frame;
847 > static int
848 > frecover(int frame)                             /* recover filtered frame */
849   {
850 <        VIEW    *vp;
775 <        char    *ex;
776 <
777 <        vp = getview(frame);
778 <        ex = getexp(frame);
779 <        if (dofilt(frame, vp, ex, 2) && dofilt(frame, vp, ex, 1))
850 >        if (dofilt(frame, 2) && dofilt(frame, 1))
851                  return(1);
852          return(0);
853   }
854  
855  
856 < archive()                       /* archive and remove renderings */
856 > static void
857 > archive(void)                   /* archive and remove renderings */
858   {
859   #define RMCOML  (sizeof(rmcom)-1)
860          static char     rmcom[] = "rm -f";
861 <        register int    i;
861 >        char    basedir[128];
862 >        int     dlen, alen;
863 >        register int    j;
864  
865          if (arcnext == arcfirst)
866                  return;                         /* nothing to do */
867 +        dirfile(basedir, vval(BASENAME));
868 +        dlen = strlen(basedir);
869          if (vdef(ARCHIVE)) {                    /* run archive command */
870 <                i = strlen(vval(ARCHIVE));
871 <                strncpy(arcfirst-i, vval(ARCHIVE), i);
872 <                if (runcom(arcfirst-i)) {
870 >                alen = strlen(vval(ARCHIVE));
871 >                if (dlen) {
872 >                        j = alen + dlen + 5;
873 >                        strncpy(arcfirst-j, "cd ", 3);
874 >                        strncpy(arcfirst-j+3, basedir, dlen);
875 >                        (arcfirst-j)[dlen+3] = ';'; (arcfirst-j)[dlen+4] = ' ';
876 >                } else
877 >                        j = alen;
878 >                strncpy(arcfirst-alen, vval(ARCHIVE), alen);
879 >                if (runcom(arcfirst-j)) {
880                          fprintf(stderr, "%s: error running archive command\n",
881                                          progname);
882                          quit(1);
883                  }
884          }
885 +        if (dlen) {
886 +                j = RMCOML + dlen + 5;
887 +                strncpy(arcfirst-j, "cd ", 3);
888 +                strncpy(arcfirst-j+3, basedir, dlen);
889 +                (arcfirst-j)[dlen+3] = ';'; (arcfirst-j)[dlen+4] = ' ';
890 +        } else
891 +                j = RMCOML;
892                                                  /* run remove command */
893          strncpy(arcfirst-RMCOML, rmcom, RMCOML);
894 <        runcom(arcfirst-RMCOML);
894 >        runcom(arcfirst-j);
895          arcnext = arcfirst;                     /* reset argument list */
896   #undef RMCOML
897   }
898  
899  
900 < int
901 < dofilt(frame, vp, ep, rvr)                      /* filter frame */
902 < int     frame;
903 < VIEW    *vp;
904 < char    *ep;
815 < int     rvr;
900 > static int
901 > dofilt(                         /* filter frame */
902 > int     frame,
903 > int     rvr
904 > )
905   {
817        extern int      frecover();
906          static int      iter = 0;
907 <        char    fnbefore[128], fnafter[128];
907 >        double  blurf;
908 >        int     nblur = getblur(&blurf);
909 >        VIEW    *vp = getview(frame);
910 >        char    *ep = getexp(frame);
911 >        char    fnbefore[128], fnafter[128], *fbase;
912          char    combuf[1024], fname0[128], fname1[128];
913          int     usepinterp, usepfilt, nora_rgbe;
914          int     frseq[2];
915                                                  /* check what is needed */
916 <        usepinterp = atoi(vval(MBLUR));
917 <        usepfilt = pfiltalways | ep==NULL;
916 >        if (vp == NULL) {
917 >                 fprintf(stderr,
918 >                        "%s: unexpected error reading view for frame %d\n",
919 >                                          progname, frame);
920 >                quit(1);
921 >        }
922 >        usepinterp = (nblur > 1);
923 >        usepfilt = pfiltalways | (ep==NULL);
924          if (ep != NULL && !strcmp(ep, "1"))
925                  ep = "+0";
926          nora_rgbe = strcmp(vval(OVERSAMP),"1") || ep==NULL ||
# Line 830 | Line 928 | int    rvr;
928                                                  /* compute rendered views */
929          frseq[0] = frame - ((frame-1) % (vint(INTERP)+1));
930          frseq[1] = frseq[0] + vint(INTERP) + 1;
931 +        fbase = dirfile(NULL, vval(BASENAME));
932          if (frseq[1] > vint(END))
933                  frseq[1] = vint(END);
934          if (frseq[1] == frame) {                        /* pfilt only */
# Line 839 | Line 938 | int    rvr;
938          } else if (frseq[0] == frame) {         /* no interpolation needed */
939                  if (!rvr && frame > 1+vint(INTERP)) {   /* archive previous */
940                          *arcnext++ = ' ';
941 <                        sprintf(arcnext, vval(BASENAME), frame-vint(INTERP)-1);
941 >                        sprintf(arcnext, fbase, frame-vint(INTERP)-1);
942                          while (*arcnext) arcnext++;
943                          strcpy(arcnext, ".unf");
944                          arcnext += 4;
945                          if (usepinterp || vint(INTERP)) {       /* and Z-buf */
946                                  *arcnext++ = ' ';
947 <                                sprintf(arcnext, vval(BASENAME),
849 <                                                frame-vint(INTERP)-1);
947 >                                sprintf(arcnext, fbase, frame-vint(INTERP)-1);
948                                  while (*arcnext) arcnext++;
949                                  strcpy(arcnext, ".zbf");
950                                  arcnext += 4;
# Line 866 | Line 964 | int    rvr;
964          if (usepinterp) {                       /* using pinterp */
965                  if (rvr == 2 && recover(frseq[1]))      /* recover after? */
966                          return(1);
967 <                if (atoi(vval(MBLUR))) {
870 <                        FILE    *fp;            /* motion blurring */
967 >                if (nblur > 1) {                /* with pmblur */
968                          sprintf(fname0, "%s/vw0%c", vval(DIRECTORY),
969                                          'a'+(iter%26));
873                        if ((fp = fopen(fname0, "w")) == NULL) {
874                                perror(fname0); quit(1);
875                        }
876                        fputs(VIEWSTR, fp);
877                        fprintview(vp, fp);
878                        putc('\n', fp); fclose(fp);
879                        if ((vp = getview(frame+1)) == NULL) {
880                                fprintf(stderr,
881                        "%s: unexpected error reading view for frame %d\n",
882                                                progname, frame+1);
883                                quit(1);
884                        }
970                          sprintf(fname1, "%s/vw1%c", vval(DIRECTORY),
971                                          'a'+(iter%26));
972 <                        if ((fp = fopen(fname1, "w")) == NULL) {
973 <                                perror(fname1); quit(1);
972 >                        if (!noaction) {
973 >                                FILE    *fp;            /* motion blurring */
974 >                                if ((fp = fopen(fname0, "w")) == NULL) {
975 >                                        perror(fname0); quit(1);
976 >                                }
977 >                                fputs(VIEWSTR, fp);
978 >                                fprintview(vp, fp);
979 >                                putc('\n', fp); fclose(fp);
980 >                                if ((vp = getview(frame+1)) == NULL) {
981 >                                        fprintf(stderr,
982 >                        "%s: unexpected error reading view for frame %d\n",
983 >                                                        progname, frame+1);
984 >                                        quit(1);
985 >                                }
986 >                                if ((fp = fopen(fname1, "w")) == NULL) {
987 >                                        perror(fname1); quit(1);
988 >                                }
989 >                                fputs(VIEWSTR, fp);
990 >                                fprintview(vp, fp);
991 >                                putc('\n', fp); fclose(fp);
992                          }
890                        fputs(VIEWSTR, fp);
891                        fprintview(vp, fp);
892                        putc('\n', fp); fclose(fp);
993                          sprintf(combuf,
994 <                        "(pmblur %s %d %s %s; rm -f %s %s) | pinterp -B",
995 <                        *sskip(vval(MBLUR)) ? sskip2(vval(MBLUR),1) : "1",
896 <                                        atoi(vval(MBLUR)),
994 >                        "(pmblur %.3f %d %s %s; rm -f %s %s) | pinterp -B -a",
995 >                                        blurf, nblur,
996                                          fname0, fname1, fname0, fname1);
997                          iter++;
998                  } else                          /* no blurring */
# Line 901 | Line 1000 | int    rvr;
1000                  strcat(combuf, viewopt(vp));
1001                  if (vbool(RTRACE))
1002                          sprintf(combuf+strlen(combuf), " -ff -fr '%s -w0 %s'",
1003 <                                        rendopt, vval(OCTREE));
1003 >                                        rendopt+1, vval(OCTREE));
1004                  if (vdef(PINTERP))
1005                          sprintf(combuf+strlen(combuf), " %s", vval(PINTERP));
1006                  if (usepfilt)
1007                          sprintf(combuf+strlen(combuf), " %s", rresopt);
1008                  else
1009 <                        sprintf(combuf+strlen(combuf), " %s -e %s",
1009 >                        sprintf(combuf+strlen(combuf), " -a %s -e %s",
1010                                          fresopt, ep);
1011                  sprintf(combuf+strlen(combuf), " %s.unf %s.zbf",
1012                                  fnbefore, fnbefore);
# Line 954 | Line 1053 | int    rvr;
1053   }
1054  
1055  
1056 < VIEW *
1057 < getview(n)                      /* get view number n */
959 < int     n;
1056 > static VIEW *
1057 > getview(int n)                  /* get view number n */
1058   {
1059          static FILE     *viewfp = NULL;         /* view file pointer */
1060          static int      viewnum = 0;            /* current view number */
# Line 968 | Line 1066 | int    n;
1066                          fclose(viewfp);
1067                          viewfp = NULL;
1068                          viewnum = 0;
1069 <                        copystruct(&curview, &stdview);
1069 >                        curview = stdview;
1070                  }
1071                  return(NULL);
1072          }
1073 <        if (viewfp == NULL) {           /* open file */
1073 >        if (viewfp == NULL) {                   /* open file */
1074                  if ((viewfp = fopen(vval(VIEWFILE), "r")) == NULL) {
1075                          perror(vval(VIEWFILE));
1076                          quit(1);
1077                  }
1078 <        } else if (n < viewnum) {       /* rewind file */
1078 >        } else if (n > 0 && n < viewnum) {      /* rewind file */
1079                  if (viewnum == 1 && feof(viewfp))
1080                          return(&curview);               /* just one view */
1081                  if (fseek(viewfp, 0L, 0) == EOF) {
1082                          perror(vval(VIEWFILE));
1083                          quit(1);
1084                  }
1085 <                copystruct(&curview, &stdview);
1085 >                curview = stdview;
1086                  viewnum = 0;
1087          }
1088 +        if (n < 0) {                            /* get next view */
1089 +                register int    c = getc(viewfp);
1090 +                if (c == EOF)
1091 +                        return((VIEW *)NULL);           /* that's it */
1092 +                ungetc(c, viewfp);
1093 +                n = viewnum + 1;
1094 +        }
1095          while (n > viewnum) {           /* scan to desired view */
1096                  if (fgets(linebuf, sizeof(linebuf), viewfp) == NULL)
1097                          return(viewnum==1 ? &curview : (VIEW *)NULL);
# Line 997 | Line 1102 | int    n;
1102   }
1103  
1104  
1105 < int
1106 < countviews()                    /* count views in view file */
1105 > static int
1106 > countviews(void)                        /* count views in view file */
1107   {
1108 <        register int    n = 0;
1108 >        int     n;
1109  
1110 <        while (getview(n+1) != NULL)
1110 >        if (getview(n=1) == NULL)
1111 >                return(0);
1112 >        while (getview(-1) != NULL)
1113                  n++;
1114          return(n);
1115   }
1116  
1117  
1118 < char *
1119 < getexp(n)                       /* get exposure for nth frame */
1013 < int     n;
1118 > static char *
1119 > getexp(int n)                   /* get exposure for nth frame */
1120   {
1121          extern char     *fskip();
1122          static char     expval[32];
# Line 1022 | Line 1128 | int    n;
1128          if (n == 0) {                           /* signal to close file */
1129                  if (expfp != NULL) {
1130                          fclose(expfp);
1131 <                        free((char *)exppos);
1131 >                        free((void *)exppos);
1132                          expfp = NULL;
1133                  }
1134                  return(NULL);
# Line 1079 | Line 1185 | int    n;
1185   }
1186  
1187  
1188 < struct pslot *
1189 < findpslot(pid)                  /* find or allocate a process slot */
1084 < int     pid;
1188 > static struct pslot *
1189 > findpslot(int pid)                      /* find or allocate a process slot */
1190   {
1191          register struct pslot   *psempty = NULL;
1192          register int    i;
# Line 1096 | Line 1201 | int    pid;
1201   }
1202  
1203  
1204 < int
1205 < donecom(ps, pn, status)         /* clean up after finished process */
1206 < PSERVER *ps;
1207 < int     pn;
1208 < int     status;
1204 > static int
1205 > donecom(                /* clean up after finished process */
1206 >        PSERVER *ps,
1207 >        int     pn,
1208 >        int     status
1209 > )
1210   {
1211 <        register PROC   *pp;
1211 >        register NETPROC        *pp;
1212          register struct pslot   *psl;
1213  
1214          pp = ps->proc + pn;
# Line 1137 | Line 1243 | int    status;
1243   }
1244  
1245  
1246 < int
1247 < serverdown()                    /* check status of last process server */
1246 > static int
1247 > serverdown(void)                        /* check status of last process server */
1248   {
1249          if (lastpserver == NULL || !lastpserver->hostname[0])
1250                  return(0);
# Line 1154 | Line 1260 | serverdown()                   /* check status of last process server
1260   }
1261  
1262  
1263 < int
1264 < bruncom(com, fout, rf)          /* run a command in the background */
1265 < char    *com;
1266 < int     fout;
1267 < int     (*rf)();
1263 > static int
1264 > bruncom(                /* run a command in the background */
1265 > char    *com,
1266 > int     fout,
1267 > int     (*rf)()
1268 > )
1269   {
1270          int     pid;
1271          register struct pslot   *psl;
# Line 1187 | Line 1294 | int    (*rf)();
1294   }
1295  
1296  
1297 < bwait(ncoms)                            /* wait for batch job(s) to finish */
1298 < int     ncoms;
1297 > static void
1298 > bwait(int ncoms)                                /* wait for batch job(s) to finish */
1299   {
1300          int     status;
1301  
# Line 1202 | Line 1309 | int    ncoms;
1309   }
1310  
1311  
1312 < int
1313 < pruncom(com, ppins, maxcopies)  /* run a command in parallel over network */
1314 < char    *com, *ppins;
1315 < int     maxcopies;
1312 > static int
1313 > pruncom(        /* run a command in parallel over network */
1314 > char    *com,
1315 > char    *ppins,
1316 > int     maxcopies
1317 > )
1318   {
1319          int     retstatus = 0;
1320          int     hostcopies;
# Line 1227 | Line 1336 | int    maxcopies;
1336                          strcpy(com1=buf, com);  /* build -PP command */
1337                          sprintf(com1+(ppins-com), " -PP %s/%s.persist",
1338                                          vval(DIRECTORY), phostname(ps));
1339 +                        unlink(com1+(ppins-com)+5);
1340                          strcat(com1, ppins);
1341                  } else
1342                          com1 = com;
# Line 1271 | Line 1381 | int    maxcopies;
1381   }
1382  
1383  
1384 < runcom(cs)                      /* run a command locally and wait for it */
1385 < char    *cs;
1384 > static int
1385 > runcom(char *cs)                        /* run a command locally and wait for it */
1386   {
1387          if (!silent)            /* echo it */
1388                  printf("\t%s\n", cs);
# Line 1283 | Line 1393 | char   *cs;
1393   }
1394  
1395  
1396 < rmfile(fn)                      /* remove a file */
1397 < char    *fn;
1396 > static int
1397 > rmfile(char *fn)                        /* remove a file */
1398   {
1399          if (!silent)
1400 < #ifdef MSDOS
1400 > #ifdef _WIN32
1401                  printf("\tdel %s\n", fn);
1402   #else
1403                  printf("\trm -f %s\n", fn);
# Line 1298 | Line 1408 | char   *fn;
1408   }
1409  
1410  
1411 < badvalue(vc)                    /* report bad variable value and exit */
1412 < int     vc;
1411 > static void
1412 > badvalue(int vc)                        /* report bad variable value and exit */
1413   {
1414          fprintf(stderr, "%s: bad value for variable '%s'\n",
1415                          progname, vnam(vc));
1416          quit(1);
1417 + }
1418 +
1419 +
1420 + static char *
1421 + dirfile(                /* separate path into directory and file */
1422 + char    *df,
1423 + register char   *path
1424 + )
1425 + {
1426 +        register int    i;
1427 +        int     psep;
1428 +
1429 +        for (i = 0, psep = -1; path[i]; i++)
1430 +                if (path[i] == '/')
1431 +                        psep = i;
1432 +        if (df != NULL) {
1433 +                if (psep == 0) {
1434 +                        df[0] = '/';
1435 +                        df[1] = '\0';
1436 +                } else if (psep > 0) {
1437 +                        strncpy(df, path, psep);
1438 +                        df[psep] = '\0';
1439 +                } else
1440 +                        df[0] = '\0';
1441 +        }
1442 +        return(path+psep+1);
1443 + }
1444 +
1445 +
1446 + static int
1447 + getblur(double *bf)             /* get # blur samples (and fraction) */
1448 + {
1449 +        double  blurf;
1450 +        int     nblur;
1451 +        char    *s;
1452 +
1453 +        if (!vdef(MBLUR)) {
1454 +                if (bf != NULL)
1455 +                        *bf = 0.0;
1456 +                return(0);
1457 +        }
1458 +        blurf = atof(vval(MBLUR));
1459 +        if (blurf < 0.0)
1460 +                blurf = 0.0;
1461 +        if (bf != NULL)
1462 +                *bf = blurf;
1463 +        if (blurf <= FTINY)
1464 +                return(0);
1465 +        s = sskip(vval(MBLUR));
1466 +        if (!*s)
1467 +                return(DEF_NBLUR);
1468 +        nblur = atoi(s);
1469 +        if (nblur <= 0)
1470 +                return(1);
1471 +        return(nblur);
1472   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines