23 |
|
|
24 |
|
#include "color.h" |
25 |
|
|
26 |
+ |
#include "resolu.h" |
27 |
+ |
|
28 |
|
#include "xraster.h" |
29 |
|
|
30 |
|
#include "view.h" |
37 |
|
|
38 |
|
#define FONTNAME "9x15" /* text font we'll use */ |
39 |
|
|
40 |
< |
#define CTRL(c) ('c'-'@') |
40 |
> |
#define CTRL(c) ((c)-'@') |
41 |
|
|
42 |
|
#define BORWIDTH 5 /* border width */ |
43 |
|
#define BARHEIGHT 25 /* menu bar size */ |
90 |
|
|
91 |
|
extern char *malloc(), *calloc(); |
92 |
|
|
93 |
< |
extern double atof(), pow(), log(); |
93 |
> |
extern double pow(), log(); |
94 |
|
|
95 |
|
|
96 |
|
main(argc, argv) |
170 |
|
headline(s) /* get relevant info from header */ |
171 |
|
char *s; |
172 |
|
{ |
171 |
– |
static char *altname[] = {"rview","rpict",VIEWSTR,NULL}; |
172 |
– |
register char **an; |
173 |
|
char fmt[32]; |
174 |
|
|
175 |
|
if (isexpos(s)) |
177 |
|
else if (isformat(s)) { |
178 |
|
formatval(fmt, s); |
179 |
|
wrongformat = strcmp(fmt, COLRFMT); |
180 |
< |
} else |
181 |
< |
for (an = altname; *an != NULL; an++) |
182 |
< |
if (!strncmp(*an, s, strlen(*an))) { |
183 |
< |
if (sscanview(&ourview, s+strlen(*an)) > 0) |
184 |
< |
gotview++; |
185 |
< |
return; |
186 |
< |
} |
180 |
> |
} else if (isview(s) && sscanview(&ourview, s) > 0) |
181 |
> |
gotview++; |
182 |
|
} |
183 |
|
|
184 |
|
|
360 |
|
return(0); |
361 |
|
switch (*cp) { /* interpret command */ |
362 |
|
case 'q': |
363 |
< |
case CTRL(D): /* quit */ |
363 |
> |
case CTRL('D'): /* quit */ |
364 |
|
quit(0); |
365 |
|
case '\n': |
366 |
|
case '\r': |
374 |
|
sprintf(buf, "%.3f", intens(cval)/exposure); |
375 |
|
break; |
376 |
|
case 'l': /* luminance */ |
377 |
< |
sprintf(buf, "%.0fn", luminance(cval)/exposure); |
377 |
> |
sprintf(buf, "%.0fL", luminance(cval)/exposure); |
378 |
|
break; |
379 |
|
case 'c': /* color */ |
380 |
|
comp = pow(2.0, (double)scale); |
430 |
|
free_raster(ourras); |
431 |
|
getras(); |
432 |
|
/* fall through */ |
433 |
< |
case CTRL(R): /* redraw */ |
434 |
< |
case CTRL(L): |
433 |
> |
case CTRL('R'): /* redraw */ |
434 |
> |
case CTRL('L'): |
435 |
|
unmap_rcolors(ourras); |
436 |
|
XClear(wind); |
437 |
|
return(redraw(0, 0, width, height)); |
543 |
|
{ |
544 |
|
register unsigned short *dp; |
545 |
|
register int x, err; |
546 |
< |
int y; |
546 |
> |
int y, errp; |
547 |
|
rgbpixel *inl; |
548 |
|
short *cerr; |
549 |
|
|
557 |
|
for (x = 0; x < xmax; x++) { |
558 |
|
if (!(x&0xf)) |
559 |
|
*++dp = 0; |
560 |
+ |
errp = err; |
561 |
|
err += rgb_bright(&inl[x]) + cerr[x]; |
562 |
|
if (err > 127) |
563 |
|
err -= 255; |
564 |
|
else |
565 |
|
*dp |= 1<<(x&0xf); |
566 |
< |
cerr[x] = err >>= 1; |
566 |
> |
err /= 3; |
567 |
> |
cerr[x] = err + errp; |
568 |
|
} |
569 |
|
} |
570 |
|
free((char *)inl); |