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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines