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

Comparing ray/src/px/pvalue.c (file contents):
Revision 2.15 by greg, Tue Feb 25 16:22:05 2003 UTC vs.
Revision 2.18 by schorsch, Thu Jun 5 19:29:34 2003 UTC

# Line 1 | Line 1
1   #ifndef lint
2 < static const char       RCSid[] = "$Id$";
2 > static const char RCSid[] = "$Id$";
3   #endif
4   /*
5   *  pvalue.c - program to print pixel values.
# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7   *     4/23/86
8   */
9  
10 #include  "standard.h"
11
12 #include  "color.h"
13
10   #include  <time.h>
11  
12 + #include  "standard.h"
13 + #include  "color.h"
14   #include  "resolu.h"
15  
16   typedef unsigned short uint16;  /* sizeof (uint16) must == 2 */
# Line 23 | Line 21 | typedef        unsigned short uint16;  /* sizeof (uint16) must
21   #define  ALL            3
22   #define  BRIGHT         4
23  
26 #define  brightonly     (putprim==BRIGHT)
27
24   RESOLU  picres;                 /* resolution of picture */
25  
26   int  uniq = 0;                  /* print only unique values? */
# Line 44 | Line 40 | int  header = 1;               /* do header? */
40  
41   long  skipbytes = 0;            /* skip bytes in input? */
42  
43 + int  swapbytes = 0;             /* swap bytes in 16-bit words? */
44 +
45   int  interleave = 1;            /* file is interleaved? */
46  
47   int  resolution = 1;            /* put/get resolution string? */
# Line 169 | Line 167 | char  **argv;
167                                          format = 'b';
168                                          fmtid = "byte";
169                                          break;
170 +                                case 'W':               /* 16-bit swapped */
171 +                                        swapbytes = 1;
172                                  case 'w':               /* 16-bit */
173                                          dataonly = 1;
174                                          format = 'w';
# Line 215 | Line 215 | unkopt:
215                          break;
216                                          /* recognize special formats */
217          if (dataonly && format == 'b')
218 <                if (brightonly)
219 <                        fmtid = "8-bit_grey";
220 <                else
218 >                if (putprim == ALL)
219                          fmtid = "24-bit_rgb";
222        if (dataonly && format == 'w')
223                if (brightonly)
224                        fmtid = "16-bit_grey";
220                  else
221 +                        fmtid = "8-bit_grey";
222 +        if (dataonly && format == 'w')
223 +                if (putprim == ALL)
224                          fmtid = "48-bit_rgb";
225 +                else
226 +                        fmtid = "16-bit_grey";
227                                          /* assign reverse ordering */
228          rord[ord[0]] = 0;
229          rord[ord[1]] = 1;
# Line 237 | Line 237 | unkopt:
237                                                  progname, argv[i]);
238                          quit(1);
239                  }
240 <                if (reverse && !brightonly && i == argc-3) {
240 >                if (reverse && putprim != BRIGHT && i == argc-3) {
241                          if ((fin2 = fopen(argv[i+1], "r")) == NULL) {
242                                  fprintf(stderr, "%s: can't open file \"%s\"\n",
243                                                  progname, argv[i+1]);
# Line 251 | Line 251 | unkopt:
251                          interleave = -1;
252                  } else if (i != argc-1)
253                          fin = NULL;
254 <                if (reverse && !brightonly && !interleave) {
254 >                if (reverse && putprim != BRIGHT && !interleave) {
255                          fin2 = fopen(argv[i], "r");
256                          fin3 = fopen(argv[i], "r");
257                  }
# Line 269 | Line 269 | unkopt:
269          }
270  
271          if (reverse) {
272 < #ifdef MSDOS
273 <                setmode(fileno(stdout), O_BINARY);
272 > #ifdef _WIN32
273 >                SET_FILE_BINARY(stdout);
274                  if (format != 'a' && format != 'i')
275 <                        setmode(fileno(fin), O_BINARY);
275 >                        SET_FILE_BINARY(fin);
276   #endif
277                                          /* get header */
278                  if (header) {
# Line 317 | Line 317 | unkopt:
317                  fputsresolu(&picres, stdout);   /* always put resolution */
318                  valtopix();
319          } else {
320 < #ifdef MSDOS
321 <                setmode(fileno(fin), O_BINARY);
320 > #ifdef _WIN32
321 >                SET_FILE_BINARY(fin);
322                  if (format != 'a' && format != 'i')
323 <                        setmode(fileno(stdout), O_BINARY);
323 >                        SET_FILE_BINARY(stdout);
324   #endif
325                                                  /* get header */
326                  getheader(fin, checkhead, NULL);
# Line 509 | Line 509 | int  code;
509   }
510  
511  
512 + swap16(wp, n)           /* swap n 16-bit words */
513 + register uint16  *wp;
514 + int  n;
515 + {
516 +        while (n-- > 0) {
517 +                *wp = *wp << 8 | ((*wp >> 8) & 0xff);
518 +                wp++;
519 +        }
520 + }
521 +
522   getcascii(col)          /* get an ascii color value from stream(s) */
523   COLOR  col;
524   {
# Line 620 | Line 630 | COLOR  col;
630                          fread((char *)(vw+2), sizeof(uint16), 1, fin3) != 1)
631                          return(-1);
632          }
633 +        if (swapbytes)
634 +                swap16(vw, 3);
635          setcolor(col, (vw[rord[RED]]+.5)/65536.,
636                          (vw[rord[GRN]]+.5)/65536., (vw[rord[BLU]]+.5)/65536.);
637          return(0);
# Line 698 | Line 710 | COLOR  col;
710  
711          if (fread((char *)&vw, sizeof(uint16), 1, fin) != 1)
712                  return(-1);
713 +        if (swapbytes)
714 +                swap16(&vw, 1);
715          d = (vw+.5)/65536.;
716          setcolor(col, d, d, d);
717          return(0);
# Line 786 | Line 800 | COLOR  col;
800          vw[1] = min(i,65535);
801          i = colval(col,ord[2])*65536.;
802          vw[2] = min(i,65535);
803 +        if (swapbytes)
804 +                swap16(vw, 3);
805          fwrite((char *)vw, sizeof(uint16), 3, stdout);
806  
807          return(ferror(stdout) ? -1 : 0);
# Line 856 | Line 872 | COLOR  col;
872  
873          i = (*mybright)(col)*65536.;
874          vw = min(i,65535);
875 +        if (swapbytes)
876 +                swap16(&vw, 1);
877          fwrite((char *)&vw, sizeof(uint16), 1, stdout);
878  
879          return(ferror(stdout) ? -1 : 0);
# Line 926 | Line 944 | COLOR  col;
944  
945          i = colval(col,putprim)*65536.;
946          vw = min(i,65535);
947 +        if (swapbytes)
948 +                swap16(&vw, 1);
949          fwrite((char *)&vw, sizeof(uint16), 1, stdout);
950  
951          return(ferror(stdout) ? -1 : 0);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines