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

Comparing ray/src/px/pcomb.c (file contents):
Revision 2.28 by greg, Wed Oct 22 02:06:35 2003 UTC vs.
Revision 2.48 by greg, Sat Jan 13 00:35:55 2018 UTC

# Line 9 | Line 9 | static const char      RCSid[] = "$Id$";
9  
10   #include "platform.h"
11   #include "standard.h"
12 + #include "paths.h"
13   #include "color.h"
14   #include "calcomp.h"
15   #include "view.h"
16  
17 < #define MAXINP          32              /* maximum number of input files */
18 < #define WINSIZ          64              /* scanline window size */
17 > #define MAXINP          1024            /* maximum number of input files */
18 > #define WINSIZ          127             /* scanline window size */
19   #define MIDSCN          ((WINSIZ-1)/2+1)
20  
21   struct {
# Line 32 | Line 33 | int    nfiles;                         /* number of input files */
33  
34   char    ourfmt[LPICFMT+1] = PICFMT;     /* input picture format */
35  
36 + char    StandardInput[] = "<stdin>";
37   char    Command[] = "<Command>";
38   char    vcolin[3][4] = {"ri", "gi", "bi"};
39   char    vcolout[3][4] = {"ro", "go", "bo"};
# Line 66 | Line 68 | int    xpos, ypos;                     /* output position */
68  
69   char    *progname;                      /* global argv[0] */
70  
71 + int     echoheader = 1;
72   int     wrongformat = 0;
73   int     gotview;
74  
72 FILE    *popen();
75  
76 < extern char     *emalloc();
76 > static gethfunc headline;
77 > static void checkfile(void);
78 > static double rgb_bright(COLOR  clr);
79 > static double xyz_bright(COLOR  clr);
80 > static void init(void);
81 > static void combine(void);
82 > static void advance(void);
83 > static double l_expos(char      *nam);
84 > static double l_pixaspect(char *nm);
85 > static double l_colin(char      *nam);
86 > static double l_ray(char        *nam);
87 > static double l_psize(char *nm);
88  
89  
90 < main(argc, argv)
91 < int     argc;
92 < char    *argv[];
90 > int
91 > main(
92 >        int     argc,
93 >        char    *argv[]
94 > )
95   {
96          int     original;
97          double  f;
98 <        int     a, i;
98 >        int     a;
99 >
100          SET_DEFAULT_BINARY();
101          SET_FILE_BINARY(stdin);
102          SET_FILE_BINARY(stdout);
103          progname = argv[0];
104 +        esupport |= E_VARIABLE|E_FUNCTION|E_RCONST;
105 +        esupport &= ~(E_OUTCHAN|E_INCHAN);
106                                                  /* scan options */
107          for (a = 1; a < argc; a++) {
108                  if (argv[a][0] == '-')
# Line 96 | Line 114 | char   *argv[];
114                          case 'w':
115                                  nowarn = !nowarn;
116                                  continue;
117 +                        case 'h':
118 +                                echoheader = !echoheader;
119 +                                continue;
120                          case 'f':
121                          case 'e':
122                                  a++;
# Line 123 | Line 144 | char   *argv[];
144                  if (argv[a][0] == '-')
145                          switch (argv[a][1]) {
146                          case '\0':
147 <                                input[nfiles].name = "<stdin>";
147 >                                input[nfiles].name = StandardInput;
148                                  input[nfiles].fp = stdin;
149                                  break;
150                          case 'o':
# Line 180 | Line 201 | char   *argv[];
201                                  continue;
202                          case 'w':
203                                  continue;
204 +                        case 'h':
205 +                                continue;
206                          case 'f':
207                                  fcompile(argv[++a]);
208                                  continue;
# Line 189 | Line 212 | char   *argv[];
212                          }
213                  break;
214          }
215 <                                                /* set/get output resolution */
193 <        if (!vardefined(vxres))
194 <                varset(vxres, ':', (double)xmax);
195 <        if (!vardefined(vyres))
196 <                varset(vyres, ':', (double)ymax);
215 >                                                /* get output resolution */
216          xres = varvalue(vxres) + .5;
217          yres = varvalue(vyres) + .5;
218          if (xres <= 0 || yres <= 0) {
# Line 214 | Line 233 | usage:
233          eputs("Usage: ");
234          eputs(argv[0]);
235          eputs(
236 < " [-w][-x xr][-y yr][-e expr][-f file] [ [-o][-s f][-c r g b] pic ..]\n");
236 > " [-w][-h][-x xr][-y yr][-e expr][-f file] [ [-o][-s f][-c r g b] hdr ..]\n");
237          quit(1);
238 +        return 1; /* pro forma return */
239   }
240  
241  
242 < tabputs(s)                      /* put out string preceded by a tab */
243 < char    *s;
242 > static int
243 > headline(                       /* check header line & echo if requested */
244 >        char    *s,
245 >        void    *p
246 > )
247   {
248          char    fmt[32];
249          double  d;
# Line 246 | Line 269 | char   *s;
269                  input[nfiles].pa *= aspectval(s);
270          else if (isview(s) && sscanview(&input[nfiles].vw, s) > 0)
271                  gotview++;
272 <                                                /* echo line */
273 <        putchar('\t');
274 <        return(fputs(s, stdout));
272 >
273 >        if (echoheader) {                       /* echo line */
274 >                putchar('\t');
275 >                return(fputs(s, stdout));
276 >        }
277 >        return(0);
278   }
279  
280  
281 < checkfile()                     /* ready a file */
281 > static void
282 > checkfile(void)                 /* ready a file */
283   {
284 <        register int    i;
284 >        int     i;
285                                          /* process header */
286          gotview = 0;
287 <        fputs(input[nfiles].name, stdout);
288 <        fputs(":\n", stdout);
289 <        getheader(input[nfiles].fp, tabputs, NULL);
287 >        if (echoheader) {
288 >                fputs(input[nfiles].name, stdout);
289 >                fputs(":\n", stdout);
290 >        }
291 >        getheader(input[nfiles].fp, headline, NULL);
292          if (wrongformat < 0) {
293                  eputs(input[nfiles].name);
294                  eputs(": not a Radiance picture\n");
# Line 291 | Line 320 | checkfile()                    /* ready a file */
320   }
321  
322  
323 < double
324 < rgb_bright(clr)
325 < COLOR  clr;
323 > static double
324 > rgb_bright(
325 >        COLOR  clr
326 > )
327   {
328          return(bright(clr));
329   }
330  
331  
332 < double
333 < xyz_bright(clr)
334 < COLOR  clr;
332 > static double
333 > xyz_bright(
334 >        COLOR  clr
335 > )
336   {
337          return(clr[CIEY]);
338   }
# Line 310 | Line 341 | COLOR  clr;
341   double  (*ourbright)() = rgb_bright;
342  
343  
344 < init()                                  /* perform final setup */
344 > static void
345 > init(void)                                      /* perform final setup */
346   {
347 <        double  l_colin(char *), l_expos(char *), l_pixaspect(char *),
316 <                        l_ray(char *), l_psize(char *);
317 <        register int    i;
347 >        int     i;
348                                                  /* define constants */
349          varset("PI", ':', PI);
350          varset(vnfiles, ':', (double)nfiles);
# Line 337 | Line 367 | init()                                 /* perform final setup */
367                  ourbright = xyz_bright;
368          } else
369                  varset(vwhteff, ':', WHTEFFICACY);
370 +                                                /* these may be overridden */
371 +        varset(vxres, ':', (double)xmax);
372 +        varset(vyres, ':', (double)ymax);
373   }
374  
375  
376 < combine()                       /* combine pictures */
376 > static void
377 > combine(void)                   /* combine pictures */
378   {
379          EPNODE  *coldef[3], *brtdef;
380          COLOR   *scanout;
381          double  d;
382 <        register int    i, j;
382 >        int     i, j;
383                                                  /* check defined variables */
384          for (j = 0; j < 3; j++) {
385                  if (vardefined(vcolout[j]))
# Line 366 | Line 400 | combine()                      /* combine pictures */
400              advance();
401              varset(vypos, '=', (double)ypos);
402              for (xpos = 0; xpos < xres; xpos++) {
403 <                xscan = (long)xpos*xmax/xres;
403 >                xscan = (xpos+.5)*xmax/xres;
404                  varset(vxpos, '=', (double)xpos);
405                  eclock++;
406                  if (brtdef != NULL) {
# Line 398 | Line 432 | combine()                      /* combine pictures */
432   }
433  
434  
435 < advance()                       /* read in data for next scanline */
435 > static void
436 > advance(void)                   /* read in data for next scanline */
437   {
438          int     ytarget;
439 <        register COLOR  *st;
440 <        register int    i, j;
439 >        COLOR   *st;
440 >        int     i, j;
441  
442 <        for (ytarget = (long)ypos*ymax/yres; yscan > ytarget; yscan--)
442 >        for (ytarget = (ypos+.5)*ymax/yres; yscan > ytarget; yscan--)
443                  for (i = 0; i < nfiles; i++) {
444                          st = input[i].scan[WINSIZ-1];
445                          for (j = WINSIZ-1; j > 0; j--)  /* rotate window */
# Line 417 | Line 452 | advance()                      /* read in data for next scanline */
452                                  eputs(": read error\n");
453                                  quit(1);
454                          }
455 <                        if (fabs(colval(input[i].coef,RED)-1.0) > 1e-3 ||
456 <                                fabs(colval(input[i].coef,GRN)-1.0) > 1e-3 ||
422 <                                fabs(colval(input[i].coef,BLU)-1.0) > 1e-3)
423 <                                for (j = 0; j < xmax; j++)  /* adjust color */
424 <                                        multcolor(st[j], input[i].coef);
455 >                        for (j = 0; j < xmax; j++)      /* adjust color */
456 >                                multcolor(st[j], input[i].coef);
457                  }
458   }
459  
460  
461 < double
462 < l_expos(nam)                    /* return picture exposure */
463 < register char   *nam;
461 > static double
462 > l_expos(                        /* return picture exposure */
463 >        char    *nam
464 > )
465   {
466 <        register int    fn, n;
466 >        int     fn, n;
467 >        double  d;
468  
469 <        fn = argument(1) - .5;
470 <        if (fn < 0 || fn >= nfiles)
471 <                return(1.0);
469 >        d = argument(1);
470 >        if (d <= -0.5 || d >= nfiles+0.5) {
471 >                errno = EDOM;
472 >                return(0.0);
473 >        }
474 >        if (d < 0.5)
475 >                return((double)nfiles);
476 >        fn = d - 0.5;
477          if (nam == vbrtexp)
478                  return((*ourbright)(input[fn].expos));
479          n = 3;
# Line 443 | Line 482 | register char  *nam;
482                          return(colval(input[fn].expos,n));
483          eputs("Bad call to l_expos()!\n");
484          quit(1);
485 +        return 1; /* pro forma return */
486   }
487  
488  
489 < double
489 > static double
490   l_pixaspect(char *nm)           /* return pixel aspect ratio */
491   {
492 <        register int    fn;
492 >        int     fn;
493 >        double  d;
494  
495 <        fn = argument(1) - .5;
496 <        if (fn < 0 || fn >= nfiles)
497 <                return(1.0);
495 >        d = argument(1);
496 >        if (d <= -0.5 || d >= nfiles+0.5) {
497 >                errno = EDOM;
498 >                return(0.0);
499 >        }
500 >        if (d < 0.5)
501 >                return((double)nfiles);
502 >        fn = d - 0.5;
503          return(input[fn].pa);
504   }
505  
506  
507 < double
508 < l_colin(nam)                    /* return color value for picture */
509 < register char   *nam;
507 > static double
508 > l_colin(                        /* return color value for picture */
509 >        char    *nam
510 > )
511   {
512          int     fn;
513 <        register int    n, xoff, yoff;
513 >        int     n, xoff, yoff;
514          double  d;
515  
516 <        fn = argument(1) - .5;
517 <        if (fn < 0 || fn >= nfiles) {
516 >        d = argument(1);
517 >        if (d <= -0.5 || d >= nfiles+0.5) {
518                  errno = EDOM;
519                  return(0.0);
520          }
521 +        if (d < 0.5)
522 +                return((double)nfiles);
523 +        fn = d - 0.5;
524          xoff = yoff = 0;
525          n = nargum();
526          if (n >= 2) {
# Line 509 | Line 559 | register char  *nam;
559                  return(colval(input[fn].scan[MIDSCN+yoff][xscan+xoff],n));
560          eputs("Bad call to l_colin()!\n");
561          quit(1);
562 +        return 1; /* pro forma return */
563   }
564  
565  
566 < double
567 < l_ray(nam)              /* return ray origin or direction */
568 < register char   *nam;
566 > static double
567 > l_ray(          /* return ray origin or direction */
568 >        char    *nam
569 > )
570   {
571          static unsigned long    ltick[MAXINP];
572          static FVECT    lorg[MAXINP], ldir[MAXINP];
573          static double   ldist[MAXINP];
574          RREAL   loc[2];
575 +        double  d;
576          int     fn;
577 <        register int    i;
577 >        int     i;
578  
579 <        fn = argument(1) - .5;
580 <        if (fn < 0 || fn >= nfiles) {
579 >        d = argument(1);
580 >        if (d <= -0.5 || d >= nfiles+0.5) {
581                  errno = EDOM;
582                  return(0.0);
583          }
584 +        if (d < 0.5)
585 +                return((double)nfiles);
586 +        fn = d - 0.5;
587          if (ltick[fn] != eclock) {              /* need to compute? */
588                  lorg[fn][0] = lorg[fn][1] = lorg[fn][2] = 0.0;
589                  ldir[fn][0] = ldir[fn][1] = ldir[fn][2] = 0.0;
# Line 548 | Line 604 | register char  *nam;
604                          return(i < 3 ? lorg[fn][i] : ldir[fn][i-3]);
605          eputs("Bad call to l_ray()!\n");
606          quit(1);
607 +        return 1; /* pro forma return */
608   }
609  
610  
611 < double
611 > static double
612   l_psize(char *nm)               /* compute pixel size in steradians */
613   {
614          static unsigned long    ltick[MAXINP];
# Line 560 | Line 617 | l_psize(char *nm)              /* compute pixel size in steradians
617          RREAL   locx[2], locy[2];
618          double  d;
619          int     fn;
620 <        register int    i;
620 >        int     i;
621  
622          d = argument(1);
623 <        if (d < .5 || d >= nfiles+.5) {
623 >        if (d <= -0.5 || d >= nfiles+0.5) {
624                  errno = EDOM;
625                  return(0.0);
626          }
627 <        fn = d - .5;
627 >        if (d < 0.5)
628 >                return((double)nfiles);
629 >        fn = d - 0.5;
630          if (ltick[fn] != eclock) {              /* need to compute? */
631                  psize[fn] = 0.0;
632                  if (input[fn].vw.type == 0)
633                          errno = EDOM;
634                  else if (input[fn].vw.type != VT_PAR &&
635 <                                funvalue(vray[6], 1, &d) >= 0) {
635 >                                funvalue(vray[6], 1, &d) >= -FTINY) {
636                          for (i = 0; i < 3; i++)
637                                  dir0[i] = funvalue(vray[3+i], 1, &d);
638                          pix2loc(locx, &input[fn].rs, xscan+1, ymax-1-yscan);
639                          pix2loc(locy, &input[fn].rs, xscan, ymax-yscan);
640                          if (viewray(org, dirx, &input[fn].vw,
641 <                                        locx[0], locx[1]) >= 0 &&
641 >                                        locx[0], locx[1]) >= -FTINY &&
642                                          viewray(org, diry, &input[fn].vw,
643 <                                        locy[0], locy[1]) >= 0) {
643 >                                        locy[0], locy[1]) >= -FTINY) {
644                                                  /* approximate solid angle */
645                                  for (i = 0; i < 3; i++) {
646                                          dirx[i] -= dir0[i];
647                                          diry[i] -= dir0[i];
648                                  }
649                                  fcross(dir0, dirx, diry);
650 <                                psize[fn] = sqrt(DOT(dir0,dir0));
650 >                                psize[fn] = VLEN(dir0);
651                          }
652                  }
653                  ltick[fn] = eclock;
# Line 597 | Line 656 | l_psize(char *nm)              /* compute pixel size in steradians
656   }
657  
658  
659 < void
660 < wputs(msg)
602 < char    *msg;
659 > extern void
660 > wputs(char      *msg)
661   {
662          if (!nowarn)
663                  eputs(msg);
664   }
665  
666  
667 < void
668 < eputs(msg)
611 < char    *msg;
667 > extern void
668 > eputs(char *msg)
669   {
670          fputs(msg, stderr);
671   }
672  
673  
674 < void
675 < quit(code)              /* exit gracefully */
619 < int  code;
674 > extern void
675 > quit(int code)          /* exit gracefully */
676   {
677 <        register int  i;
677 >        int  i;
678                                  /* close input files */
679          for (i = 0; i < nfiles; i++)
680                  if (input[i].name == Command)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines