1 |
< |
/* Copyright (c) 1990 Regents of the University of California */ |
1 |
> |
/* Copyright (c) 1993 Regents of the University of California */ |
2 |
|
|
3 |
|
#ifndef lint |
4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
21 |
|
|
22 |
|
#include "standard.h" |
23 |
|
|
24 |
+ |
#include <signal.h> |
25 |
|
#include <X11/Xlib.h> |
26 |
|
#include <X11/cursorfont.h> |
27 |
|
#include <X11/Xutil.h> |
28 |
+ |
#include <X11/Xatom.h> |
29 |
|
|
30 |
|
#include "color.h" |
31 |
|
#include "view.h" |
30 |
– |
#include "pic.h" |
32 |
|
#include "x11raster.h" |
33 |
|
#include "random.h" |
34 |
+ |
#include "resolu.h" |
35 |
|
|
36 |
+ |
#ifdef __alpha |
37 |
+ |
#define int4 int |
38 |
+ |
#endif |
39 |
+ |
#ifndef int4 |
40 |
+ |
#define int4 long |
41 |
+ |
#endif |
42 |
+ |
|
43 |
|
#define FONTNAME "8x13" /* text font we'll use */ |
44 |
|
|
45 |
< |
#define CTRL(c) ('c'-'@') |
45 |
> |
#define CTRL(c) ((c)-'@') |
46 |
|
|
47 |
|
#define BORWIDTH 5 /* border width */ |
48 |
|
|
49 |
|
#define ICONSIZ (8*10) /* maximum icon dimension (even 8) */ |
50 |
|
|
51 |
|
#define ourscreen DefaultScreen(thedisplay) |
43 |
– |
#define ourblack BlackPixel(thedisplay,ourscreen) |
44 |
– |
#define ourwhite WhitePixel(thedisplay,ourscreen) |
52 |
|
#define ourroot RootWindow(thedisplay,ourscreen) |
46 |
– |
#define ourgc DefaultGC(thedisplay,ourscreen) |
53 |
|
|
54 |
|
#define revline(x0,y0,x1,y1) XDrawLine(thedisplay,wind,revgc,x0,y0,x1,y1) |
55 |
|
|
60 |
|
int dither = 1; /* dither colors? */ |
61 |
|
int fast = 0; /* keep picture in Pixmap? */ |
62 |
|
|
63 |
< |
Window wind = 0; /* our output window */ |
58 |
< |
Font fontid; /* our font */ |
63 |
> |
char *dispname = NULL; /* our display name */ |
64 |
|
|
65 |
+ |
Window wind = 0; /* our output window */ |
66 |
+ |
unsigned long ourblack=0, ourwhite=1; /* black and white for this visual */ |
67 |
|
int maxcolors = 0; /* maximum colors */ |
68 |
|
int greyscale = 0; /* in grey */ |
69 |
|
|
72 |
|
int xoff = 0; /* x image offset */ |
73 |
|
int yoff = 0; /* y image offset */ |
74 |
|
|
75 |
+ |
int parent = 0; /* number of children, -1 if child */ |
76 |
+ |
|
77 |
|
VIEW ourview = STDVIEW; /* image view parameters */ |
78 |
|
int gotview = 0; /* got parameters from file */ |
79 |
|
|
80 |
|
COLR *scanline; /* scan line buffer */ |
81 |
|
|
82 |
< |
int xmax, ymax; /* picture resolution */ |
82 |
> |
RESOLU inpres; /* input resolution and ordering */ |
83 |
> |
int xmax, ymax; /* picture dimensions */ |
84 |
|
int width, height; /* window size */ |
85 |
|
char *fname = NULL; /* input file name */ |
86 |
|
FILE *fin = stdin; /* input file */ |
91 |
|
|
92 |
|
int wrongformat = 0; /* input in another format? */ |
93 |
|
|
94 |
+ |
GC ourgc; /* standard graphics context */ |
95 |
|
GC revgc; /* graphics context with GXinvert */ |
96 |
|
|
97 |
< |
XRASTER *ourras; /* our stored image */ |
97 |
> |
int *ourrank; /* our visual class ranking */ |
98 |
> |
XVisualInfo ourvis; /* our visual */ |
99 |
> |
XRASTER *ourras; /* our stored image */ |
100 |
|
unsigned char *ourdata; /* our image data */ |
101 |
|
|
102 |
|
struct { |
112 |
|
|
113 |
|
char errmsg[128]; |
114 |
|
|
115 |
+ |
extern BYTE clrtab[256][3]; /* global color map */ |
116 |
+ |
|
117 |
|
extern long ftell(); |
118 |
|
|
119 |
< |
extern char *malloc(), *calloc(); |
119 |
> |
Display *thedisplay; |
120 |
> |
Atom closedownAtom, wmProtocolsAtom; |
121 |
|
|
122 |
< |
extern double atof(), pow(), log(); |
122 |
> |
int noop() {} |
123 |
|
|
108 |
– |
Display *thedisplay; |
124 |
|
|
125 |
|
main(argc, argv) |
126 |
|
int argc; |
127 |
|
char *argv[]; |
128 |
|
{ |
129 |
+ |
extern char *getenv(); |
130 |
+ |
char *gv; |
131 |
|
int headline(); |
132 |
|
int i; |
133 |
+ |
int pid; |
134 |
|
|
135 |
|
progname = argv[0]; |
136 |
+ |
if ((gv = getenv("GAMMA")) != NULL) |
137 |
+ |
gamcor = atof(gv); |
138 |
|
|
139 |
|
for (i = 1; i < argc; i++) |
140 |
|
if (argv[i][0] == '-') |
149 |
|
maxcolors = 2; |
150 |
|
break; |
151 |
|
case 'd': |
152 |
< |
dither = !dither; |
152 |
> |
if (argv[i][2] == 'i') |
153 |
> |
dispname = argv[++i]; |
154 |
> |
else |
155 |
> |
dither = !dither; |
156 |
|
break; |
157 |
|
case 'f': |
158 |
|
fast = !fast; |
163 |
|
scale = atoi(argv[++i]); |
164 |
|
break; |
165 |
|
case 'g': |
166 |
< |
if (!strcmp(argv[i], "-geometry")) |
166 |
> |
if (argv[i][2] == 'e') |
167 |
|
geometry = argv[++i]; |
168 |
|
else |
169 |
|
gamcor = atof(argv[++i]); |
176 |
|
else |
177 |
|
break; |
178 |
|
|
179 |
< |
if (i == argc-1) { |
179 |
> |
if (i > argc) |
180 |
> |
goto userr; |
181 |
> |
while (i < argc-1) { |
182 |
> |
if ((pid=fork()) == 0) { /* a child for each picture */ |
183 |
> |
parent = -1; |
184 |
> |
break; |
185 |
> |
} |
186 |
> |
if (pid < 0) |
187 |
> |
quiterr("fork failed"); |
188 |
> |
parent++; |
189 |
> |
signal(SIGCONT, noop); |
190 |
> |
pause(); /* wait for wake-up call */ |
191 |
> |
i++; |
192 |
> |
} |
193 |
> |
if (i < argc) { /* open picture file */ |
194 |
|
fname = argv[i]; |
195 |
|
fin = fopen(fname, "r"); |
196 |
|
if (fin == NULL) { |
197 |
< |
sprintf(errmsg, "can't open file \"%s\"", fname); |
197 |
> |
sprintf(errmsg, "cannot open file \"%s\"", fname); |
198 |
|
quiterr(errmsg); |
199 |
|
} |
200 |
< |
} else if (i != argc) |
164 |
< |
goto userr; |
200 |
> |
} |
201 |
|
/* get header */ |
202 |
|
getheader(fin, headline, NULL); |
203 |
|
/* get picture dimensions */ |
204 |
< |
if (wrongformat || fgetresolu(&xmax, &ymax, fin) != (YMAJOR|YDECR)) |
204 |
> |
if (wrongformat || !fgetsresolu(&inpres, fin)) |
205 |
|
quiterr("bad picture format"); |
206 |
+ |
xmax = scanlen(&inpres); |
207 |
+ |
ymax = numscans(&inpres); |
208 |
|
/* set view parameters */ |
209 |
|
if (gotview && setview(&ourview) != NULL) |
210 |
|
gotview = 0; |
211 |
|
if ((scanline = (COLR *)malloc(xmax*sizeof(COLR))) == NULL) |
212 |
|
quiterr("out of memory"); |
213 |
|
|
214 |
< |
init(); /* get file and open window */ |
214 |
> |
init(argc, argv); /* get file and open window */ |
215 |
|
|
216 |
+ |
if (parent < 0) |
217 |
+ |
kill(getppid(), SIGCONT); /* signal parent if child */ |
218 |
+ |
|
219 |
|
for ( ; ; ) |
220 |
|
getevent(); /* main loop */ |
221 |
|
userr: |
222 |
|
fprintf(stderr, |
223 |
< |
"Usage: %s [-geometry spec][-b][-m][-d][-f][-c ncolors][-e +/-stops] file\n", |
223 |
> |
"Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops] pic ..\n", |
224 |
|
progname); |
225 |
< |
quit(1); |
225 |
> |
exit(1); |
226 |
|
} |
227 |
|
|
228 |
|
|
229 |
|
headline(s) /* get relevant info from header */ |
230 |
|
char *s; |
231 |
|
{ |
191 |
– |
static char *altname[] = {"rview","rpict","pinterp",VIEWSTR,NULL}; |
192 |
– |
register char **an; |
232 |
|
char fmt[32]; |
233 |
|
|
234 |
|
if (isexpos(s)) |
236 |
|
else if (isformat(s)) { |
237 |
|
formatval(fmt, s); |
238 |
|
wrongformat = strcmp(fmt, COLRFMT); |
239 |
< |
} else |
240 |
< |
for (an = altname; *an != NULL; an++) |
202 |
< |
if (!strncmp(*an, s, strlen(*an))) { |
203 |
< |
if (sscanview(&ourview, s+strlen(*an)) > 0) |
204 |
< |
gotview++; |
205 |
< |
return; |
206 |
< |
} |
239 |
> |
} else if (isview(s) && sscanview(&ourview, s) > 0) |
240 |
> |
gotview++; |
241 |
|
} |
242 |
|
|
243 |
|
|
244 |
< |
init() /* get data and open window */ |
244 |
> |
init(argc, argv) /* get data and open window */ |
245 |
> |
int argc; |
246 |
> |
char **argv; |
247 |
|
{ |
212 |
– |
XWMHints ourxwmhints; |
248 |
|
XSetWindowAttributes ourwinattr; |
249 |
< |
XSizeHints oursizhints; |
250 |
< |
register int i; |
249 |
> |
XClassHint xclshints; |
250 |
> |
XWMHints xwmhints; |
251 |
> |
XSizeHints xszhints; |
252 |
> |
XTextProperty windowName, iconName; |
253 |
> |
XGCValues xgcv; |
254 |
> |
char *name; |
255 |
> |
register int i; |
256 |
|
|
257 |
|
if (fname != NULL) { |
258 |
|
scanpos = (long *)malloc(ymax*sizeof(long)); |
259 |
|
if (scanpos == NULL) |
260 |
< |
goto memerr; |
260 |
> |
quiterr("out of memory"); |
261 |
|
for (i = 0; i < ymax; i++) |
262 |
|
scanpos[i] = -1; |
263 |
< |
} |
264 |
< |
if ((thedisplay = XOpenDisplay(NULL)) == NULL) |
265 |
< |
quiterr("can't open display; DISPLAY variable set?"); |
266 |
< |
if (maxcolors == 0) { /* get number of available colors */ |
267 |
< |
i = DisplayPlanes(thedisplay,ourscreen); |
268 |
< |
maxcolors = i > 8 ? 256 : 1<<i; |
269 |
< |
if (maxcolors > 4) maxcolors -= 2; |
270 |
< |
} |
263 |
> |
name = fname; |
264 |
> |
} else |
265 |
> |
name = progname; |
266 |
> |
/* remove directory prefix from name */ |
267 |
> |
for (i = strlen(name); i-- > 0; ) |
268 |
> |
if (name[i] == '/') |
269 |
> |
break; |
270 |
> |
name += i+1; |
271 |
> |
if ((thedisplay = XOpenDisplay(dispname)) == NULL) |
272 |
> |
quiterr("cannot open display"); |
273 |
> |
/* get best visual for default screen */ |
274 |
> |
getbestvis(); |
275 |
|
/* store image */ |
276 |
|
getras(); |
277 |
< |
/* open window */ |
278 |
< |
ourwinattr.border_pixel = ourblack; |
279 |
< |
ourwinattr.background_pixel = ourwhite; |
236 |
< |
wind = XCreateWindow(thedisplay, ourroot, 0, 0, xmax, ymax, BORWIDTH, |
237 |
< |
0, InputOutput, ourras->visual, |
238 |
< |
CWBackPixel|CWBorderPixel, &ourwinattr); |
239 |
< |
if (wind == 0) |
240 |
< |
quiterr("can't create window"); |
241 |
< |
width = xmax; |
242 |
< |
height = ymax; |
243 |
< |
fontid = XLoadFont(thedisplay, FONTNAME); |
244 |
< |
if (fontid == 0) |
245 |
< |
quiterr("can't get font"); |
246 |
< |
XSetFont(thedisplay, ourgc, fontid); |
247 |
< |
revgc = XCreateGC(thedisplay, wind, 0, 0); |
248 |
< |
XSetFunction(thedisplay, revgc, GXinvert); |
249 |
< |
XDefineCursor(thedisplay, wind, XCreateFontCursor(thedisplay, |
250 |
< |
XC_diamond_cross)); |
251 |
< |
XStoreName(thedisplay, wind, fname == NULL ? progname : fname); |
277 |
> |
/* get size and position */ |
278 |
> |
xszhints.flags = 0; |
279 |
> |
xszhints.width = xmax; xszhints.height = ymax; |
280 |
|
if (geometry != NULL) { |
281 |
< |
bzero((char *)&oursizhints, sizeof(oursizhints)); |
282 |
< |
i = XParseGeometry(geometry, &oursizhints.x, &oursizhints.y, |
283 |
< |
(unsigned *)&oursizhints.width, |
256 |
< |
(unsigned *)&oursizhints.height); |
281 |
> |
i = XParseGeometry(geometry, &xszhints.x, &xszhints.y, |
282 |
> |
(unsigned *)&xszhints.width, |
283 |
> |
(unsigned *)&xszhints.height); |
284 |
|
if ((i&(WidthValue|HeightValue)) == (WidthValue|HeightValue)) |
285 |
< |
oursizhints.flags |= USSize; |
286 |
< |
else { |
287 |
< |
oursizhints.width = xmax; |
261 |
< |
oursizhints.height = ymax; |
262 |
< |
oursizhints.flags |= PSize; |
263 |
< |
} |
285 |
> |
xszhints.flags |= USSize; |
286 |
> |
else |
287 |
> |
xszhints.flags |= PSize; |
288 |
|
if ((i&(XValue|YValue)) == (XValue|YValue)) { |
289 |
< |
oursizhints.flags |= USPosition; |
289 |
> |
xszhints.flags |= USPosition; |
290 |
|
if (i & XNegative) |
291 |
< |
oursizhints.x += DisplayWidth(thedisplay, |
292 |
< |
ourscreen)-1-oursizhints.width-2*BORWIDTH; |
291 |
> |
xszhints.x += DisplayWidth(thedisplay, |
292 |
> |
ourscreen)-1-xszhints.width-2*BORWIDTH; |
293 |
|
if (i & YNegative) |
294 |
< |
oursizhints.y += DisplayHeight(thedisplay, |
295 |
< |
ourscreen)-1-oursizhints.height-2*BORWIDTH; |
294 |
> |
xszhints.y += DisplayHeight(thedisplay, |
295 |
> |
ourscreen)-1-xszhints.height-2*BORWIDTH; |
296 |
|
} |
273 |
– |
XSetNormalHints(thedisplay, wind, &oursizhints); |
297 |
|
} |
298 |
< |
ourxwmhints.flags = InputHint|IconPixmapHint; |
299 |
< |
ourxwmhints.input = True; |
300 |
< |
ourxwmhints.icon_pixmap = XCreateBitmapFromData(thedisplay, |
298 |
> |
/* open window */ |
299 |
> |
ourwinattr.border_pixel = ourwhite; |
300 |
> |
ourwinattr.background_pixel = ourblack; |
301 |
> |
ourwinattr.colormap = XCreateColormap(thedisplay, ourroot, |
302 |
> |
ourvis.visual, AllocNone); |
303 |
> |
ourwinattr.event_mask = ExposureMask|KeyPressMask|ButtonPressMask| |
304 |
> |
ButtonReleaseMask|ButtonMotionMask|StructureNotifyMask; |
305 |
> |
ourwinattr.cursor = XCreateFontCursor(thedisplay, XC_diamond_cross); |
306 |
> |
wind = XCreateWindow(thedisplay, ourroot, xszhints.x, xszhints.y, |
307 |
> |
xszhints.width, xszhints.height, BORWIDTH, |
308 |
> |
ourvis.depth, InputOutput, ourvis.visual, CWEventMask| |
309 |
> |
CWCursor|CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr); |
310 |
> |
if (wind == 0) |
311 |
> |
quiterr("cannot create window"); |
312 |
> |
width = xmax; |
313 |
> |
height = ymax; |
314 |
> |
xgcv.foreground = ourblack; |
315 |
> |
xgcv.background = ourwhite; |
316 |
> |
if ((xgcv.font = XLoadFont(thedisplay, FONTNAME)) == 0) |
317 |
> |
quiterr("cannot get font"); |
318 |
> |
ourgc = XCreateGC(thedisplay, wind, GCForeground|GCBackground| |
319 |
> |
GCFont, &xgcv); |
320 |
> |
xgcv.function = GXinvert; |
321 |
> |
revgc = XCreateGC(thedisplay, wind, GCForeground|GCBackground| |
322 |
> |
GCFunction, &xgcv); |
323 |
> |
|
324 |
> |
/* set up the window manager */ |
325 |
> |
xwmhints.flags = InputHint|IconPixmapHint; |
326 |
> |
xwmhints.input = True; |
327 |
> |
xwmhints.icon_pixmap = XCreateBitmapFromData(thedisplay, |
328 |
|
wind, icondata, iconwidth, iconheight); |
329 |
< |
XSetWMHints(thedisplay, wind, &ourxwmhints); |
330 |
< |
XSelectInput(thedisplay, wind, ButtonPressMask|ButtonReleaseMask |
331 |
< |
|ButtonMotionMask|StructureNotifyMask |
332 |
< |
|KeyPressMask|ExposureMask); |
329 |
> |
|
330 |
> |
windowName.encoding = iconName.encoding = XA_STRING; |
331 |
> |
windowName.format = iconName.format = 8; |
332 |
> |
windowName.value = (u_char *)name; |
333 |
> |
windowName.nitems = strlen(windowName.value); |
334 |
> |
iconName.value = (u_char *)name; |
335 |
> |
iconName.nitems = strlen(windowName.value); |
336 |
> |
|
337 |
> |
xclshints.res_name = NULL; |
338 |
> |
xclshints.res_class = "Ximage"; |
339 |
> |
XSetWMProperties(thedisplay, wind, &windowName, &iconName, |
340 |
> |
argv, argc, &xszhints, &xwmhints, &xclshints); |
341 |
> |
closedownAtom = XInternAtom(thedisplay, "WM_DELETE_WINDOW", False); |
342 |
> |
wmProtocolsAtom = XInternAtom(thedisplay, "WM_PROTOCOLS", False); |
343 |
> |
XSetWMProtocols(thedisplay, wind, &closedownAtom, 1); |
344 |
> |
|
345 |
|
XMapWindow(thedisplay, wind); |
346 |
|
return; |
285 |
– |
memerr: |
286 |
– |
quiterr("out of memory"); |
347 |
|
} /* end of init */ |
348 |
|
|
349 |
|
|
350 |
|
quiterr(err) /* print message and exit */ |
351 |
|
char *err; |
352 |
|
{ |
353 |
< |
if (err != NULL) { |
354 |
< |
fprintf(stderr, "%s: %s\n", progname, err); |
355 |
< |
exit(1); |
353 |
> |
register int es; |
354 |
> |
int cs; |
355 |
> |
|
356 |
> |
if (es = err != NULL) |
357 |
> |
fprintf(stderr, "%s: %s: %s\n", progname, |
358 |
> |
fname==NULL?"<stdin>":fname, err); |
359 |
> |
if (parent > 0 & wind != 0) { |
360 |
> |
XDestroyWindow(thedisplay, wind); |
361 |
> |
XFlush(thedisplay); |
362 |
|
} |
363 |
< |
exit(0); |
363 |
> |
while (parent > 0 && wait(&cs) != -1) { /* wait for any children */ |
364 |
> |
if (es == 0) |
365 |
> |
es = cs>>8 & 0xff; |
366 |
> |
parent--; |
367 |
> |
} |
368 |
> |
exit(es); |
369 |
|
} |
370 |
|
|
371 |
|
|
372 |
< |
eputs(s) |
373 |
< |
char *s; |
372 |
> |
static int |
373 |
> |
viscmp(v1,v2) /* compare visual to see which is better, descending */ |
374 |
> |
register XVisualInfo *v1, *v2; |
375 |
|
{ |
376 |
< |
fputs(s, stderr); |
376 |
> |
int bad1 = 0, bad2 = 0; |
377 |
> |
register int *rp; |
378 |
> |
|
379 |
> |
if (v1->class == v2->class) { |
380 |
> |
if (v1->class == TrueColor || v1->class == DirectColor) { |
381 |
> |
/* prefer 24-bit to 32-bit */ |
382 |
> |
if (v1->depth == 24 && v2->depth == 32) |
383 |
> |
return(-1); |
384 |
> |
if (v1->depth == 32 && v2->depth == 24) |
385 |
> |
return(1); |
386 |
> |
return(0); |
387 |
> |
} |
388 |
> |
/* don't be too greedy */ |
389 |
> |
if (maxcolors <= 1<<v1->depth && maxcolors <= 1<<v2->depth) |
390 |
> |
return(v1->depth - v2->depth); |
391 |
> |
return(v2->depth - v1->depth); |
392 |
> |
} |
393 |
> |
/* prefer Pseudo when < 24-bit */ |
394 |
> |
if ((v1->class == TrueColor || v1->class == DirectColor) && |
395 |
> |
v1->depth < 24) |
396 |
> |
bad1 = 1; |
397 |
> |
if ((v2->class == TrueColor || v2->class == DirectColor) && |
398 |
> |
v2->depth < 24) |
399 |
> |
bad2 = -1; |
400 |
> |
if (bad1 | bad2) |
401 |
> |
return(bad1+bad2); |
402 |
> |
/* otherwise, use class ranking */ |
403 |
> |
for (rp = ourrank; *rp != -1; rp++) { |
404 |
> |
if (v1->class == *rp) |
405 |
> |
return(-1); |
406 |
> |
if (v2->class == *rp) |
407 |
> |
return(1); |
408 |
> |
} |
409 |
> |
return(0); |
410 |
|
} |
411 |
|
|
412 |
|
|
413 |
< |
quit(code) |
309 |
< |
int code; |
413 |
> |
getbestvis() /* get the best visual for this screen */ |
414 |
|
{ |
415 |
< |
exit(code); |
415 |
> |
#ifdef DEBUG |
416 |
> |
static char vistype[][12] = { |
417 |
> |
"StaticGray", |
418 |
> |
"GrayScale", |
419 |
> |
"StaticColor", |
420 |
> |
"PseudoColor", |
421 |
> |
"TrueColor", |
422 |
> |
"DirectColor" |
423 |
> |
}; |
424 |
> |
#endif |
425 |
> |
static int rankings[3][6] = { |
426 |
> |
{TrueColor,DirectColor,PseudoColor,GrayScale,StaticGray,-1}, |
427 |
> |
{PseudoColor,GrayScale,StaticGray,-1}, |
428 |
> |
{PseudoColor,GrayScale,StaticGray,-1} |
429 |
> |
}; |
430 |
> |
XVisualInfo *xvi; |
431 |
> |
int vismatched; |
432 |
> |
register int i, j; |
433 |
> |
|
434 |
> |
if (greyscale) { |
435 |
> |
ourrank = rankings[2]; |
436 |
> |
if (maxcolors < 2) maxcolors = 256; |
437 |
> |
} else if (maxcolors >= 2 && maxcolors <= 256) |
438 |
> |
ourrank = rankings[1]; |
439 |
> |
else { |
440 |
> |
ourrank = rankings[0]; |
441 |
> |
maxcolors = 256; |
442 |
> |
} |
443 |
> |
/* find best visual */ |
444 |
> |
ourvis.screen = ourscreen; |
445 |
> |
xvi = XGetVisualInfo(thedisplay,VisualScreenMask,&ourvis,&vismatched); |
446 |
> |
if (xvi == NULL) |
447 |
> |
quiterr("no visuals for this screen!"); |
448 |
> |
#ifdef DEBUG |
449 |
> |
fprintf(stderr, "Supported visuals:\n"); |
450 |
> |
for (i = 0; i < vismatched; i++) |
451 |
> |
fprintf(stderr, "\ttype %s, depth %d\n", |
452 |
> |
vistype[xvi[i].class], xvi[i].depth); |
453 |
> |
#endif |
454 |
> |
for (i = 0, j = 1; j < vismatched; j++) |
455 |
> |
if (viscmp(&xvi[i],&xvi[j]) > 0) |
456 |
> |
i = j; |
457 |
> |
/* compare to least acceptable */ |
458 |
> |
for (j = 0; ourrank[j++] != -1; ) |
459 |
> |
; |
460 |
> |
ourvis.class = ourrank[--j]; |
461 |
> |
ourvis.depth = 1; |
462 |
> |
if (viscmp(&xvi[i],&ourvis) > 0) |
463 |
> |
quiterr("inadequate visuals on this screen"); |
464 |
> |
/* OK, we'll use it */ |
465 |
> |
copystruct(&ourvis, &xvi[i]); |
466 |
> |
#ifdef DEBUG |
467 |
> |
fprintf(stderr, "Selected visual type %s, depth %d\n", |
468 |
> |
vistype[ourvis.class], ourvis.depth); |
469 |
> |
#endif |
470 |
> |
/* make appropriate adjustments */ |
471 |
> |
if (ourvis.class == GrayScale || ourvis.class == StaticGray) |
472 |
> |
greyscale = 1; |
473 |
> |
if (ourvis.depth <= 8 && ourvis.colormap_size < maxcolors) |
474 |
> |
maxcolors = ourvis.colormap_size; |
475 |
> |
if (ourvis.class == StaticGray) { |
476 |
> |
ourblack = 0; |
477 |
> |
ourwhite = 255; |
478 |
> |
} else if (ourvis.class == PseudoColor) { |
479 |
> |
ourblack = BlackPixel(thedisplay,ourscreen); |
480 |
> |
ourwhite = WhitePixel(thedisplay,ourscreen); |
481 |
> |
if ((ourblack|ourwhite) & ~255L) { |
482 |
> |
ourblack = 0; |
483 |
> |
ourwhite = 1; |
484 |
> |
} |
485 |
> |
if (maxcolors > 4) |
486 |
> |
maxcolors -= 2; |
487 |
> |
} else { |
488 |
> |
ourblack = 0; |
489 |
> |
ourwhite = ourvis.red_mask|ourvis.green_mask|ourvis.blue_mask; |
490 |
> |
} |
491 |
> |
XFree((char *)xvi); |
492 |
|
} |
493 |
|
|
494 |
|
|
495 |
|
getras() /* get raster file */ |
496 |
|
{ |
317 |
– |
colormap ourmap; |
497 |
|
XVisualInfo vinfo; |
498 |
|
|
499 |
|
if (maxcolors <= 2) { /* monochrome */ |
500 |
|
ourdata = (unsigned char *)malloc(ymax*((xmax+7)/8)); |
501 |
|
if (ourdata == NULL) |
502 |
|
goto fail; |
503 |
< |
ourras = make_raster(thedisplay, ourscreen, 1, ourdata, |
503 |
> |
ourras = make_raster(thedisplay, &ourvis, 1, ourdata, |
504 |
|
xmax, ymax, 8); |
505 |
|
if (ourras == NULL) |
506 |
|
goto fail; |
507 |
|
getmono(); |
508 |
< |
} else if (XMatchVisualInfo(thedisplay,ourscreen,24,TrueColor,&vinfo) |
509 |
< |
/* kludge for DirectColor */ |
331 |
< |
|| XMatchVisualInfo(thedisplay,ourscreen,24,DirectColor,&vinfo)) { |
332 |
< |
ourdata = (unsigned char *)malloc(xmax*ymax*3); |
508 |
> |
} else if (ourvis.class == TrueColor | ourvis.class == DirectColor) { |
509 |
> |
ourdata = (unsigned char *)malloc(sizeof(int4)*xmax*ymax); |
510 |
|
if (ourdata == NULL) |
511 |
|
goto fail; |
512 |
< |
ourras = make_raster(thedisplay, ourscreen, 24, ourdata, |
513 |
< |
xmax, ymax, 8); |
512 |
> |
ourras = make_raster(thedisplay, &ourvis, sizeof(int4)*8, |
513 |
> |
ourdata, xmax, ymax, 32); |
514 |
|
if (ourras == NULL) |
515 |
|
goto fail; |
516 |
|
getfull(); |
518 |
|
ourdata = (unsigned char *)malloc(xmax*ymax); |
519 |
|
if (ourdata == NULL) |
520 |
|
goto fail; |
521 |
< |
ourras = make_raster(thedisplay, ourscreen, 8, ourdata, |
521 |
> |
ourras = make_raster(thedisplay, &ourvis, 8, ourdata, |
522 |
|
xmax, ymax, 8); |
523 |
|
if (ourras == NULL) |
524 |
|
goto fail; |
525 |
< |
if (greyscale) |
526 |
< |
biq(dither,maxcolors,1,ourmap); |
525 |
> |
if (greyscale | ourvis.class == StaticGray) |
526 |
> |
getgrey(); |
527 |
|
else |
528 |
< |
ciq(dither,maxcolors,1,ourmap); |
529 |
< |
if (init_rcolors(ourras, ourmap[0], ourmap[1], ourmap[2]) == 0) |
528 |
> |
getmapped(); |
529 |
> |
if (ourvis.class != StaticGray && !init_rcolors(ourras,clrtab)) |
530 |
|
goto fail; |
531 |
|
} |
532 |
|
return; |
537 |
|
|
538 |
|
getevent() /* process the next event */ |
539 |
|
{ |
540 |
< |
union { |
364 |
< |
XEvent u; |
365 |
< |
XConfigureEvent c; |
366 |
< |
XExposeEvent e; |
367 |
< |
XButtonPressedEvent b; |
368 |
< |
XKeyPressedEvent k; |
369 |
< |
} e; |
540 |
> |
XEvent xev; |
541 |
|
|
542 |
< |
XNextEvent(thedisplay, &e.u); |
543 |
< |
switch (e.u.type) { |
542 |
> |
XNextEvent(thedisplay, &xev); |
543 |
> |
switch ((int)xev.type) { |
544 |
|
case KeyPress: |
545 |
< |
docom(&e.k); |
545 |
> |
docom(&xev.xkey); |
546 |
|
break; |
547 |
|
case ConfigureNotify: |
548 |
< |
width = e.c.width; |
549 |
< |
height = e.c.height; |
548 |
> |
width = xev.xconfigure.width; |
549 |
> |
height = xev.xconfigure.height; |
550 |
|
break; |
551 |
|
case MapNotify: |
552 |
|
map_rcolors(ourras, wind); |
553 |
|
if (fast) |
554 |
< |
make_rpixmap(ourras); |
554 |
> |
make_rpixmap(ourras, wind); |
555 |
|
break; |
556 |
|
case UnmapNotify: |
557 |
< |
unmap_rcolors(ourras); |
557 |
> |
if (!fast) |
558 |
> |
unmap_rcolors(ourras); |
559 |
|
break; |
560 |
|
case Expose: |
561 |
< |
redraw(e.e.x, e.e.y, e.e.width, e.e.height); |
561 |
> |
redraw(xev.xexpose.x, xev.xexpose.y, |
562 |
> |
xev.xexpose.width, xev.xexpose.height); |
563 |
|
break; |
564 |
|
case ButtonPress: |
565 |
< |
if (e.b.state & (ShiftMask|ControlMask)) |
566 |
< |
moveimage(&e.b); |
565 |
> |
if (xev.xbutton.state & (ShiftMask|ControlMask)) |
566 |
> |
moveimage(&xev.xbutton); |
567 |
> |
else if (xev.xbutton.button == Button2) |
568 |
> |
traceray(xev.xbutton.x, xev.xbutton.y); |
569 |
|
else |
570 |
< |
getbox(&e.b); |
570 |
> |
getbox(&xev.xbutton); |
571 |
|
break; |
572 |
+ |
case ClientMessage: |
573 |
+ |
if ((xev.xclient.message_type == wmProtocolsAtom) && |
574 |
+ |
(xev.xclient.data.l[0] == closedownAtom)) |
575 |
+ |
quiterr(NULL); |
576 |
+ |
break; |
577 |
|
} |
578 |
|
} |
579 |
|
|
580 |
|
|
581 |
< |
docom(ekey) /* execute command */ |
581 |
> |
traceray(xpos, ypos) /* print ray corresponding to pixel */ |
582 |
> |
int xpos, ypos; |
583 |
> |
{ |
584 |
> |
FLOAT hv[2]; |
585 |
> |
FVECT rorg, rdir; |
586 |
> |
|
587 |
> |
if (!gotview) { /* no view, no can do */ |
588 |
> |
XBell(thedisplay, 0); |
589 |
> |
return(-1); |
590 |
> |
} |
591 |
> |
pix2loc(hv, &inpres, xpos-xoff, ypos-yoff); |
592 |
> |
if (viewray(rorg, rdir, &ourview, hv[0], hv[1]) < 0) |
593 |
> |
return(-1); |
594 |
> |
printf("%e %e %e ", rorg[0], rorg[1], rorg[2]); |
595 |
> |
printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]); |
596 |
> |
fflush(stdout); |
597 |
> |
return(0); |
598 |
> |
} |
599 |
> |
|
600 |
> |
|
601 |
> |
docom(ekey) /* execute command */ |
602 |
|
XKeyPressedEvent *ekey; |
603 |
|
{ |
604 |
|
char buf[80]; |
606 |
|
XColor cvx; |
607 |
|
int com, n; |
608 |
|
double comp; |
609 |
< |
FVECT rorg, rdir; |
609 |
> |
FLOAT hv[2]; |
610 |
|
|
611 |
|
n = XLookupString(ekey, buf, sizeof(buf), NULL, NULL); |
612 |
|
if (n == 0) |
614 |
|
com = buf[0]; |
615 |
|
switch (com) { /* interpret command */ |
616 |
|
case 'q': |
617 |
< |
case CTRL(D): /* quit */ |
618 |
< |
quit(0); |
617 |
> |
case 'Q': |
618 |
> |
case CTRL('D'): /* quit */ |
619 |
> |
quiterr(NULL); |
620 |
|
case '\n': |
621 |
|
case '\r': |
622 |
|
case 'l': |
655 |
|
XStoreColor(thedisplay, ourras->cmap, &cvx); |
656 |
|
return(0); |
657 |
|
case 'p': /* position */ |
658 |
< |
sprintf(buf, "(%d,%d)", ekey->x-xoff, ymax-1-ekey->y+yoff); |
658 |
> |
pix2loc(hv, &inpres, ekey->x-xoff, ekey->y-yoff); |
659 |
> |
sprintf(buf, "(%d,%d)", (int)(hv[0]*inpres.xr), |
660 |
> |
(int)(hv[1]*inpres.yr)); |
661 |
|
XDrawImageString(thedisplay, wind, ourgc, ekey->x, ekey->y, |
662 |
|
buf, strlen(buf)); |
663 |
|
return(0); |
664 |
|
case 't': /* trace */ |
665 |
< |
if (!gotview) { |
463 |
< |
XBell(thedisplay, 0); |
464 |
< |
return(-1); |
465 |
< |
} |
466 |
< |
if (viewray(rorg, rdir, &ourview, |
467 |
< |
(ekey->x-xoff+.5)/xmax, |
468 |
< |
(ymax-1-ekey->y+yoff+.5)/ymax) < 0) |
469 |
< |
return(-1); |
470 |
< |
printf("%e %e %e ", rorg[0], rorg[1], rorg[2]); |
471 |
< |
printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]); |
472 |
< |
fflush(stdout); |
473 |
< |
return(0); |
665 |
> |
return(traceray(ekey->x, ekey->y)); |
666 |
|
case '=': /* adjust exposure */ |
667 |
+ |
case '@': /* adaptation level */ |
668 |
|
if (avgbox(cval) == -1) |
669 |
|
return(-1); |
670 |
< |
n = log(.5/bright(cval))/.69315 - scale; /* truncate */ |
670 |
> |
comp = com=='@' |
671 |
> |
? 106./pow(1.219+pow(luminance(cval)/exposure,.4),2.5)/exposure |
672 |
> |
: .5/bright(cval) ; |
673 |
> |
comp = log(comp)/.69315 - scale; |
674 |
> |
n = comp < 0 ? comp-.5 : comp+.5 ; /* round */ |
675 |
|
if (n == 0) |
676 |
|
return(0); |
677 |
|
scale_rcolors(ourras, pow(2.0, (double)n)); |
684 |
|
free_raster(ourras); |
685 |
|
getras(); |
686 |
|
/* fall through */ |
687 |
< |
case CTRL(R): /* redraw */ |
688 |
< |
case CTRL(L): |
687 |
> |
case CTRL('R'): /* redraw */ |
688 |
> |
case CTRL('L'): |
689 |
|
unmap_rcolors(ourras); |
690 |
|
XClearWindow(thedisplay, wind); |
691 |
|
map_rcolors(ourras, wind); |
692 |
|
if (fast) |
693 |
< |
make_rpixmap(ourras); |
693 |
> |
make_rpixmap(ourras, wind); |
694 |
|
redraw(0, 0, width, height); |
695 |
|
return(0); |
696 |
+ |
case 'f': /* turn on fast redraw */ |
697 |
+ |
fast = 1; |
698 |
+ |
make_rpixmap(ourras, wind); |
699 |
+ |
return(0); |
700 |
+ |
case 'F': /* turn off fast redraw */ |
701 |
+ |
fast = 0; |
702 |
+ |
free_rpixmap(ourras); |
703 |
+ |
return(0); |
704 |
+ |
case '0': /* recenter origin */ |
705 |
+ |
if (xoff == 0 & yoff == 0) |
706 |
+ |
return(0); |
707 |
+ |
xoff = yoff = 0; |
708 |
+ |
XClearWindow(thedisplay, wind); |
709 |
+ |
redraw(0, 0, width, height); |
710 |
+ |
return(0); |
711 |
|
case ' ': /* clear */ |
712 |
|
redraw(box.xmin, box.ymin, box.xsiz, box.ysiz); |
713 |
|
return(0); |
721 |
|
moveimage(ebut) /* shift the image */ |
722 |
|
XButtonPressedEvent *ebut; |
723 |
|
{ |
724 |
< |
union { |
513 |
< |
XEvent u; |
514 |
< |
XButtonReleasedEvent b; |
515 |
< |
XPointerMovedEvent m; |
516 |
< |
} e; |
724 |
> |
XEvent e; |
725 |
|
int mxo, myo; |
726 |
|
|
727 |
< |
XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e.u); |
728 |
< |
while (e.u.type == MotionNotify) { |
729 |
< |
mxo = e.m.x; |
730 |
< |
myo = e.m.y; |
727 |
> |
XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e); |
728 |
> |
while (e.type == MotionNotify) { |
729 |
> |
mxo = e.xmotion.x; |
730 |
> |
myo = e.xmotion.y; |
731 |
|
revline(ebut->x, ebut->y, mxo, myo); |
732 |
|
revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y, |
733 |
|
xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax); |
734 |
< |
XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e.u); |
734 |
> |
XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e); |
735 |
|
revline(ebut->x, ebut->y, mxo, myo); |
736 |
|
revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y, |
737 |
|
xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax); |
738 |
|
} |
739 |
< |
xoff += e.b.x - ebut->x; |
740 |
< |
yoff += e.b.y - ebut->y; |
739 |
> |
xoff += e.xbutton.x - ebut->x; |
740 |
> |
yoff += e.xbutton.y - ebut->y; |
741 |
|
XClearWindow(thedisplay, wind); |
742 |
|
redraw(0, 0, width, height); |
743 |
|
} |
746 |
|
getbox(ebut) /* get new box */ |
747 |
|
XButtonPressedEvent *ebut; |
748 |
|
{ |
749 |
< |
union { |
542 |
< |
XEvent u; |
543 |
< |
XButtonReleasedEvent b; |
544 |
< |
XPointerMovedEvent m; |
545 |
< |
} e; |
749 |
> |
XEvent e; |
750 |
|
|
751 |
< |
XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e.u); |
752 |
< |
while (e.u.type == MotionNotify) { |
753 |
< |
revbox(ebut->x, ebut->y, box.xmin = e.m.x, box.ymin = e.m.y); |
754 |
< |
XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e.u); |
751 |
> |
XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e); |
752 |
> |
while (e.type == MotionNotify) { |
753 |
> |
revbox(ebut->x, ebut->y, box.xmin = e.xmotion.x, box.ymin = e.xmotion.y); |
754 |
> |
XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e); |
755 |
|
revbox(ebut->x, ebut->y, box.xmin, box.ymin); |
756 |
|
} |
757 |
< |
box.xmin = e.b.x<0 ? 0 : (e.b.x>=width ? width-1 : e.b.x); |
758 |
< |
box.ymin = e.b.y<0 ? 0 : (e.b.y>=height ? height-1 : e.b.y); |
757 |
> |
box.xmin = e.xbutton.x<0 ? 0 : (e.xbutton.x>=width ? width-1 : e.xbutton.x); |
758 |
> |
box.ymin = e.xbutton.y<0 ? 0 : (e.xbutton.y>=height ? height-1 : e.xbutton.y); |
759 |
|
if (box.xmin > ebut->x) { |
760 |
|
box.xsiz = box.xmin - ebut->x + 1; |
761 |
|
box.xmin = ebut->x; |
784 |
|
avgbox(clr) /* average color over current box */ |
785 |
|
COLOR clr; |
786 |
|
{ |
787 |
+ |
static COLOR lc; |
788 |
+ |
static int ll, lr, lt, lb; |
789 |
|
int left, right, top, bottom; |
790 |
|
int y; |
791 |
|
double d; |
809 |
|
bottom = ymax; |
810 |
|
if (top >= bottom) |
811 |
|
return(-1); |
812 |
+ |
if (left == ll && right == lr && top == lt && bottom == lb) { |
813 |
+ |
copycolor(clr, lc); |
814 |
+ |
return(0); |
815 |
+ |
} |
816 |
|
for (y = top; y < bottom; y++) { |
817 |
|
if (getscan(y) == -1) |
818 |
|
return(-1); |
823 |
|
} |
824 |
|
d = 1.0/((right-left)*(bottom-top)); |
825 |
|
scalecolor(clr, d); |
826 |
+ |
ll = left; lr = right; lt = top; lb = bottom; |
827 |
+ |
copycolor(lc, clr); |
828 |
|
return(0); |
829 |
|
} |
830 |
|
|
833 |
|
{ |
834 |
|
register unsigned char *dp; |
835 |
|
register int x, err; |
836 |
< |
int y; |
836 |
> |
int y, errp; |
837 |
|
short *cerr; |
838 |
|
|
839 |
|
if ((cerr = (short *)calloc(xmax,sizeof(short))) == NULL) |
840 |
|
quiterr("out of memory in getmono"); |
841 |
|
dp = ourdata - 1; |
842 |
|
for (y = 0; y < ymax; y++) { |
843 |
< |
if (getscan(y) < 0) |
632 |
< |
quiterr("seek error in getmono"); |
633 |
< |
normcolrs(scanline, xmax, scale); |
843 |
> |
getscan(y); |
844 |
|
add2icon(y, scanline); |
845 |
+ |
normcolrs(scanline, xmax, scale); |
846 |
|
err = 0; |
847 |
|
for (x = 0; x < xmax; x++) { |
848 |
|
if (!(x&7)) |
849 |
|
*++dp = 0; |
850 |
+ |
errp = err; |
851 |
|
err += normbright(scanline[x]) + cerr[x]; |
852 |
|
if (err > 127) |
853 |
|
err -= 255; |
854 |
|
else |
855 |
|
*dp |= 1<<(7-(x&07)); |
856 |
< |
cerr[x] = err >>= 1; |
856 |
> |
err /= 3; |
857 |
> |
cerr[x] = err + errp; |
858 |
|
} |
859 |
|
} |
860 |
|
free((char *)cerr); |
868 |
|
static short cerr[ICONSIZ]; |
869 |
|
static int ynext; |
870 |
|
static char *dp; |
871 |
+ |
COLR clr; |
872 |
|
register int err; |
873 |
|
register int x, ti; |
874 |
+ |
int errp; |
875 |
|
|
876 |
|
if (iconheight == 0) { /* initialize */ |
877 |
|
if (xmax <= ICONSIZ && ymax <= ICONSIZ) { |
880 |
|
} else if (xmax > ymax) { |
881 |
|
iconwidth = ICONSIZ; |
882 |
|
iconheight = ICONSIZ*ymax/xmax; |
883 |
+ |
if (iconheight < 1) |
884 |
+ |
iconheight = 1; |
885 |
|
} else { |
886 |
|
iconwidth = ICONSIZ*xmax/ymax; |
887 |
+ |
if (iconwidth < 1) |
888 |
+ |
iconwidth = 1; |
889 |
|
iconheight = ICONSIZ; |
890 |
|
} |
891 |
|
ynext = 0; |
897 |
|
for (x = 0; x < iconwidth; x++) { |
898 |
|
if (!(x&7)) |
899 |
|
*++dp = 0; |
900 |
+ |
errp = err; |
901 |
|
ti = x*xmax/iconwidth; |
902 |
< |
err += normbright(scan[ti]) + cerr[x]; |
902 |
> |
copycolr(clr, scan[ti]); |
903 |
> |
normcolrs(clr, 1, scale); |
904 |
> |
err += normbright(clr) + cerr[x]; |
905 |
|
if (err > 127) |
906 |
|
err -= 255; |
907 |
|
else |
908 |
|
*dp |= 1<<(x&07); |
909 |
< |
cerr[x] = err >>= 1; |
909 |
> |
err /= 3; |
910 |
> |
cerr[x] = err + errp; |
911 |
|
} |
912 |
|
ynext++; |
913 |
|
} |
916 |
|
getfull() /* get full (24-bit) data */ |
917 |
|
{ |
918 |
|
int y; |
919 |
+ |
register unsigned int4 *dp; |
920 |
+ |
register int x; |
921 |
+ |
/* set gamma correction */ |
922 |
+ |
setcolrgam(gamcor); |
923 |
+ |
/* read and convert file */ |
924 |
+ |
dp = (unsigned int4 *)ourdata; |
925 |
+ |
for (y = 0; y < ymax; y++) { |
926 |
+ |
getscan(y); |
927 |
+ |
add2icon(y, scanline); |
928 |
+ |
if (scale) |
929 |
+ |
shiftcolrs(scanline, xmax, scale); |
930 |
+ |
colrs_gambs(scanline, xmax); |
931 |
+ |
if (ourras->image->blue_mask & 1) |
932 |
+ |
for (x = 0; x < xmax; x++) |
933 |
+ |
*dp++ = scanline[x][RED] << 16 | |
934 |
+ |
scanline[x][GRN] << 8 | |
935 |
+ |
scanline[x][BLU] ; |
936 |
+ |
else |
937 |
+ |
for (x = 0; x < xmax; x++) |
938 |
+ |
*dp++ = scanline[x][RED] | |
939 |
+ |
scanline[x][GRN] << 8 | |
940 |
+ |
scanline[x][BLU] << 16 ; |
941 |
+ |
} |
942 |
+ |
} |
943 |
+ |
|
944 |
+ |
|
945 |
+ |
getgrey() /* get greyscale data */ |
946 |
+ |
{ |
947 |
+ |
int y; |
948 |
|
register unsigned char *dp; |
949 |
|
register int x; |
950 |
|
/* set gamma correction */ |
952 |
|
/* read and convert file */ |
953 |
|
dp = ourdata; |
954 |
|
for (y = 0; y < ymax; y++) { |
955 |
< |
if (getscan(y) < 0) |
956 |
< |
quiterr("seek error in getfull"); |
955 |
> |
getscan(y); |
956 |
> |
add2icon(y, scanline); |
957 |
|
if (scale) |
958 |
|
shiftcolrs(scanline, xmax, scale); |
959 |
+ |
for (x = 0; x < xmax; x++) |
960 |
+ |
scanline[x][GRN] = normbright(scanline[x]); |
961 |
|
colrs_gambs(scanline, xmax); |
962 |
+ |
if (maxcolors < 256) |
963 |
+ |
for (x = 0; x < xmax; x++) |
964 |
+ |
*dp++ = ((long)scanline[x][GRN] * |
965 |
+ |
maxcolors + maxcolors/2) >> 8; |
966 |
+ |
else |
967 |
+ |
for (x = 0; x < xmax; x++) |
968 |
+ |
*dp++ = scanline[x][GRN]; |
969 |
+ |
} |
970 |
+ |
for (x = 0; x < maxcolors; x++) |
971 |
+ |
clrtab[x][RED] = clrtab[x][GRN] = |
972 |
+ |
clrtab[x][BLU] = ((long)x*256 + 128)/maxcolors; |
973 |
+ |
} |
974 |
+ |
|
975 |
+ |
|
976 |
+ |
getmapped() /* get color-mapped data */ |
977 |
+ |
{ |
978 |
+ |
int y; |
979 |
+ |
/* make sure we can do it first */ |
980 |
+ |
if (fname == NULL) |
981 |
+ |
quiterr("cannot map colors from standard input"); |
982 |
+ |
/* set gamma correction */ |
983 |
+ |
setcolrgam(gamcor); |
984 |
+ |
/* make histogram */ |
985 |
+ |
new_histo(); |
986 |
+ |
for (y = 0; y < ymax; y++) { |
987 |
+ |
if (getscan(y) < 0) |
988 |
+ |
break; |
989 |
|
add2icon(y, scanline); |
990 |
< |
for (x = 0; x < xmax; x++) { |
991 |
< |
*dp++ = scanline[x][RED]; |
992 |
< |
*dp++ = scanline[x][GRN]; |
993 |
< |
*dp++ = scanline[x][BLU]; |
713 |
< |
} |
990 |
> |
if (scale) |
991 |
> |
shiftcolrs(scanline, xmax, scale); |
992 |
> |
colrs_gambs(scanline, xmax); |
993 |
> |
cnt_colrs(scanline, xmax); |
994 |
|
} |
995 |
+ |
/* map pixels */ |
996 |
+ |
if (!new_clrtab(maxcolors)) |
997 |
+ |
quiterr("cannot create color map"); |
998 |
+ |
for (y = 0; y < ymax; y++) { |
999 |
+ |
getscan(y); |
1000 |
+ |
if (scale) |
1001 |
+ |
shiftcolrs(scanline, xmax, scale); |
1002 |
+ |
colrs_gambs(scanline, xmax); |
1003 |
+ |
if (dither) |
1004 |
+ |
dith_colrs(ourdata+y*xmax, scanline, xmax); |
1005 |
+ |
else |
1006 |
+ |
map_colrs(ourdata+y*xmax, scanline, xmax); |
1007 |
+ |
} |
1008 |
|
} |
1009 |
|
|
1010 |
|
|
1039 |
|
getscan(y) |
1040 |
|
int y; |
1041 |
|
{ |
1042 |
+ |
static int trunced = -1; /* truncated file? */ |
1043 |
+ |
skipit: |
1044 |
+ |
if (trunced >= 0 && y >= trunced) { |
1045 |
+ |
bzero(scanline, xmax*sizeof(COLR)); |
1046 |
+ |
return(-1); |
1047 |
+ |
} |
1048 |
|
if (y != cury) { |
1049 |
|
if (scanpos == NULL || scanpos[y] == -1) |
1050 |
|
return(-1); |
1051 |
|
if (fseek(fin, scanpos[y], 0) == -1) |
1052 |
|
quiterr("fseek error"); |
1053 |
|
cury = y; |
1054 |
< |
} else if (scanpos != NULL) |
1054 |
> |
} else if (scanpos != NULL && scanpos[y] == -1) |
1055 |
|
scanpos[y] = ftell(fin); |
1056 |
|
|
1057 |
< |
if (freadcolrs(scanline, xmax, fin) < 0) |
1058 |
< |
quiterr("read error"); |
1059 |
< |
|
1057 |
> |
if (freadcolrs(scanline, xmax, fin) < 0) { |
1058 |
> |
fprintf(stderr, "%s: %s: unfinished picture\n", |
1059 |
> |
progname, fname==NULL?"<stdin>":fname); |
1060 |
> |
trunced = y; |
1061 |
> |
goto skipit; |
1062 |
> |
} |
1063 |
|
cury++; |
1064 |
|
return(0); |
763 |
– |
} |
764 |
– |
|
765 |
– |
|
766 |
– |
picreadline3(y, l3) /* read in 3-byte scanline */ |
767 |
– |
int y; |
768 |
– |
register rgbpixel *l3; |
769 |
– |
{ |
770 |
– |
register int i; |
771 |
– |
/* read scanline */ |
772 |
– |
if (getscan(y) < 0) |
773 |
– |
quiterr("cannot seek for picreadline"); |
774 |
– |
/* convert scanline */ |
775 |
– |
normcolrs(scanline, xmax, scale); |
776 |
– |
add2icon(y, scanline); |
777 |
– |
for (i = 0; i < xmax; i++) { |
778 |
– |
l3[i].r = scanline[i][RED]; |
779 |
– |
l3[i].g = scanline[i][GRN]; |
780 |
– |
l3[i].b = scanline[i][BLU]; |
781 |
– |
} |
782 |
– |
} |
783 |
– |
|
784 |
– |
|
785 |
– |
picwriteline(y, l) /* add 8-bit scanline to image */ |
786 |
– |
int y; |
787 |
– |
pixel *l; |
788 |
– |
{ |
789 |
– |
bcopy((char *)l, (char *)ourdata+y*xmax, xmax); |
790 |
– |
} |
791 |
– |
|
792 |
– |
|
793 |
– |
picreadcm(map) /* do gamma correction */ |
794 |
– |
colormap map; |
795 |
– |
{ |
796 |
– |
extern double pow(); |
797 |
– |
register int i, val; |
798 |
– |
|
799 |
– |
for (i = 0; i < 256; i++) { |
800 |
– |
val = pow((i+0.5)/256.0, 1.0/gamcor) * 256.0; |
801 |
– |
map[0][i] = map[1][i] = map[2][i] = val; |
802 |
– |
} |
803 |
– |
} |
804 |
– |
|
805 |
– |
|
806 |
– |
picwritecm(map) /* handled elsewhere */ |
807 |
– |
colormap map; |
808 |
– |
{ |
809 |
– |
#ifdef DEBUG |
810 |
– |
register int i; |
811 |
– |
|
812 |
– |
for (i = 0; i < 256; i++) |
813 |
– |
printf("%d %d %d\n", map[0][i],map[1][i],map[2][i]); |
814 |
– |
#endif |
1065 |
|
} |