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.24 by gwlarson, Thu Feb 26 10:27:45 1998 UTC vs.
Revision 2.27 by gwlarson, Wed Jun 3 16:37:51 1998 UTC

# Line 21 | Line 21 | static char SCCSid[] = "$SunId$ LBL";
21   #else
22   #define REMSH           "rsh"
23   #endif
24 <                                /* input variables */
25 < #define HOST            0               /* rendering host machine */
26 < #define RENDER          1               /* rendering options */
27 < #define PFILT           2               /* pfilt options */
28 < #define PINTERP         3               /* pinterp options */
29 < #define OCTREE          4               /* octree file name */
30 < #define DIRECTORY       5               /* working (sub)directory */
31 < #define BASENAME        6               /* output image base name */
32 < #define VIEWFILE        7               /* animation frame views */
33 < #define START           8               /* starting frame number */
34 < #define END             9               /* ending frame number */
35 < #define RIF             10              /* rad input file */
36 < #define NEXTANIM        11              /* next animation file */
37 < #define ANIMATE         12              /* animation command */
38 < #define TRANSFER        13              /* frame transfer command */
39 < #define ARCHIVE         14              /* archiving command */
40 < #define INTERP          15              /* # frames to interpolate */
41 < #define OVERSAMP        16              /* # times to oversample image */
42 < #define MBLUR           17              /* samples for motion blur */
43 < #define RTRACE          18              /* use rtrace with pinterp? */
44 < #define DISKSPACE       19              /* how much disk space to use */
45 < #define RESOLUTION      20              /* desired final resolution */
46 < #define EXPOSURE        21              /* how to compute exposure */
47 < #define RSH             22              /* remote shell script or program */
24 >                                /* input variables (alphabetical by name) */
25 > #define ANIMATE         0               /* animation command */
26 > #define ARCHIVE         1               /* archiving command */
27 > #define BASENAME        2               /* output image base name */
28 > #define DIRECTORY       3               /* working (sub)directory */
29 > #define DISKSPACE       4               /* how much disk space to use */
30 > #define END             5               /* ending frame number */
31 > #define EXPOSURE        6               /* how to compute exposure */
32 > #define HOST            7               /* rendering host machine */
33 > #define INTERP          8               /* # frames to interpolate */
34 > #define MBLUR           9               /* samples for motion blur */
35 > #define NEXTANIM        10              /* next animation file */
36 > #define OCTREE          11              /* octree file name */
37 > #define OVERSAMP        12              /* # times to oversample image */
38 > #define PFILT           13              /* pfilt options */
39 > #define PINTERP         14              /* pinterp options */
40 > #define RENDER          15              /* rendering options */
41 > #define RESOLUTION      16              /* desired final resolution */
42 > #define RIF             17              /* rad input file */
43 > #define RSH             18              /* remote shell script or program */
44 > #define RTRACE          19              /* use rtrace with pinterp? */
45 > #define START           20              /* starting frame number */
46 > #define TRANSFER        21              /* frame transfer command */
47 > #define VIEWFILE        22              /* animation frame views */
48  
49   int     NVARS = 23;             /* total number of variables */
50  
51   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},
52          {"ANIMATE",     2,      0,      NULL,   onevalue},
65        {"TRANSFER",    2,      0,      NULL,   onevalue},
53          {"ARCHIVE",     2,      0,      NULL,   onevalue},
54 +        {"BASENAME",    3,      0,      NULL,   onevalue},
55 +        {"DIRECTORY",   3,      0,      NULL,   onevalue},
56 +        {"DISKSPACE",   3,      0,      NULL,   fltvalue},
57 +        {"END",         2,      0,      NULL,   intvalue},
58 +        {"EXPOSURE",    3,      0,      NULL,   onevalue},
59 +        {"host",        4,      0,      NULL,   NULL},
60          {"INTERPOLATE", 3,      0,      NULL,   intvalue},
68        {"OVERSAMPLE",  2,      0,      NULL,   fltvalue},
61          {"MBLUR",       2,      0,      NULL,   onevalue},
62 <        {"RTRACE",      2,      0,      NULL,   boolvalue},
63 <        {"DISKSPACE",   3,      0,      NULL,   fltvalue},
62 >        {"NEXTANIM",    3,      0,      NULL,   onevalue},
63 >        {"OCTREE",      3,      0,      NULL,   onevalue},
64 >        {"OVERSAMPLE",  2,      0,      NULL,   fltvalue},
65 >        {"pfilt",       2,      0,      NULL,   catvalues},
66 >        {"pinterp",     2,      0,      NULL,   catvalues},
67 >        {"render",      3,      0,      NULL,   catvalues},
68          {"RESOLUTION",  3,      0,      NULL,   onevalue},
69 <        {"EXPOSURE",    3,      0,      NULL,   onevalue},
69 >        {"RIF",         3,      0,      NULL,   onevalue},
70          {"RSH",         3,      0,      NULL,   onevalue},
71 +        {"RTRACE",      2,      0,      NULL,   boolvalue},
72 +        {"START",       2,      0,      NULL,   intvalue},
73 +        {"TRANSFER",    2,      0,      NULL,   onevalue},
74 +        {"VIEWFILE",    2,      0,      NULL,   onevalue},
75   };
76  
77   #define SFNAME  "STATUS"                /* status file name */
# Line 115 | Line 115 | struct pslot   *findpslot();
115   PSERVER *lastpserver;           /* last process server with error */
116  
117   VIEW    *getview();
118 < char    *getexp();
118 > char    *getexp(), *dirfile();
119  
120   extern time_t   fdate(), time();
121  
# Line 536 | Line 536 | animate()                      /* run animation */
536                  quit(1);
537          }
538                                          /* initialize archive argument list */
539 <        i = 16;
540 <        if (vdef(ARCHIVE) && strlen(vval(ARCHIVE)) > i)
541 <                i = strlen(vval(ARCHIVE));
539 >        i = vdef(ARCHIVE) ? strlen(vval(ARCHIVE))+132 : 132;
540          arcnext = arcfirst = arcargs + i;
541                                          /* initialize status file */
542          if (astat.rnext == 0)
# Line 642 | Line 640 | filterframes()                         /* catch up with filtering */
640  
641   transferframes()                        /* catch up with picture transfers */
642   {
643 <        char    combuf[10240];
643 >        char    combuf[10240], *fbase;
644          register char   *cp;
645          register int    i;
646  
# Line 653 | Line 651 | transferframes()                       /* catch up with picture transfers
651                  putastat();             /* update status */
652                  return;
653          }
654 <        strcpy(combuf, vval(TRANSFER)); /* start transfer command */
655 <        cp = combuf + strlen(combuf);
654 >        strcpy(combuf, "cd ");          /* start transfer command */
655 >        fbase = dirfile(cp = combuf+3, vval(BASENAME));
656 >        if (*cp) {
657 >                while (*++cp) ;
658 >                *cp++ = ';'; *cp++ = ' ';
659 >        } else
660 >                cp = combuf;
661 >        strcpy(cp, vval(TRANSFER));
662 >        while (*cp) cp++;
663                                          /* make argument list */
664          for (i = astat.tnext; i < astat.fnext; i++) {
665                  *cp++ = ' ';
666 <                sprintf(cp, vval(BASENAME), i);
666 >                sprintf(cp, fbase, i);
667                  while (*cp) cp++;
668                  strcpy(cp, ".pic");
669                  cp += 4;
# Line 707 | Line 712 | char   *vfn;
712                                  close(open(combuf, O_RDONLY|O_CREAT, 0666));
713                          }
714                                          /* create command */
715 <        sprintf(combuf, "rpict%s -w0", rendopt);
715 >        sprintf(combuf, "rpict%s%s -w0", rendopt,
716 >                        viewopt(getview(first>1 ? first-1 : 1)));
717          if (vint(INTERP) || atoi(vval(MBLUR)))
718                  sprintf(combuf+strlen(combuf), " -z %s.zbf", vval(BASENAME));
719          sprintf(combuf+strlen(combuf), " -o %s.unf %s -S %d",
# Line 799 | Line 805 | archive()                      /* archive and remove renderings */
805   {
806   #define RMCOML  (sizeof(rmcom)-1)
807          static char     rmcom[] = "rm -f";
808 <        register int    i;
808 >        char    basedir[128];
809 >        int     dlen, alen;
810 >        register int    j;
811  
812          if (arcnext == arcfirst)
813                  return;                         /* nothing to do */
814 +        dirfile(basedir, vval(BASENAME));
815 +        dlen = strlen(basedir);
816          if (vdef(ARCHIVE)) {                    /* run archive command */
817 <                i = strlen(vval(ARCHIVE));
818 <                strncpy(arcfirst-i, vval(ARCHIVE), i);
819 <                if (runcom(arcfirst-i)) {
817 >                alen = strlen(vval(ARCHIVE));
818 >                if (dlen) {
819 >                        j = alen + dlen + 5;
820 >                        strncpy(arcfirst-j, "cd ", 3);
821 >                        strncpy(arcfirst-j+3, basedir, dlen);
822 >                        (arcfirst-j)[dlen+3] = ';'; (arcfirst-j)[dlen+4] = ' ';
823 >                } else
824 >                        j = alen;
825 >                strncpy(arcfirst-alen, vval(ARCHIVE), alen);
826 >                if (runcom(arcfirst-j)) {
827                          fprintf(stderr, "%s: error running archive command\n",
828                                          progname);
829                          quit(1);
830                  }
831          }
832 +        if (dlen) {
833 +                j = RMCOML + dlen + 5;
834 +                strncpy(arcfirst-j, "cd ", 3);
835 +                strncpy(arcfirst-j+3, basedir, dlen);
836 +                (arcfirst-j)[dlen+3] = ';'; (arcfirst-j)[dlen+4] = ' ';
837 +        } else
838 +                j = RMCOML;
839                                                  /* run remove command */
840          strncpy(arcfirst-RMCOML, rmcom, RMCOML);
841 <        runcom(arcfirst-RMCOML);
841 >        runcom(arcfirst-j);
842          arcnext = arcfirst;                     /* reset argument list */
843   #undef RMCOML
844   }
# Line 829 | Line 853 | int    rvr;
853   {
854          extern int      frecover();
855          static int      iter = 0;
856 <        char    fnbefore[128], fnafter[128];
856 >        char    fnbefore[128], fnafter[128], *fbase;
857          char    combuf[1024], fname0[128], fname1[128];
858          int     usepinterp, usepfilt, nora_rgbe;
859          int     frseq[2];
# Line 843 | Line 867 | int    rvr;
867                                                  /* compute rendered views */
868          frseq[0] = frame - ((frame-1) % (vint(INTERP)+1));
869          frseq[1] = frseq[0] + vint(INTERP) + 1;
870 +        fbase = dirfile(NULL, vval(BASENAME));
871          if (frseq[1] > vint(END))
872                  frseq[1] = vint(END);
873          if (frseq[1] == frame) {                        /* pfilt only */
# Line 852 | Line 877 | int    rvr;
877          } else if (frseq[0] == frame) {         /* no interpolation needed */
878                  if (!rvr && frame > 1+vint(INTERP)) {   /* archive previous */
879                          *arcnext++ = ' ';
880 <                        sprintf(arcnext, vval(BASENAME), frame-vint(INTERP)-1);
880 >                        sprintf(arcnext, fbase, frame-vint(INTERP)-1);
881                          while (*arcnext) arcnext++;
882                          strcpy(arcnext, ".unf");
883                          arcnext += 4;
884                          if (usepinterp || vint(INTERP)) {       /* and Z-buf */
885                                  *arcnext++ = ' ';
886 <                                sprintf(arcnext, vval(BASENAME),
862 <                                                frame-vint(INTERP)-1);
886 >                                sprintf(arcnext, fbase, frame-vint(INTERP)-1);
887                                  while (*arcnext) arcnext++;
888                                  strcpy(arcnext, ".zbf");
889                                  arcnext += 4;
# Line 880 | Line 904 | int    rvr;
904                  if (rvr == 2 && recover(frseq[1]))      /* recover after? */
905                          return(1);
906                  if (atoi(vval(MBLUR))) {
883                        FILE    *fp;            /* motion blurring */
907                          sprintf(fname0, "%s/vw0%c", vval(DIRECTORY),
908                                          'a'+(iter%26));
886                        if ((fp = fopen(fname0, "w")) == NULL) {
887                                perror(fname0); quit(1);
888                        }
889                        fputs(VIEWSTR, fp);
890                        fprintview(vp, fp);
891                        putc('\n', fp); fclose(fp);
892                        if ((vp = getview(frame+1)) == NULL) {
893                                fprintf(stderr,
894                        "%s: unexpected error reading view for frame %d\n",
895                                                progname, frame+1);
896                                quit(1);
897                        }
909                          sprintf(fname1, "%s/vw1%c", vval(DIRECTORY),
910                                          'a'+(iter%26));
911 <                        if ((fp = fopen(fname1, "w")) == NULL) {
912 <                                perror(fname1); quit(1);
911 >                        if (!noaction) {
912 >                                FILE    *fp;            /* motion blurring */
913 >                                if ((fp = fopen(fname0, "w")) == NULL) {
914 >                                        perror(fname0); quit(1);
915 >                                }
916 >                                fputs(VIEWSTR, fp);
917 >                                fprintview(vp, fp);
918 >                                putc('\n', fp); fclose(fp);
919 >                                if ((vp = getview(frame+1)) == NULL) {
920 >                                        fprintf(stderr,
921 >                        "%s: unexpected error reading view for frame %d\n",
922 >                                                        progname, frame+1);
923 >                                        quit(1);
924 >                                }
925 >                                if ((fp = fopen(fname1, "w")) == NULL) {
926 >                                        perror(fname1); quit(1);
927 >                                }
928 >                                fputs(VIEWSTR, fp);
929 >                                fprintview(vp, fp);
930 >                                putc('\n', fp); fclose(fp);
931                          }
903                        fputs(VIEWSTR, fp);
904                        fprintview(vp, fp);
905                        putc('\n', fp); fclose(fp);
932                          sprintf(combuf,
933                          "(pmblur %s %d %s %s; rm -f %s %s) | pinterp -B",
934                          *sskip(vval(MBLUR)) ? sskip2(vval(MBLUR),1) : "1",
# Line 1326 | Line 1352 | int    vc;
1352          fprintf(stderr, "%s: bad value for variable '%s'\n",
1353                          progname, vnam(vc));
1354          quit(1);
1355 + }
1356 +
1357 +
1358 + char *
1359 + dirfile(df, path)               /* separate path into directory and file */
1360 + char    *df;
1361 + register char   *path;
1362 + {
1363 +        register int    i;
1364 +        int     psep;
1365 +
1366 +        for (i = 0, psep = -1; path[i]; i++)
1367 +                if (path[i] == '/')
1368 +                        psep = i;
1369 +        if (df != NULL)
1370 +                if (psep == 0) {
1371 +                        df[0] = '/';
1372 +                        df[1] = '\0';
1373 +                } else if (psep > 0) {
1374 +                        strncpy(df, path, psep);
1375 +                        df[psep] = '\0';
1376 +                } else
1377 +                        df[0] = '\0';
1378 +        return(path+psep+1);
1379   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines