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

Comparing ray/src/util/rtcontrib.c (file contents):
Revision 1.39 by greg, Fri Oct 21 01:12:59 2005 UTC vs.
Revision 1.40 by greg, Sun Feb 5 22:22:21 2006 UTC

# Line 102 | Line 102 | struct rtproc {
102   char            *rtargv[256+2*MAXMODLIST] = { "rtrace",
103                                  "-dj", ".5", "-dr", "3",
104                                  "-ab", "1", "-ad", "128", };
105 +
106   int  rtargc = 9;
107                                          /* overriding rtrace options */
108 < char            *myrtopts[] = { "-o~~TmWdp", "-h-", "-x", "1", "-y", "0",
108 > char            *myrtopts[] = { "-h-", "-x", "1", "-y", "0",
109                                  "-dt", "0", "-as", "0", "-aa", "0", NULL };
110  
111 + #define RTCOEFF         "-o~~TmWdp"     /* compute coefficients only */
112 + #define RTCONTRIB       "-o~~TmVdp"     /* compute ray contributions */
113 +
114   struct rtproc   rt0;                    /* head of rtrace process list */
115  
116   struct rtproc   *rt_unproc = NULL;      /* unprocessed ray trees */
# Line 208 | Line 212 | fmterr:
212   int
213   main(int argc, char *argv[])
214   {
215 +        int     contrib = 0;
216          int     nprocs = 1;
217          int     recover = 0;
218          char    *curout = NULL;
# Line 218 | Line 223 | main(int argc, char *argv[])
223                                  /* need at least one argument */
224          if (argc < 2) {
225                  fprintf(stderr,
226 < "Usage: %s [-n nprocs][-r][-e expr][-f source][-o ospec][-b binv] {-m mod | -M file} [rtrace options] octree\n",
226 > "Usage: %s [-n nprocs][-V][-r][-e expr][-f source][-o ospec][-b binv] {-m mod | -M file} [rtrace options] octree\n",
227                          argv[0]);
228                  exit(1);
229          }
# Line 240 | Line 245 | main(int argc, char *argv[])
245                  }
246                  if (argv[i][0] == '-')
247                          switch (argv[i][1]) {
243                        case 'r':               /* recover output */
244                                if (argv[i][2]) break;
245                                recover++;
246                                continue;
248                          case 'n':               /* number of processes */
249                                  if (argv[i][2] || i >= argc-2) break;
250                                  nprocs = atoi(argv[++i]);
251                                  if (nprocs <= 0)
252                                          error(USER, "illegal number of processes");
253                                  continue;
254 +                        case 'V':               /* output contributions */
255 +                                switch (argv[i][2]) {
256 +                                case '\0':
257 +                                        contrib = !contrib;
258 +                                        continue;
259 +                                case '+': case '1':
260 +                                case 'T': case 't':
261 +                                case 'Y': case 'y':
262 +                                        contrib = 1;
263 +                                        continue;
264 +                                case '-': case '0':
265 +                                case 'F': case 'f':
266 +                                case 'N': case 'n':
267 +                                        contrib = 0;
268 +                                        continue;
269 +                                }
270 +                                break;
271 +                        case 'r':               /* recover output */
272 +                                if (argv[i][2]) break;
273 +                                recover++;
274 +                                continue;
275                          case 'h':               /* output header? */
276                                  switch (argv[i][2]) {
277                                  case '\0':
# Line 336 | Line 358 | main(int argc, char *argv[])
358                                  /* add "mandatory" rtrace settings */
359          for (j = 0; myrtopts[j] != NULL; j++)
360                  rtargv[rtargc++] = myrtopts[j];
361 +        rtargv[rtargc++] = contrib ? RTCONTRIB : RTCOEFF;
362                                  /* just asking for defaults? */
363          if (!strcmp(argv[i], "-defaults")) {
364                  char    sxres[16], syres[16];
365                  char    *rtpath;
366                  printf("-n  %-2d\t\t\t\t# number of processes\n", nprocs);
367 +                printf("-V%c\t\t\t\t# output %s\n", contrib ? '+' : '-',
368 +                                contrib ? "contributions" : "coefficients");
369                  fflush(stdout);                 /* report OUR options */
370                  rtargv[rtargc++] = header ? "-h+" : "-h-";
371                  sprintf(fmt, "-f%c%c", inpfmt, outfmt);
# Line 351 | Line 376 | main(int argc, char *argv[])
376                  rtargv[rtargc++] = "-y";
377                  sprintf(syres, "%d", yres);
378                  rtargv[rtargc++] = syres;
354                rtargv[rtargc++] = "-oTW";
379                  rtargv[rtargc++] = "-defaults";
380                  rtargv[rtargc] = NULL;
381                  rtpath = getpath(rtargv[0], getenv("PATH"), X_OK);
# Line 961 | Line 985 | process_queue(void)
985                          if (!n || !(isalpha(*cp) | (*cp == '_')))
986                                  error(USER, "bad modifier name from rtrace");
987                                          /* get modifier name */
988 <                        while (n > 0 && *cp != '\t') {
988 >                        while (n > 1 && *cp != '\t') {
989 >                                if (mnp - modname >= sizeof(modname)-2)
990 >                                        error(INTERNAL, "modifier name too long");
991                                  *mnp++ = *cp++; n--;
992                          }
993                          *mnp = '\0';

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines