18 |
|
|
19 |
|
#include "x11icon.h" |
20 |
|
|
21 |
< |
#define CTRL(c) ((c)-'@') |
21 |
> |
#ifndef FEQ |
22 |
> |
#define FEQ(a,b) ((a)-(b) <= FTINY && (a)-(b) >= -FTINY) |
23 |
> |
#endif |
24 |
|
|
25 |
|
#define GAMMA 2.2 /* default gamma correction */ |
26 |
|
|
27 |
< |
#define MOVPCT 10 /* percent distance to move */ |
27 |
> |
#define MOVPCT 7 /* percent distance to move /frame */ |
28 |
|
#define MOVDIR(b) ((b)==Button1 ? 1 : (b)==Button2 ? 0 : -1) |
29 |
+ |
#define MOVDEG (-5) /* degrees to orbit CW/down /frame */ |
30 |
+ |
#define MOVORB(s) ((s)&ShiftMask ? 1 : (s)&ControlMask ? -1 : 0) |
31 |
|
|
32 |
|
#define MINWIDTH 480 /* minimum graphics window width */ |
33 |
|
#define MINHEIGHT 400 /* minimum graphics window height */ |
53 |
|
static unsigned long ourblack=0, ourwhite=1; |
54 |
|
|
55 |
|
static Display *ourdisplay = NULL; /* our display */ |
52 |
– |
|
56 |
|
static XVisualInfo ourvinfo; /* our visual information */ |
54 |
– |
|
57 |
|
static Window gwind = 0; /* our graphics window */ |
56 |
– |
|
58 |
|
static GC ourgc = 0; /* our graphics context for drawing */ |
58 |
– |
|
59 |
|
static Colormap ourmap = 0; /* our color map */ |
60 |
|
|
61 |
|
static double pwidth, pheight; /* pixel dimensions (mm) */ |
99 |
|
XWMHints ourxwmhints; |
100 |
|
XSizeHints oursizhints; |
101 |
|
/* set quadtree globals */ |
102 |
< |
qtDepthEps = 0.02; |
103 |
< |
qtMinNodesiz = 1; |
102 |
> |
qtMinNodesiz = 2; |
103 |
|
/* open display server */ |
104 |
|
ourdisplay = XOpenDisplay(NULL); |
105 |
|
if (ourdisplay == NULL) |
158 |
|
oursizhints.min_height = MINHEIGHT; |
159 |
|
oursizhints.flags = PMinSize; |
160 |
|
XSetNormalHints(ourdisplay, gwind, &oursizhints); |
161 |
+ |
/* figure out sensible view */ |
162 |
+ |
pwidth = (double)DisplayWidthMM(ourdisplay, ourscreen) / |
163 |
+ |
DisplayWidth(ourdisplay, ourscreen); |
164 |
+ |
pheight = (double)DisplayHeightMM(ourdisplay, ourscreen) / |
165 |
+ |
DisplayHeight(ourdisplay, ourscreen); |
166 |
+ |
copystruct(&odev.v, &stdview); |
167 |
+ |
odev.v.type = VT_PER; |
168 |
|
/* map the window and get its size */ |
169 |
|
XMapWindow(ourdisplay, gwind); |
170 |
< |
dev_input(); |
170 |
> |
dev_input(); /* sets size and view angles */ |
171 |
|
/* allocate our leaf pile */ |
172 |
|
if (!qtAllocLeaves(DisplayWidth(ourdisplay,ourscreen) * |
173 |
|
DisplayHeight(ourdisplay,ourscreen) / |
174 |
|
(qtMinNodesiz*qtMinNodesiz))) |
175 |
|
error(SYSTEM, "insufficient memory for leaf storage"); |
170 |
– |
|
171 |
– |
/* figure out sensible view */ |
172 |
– |
pwidth = (double)DisplayWidthMM(ourdisplay, ourscreen) / |
173 |
– |
DisplayWidth(ourdisplay, ourscreen); |
174 |
– |
pheight = (double)DisplayHeightMM(ourdisplay, ourscreen) / |
175 |
– |
DisplayHeight(ourdisplay, ourscreen); |
176 |
– |
copystruct(&odev.v, &stdview); |
176 |
|
odev.name = id; |
178 |
– |
odev.v.type = VT_PER; |
179 |
– |
odev.v.horiz = 2.*180./PI * atan(0.5/VIEWDIST*pwidth*odev.hres); |
180 |
– |
odev.v.vert = 2.*180./PI * atan(0.5/VIEWDIST*pheight*odev.vres); |
177 |
|
odev.ifd = ConnectionNumber(ourdisplay); |
178 |
|
} |
179 |
|
|
195 |
|
} |
196 |
|
|
197 |
|
|
198 |
+ |
int |
199 |
|
dev_view(nv) /* assign new driver view */ |
200 |
|
VIEW *nv; |
201 |
|
{ |
202 |
< |
if (nv != &odev.v) |
202 |
> |
if (nv->type == VT_PAR || /* check view legality */ |
203 |
> |
nv->horiz > 160. || nv->vert > 160.) { |
204 |
> |
error(COMMAND, "illegal view type/angle"); |
205 |
> |
nv->type = VT_PER; |
206 |
> |
nv->horiz = odev.v.horiz; |
207 |
> |
nv->vert = odev.v.vert; |
208 |
> |
return(0); |
209 |
> |
} |
210 |
> |
if (nv->vfore > FTINY) { |
211 |
> |
error(COMMAND, "cannot handle fore clipping"); |
212 |
> |
nv->vfore = 0.; |
213 |
> |
return(0); |
214 |
> |
} |
215 |
> |
if (nv != &odev.v) { |
216 |
> |
if (!FEQ(nv->horiz,odev.v.horiz) || /* resize window? */ |
217 |
> |
!FEQ(nv->vert,odev.v.vert)) { |
218 |
> |
int dw = DisplayWidth(ourdisplay,ourscreen); |
219 |
> |
int dh = DisplayHeight(ourdisplay,ourscreen); |
220 |
> |
|
221 |
> |
dw -= 25; /* for window frame */ |
222 |
> |
dh -= 50; |
223 |
> |
odev.hres = 2.*VIEWDIST/pwidth * |
224 |
> |
tan(PI/180./2.*nv->horiz); |
225 |
> |
odev.vres = 2.*VIEWDIST/pheight * |
226 |
> |
tan(PI/180./2.*nv->vert); |
227 |
> |
if (odev.hres > dw) { |
228 |
> |
odev.vres = dw * odev.vres / odev.hres; |
229 |
> |
odev.hres = dw; |
230 |
> |
} |
231 |
> |
if (odev.vres > dh) { |
232 |
> |
odev.hres = dh * odev.hres / odev.vres; |
233 |
> |
odev.vres = dh; |
234 |
> |
} |
235 |
> |
XResizeWindow(ourdisplay, gwind, odev.hres, odev.vres); |
236 |
> |
dev_input(); /* wait for resize event */ |
237 |
> |
} |
238 |
|
copystruct(&odev.v, nv); |
239 |
+ |
} |
240 |
|
qtReplant(); |
241 |
+ |
return(1); |
242 |
|
} |
243 |
|
|
244 |
|
|
246 |
|
dev_input() /* get X11 input */ |
247 |
|
{ |
248 |
|
inpresflags = 0; |
249 |
+ |
|
250 |
|
do |
251 |
|
getevent(); |
252 |
|
|
414 |
|
|
415 |
|
|
416 |
|
static |
417 |
< |
moveview(dx, dy, move) /* move our view */ |
418 |
< |
int dx, dy, move; |
417 |
> |
ilclip(dp, wp) /* clip world coordinates to device */ |
418 |
> |
int dp[2][2]; |
419 |
> |
FVECT wp[2]; |
420 |
|
{ |
421 |
+ |
static FVECT vmin = {0.,0.,0.}, vmax = {1.,1.,FHUGE}; |
422 |
+ |
FVECT ip[2]; |
423 |
+ |
/* not exactly right, but who cares? */ |
424 |
+ |
viewloc(ip[0], &odev.v, wp[0]); |
425 |
+ |
viewloc(ip[1], &odev.v, wp[1]); |
426 |
+ |
if (!clip(ip[0], ip[1], vmin, vmax)) |
427 |
+ |
return(0); |
428 |
+ |
dp[0][0] = ip[0][0]*odev.hres; |
429 |
+ |
dp[0][1] = ip[0][1]*odev.vres; |
430 |
+ |
dp[1][0] = ip[1][0]*odev.hres; |
431 |
+ |
dp[1][1] = ip[1][1]*odev.vres; |
432 |
+ |
return(1); |
433 |
+ |
} |
434 |
+ |
|
435 |
+ |
|
436 |
+ |
static |
437 |
+ |
draw3dline(wp) /* draw 3d line in world coordinates */ |
438 |
+ |
FVECT wp[2]; |
439 |
+ |
{ |
440 |
+ |
int dp[2][2]; |
441 |
+ |
|
442 |
+ |
if (!ilclip(dp, wp)) |
443 |
+ |
return; |
444 |
+ |
XDrawLine(ourdisplay, gwind, ourgc, |
445 |
+ |
dp[0][0], odev.vres-1 - dp[0][1], |
446 |
+ |
dp[1][0], odev.vres-1 - dp[1][1]); |
447 |
+ |
} |
448 |
+ |
|
449 |
+ |
|
450 |
+ |
static |
451 |
+ |
draw_grids() /* draw holodeck section grids */ |
452 |
+ |
{ |
453 |
+ |
static BYTE gridrgb[3] = {0x0, 0xff, 0xff}; |
454 |
+ |
unsigned long pixel; |
455 |
+ |
|
456 |
+ |
if (!mapped || odev.v.type != VT_PER) |
457 |
+ |
return; |
458 |
+ |
if (ncolors > 0) |
459 |
+ |
pixel = pixval[get_pixel(gridrgb, xnewcolr)]; |
460 |
+ |
else |
461 |
+ |
pixel = true_pixel(gridrgb); |
462 |
+ |
XSetForeground(ourdisplay, ourgc, pixel); |
463 |
+ |
/* draw each grid line */ |
464 |
+ |
gridlines(draw3dline); |
465 |
+ |
} |
466 |
+ |
|
467 |
+ |
|
468 |
+ |
static |
469 |
+ |
moveview(dx, dy, mov, orb) /* move our view */ |
470 |
+ |
int dx, dy, mov, orb; |
471 |
+ |
{ |
472 |
|
VIEW nv; |
473 |
+ |
FVECT odir, v1; |
474 |
|
double d; |
475 |
< |
register int i; |
475 |
> |
register int li; |
476 |
|
/* start with old view */ |
477 |
|
copystruct(&nv, &odev.v); |
478 |
|
/* change view direction */ |
479 |
< |
if (move) { |
480 |
< |
register RLEAF *lp; |
393 |
< |
if ((lp = qtFindLeaf(dx, dy)) == NULL) |
479 |
> |
if (mov | orb) { |
480 |
> |
if ((li = qtFindLeaf(dx, dy)) < 0) |
481 |
|
return(0); /* not on window */ |
482 |
< |
for (i = 0; i < 3; i++) |
396 |
< |
nv.vdir[i] = lp->wp[i] - nv.vp[i]; |
482 |
> |
VSUM(odir, qtL.wp[li], nv.vp, -1.); |
483 |
|
} else { |
484 |
|
if (viewray(nv.vp, nv.vdir, &odev.v, |
485 |
|
(dx+.5)/odev.hres, (dy+.5)/odev.vres) < -FTINY) |
486 |
|
return(0); /* outside view */ |
487 |
|
} |
488 |
< |
/* move viewpoint */ |
489 |
< |
if (move > 0) |
490 |
< |
for (i = 0; i < 3; i++) |
491 |
< |
nv.vp[i] += MOVPCT/100. * nv.vdir[i]; |
492 |
< |
else if (move < 0) |
493 |
< |
for (i = 0; i < 3; i++) |
494 |
< |
nv.vp[i] -= MOVPCT/100. * nv.vdir[i]; |
495 |
< |
if (move && headlocked) { |
496 |
< |
d = 0; /* bring head back to same height */ |
497 |
< |
for (i = 0; i < 3; i++) |
498 |
< |
d += odev.v.vup[i] * (odev.v.vp[i] - nv.vp[i]); |
499 |
< |
for (i = 0; i < 3; i++) |
500 |
< |
nv.vp[i] += d * odev.v.vup[i]; |
488 |
> |
if (orb && mov) { /* orbit left/right */ |
489 |
> |
spinvector(odir, odir, nv.vup, d=MOVDEG*PI/180.*mov); |
490 |
> |
VSUM(nv.vp, qtL.wp[li], odir, -1.); |
491 |
> |
spinvector(nv.vdir, nv.vdir, nv.vup, d); |
492 |
> |
} else if (orb) { /* orbit up/down */ |
493 |
> |
fcross(v1, odir, nv.vup); |
494 |
> |
if (normalize(v1) == 0.) |
495 |
> |
return(0); |
496 |
> |
spinvector(odir, odir, v1, d=MOVDEG*PI/180.*orb); |
497 |
> |
VSUM(nv.vp, qtL.wp[li], odir, -1.); |
498 |
> |
spinvector(nv.vdir, nv.vdir, v1, d); |
499 |
> |
} else if (mov) { /* move forward/backward */ |
500 |
> |
d = MOVPCT/100. * mov; |
501 |
> |
VSUM(nv.vp, nv.vp, odir, d); |
502 |
|
} |
503 |
+ |
if (!mov ^ !orb && headlocked) { /* restore head height */ |
504 |
+ |
VSUM(v1, odev.v.vp, nv.vp, -1.); |
505 |
+ |
d = DOT(v1, odev.v.vup); |
506 |
+ |
VSUM(nv.vp, nv.vp, odev.v.vup, d); |
507 |
+ |
} |
508 |
|
if (setview(&nv) != NULL) |
509 |
|
return(0); /* illegal view */ |
510 |
|
dev_view(&nv); |
511 |
< |
inpresflags |= DEV_NEWVIEW; |
511 |
> |
inpresflags |= DFL(DC_SETVIEW); |
512 |
|
return(1); |
513 |
|
} |
514 |
|
|
517 |
|
getmove(ebut) /* get view change */ |
518 |
|
XButtonPressedEvent *ebut; |
519 |
|
{ |
520 |
< |
int whichbutton = ebut->button; |
520 |
> |
int movdir = MOVDIR(ebut->button); |
521 |
> |
int movorb = MOVORB(ebut->state); |
522 |
|
int oldnodesiz = qtMinNodesiz; |
523 |
|
Window rootw, childw; |
524 |
|
int rootx, rooty, wx, wy; |
525 |
|
unsigned int statemask; |
526 |
|
|
527 |
|
qtMinNodesiz = 16; /* for quicker update */ |
528 |
+ |
XNoOp(ourdisplay); |
529 |
|
|
530 |
< |
do { |
530 |
> |
while (!XCheckMaskEvent(ourdisplay, |
531 |
> |
ButtonReleaseMask, levptr(XEvent))) { |
532 |
> |
|
533 |
|
if (!XQueryPointer(ourdisplay, gwind, &rootw, &childw, |
534 |
|
&rootx, &rooty, &wx, &wy, &statemask)) |
535 |
|
break; /* on another screen */ |
536 |
|
|
537 |
< |
if (!moveview(wx, odev.vres-1-wy, MOVDIR(whichbutton))) |
537 |
> |
if (!moveview(wx, odev.vres-1-wy, movdir, movorb)) { |
538 |
|
sleep(1); |
539 |
< |
|
540 |
< |
} while (!XCheckMaskEvent(ourdisplay, |
541 |
< |
ButtonReleaseMask, levptr(XEvent))); |
542 |
< |
|
543 |
< |
if (!(inpresflags & DEV_NEWVIEW)) { /* do final motion */ |
544 |
< |
whichbutton = levptr(XButtonReleasedEvent)->button; |
539 |
> |
continue; |
540 |
> |
} |
541 |
> |
XClearWindow(ourdisplay, gwind); |
542 |
> |
qtUpdate(); |
543 |
> |
draw_grids(); |
544 |
> |
} |
545 |
> |
if (!(inpresflags & DFL(DC_SETVIEW))) { /* do final motion */ |
546 |
> |
movdir = MOVDIR(levptr(XButtonReleasedEvent)->button); |
547 |
|
wx = levptr(XButtonReleasedEvent)->x; |
548 |
|
wy = levptr(XButtonReleasedEvent)->y; |
549 |
< |
moveview(wx, odev.vres-1-wy, MOVDIR(whichbutton)); |
549 |
> |
moveview(wx, odev.vres-1-wy, movdir, movorb); |
550 |
|
} |
551 |
+ |
dev_flush(); |
552 |
|
|
553 |
|
qtMinNodesiz = oldnodesiz; /* restore quadtree resolution */ |
554 |
|
} |
571 |
|
case 'H': /* turn off height motion lock */ |
572 |
|
headlocked = 0; |
573 |
|
return; |
574 |
< |
case CTRL('Z'): |
574 |
> |
case 'l': /* retrieve last view */ |
575 |
> |
inpresflags |= DFL(DC_LASTVIEW); |
576 |
> |
return; |
577 |
|
case 'p': /* pause computation */ |
578 |
< |
inpresflags |= DEV_WAIT; |
578 |
> |
inpresflags |= DFL(DC_PAUSE); |
579 |
|
return; |
580 |
+ |
case 'v': /* spit out view */ |
581 |
+ |
inpresflags |= DFL(DC_GETVIEW); |
582 |
+ |
return; |
583 |
|
case '\n': |
584 |
< |
case '\r': /* release */ |
584 |
> |
case '\r': /* resume computation */ |
585 |
> |
inpresflags |= DFL(DC_RESUME); |
586 |
|
return; |
587 |
< |
case CTRL('D'): |
588 |
< |
case 'Q': |
587 |
> |
case CTRL('R'): /* redraw screen */ |
588 |
> |
if (ncolors > 0) |
589 |
> |
new_ctab(ncolors); |
590 |
> |
qtRedraw(0, 0, odev.hres, odev.vres); |
591 |
> |
return; |
592 |
> |
case CTRL('L'): /* refresh from server */ |
593 |
> |
if (inpresflags & DFL(DC_REDRAW)) |
594 |
> |
return; |
595 |
> |
XClearWindow(ourdisplay, gwind); |
596 |
> |
draw_grids(); |
597 |
> |
XFlush(ourdisplay); |
598 |
> |
qtCompost(100); /* unload the old tree */ |
599 |
> |
if (ncolors > 0) |
600 |
> |
new_ctab(ncolors); |
601 |
> |
inpresflags |= DFL(DC_REDRAW); /* resend values from server */ |
602 |
> |
return; |
603 |
> |
case 'K': /* kill rtrace process(es) */ |
604 |
> |
inpresflags |= DFL(DC_KILL); |
605 |
> |
break; |
606 |
> |
case 'R': /* restart rtrace */ |
607 |
> |
inpresflags |= DFL(DC_RESTART); |
608 |
> |
break; |
609 |
> |
case 'C': /* clobber holodeck */ |
610 |
> |
inpresflags |= DFL(DC_CLOBBER); |
611 |
> |
break; |
612 |
|
case 'q': /* quit the program */ |
613 |
< |
inpresflags |= DEV_SHUTDOWN; |
613 |
> |
inpresflags |= DFL(DC_QUIT); |
614 |
|
return; |
615 |
|
default: |
616 |
|
XBell(ourdisplay, 0); |
626 |
|
if (odev.hres == 0 || odev.vres == 0) { /* first exposure */ |
627 |
|
odev.hres = eexp->width; |
628 |
|
odev.vres = eexp->height; |
501 |
– |
inpresflags |= DEV_NEWSIZE; |
629 |
|
} |
630 |
|
qtRedraw(eexp->x, odev.vres - eexp->y - eexp->height, |
631 |
|
eexp->x + eexp->width, odev.vres - eexp->y); |
639 |
|
if (ersz->width == odev.hres && ersz->height == odev.vres) |
640 |
|
return; |
641 |
|
|
515 |
– |
if (odev.hres != 0 && odev.vres != 0) { |
516 |
– |
odev.v.horiz = 2.*180./PI * atan( |
517 |
– |
tan(PI/180./2.*odev.v.horiz) * ersz->width/odev.hres ); |
518 |
– |
odev.v.vert = 2.*180./PI * atan( |
519 |
– |
tan(PI/180./2.*odev.v.vert) * ersz->height/odev.vres ); |
520 |
– |
inpresflags |= DEV_NEWVIEW; |
521 |
– |
} |
642 |
|
odev.hres = ersz->width; |
643 |
|
odev.vres = ersz->height; |
644 |
|
|
645 |
< |
inpresflags |= DEV_NEWSIZE; |
645 |
> |
odev.v.horiz = 2.*180./PI * atan(0.5/VIEWDIST*pwidth*odev.hres); |
646 |
> |
odev.v.vert = 2.*180./PI * atan(0.5/VIEWDIST*pheight*odev.vres); |
647 |
> |
|
648 |
> |
inpresflags |= DFL(DC_SETVIEW); |
649 |
|
} |