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

Comparing ray/src/px/ra_rgbe.c (file contents):
Revision 2.4 by greg, Fri Oct 2 16:26:39 1992 UTC vs.
Revision 2.15 by schorsch, Mon Nov 10 12:28:56 2003 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   *  program to convert from RADIANCE RLE to flat format
6   */
7  
8   #include  <stdio.h>
9   #include  <math.h>
10 + #include  <time.h>
11 + #include  <string.h>
12 +
13 + #include  "platform.h"
14 + #include  "rtprocess.h"
15   #include  "color.h"
16   #include  "resolu.h"
17  
18 < #ifdef MSDOS
17 < #include  <fcntl.h>
18 < #endif
18 > extern int      addhline();
19  
20 < extern char  *malloc();
20 > #define dumpheader(fp)  fwrite(headlines, 1, headlen, fp)
21  
22   int  bradj = 0;                         /* brightness adjustment */
23  
24   int  doflat = 1;                        /* produce flat file */
25  
26 + int  force = 0;                         /* force file overwrite? */
27 +
28 + int  findframe = 0;                     /* find a specific frame? */
29 +
30 + int  frameno = 0;                       /* current frame number */
31 + int  fmterr = 0;                        /* got input format error */
32 + char  *headlines;                       /* current header info. */
33 + int  headlen;                           /* current header length */
34 +
35   char  *progname;
36  
37  
# Line 30 | Line 39 | main(argc, argv)
39   int  argc;
40   char  *argv[];
41   {
42 +        char    *ospec;
43          int  i;
44 < #ifdef MSDOS
35 <        extern int  _fmode;
36 <        _fmode = O_BINARY;
37 <        setmode(fileno(stdin), O_BINARY);
38 <        setmode(fileno(stdout), O_BINARY);
39 < #endif
44 >
45          progname = argv[0];
46  
47          for (i = 1; i < argc; i++)
# Line 50 | Line 55 | char  *argv[];
55                                          goto userr;
56                                  bradj = atoi(argv[++i]);
57                                  break;
58 +                        case 'n':
59 +                                findframe = atoi(argv[++i]);
60 +                                break;
61 +                        case 'f':
62 +                                force++;
63 +                                break;
64 +                        case '\0':
65 +                                goto gotfile;
66                          default:
67                                  goto userr;
68                          }
69                  else
70                          break;
71 <
71 > gotfile:
72          if (i < argc-2)
73                  goto userr;
74 <        if (i <= argc-1 && freopen(argv[i], "r", stdin) == NULL) {
74 >        if (i <= argc-1 && strcmp(argv[i], "-") &&
75 >                        freopen(argv[i], "r", stdin) == NULL) {
76                  fprintf(stderr, "%s: can't open input \"%s\"\n",
77                                  progname, argv[i]);
78                  exit(1);
79          }
80 <        if (i == argc-2 && freopen(argv[i+1], "w", stdout) == NULL) {
81 <                fprintf(stderr, "can't open output \"%s\"\n",
82 <                                progname, argv[i+1]);
83 <                exit(1);
70 <        }
71 <        transfer();
80 >        SET_FILE_BINARY(stdin);
81 >        ospec = i==argc-2 ? argv[i+1] : (char *)NULL;
82 >        while (transfer(ospec))
83 >                ;
84          exit(0);
85   userr:
86 <        fprintf(stderr, "Usage: %s [-r][-e +/-stops] [input [output]]\n",
86 >        fprintf(stderr,
87 >        "Usage: %s [-r][-e +/-stops][-f][-n frame] [input [outspec]]\n",
88                          progname);
89          exit(1);
90   }
91  
92  
93 < quiterr(err)            /* print message and exit */
94 < char  *err;
93 > transfer(ospec)                 /* transfer a Radiance picture */
94 > char    *ospec;
95   {
96 <        if (err != NULL) {
97 <                fprintf(stderr, "%s: %s\n", progname, err);
85 <                exit(1);
86 <        }
87 <        exit(0);
88 < }
89 <
90 <
91 < transfer()              /* transfer Radiance picture */
92 < {
96 >        char    oname[PATH_MAX];
97 >        FILE    *fp;
98          int     order;
99          int     xmax, ymax;
100          COLR    *scanin;
96        register int    x;
101          int     y;
102 <                                /* get header info. */
103 <        if (checkheader(stdin, COLRFMT, stdout) < 0 ||
104 <                        (order = fgetresolu(&xmax, &ymax, stdin)) < 0)
105 <                quiterr("bad picture format");
106 <        fputs(progname, stdout);
107 <        if (bradj)
104 <                printf(" -e %+d", bradj);
105 <        if (doflat)
106 <                fputs("\n", stdout);
107 <        else {
108 <                fputs(" -r\n", stdout);
109 <                fputformat(COLRFMT, stdout);
102 >                                        /* get header info. */
103 >        if (!(y = loadheader(stdin)))
104 >                return(0);
105 >        if (y < 0 || (order = fgetresolu(&xmax, &ymax, stdin)) < 0) {
106 >                fprintf(stderr, "%s: bad input format\n", progname);
107 >                exit(1);
108          }
109 +                                        /* did we pass the target frame? */
110 +        if (findframe && findframe < frameno)
111 +                return(0);
112 +                                        /* allocate scanline */
113 +        scanin = (COLR *)tempbuffer(xmax*sizeof(COLR));
114 +        if (scanin == NULL) {
115 +                perror(progname);
116 +                exit(1);
117 +        }
118 +                                        /* skip frame? */
119 +        if (findframe > frameno) {
120 +                for (y = ymax; y--; )
121 +                        if (freadcolrs(scanin, xmax, stdin) < 0) {
122 +                                fprintf(stderr,
123 +                                        "%s: error reading input picture\n",
124 +                                                progname);
125 +                                exit(1);
126 +                        }
127 +                return(1);
128 +        }
129 +                                        /* open output file/command */
130 +        if (ospec == NULL) {
131 +                strcpy(oname, "<stdout>");
132 +                fp = stdout;
133 +        } else {
134 +                sprintf(oname, ospec, frameno);
135 +                if (oname[0] == '!') {
136 +                        if ((fp = popen(oname+1, "w")) == NULL) {
137 +                                fprintf(stderr, "%s: cannot start \"%s\"\n",
138 +                                                progname, oname);
139 +                                exit(1);
140 +                        }
141 +                } else {
142 +                        if (!force && access(oname, 0) >= 0) {
143 +                                fprintf(stderr,
144 +                                        "%s: output file \"%s\" exists\n",
145 +                                                progname, oname);
146 +                                exit(1);
147 +                        }
148 +                        if ((fp = fopen(oname, "w")) == NULL) {
149 +                                fprintf(stderr, "%s: ", progname);
150 +                                perror(oname);
151 +                                exit(1);
152 +                        }
153 +                }
154 +        }
155 +        SET_FILE_BINARY(fp);
156 +        dumpheader(fp);                 /* put out header */
157 +        fputs(progname, fp);
158          if (bradj)
159 <                fputexpos(pow(2.0, (double)bradj), stdout);
160 <        fputs("\n", stdout);
161 <        fputresolu(order, xmax, ymax, stdout);
162 <                                                /* allocate scanline */
163 <        scanin = (COLR *)malloc(xmax*sizeof(COLR));
164 <        if (scanin == NULL)
165 <                quiterr("out of memory in transfer");
166 <                                                /* convert image */
167 <        for (y = ymax-1; y >= 0; y--) {
168 <                if (freadcolrs(scanin, xmax, stdin) < 0)
169 <                        quiterr("error reading input picture");
159 >                fprintf(fp, " -e %+d", bradj);
160 >        if (!doflat)
161 >                fputs(" -r", fp);
162 >        fputc('\n', fp);
163 >        if (bradj)
164 >                fputexpos(pow(2.0, (double)bradj), fp);
165 >        fputc('\n', fp);
166 >        fputresolu(order, xmax, ymax, fp);
167 >                                        /* transfer picture */
168 >        for (y = ymax; y--; ) {
169 >                if (freadcolrs(scanin, xmax, stdin) < 0) {
170 >                        fprintf(stderr, "%s: error reading input picture\n",
171 >                                        progname);
172 >                        exit(1);
173 >                }
174                  if (bradj)
175                          shiftcolrs(scanin, xmax, bradj);
176                  if (doflat)
177 <                        fwrite((char *)scanin, sizeof(COLR), xmax, stdout);
177 >                        fwrite((char *)scanin, sizeof(COLR), xmax, fp);
178                  else
179 <                        fwritecolrs(scanin, xmax, stdout);
180 <                if (ferror(stdout))
181 <                        quiterr("error writing rasterfile");
179 >                        fwritecolrs(scanin, xmax, fp);
180 >                if (ferror(fp)) {
181 >                        fprintf(stderr, "%s: error writing output to \"%s\"\n",
182 >                                        progname, oname);
183 >                        exit(1);
184 >                }
185          }
186 <                                                /* free scanline */
187 <        free((char *)scanin);
186 >                                        /* clean up */
187 >        if (oname[0] == '!')
188 >                pclose(fp);
189 >        else if (ospec != NULL)
190 >                fclose(fp);
191 >        return(1);
192 > }
193 >
194 >
195 > int
196 > addhline(s)                     /* add a line to our info. header */
197 > char    *s;
198 > {
199 >        char    fmt[32];
200 >        int     n;
201 >
202 >        if (formatval(fmt, s))
203 >                fmterr += !globmatch(PICFMT, fmt);
204 >        else if (!strncmp(s, "FRAME=", 6))
205 >                frameno = atoi(s+6);
206 >        n = strlen(s);
207 >        if (headlen)
208 >                headlines = (char *)realloc((void *)headlines, headlen+n+1);
209 >        else
210 >                headlines = (char *)malloc(n+1);
211 >        if (headlines == NULL) {
212 >                perror(progname);
213 >                exit(1);
214 >        }
215 >        strcpy(headlines+headlen, s);
216 >        headlen += n;
217 >        return(0);
218 > }
219 >
220 >
221 > loadheader(fp)                  /* load an info. header into memory */
222 > FILE    *fp;
223 > {
224 >        fmterr = 0; frameno = 0;
225 >        if (headlen) {                  /* free old header */
226 >                free(headlines);
227 >                headlen = 0;
228 >        }
229 >        if (getheader(fp, addhline, NULL) < 0)
230 >                return(0);
231 >        if (fmterr)
232 >                return(-1);
233 >        return(1);
234   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines