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.9 by greg, Fri Apr 9 09:49:36 1993 UTC vs.
Revision 2.16 by greg, Mon Oct 16 12:04:33 1995 UTC

# Line 10 | Line 10 | static char SCCSid[] = "$SunId$ LBL";
10   *      1/4/89
11   */
12  
13 < #include <stdio.h>
13 > #include "standard.h"
14  
15 #ifdef MSDOS
16 #include <fcntl.h>
17 #endif
18
19 #include <math.h>
20
21 #include <errno.h>
22
15   #include "color.h"
16  
17   #include "resolu.h"
18  
19   #include "calcomp.h"
20  
21 + #include "view.h"
22 +
23   #define MAXINP          32              /* maximum number of input files */
24 < #define WINSIZ          9               /* scanline window size */
25 < #define MIDSCN          4               /* current scan position */
24 > #define WINSIZ          17              /* scanline window size */
25 > #define MIDSCN          ((WINSIZ-1)/2+1)
26  
27   struct {
28          char    *name;          /* file or command name */
29          FILE    *fp;            /* stream pointer */
30 +        VIEW    vw;             /* view for picture */
31 +        RESOLU  rs;             /* image resolution and orientation */
32          COLOR   *scan[WINSIZ];  /* input scanline window */
33          COLOR   coef;           /* coefficient */
34          COLOR   expos;          /* recorded exposure */
# Line 40 | Line 36 | struct {
36  
37   int     nfiles;                         /* number of input files */
38  
39 + char    ourfmt[LPICFMT+1] = PICFMT;     /* input picture format */
40 +
41   char    Command[] = "<Command>";
42   char    vcolin[3][4] = {"ri", "gi", "bi"};
43   char    vcolout[3][4] = {"ro", "go", "bo"};
# Line 48 | Line 46 | char   vbrtout[] = "lo";
46   char    vcolexp[3][4] = {"re", "ge", "be"};
47   char    vbrtexp[] = "le";
48  
49 + char    vray[6][4] = {"Ox", "Oy", "Oz", "Dx", "Dy", "Dz"};
50 +
51   char    vnfiles[] = "nfiles";
52   char    vxmax[] = "xmax";
53   char    vymax[] = "ymax";
# Line 66 | Line 66 | int    xres, yres;                     /* output resolution */
66  
67   int     xpos, ypos;                     /* output position */
68  
69 + char    *progname;                      /* global argv[0] */
70 +
71   int     wrongformat = 0;
72 + int     gotview;
73  
74   FILE    *popen();
75  
# Line 86 | Line 89 | char   *argv[];
89          setmode(fileno(stdin), O_BINARY);
90          setmode(fileno(stdout), O_BINARY);
91   #endif
92 +        progname = argv[0];
93                                                  /* scan options */
94          for (a = 1; a < argc; a++) {
95                  if (argv[a][0] == '-')
# Line 104 | Line 108 | char   *argv[];
108                          }
109                  break;
110          }
111 +        newheader("RADIANCE", stdout);  /* start header */
112                                          /* process files */
113          for (nfiles = 0; nfiles < MAXINP; nfiles++) {
114                  setcolor(input[nfiles].coef, 1.0, 1.0, 1.0);
115                  setcolor(input[nfiles].expos, 1.0, 1.0, 1.0);
116 +                copystruct(&input[nfiles].vw, &stdview);
117          }
118          nfiles = 0;
119          original = 0;
# Line 199 | Line 205 | char   *argv[];
205          }
206                                                  /* complete header */
207          printargs(argc, argv, stdout);
208 <        fputformat(COLRFMT, stdout);
208 >        if (strcmp(ourfmt, PICFMT))
209 >                fputformat(ourfmt, stdout);     /* print format if known */
210          putchar('\n');
211          fprtresolu(xres, yres, stdout);
212                                                  /* combine pictures */
# Line 221 | Line 228 | char   *s;
228          double  d;
229          COLOR   ctmp;
230  
231 <        if (isformat(s)) {                      /* check format */
225 <                formatval(fmt, s);
226 <                wrongformat = strcmp(fmt, COLRFMT);
231 >        if (isheadid(s))                        /* header id */
232                  return;         /* don't echo */
233 +        if (formatval(fmt, s)) {                /* check format */
234 +                if (globmatch(ourfmt, fmt)) {
235 +                        wrongformat = 0;
236 +                        strcpy(ourfmt, fmt);
237 +                } else
238 +                        wrongformat = 1;
239 +                return;         /* don't echo */
240          }
241          if (isexpos(s)) {                       /* exposure */
242                  d = exposval(s);
# Line 232 | Line 244 | char   *s;
244          } else if (iscolcor(s)) {               /* color correction */
245                  colcorval(ctmp, s);
246                  multcolor(input[nfiles].expos, ctmp);
247 <        }
247 >        } else if (isview(s) && sscanview(&input[nfiles].vw, s) > 0)
248 >                gotview++;
249                                                  /* echo line */
250          putchar('\t');
251          fputs(s, stdout);
# Line 241 | Line 254 | char   *s;
254  
255   checkfile()                     /* ready a file */
256   {
244        int     xinp, yinp;
257          register int    i;
258                                          /* process header */
259 +        gotview = 0;
260          fputs(input[nfiles].name, stdout);
261          fputs(":\n", stdout);
262          getheader(input[nfiles].fp, tputs, NULL);
# Line 252 | Line 265 | checkfile()                    /* ready a file */
265                  eputs(": not in Radiance picture format\n");
266                  quit(1);
267          }
268 <        if (fgetresolu(&xinp, &yinp, input[nfiles].fp) < 0) {
268 >        if (!gotview || setview(&input[nfiles].vw) != NULL)
269 >                input[nfiles].vw.type = 0;
270 >        if (!fgetsresolu(&input[nfiles].rs, input[nfiles].fp)) {
271                  eputs(input[nfiles].name);
272                  eputs(": bad picture size\n");
273                  quit(1);
274          }
275          if (xmax == 0 && ymax == 0) {
276 <                xmax = xinp;
277 <                ymax = yinp;
278 <        } else if (xinp != xmax || yinp != ymax) {
276 >                xmax = scanlen(&input[nfiles].rs);
277 >                ymax = numscans(&input[nfiles].rs);
278 >        } else if (scanlen(&input[nfiles].rs) != xmax ||
279 >                        numscans(&input[nfiles].rs) != ymax) {
280                  eputs(input[nfiles].name);
281                  eputs(": resolution mismatch\n");
282                  quit(1);
# Line 271 | Line 287 | checkfile()                    /* ready a file */
287   }
288  
289  
290 + double
291 + rgb_bright(clr)
292 + COLOR  clr;
293 + {
294 +        return(bright(clr));
295 + }
296 +
297 +
298 + double
299 + xyz_bright(clr)
300 + COLOR  clr;
301 + {
302 +        return(clr[CIEY]);
303 + }
304 +
305 +
306 + double  (*ourbright)() = rgb_bright;
307 +
308 +
309   init()                                  /* perform final setup */
310   {
311 <        double  l_colin(), l_expos();
311 >        double  l_colin(), l_expos(), l_ray();
312          register int    i;
313                                                  /* define constants */
314          varset(vnfiles, ':', (double)nfiles);
# Line 286 | Line 321 | init()                                 /* perform final setup */
321          }
322          funset(vbrtexp, 1, ':', l_expos);
323          funset(vbrtin, 1, '=', l_colin);
324 +        for (i = 0; i < 6; i++)
325 +                funset(vray[i], 1, '=', l_ray);
326 +                                                /* set brightness function */
327 +        if (!strcmp(ourfmt, CIEFMT))
328 +                ourbright = xyz_bright;
329   }
330  
331  
# Line 385 | Line 425 | register char  *nam;
425          if (fn < 0 || fn >= nfiles)
426                  return(1.0);
427          if (nam == vbrtexp)
428 <                return(bright(input[fn].expos));
428 >                return((*ourbright)(input[fn].expos));
429          n = 3;
430          while (n--)
431                  if (nam == vcolexp[n])
# Line 442 | Line 482 | register char  *nam;
482                  }
483          }
484          if (nam == vbrtin)
485 <                return(bright(input[fn].scan[MIDSCN+yoff][xscan+xoff]));
485 >                return((*ourbright)(input[fn].scan[MIDSCN+yoff][xscan+xoff]));
486          n = 3;
487          while (n--)
488              if (nam == vcolin[n])
489                  return(colval(input[fn].scan[MIDSCN+yoff][xscan+xoff],n));
490          eputs("Bad call to l_colin()!\n");
491 +        quit(1);
492 + }
493 +
494 +
495 + double
496 + l_ray(nam)              /* return ray origin or direction */
497 + register char   *nam;
498 + {
499 +        static unsigned long    ltick[MAXINP];
500 +        static FVECT    lorg[MAXINP], ldir[MAXINP];
501 +        FLOAT   loc[2];
502 +        double  d;
503 +        int     fn;
504 +        register int    i;
505 +
506 +        d = argument(1);
507 +        if (d > -.5 && d < .5)
508 +                return((double)nfiles);
509 +        fn = d - .5;
510 +        if (fn < 0 || fn >= nfiles) {
511 +                errno = EDOM;
512 +                return(0.0);
513 +        }
514 +        if (ltick[fn] < eclock) {               /* need to compute? */
515 +                lorg[fn][0] = lorg[fn][1] = lorg[fn][2] = 0.0;
516 +                ldir[fn][0] = ldir[fn][1] = ldir[fn][2] = 0.0;
517 +                if (input[fn].vw.type == 0)
518 +                        errno = EDOM;
519 +                else {
520 +                        pix2loc(loc, &input[fn].rs, xscan, ymax-1-yscan);
521 +                        if (viewray(lorg[fn], ldir[fn],
522 +                                        &input[fn].vw, loc[0], loc[1]) < 0)
523 +                                errno = ERANGE;
524 +                }
525 +                ltick[fn] = eclock;
526 +        }
527 +        i = 6;
528 +        while (i--)
529 +                if (nam == vray[i])
530 +                        return(i < 3 ? lorg[fn][i] : ldir[fn][i-3]);
531 +        eputs("Bad call to l_ray()!\n");
532          quit(1);
533   }
534  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines