29 |
|
|
30 |
|
#include "pic.h" |
31 |
|
|
32 |
+ |
#include "random.h" |
33 |
+ |
|
34 |
|
#define controlshift(e) (((XButtonEvent *)(e))->detail & (ShiftMask|ControlMask)) |
35 |
|
|
36 |
|
#define FONTNAME "9x15" /* text font we'll use */ |
58 |
|
int xoff = 0; /* x image offset */ |
59 |
|
int yoff = 0; /* y image offset */ |
60 |
|
|
61 |
< |
VIEW ourview = STDVIEW(0); /* image view parameters */ |
61 |
> |
VIEW ourview = STDVIEW; /* image view parameters */ |
62 |
|
int gotview = 0; /* got parameters from file */ |
63 |
|
|
64 |
|
COLR *scanline; /* scan line buffer */ |
146 |
|
if (fgetresolu(&xmax, &ymax, fin) != (YMAJOR|YDECR)) |
147 |
|
quiterr("bad picture size"); |
148 |
|
/* set view parameters */ |
149 |
< |
if (gotview) |
150 |
< |
if (setview(&ourview) != NULL) |
149 |
< |
gotview = 0; |
150 |
< |
|
149 |
> |
if (gotview && setview(&ourview) != NULL) |
150 |
> |
gotview = 0; |
151 |
|
if ((scanline = (COLR *)malloc(xmax*sizeof(COLR))) == NULL) |
152 |
|
quiterr("out of memory"); |
153 |
|
|
169 |
|
static char *altname[] = {"rview","rpict",VIEWSTR,NULL}; |
170 |
|
register char **an; |
171 |
|
|
172 |
< |
if (!strncmp(s, "EXPOSURE=", 9)) |
173 |
< |
exposure *= atof(s+9); |
172 |
> |
if (isexpos(s)) |
173 |
> |
exposure *= exposval(s); |
174 |
|
else |
175 |
|
for (an = altname; *an != NULL; an++) |
176 |
|
if (!strncmp(*an, s, strlen(*an))) { |
177 |
< |
if (sscanview(&ourview, s+strlen(*an)) == 0) |
177 |
> |
if (sscanview(&ourview, s+strlen(*an)) > 0) |
178 |
|
gotview++; |
179 |
|
return; |
180 |
|
} |
181 |
|
} |
182 |
|
|
183 |
|
|
184 |
– |
char * |
185 |
– |
sskip(s) /* skip a word */ |
186 |
– |
register char *s; |
187 |
– |
{ |
188 |
– |
while (isspace(*s)) s++; |
189 |
– |
while (*s && !isspace(*s)) s++; |
190 |
– |
return(s); |
191 |
– |
} |
192 |
– |
|
193 |
– |
|
184 |
|
init() /* get data and open window */ |
185 |
|
{ |
186 |
|
register int i; |
348 |
|
{ |
349 |
|
char buf[80]; |
350 |
|
COLOR cval; |
351 |
+ |
Color cvx; |
352 |
|
char *cp; |
353 |
|
int n; |
354 |
|
double comp; |
359 |
|
return(0); |
360 |
|
switch (*cp) { /* interpret command */ |
361 |
|
case 'q': |
362 |
< |
case CTRL(D): /* quiterr */ |
362 |
> |
case CTRL(D): /* quit */ |
363 |
|
quit(0); |
364 |
|
case '\n': |
365 |
|
case '\r': |
370 |
|
switch (*cp) { |
371 |
|
case '\n': |
372 |
|
case '\r': /* radiance */ |
373 |
< |
sprintf(buf, "%-3g", intens(cval)/exposure); |
373 |
> |
sprintf(buf, "%.3f", intens(cval)/exposure); |
374 |
|
break; |
375 |
|
case 'l': /* luminance */ |
376 |
< |
sprintf(buf, "%-3gL", bright(cval)*683.0/exposure); |
376 |
> |
sprintf(buf, "%.0fn", bright(cval)*683.0/exposure); |
377 |
|
break; |
378 |
|
case 'c': /* color */ |
379 |
|
comp = pow(2.0, (double)scale); |
386 |
|
XText(wind, box.xmin, box.ymin, buf, strlen(buf), |
387 |
|
fontid, BlackPixel, WhitePixel); |
388 |
|
return(0); |
389 |
+ |
case 'i': /* identify (contour) */ |
390 |
+ |
if (ourras->pixels == NULL) |
391 |
+ |
return(-1); |
392 |
+ |
n = ourras->data.bz[ekey->x-xoff+BZPixmapSize(xmax,ekey->y-yoff)]; |
393 |
+ |
n = ourras->pmap[n]; |
394 |
+ |
cvx.pixel = ourras->cdefs[n].pixel; |
395 |
+ |
cvx.red = random() & 65535; |
396 |
+ |
cvx.green = random() & 65535; |
397 |
+ |
cvx.blue = random() & 65535; |
398 |
+ |
XStoreColor(&cvx); |
399 |
+ |
return(0); |
400 |
|
case 'p': /* position */ |
401 |
|
sprintf(buf, "(%d,%d)", ekey->x-xoff, ymax-1-ekey->y+yoff); |
402 |
|
XText(wind, ekey->x, ekey->y, buf, strlen(buf), |
407 |
|
XFeep(0); |
408 |
|
return(-1); |
409 |
|
} |
410 |
< |
rayview(rorg, rdir, &ourview, |
411 |
< |
ekey->x-xoff + .5, ymax-1-ekey->y+yoff + .5); |
410 |
> |
if (viewray(rorg, rdir, &ourview, (ekey->x-xoff+.5)/xmax, |
411 |
> |
(ymax-1-ekey->y+yoff+.5)/ymax) < 0) |
412 |
> |
return(-1); |
413 |
|
printf("%e %e %e ", rorg[0], rorg[1], rorg[2]); |
414 |
|
printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]); |
415 |
|
fflush(stdout); |
431 |
|
/* fall through */ |
432 |
|
case CTRL(R): /* redraw */ |
433 |
|
case CTRL(L): |
434 |
+ |
unmap_rcolors(ourras); |
435 |
|
XClear(wind); |
436 |
|
return(redraw(0, 0, width, height)); |
437 |
|
case ' ': /* clear */ |
543 |
|
register unsigned short *dp; |
544 |
|
register int x, err; |
545 |
|
int y; |
546 |
< |
rgbpixel *inline; |
546 |
> |
rgbpixel *inl; |
547 |
|
short *cerr; |
548 |
|
|
549 |
< |
if ((inline = (rgbpixel *)malloc(xmax*sizeof(rgbpixel))) == NULL |
549 |
> |
if ((inl = (rgbpixel *)malloc(xmax*sizeof(rgbpixel))) == NULL |
550 |
|
|| (cerr = (short *)calloc(xmax,sizeof(short))) == NULL) |
551 |
|
quit("out of memory in getmono"); |
552 |
|
dp = ourras->data.m - 1; |
553 |
|
for (y = 0; y < ymax; y++) { |
554 |
< |
picreadline3(y, inline); |
554 |
> |
picreadline3(y, inl); |
555 |
|
err = 0; |
556 |
|
for (x = 0; x < xmax; x++) { |
557 |
|
if (!(x&0xf)) |
558 |
|
*++dp = 0; |
559 |
< |
err += rgb_bright(&inline[x]) + cerr[x]; |
559 |
> |
err += rgb_bright(&inl[x]) + cerr[x]; |
560 |
|
if (err > 127) |
561 |
|
err -= 255; |
562 |
|
else |
564 |
|
cerr[x] = err >>= 1; |
565 |
|
} |
566 |
|
} |
567 |
< |
free((char *)inline); |
567 |
> |
free((char *)inl); |
568 |
|
free((char *)cerr); |
569 |
|
} |
570 |
|
|
605 |
|
double sf; |
606 |
|
{ |
607 |
|
register int i; |
608 |
< |
int maxv; |
608 |
> |
long maxv; |
609 |
|
|
610 |
+ |
if (xr->pixels == NULL) |
611 |
+ |
return; |
612 |
+ |
|
613 |
|
sf = pow(sf, 1.0/gamcor); |
614 |
< |
maxv = (1<<16) / sf; |
614 |
> |
maxv = 65535/sf; |
615 |
|
|
616 |
|
for (i = xr->ncolors; i--; ) { |
617 |
< |
xr->cdefs[i].red = xr->cdefs[i].red >= maxv ? |
618 |
< |
(1<<16)-1 : |
617 |
> |
xr->cdefs[i].red = xr->cdefs[i].red > maxv ? |
618 |
> |
65535 : |
619 |
|
xr->cdefs[i].red * sf; |
620 |
< |
xr->cdefs[i].green = xr->cdefs[i].green >= maxv ? |
621 |
< |
(1<<16)-1 : |
620 |
> |
xr->cdefs[i].green = xr->cdefs[i].green > maxv ? |
621 |
> |
65535 : |
622 |
|
xr->cdefs[i].green * sf; |
623 |
< |
xr->cdefs[i].blue = xr->cdefs[i].blue >= maxv ? |
624 |
< |
(1<<16)-1 : |
623 |
> |
xr->cdefs[i].blue = xr->cdefs[i].blue > maxv ? |
624 |
> |
65535 : |
625 |
|
xr->cdefs[i].blue * sf; |
626 |
|
} |
627 |
< |
if (xr->pixels != NULL) |
621 |
< |
XStoreColors(xr->ncolors, xr->cdefs); |
627 |
> |
XStoreColors(xr->ncolors, xr->cdefs); |
628 |
|
} |
629 |
|
|
630 |
|
|
657 |
|
if (getscan(y) < 0) |
658 |
|
quiterr("cannot seek for picreadline"); |
659 |
|
/* convert scanline */ |
660 |
< |
normcolrs(scanline, xmax); |
660 |
> |
normcolrs(scanline, xmax, scale); |
661 |
|
for (i = 0; i < xmax; i++) { |
662 |
|
l3[i].r = scanline[i][RED]; |
663 |
|
l3[i].g = scanline[i][GRN]; |
670 |
|
int y; |
671 |
|
pixel *l; |
672 |
|
{ |
673 |
< |
bcopy(l, ourras->data.bz+BZPixmapSize(xmax,y), BZPixmapSize(xmax,1)); |
673 |
> |
bcopy((char *)l, (char *)ourras->data.bz+BZPixmapSize(xmax,y), BZPixmapSize(xmax,1)); |
674 |
|
} |
675 |
|
|
676 |
|
|