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.21 by gwlarson, Tue Oct 27 09:08:25 1998 UTC vs.
Revision 2.35 by greg, Mon Jan 24 19:29:39 2005 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 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   *  Combine picture files according to calcomp functions.
6   *
7   *      1/4/89
8   */
9  
10 + #include "platform.h"
11   #include "standard.h"
12 <
12 > #include "rtprocess.h"
13   #include "color.h"
16
17 #include "resolu.h"
18
14   #include "calcomp.h"
20
15   #include "view.h"
16  
17   #define MAXINP          32              /* maximum number of input files */
18 < #define WINSIZ          17              /* scanline window size */
18 > #define WINSIZ          64              /* scanline window size */
19   #define MIDSCN          ((WINSIZ-1)/2+1)
20  
21   struct {
# Line 39 | 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 76 | Line 71 | char   *progname;                      /* global argv[0] */
71   int     wrongformat = 0;
72   int     gotview;
73  
79 FILE    *popen();
74  
75 < extern char     *emalloc();
75 > static gethfunc tabputs;
76 > static void checkfile(void);
77 > static double rgb_bright(COLOR  clr);
78 > static double xyz_bright(COLOR  clr);
79 > static void init(void);
80 > static void combine(void);
81 > static void advance(void);
82 > static double l_expos(char      *nam);
83 > static double l_pixaspect(char *nm);
84 > static double l_colin(char      *nam);
85 > static double l_ray(char        *nam);
86 > static double l_psize(char *nm);
87  
88  
89 < main(argc, argv)
90 < int     argc;
91 < char    *argv[];
89 > int
90 > main(
91 >        int     argc,
92 >        char    *argv[]
93 > )
94   {
95          int     original;
96          double  f;
97 <        int     a, i;
98 < #ifdef MSDOS
99 <        extern int  _fmode;
100 <        _fmode = O_BINARY;
94 <        setmode(fileno(stdin), O_BINARY);
95 <        setmode(fileno(stdout), O_BINARY);
96 < #endif
97 >        int     a;
98 >        SET_DEFAULT_BINARY();
99 >        SET_FILE_BINARY(stdin);
100 >        SET_FILE_BINARY(stdout);
101          progname = argv[0];
102                                                  /* scan options */
103          for (a = 1; a < argc; a++) {
# Line 114 | Line 118 | char   *argv[];
118                  break;
119          }
120          newheader("RADIANCE", stdout);  /* start header */
121 +        fputnow(stdout);
122                                          /* process files */
123          for (nfiles = 0; nfiles < MAXINP; nfiles++) {
124                  setcolor(input[nfiles].coef, 1.0, 1.0, 1.0);
125                  setcolor(input[nfiles].expos, 1.0, 1.0, 1.0);
126 <                copystruct(&input[nfiles].vw, &stdview);
126 >                input[nfiles].vw = stdview;
127                  input[nfiles].pa = 1.0;
128          }
129          nfiles = 0;
# Line 132 | Line 137 | char   *argv[];
137                  if (argv[a][0] == '-')
138                          switch (argv[a][1]) {
139                          case '\0':
140 <                                input[nfiles].name = "<stdin>";
140 >                                input[nfiles].name = StandardInput;
141                                  input[nfiles].fp = stdin;
142                                  break;
143                          case 'o':
# Line 171 | Line 176 | char   *argv[];
176                                          colval(input[nfiles].expos,GRN);
177                          colval(input[nfiles].coef,BLU) /=
178                                          colval(input[nfiles].expos,BLU);
179 +                        setcolor(input[nfiles].expos, 1.0, 1.0, 1.0);
180                  }
181                  nfiles++;
182                  original = 0;
# Line 224 | Line 230 | usage:
230          eputs(
231   " [-w][-x xr][-y yr][-e expr][-f file] [ [-o][-s f][-c r g b] pic ..]\n");
232          quit(1);
233 +        return 1; /* pro forma return */
234   }
235  
236  
237 < tputs(s)                        /* put out string preceded by a tab */
238 < char    *s;
237 > static int
238 > tabputs(                        /* put out string preceded by a tab */
239 >        char    *s,
240 >        void    *p
241 > )
242   {
243          char    fmt[32];
244          double  d;
# Line 241 | Line 251 | char   *s;
251                          wrongformat = 0;
252                          strcpy(ourfmt, fmt);
253                  } else
254 <                        wrongformat = 1;
254 >                        wrongformat = globmatch(PICFMT, fmt) ? 1 : -1;
255                  return(0);      /* don't echo */
256          }
257          if (isexpos(s)) {                       /* exposure */
# Line 260 | Line 270 | char   *s;
270   }
271  
272  
273 < checkfile()                     /* ready a file */
273 > static void
274 > checkfile(void)                 /* ready a file */
275   {
276          register int    i;
277                                          /* process header */
278          gotview = 0;
279          fputs(input[nfiles].name, stdout);
280          fputs(":\n", stdout);
281 <        getheader(input[nfiles].fp, tputs, NULL);
282 <        if (wrongformat) {
281 >        getheader(input[nfiles].fp, tabputs, NULL);
282 >        if (wrongformat < 0) {
283                  eputs(input[nfiles].name);
284 <                eputs(": not in Radiance picture format\n");
284 >                eputs(": not a Radiance picture\n");
285                  quit(1);
286          }
287 +        if (wrongformat > 0) {
288 +                wputs(input[nfiles].name);
289 +                wputs(": warning -- incompatible picture format\n");
290 +        }
291          if (!gotview || setview(&input[nfiles].vw) != NULL)
292                  input[nfiles].vw.type = 0;
293          if (!fgetsresolu(&input[nfiles].rs, input[nfiles].fp)) {
# Line 295 | Line 310 | checkfile()                    /* ready a file */
310   }
311  
312  
313 < double
314 < rgb_bright(clr)
315 < COLOR  clr;
313 > static double
314 > rgb_bright(
315 >        COLOR  clr
316 > )
317   {
318          return(bright(clr));
319   }
320  
321  
322 < double
323 < xyz_bright(clr)
324 < COLOR  clr;
322 > static double
323 > xyz_bright(
324 >        COLOR  clr
325 > )
326   {
327          return(clr[CIEY]);
328   }
# Line 314 | Line 331 | COLOR  clr;
331   double  (*ourbright)() = rgb_bright;
332  
333  
334 < init()                                  /* perform final setup */
334 > static void
335 > init(void)                                      /* perform final setup */
336   {
319        double  l_colin(), l_expos(), l_pixaspect(), l_ray(), l_psize();
337          register int    i;
338                                                  /* define constants */
339          varset("PI", ':', PI);
# Line 343 | Line 360 | init()                                 /* perform final setup */
360   }
361  
362  
363 < combine()                       /* combine pictures */
363 > static void
364 > combine(void)                   /* combine pictures */
365   {
366          EPNODE  *coldef[3], *brtdef;
367          COLOR   *scanout;
# Line 397 | Line 415 | combine()                      /* combine pictures */
415                      quit(1);
416              }
417          }
418 <        efree(scanout);
418 >        efree((char *)scanout);
419   }
420  
421  
422 < advance()                       /* read in data for next scanline */
422 > static void
423 > advance(void)                   /* read in data for next scanline */
424   {
425          int     ytarget;
426          register COLOR  *st;
# Line 429 | Line 448 | advance()                      /* read in data for next scanline */
448   }
449  
450  
451 < double
452 < l_expos(nam)                    /* return picture exposure */
453 < register char   *nam;
451 > static double
452 > l_expos(                        /* return picture exposure */
453 >        register char   *nam
454 > )
455   {
456          register int    fn, n;
457  
# Line 446 | Line 466 | register char  *nam;
466                          return(colval(input[fn].expos,n));
467          eputs("Bad call to l_expos()!\n");
468          quit(1);
469 +        return 1; /* pro forma return */
470   }
471  
472  
473 < double
474 < l_pixaspect()                   /* return pixel aspect ratio */
473 > static double
474 > l_pixaspect(char *nm)           /* return pixel aspect ratio */
475   {
476          register int    fn;
477  
# Line 461 | Line 482 | l_pixaspect()                  /* return pixel aspect ratio */
482   }
483  
484  
485 < double
486 < l_colin(nam)                    /* return color value for picture */
487 < register char   *nam;
485 > static double
486 > l_colin(                        /* return color value for picture */
487 >        register char   *nam
488 > )
489   {
490          int     fn;
491          register int    n, xoff, yoff;
# Line 512 | Line 534 | register char  *nam;
534                  return(colval(input[fn].scan[MIDSCN+yoff][xscan+xoff],n));
535          eputs("Bad call to l_colin()!\n");
536          quit(1);
537 +        return 1; /* pro forma return */
538   }
539  
540  
541 < double
542 < l_ray(nam)              /* return ray origin or direction */
543 < register char   *nam;
541 > static double
542 > l_ray(          /* return ray origin or direction */
543 >        register char   *nam
544 > )
545   {
546          static unsigned long    ltick[MAXINP];
547          static FVECT    lorg[MAXINP], ldir[MAXINP];
548          static double   ldist[MAXINP];
549 <        FLOAT   loc[2];
549 >        RREAL   loc[2];
550          int     fn;
551          register int    i;
552  
# Line 531 | Line 555 | register char  *nam;
555                  errno = EDOM;
556                  return(0.0);
557          }
558 <        if (ltick[fn] < eclock) {               /* need to compute? */
558 >        if (ltick[fn] != eclock) {              /* need to compute? */
559                  lorg[fn][0] = lorg[fn][1] = lorg[fn][2] = 0.0;
560                  ldir[fn][0] = ldir[fn][1] = ldir[fn][2] = 0.0;
561                  ldist[fn] = -1.0;
# Line 551 | Line 575 | register char  *nam;
575                          return(i < 3 ? lorg[fn][i] : ldir[fn][i-3]);
576          eputs("Bad call to l_ray()!\n");
577          quit(1);
578 +        return 1; /* pro forma return */
579   }
580  
581  
582 < double
583 < l_psize()                       /* compute pixel size in steradians */
582 > static double
583 > l_psize(char *nm)               /* compute pixel size in steradians */
584   {
585          static unsigned long    ltick[MAXINP];
586          static double   psize[MAXINP];
587          FVECT   dir0, org, dirx, diry;
588 <        FLOAT   locx[2], locy[2];
588 >        RREAL   locx[2], locy[2];
589          double  d;
590          int     fn;
591          register int    i;
# Line 571 | Line 596 | l_psize()                      /* compute pixel size in steradians */
596                  return(0.0);
597          }
598          fn = d - .5;
599 <        if (ltick[fn] < eclock) {               /* need to compute? */
599 >        if (ltick[fn] != eclock) {              /* need to compute? */
600                  psize[fn] = 0.0;
601                  if (input[fn].vw.type == 0)
602                          errno = EDOM;
603                  else if (input[fn].vw.type != VT_PAR &&
604 <                                funvalue(vray[6], 1, &d) >= 0) {
604 >                                funvalue(vray[6], 1, &d) > FTINY) {
605                          for (i = 0; i < 3; i++)
606                                  dir0[i] = funvalue(vray[3+i], 1, &d);
607                          pix2loc(locx, &input[fn].rs, xscan+1, ymax-1-yscan);
608                          pix2loc(locy, &input[fn].rs, xscan, ymax-yscan);
609                          if (viewray(org, dirx, &input[fn].vw,
610 <                                        locx[0], locx[1]) >= 0 &&
610 >                                        locx[0], locx[1]) >= -FTINY &&
611                                          viewray(org, diry, &input[fn].vw,
612 <                                        locy[0], locy[1]) >= 0) {
612 >                                        locy[0], locy[1]) >= -FTINY) {
613                                                  /* approximate solid angle */
614                                  for (i = 0; i < 3; i++) {
615                                          dirx[i] -= dir0[i];
616                                          diry[i] -= dir0[i];
617                                  }
618                                  fcross(dir0, dirx, diry);
619 <                                psize[fn] = 0.5 * sqrt(DOT(dir0,dir0));
619 >                                psize[fn] = VLEN(dir0);
620                          }
621                  }
622                  ltick[fn] = eclock;
# Line 600 | Line 625 | l_psize()                      /* compute pixel size in steradians */
625   }
626  
627  
628 < wputs(msg)
629 < char    *msg;
628 > extern void
629 > wputs(char      *msg)
630   {
631          if (!nowarn)
632                  eputs(msg);
633   }
634  
635  
636 < eputs(msg)
637 < char    *msg;
636 > extern void
637 > eputs(char *msg)
638   {
639          fputs(msg, stderr);
640   }
641  
642  
643 < quit(code)              /* exit gracefully */
644 < int  code;
643 > extern void
644 > quit(int code)          /* exit gracefully */
645   {
646          register int  i;
647                                  /* close input files */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines