1 |
< |
/* Copyright (c) 1991 Regents of the University of California */ |
1 |
> |
/* Copyright (c) 1992 Regents of the University of California */ |
2 |
|
|
3 |
|
#ifndef lint |
4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
10 |
|
* 1/4/89 |
11 |
|
*/ |
12 |
|
|
13 |
< |
#include <stdio.h> |
13 |
> |
#include "standard.h" |
14 |
|
|
15 |
– |
#include <errno.h> |
16 |
– |
|
15 |
|
#include "color.h" |
16 |
|
|
17 |
< |
#include "resolu.h" |
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 */ |
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"}; |
44 |
|
char vbrtin[] = "li"; |
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"; |
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 |
|
|
76 |
+ |
extern char *emalloc(); |
77 |
|
|
78 |
+ |
|
79 |
|
main(argc, argv) |
80 |
|
int argc; |
81 |
|
char *argv[]; |
83 |
|
int original; |
84 |
|
double f; |
85 |
|
int a, i; |
86 |
+ |
#ifdef MSDOS |
87 |
+ |
extern int _fmode; |
88 |
+ |
_fmode = O_BINARY; |
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] == '-') |
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; |
146 |
|
} |
147 |
|
else { |
148 |
|
if (argv[a][0] == '!') { |
149 |
< |
input[nfiles].name = "<Command>"; |
149 |
> |
input[nfiles].name = Command; |
150 |
|
input[nfiles].fp = popen(argv[a]+1, "r"); |
151 |
|
} else { |
152 |
|
input[nfiles].name = argv[a]; |
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 */ |
216 |
|
eputs("Usage: "); |
217 |
|
eputs(argv[0]); |
218 |
|
eputs( |
219 |
< |
" [-w][-x xr][-y yr][-e expr][-f file] [ [-s f][-c r g b] pic ..]\n"); |
219 |
> |
" [-w][-x xr][-y yr][-e expr][-f file] [ [-o][-s f][-c r g b] pic ..]\n"); |
220 |
|
quit(1); |
221 |
|
} |
222 |
|
|
228 |
|
double d; |
229 |
|
COLOR ctmp; |
230 |
|
|
231 |
< |
if (isformat(s)) { /* check format */ |
210 |
< |
formatval(fmt, s); |
211 |
< |
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); |
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); |
254 |
|
|
255 |
|
checkfile() /* ready a file */ |
256 |
|
{ |
229 |
– |
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); |
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); |
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); |
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 |
|
|
401 |
|
input[i].scan[0] = st; |
402 |
|
if (yscan <= MIDSCN) /* hit bottom? */ |
403 |
|
continue; |
404 |
< |
if (freadscan(st, xmax, input[i].fp) < 0) { /* read */ |
404 |
> |
if (freadscan(st, xmax, input[i].fp) < 0) { /* read */ |
405 |
|
eputs(input[i].name); |
406 |
|
eputs(": read error\n"); |
407 |
|
quit(1); |
408 |
|
} |
409 |
< |
for (j = 0; j < xmax; j++) /* adjust color */ |
410 |
< |
multcolor(st[j], input[i].coef); |
409 |
> |
if (fabs(colval(input[i].coef,RED)-1.0) > 1e-3 || |
410 |
> |
fabs(colval(input[i].coef,GRN)-1.0) > 1e-3 || |
411 |
> |
fabs(colval(input[i].coef,BLU)-1.0) > 1e-3) |
412 |
> |
for (j = 0; j < xmax; j++) /* adjust color */ |
413 |
> |
multcolor(st[j], input[i].coef); |
414 |
|
} |
415 |
|
} |
416 |
|
|
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]) |
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]) |
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 |
+ |
|
535 |
+ |
|
536 |
|
wputs(msg) |
537 |
|
char *msg; |
538 |
|
{ |
548 |
|
} |
549 |
|
|
550 |
|
|
551 |
< |
quit(code) |
552 |
< |
int code; |
551 |
> |
quit(code) /* exit gracefully */ |
552 |
> |
int code; |
553 |
|
{ |
554 |
+ |
register int i; |
555 |
+ |
/* close input files */ |
556 |
+ |
for (i = 0; i < nfiles; i++) |
557 |
+ |
if (input[i].name == Command) |
558 |
+ |
pclose(input[i].fp); |
559 |
+ |
else |
560 |
+ |
fclose(input[i].fp); |
561 |
|
exit(code); |
562 |
|
} |