| 18 |
|
|
| 19 |
|
#include "x11icon.h" |
| 20 |
|
|
| 21 |
+ |
#ifndef RAYQLEN |
| 22 |
+ |
#define RAYQLEN 50000 /* max. rays to queue before flush */ |
| 23 |
+ |
#endif |
| 24 |
+ |
|
| 25 |
|
#ifndef FEQ |
| 26 |
|
#define FEQ(a,b) ((a)-(b) <= FTINY && (a)-(b) >= -FTINY) |
| 27 |
|
#endif |
| 85 |
|
for (cp = tail; *cp && *cp != '.'; cp++) |
| 86 |
|
; |
| 87 |
|
if (cp-tail == 3 && !strncmp(tail, "x11", 3)) |
| 88 |
< |
return(TM_F_CAMERA); |
| 88 |
> |
return(TM_F_CAMERA|TM_F_NOSTDERR); |
| 89 |
|
if (cp-tail == 4 && !strncmp(tail, "x11h", 4)) |
| 90 |
< |
return(TM_F_HUMAN); |
| 90 |
> |
return(TM_F_HUMAN|TM_F_NOSTDERR); |
| 91 |
|
error(USER, "illegal driver name"); |
| 92 |
|
} |
| 93 |
|
|
| 162 |
|
oursizhints.min_height = MINHEIGHT; |
| 163 |
|
oursizhints.flags = PMinSize; |
| 164 |
|
XSetNormalHints(ourdisplay, gwind, &oursizhints); |
| 161 |
– |
/* map the window and get its size */ |
| 162 |
– |
XMapWindow(ourdisplay, gwind); |
| 163 |
– |
dev_input(); |
| 164 |
– |
/* allocate our leaf pile */ |
| 165 |
– |
if (!qtAllocLeaves(DisplayWidth(ourdisplay,ourscreen) * |
| 166 |
– |
DisplayHeight(ourdisplay,ourscreen) / |
| 167 |
– |
(qtMinNodesiz*qtMinNodesiz))) |
| 168 |
– |
error(SYSTEM, "insufficient memory for leaf storage"); |
| 169 |
– |
|
| 165 |
|
/* figure out sensible view */ |
| 166 |
|
pwidth = (double)DisplayWidthMM(ourdisplay, ourscreen) / |
| 167 |
|
DisplayWidth(ourdisplay, ourscreen); |
| 168 |
|
pheight = (double)DisplayHeightMM(ourdisplay, ourscreen) / |
| 169 |
|
DisplayHeight(ourdisplay, ourscreen); |
| 170 |
|
copystruct(&odev.v, &stdview); |
| 176 |
– |
odev.name = id; |
| 171 |
|
odev.v.type = VT_PER; |
| 172 |
< |
odev.v.horiz = 2.*180./PI * atan(0.5/VIEWDIST*pwidth*odev.hres); |
| 173 |
< |
odev.v.vert = 2.*180./PI * atan(0.5/VIEWDIST*pheight*odev.vres); |
| 172 |
> |
/* map the window and get its size */ |
| 173 |
> |
XMapWindow(ourdisplay, gwind); |
| 174 |
> |
dev_input(); /* sets size and view angles */ |
| 175 |
> |
/* allocate our leaf pile */ |
| 176 |
> |
if (!qtAllocLeaves(DisplayWidth(ourdisplay,ourscreen) * |
| 177 |
> |
DisplayHeight(ourdisplay,ourscreen) * 3 / |
| 178 |
> |
(qtMinNodesiz*qtMinNodesiz*2))) |
| 179 |
> |
error(SYSTEM, "insufficient memory for leaf storage"); |
| 180 |
> |
odev.name = id; |
| 181 |
|
odev.ifd = ConnectionNumber(ourdisplay); |
| 182 |
|
} |
| 183 |
|
|
| 199 |
|
} |
| 200 |
|
|
| 201 |
|
|
| 202 |
+ |
|
| 203 |
+ |
dev_clear() /* clear our quadtree */ |
| 204 |
+ |
{ |
| 205 |
+ |
qtCompost(100); |
| 206 |
+ |
if (ncolors > 0) |
| 207 |
+ |
new_ctab(ncolors); |
| 208 |
+ |
rayqleft = 0; /* hold off update */ |
| 209 |
+ |
} |
| 210 |
+ |
|
| 211 |
+ |
|
| 212 |
|
int |
| 213 |
|
dev_view(nv) /* assign new driver view */ |
| 214 |
|
VIEW *nv; |
| 215 |
|
{ |
| 216 |
|
if (nv->type == VT_PAR || /* check view legality */ |
| 217 |
< |
nv->horiz > 160. || nv->vert > 160.) { |
| 217 |
> |
nv->horiz > 160. || nv->vert > 160.) { |
| 218 |
|
error(COMMAND, "illegal view type/angle"); |
| 219 |
|
nv->type = VT_PER; |
| 220 |
|
nv->horiz = odev.v.horiz; |
| 247 |
|
odev.vres = dh; |
| 248 |
|
} |
| 249 |
|
XResizeWindow(ourdisplay, gwind, odev.hres, odev.vres); |
| 250 |
+ |
dev_input(); /* wait for resize event */ |
| 251 |
|
} |
| 252 |
|
copystruct(&odev.v, nv); |
| 253 |
|
} |
| 292 |
|
dev_flush() /* flush output */ |
| 293 |
|
{ |
| 294 |
|
qtUpdate(); |
| 295 |
+ |
rayqleft = RAYQLEN; |
| 296 |
|
return(XPending(ourdisplay)); |
| 297 |
|
} |
| 298 |
|
|
| 468 |
|
static BYTE gridrgb[3] = {0x0, 0xff, 0xff}; |
| 469 |
|
unsigned long pixel; |
| 470 |
|
|
| 471 |
< |
if (!mapped || odev.v.type != VT_PER) |
| 471 |
> |
if (!mapped) |
| 472 |
|
return; |
| 473 |
|
if (ncolors > 0) |
| 474 |
|
pixel = pixval[get_pixel(gridrgb, xnewcolr)]; |
| 485 |
|
int dx, dy, mov, orb; |
| 486 |
|
{ |
| 487 |
|
VIEW nv; |
| 488 |
< |
FVECT v1; |
| 488 |
> |
FVECT odir, v1; |
| 489 |
|
double d; |
| 490 |
|
register int li; |
| 491 |
|
/* start with old view */ |
| 494 |
|
if (mov | orb) { |
| 495 |
|
if ((li = qtFindLeaf(dx, dy)) < 0) |
| 496 |
|
return(0); /* not on window */ |
| 497 |
< |
VSUM(nv.vdir, qtL.wp[li], nv.vp, -1.); |
| 497 |
> |
VSUM(odir, qtL.wp[li], nv.vp, -1.); |
| 498 |
|
} else { |
| 499 |
|
if (viewray(nv.vp, nv.vdir, &odev.v, |
| 500 |
|
(dx+.5)/odev.hres, (dy+.5)/odev.vres) < -FTINY) |
| 501 |
|
return(0); /* outside view */ |
| 502 |
|
} |
| 503 |
|
if (orb && mov) { /* orbit left/right */ |
| 504 |
< |
spinvector(nv.vdir, nv.vdir, nv.vup, MOVDEG*PI/180.*mov); |
| 505 |
< |
VSUM(nv.vp, qtL.wp[li], nv.vdir, -1.); |
| 504 |
> |
spinvector(odir, odir, nv.vup, d=MOVDEG*PI/180.*mov); |
| 505 |
> |
VSUM(nv.vp, qtL.wp[li], odir, -1.); |
| 506 |
> |
spinvector(nv.vdir, nv.vdir, nv.vup, d); |
| 507 |
|
} else if (orb) { /* orbit up/down */ |
| 508 |
< |
fcross(v1, nv.vdir, nv.vup); |
| 508 |
> |
fcross(v1, odir, nv.vup); |
| 509 |
|
if (normalize(v1) == 0.) |
| 510 |
|
return(0); |
| 511 |
< |
spinvector(nv.vdir, nv.vdir, v1, MOVDEG*PI/180.*orb); |
| 512 |
< |
VSUM(nv.vp, qtL.wp[li], nv.vdir, -1.); |
| 511 |
> |
spinvector(odir, odir, v1, d=MOVDEG*PI/180.*orb); |
| 512 |
> |
VSUM(nv.vp, qtL.wp[li], odir, -1.); |
| 513 |
> |
spinvector(nv.vdir, nv.vdir, v1, d); |
| 514 |
|
} else if (mov) { /* move forward/backward */ |
| 515 |
|
d = MOVPCT/100. * mov; |
| 516 |
< |
VSUM(nv.vp, nv.vp, nv.vdir, d); |
| 516 |
> |
VSUM(nv.vp, nv.vp, odir, d); |
| 517 |
|
} |
| 518 |
|
if (!mov ^ !orb && headlocked) { /* restore head height */ |
| 519 |
|
VSUM(v1, odev.v.vp, nv.vp, -1.); |
| 614 |
|
if (ncolors > 0) |
| 615 |
|
new_ctab(ncolors); |
| 616 |
|
inpresflags |= DFL(DC_REDRAW); /* resend values from server */ |
| 617 |
+ |
rayqleft = 0; /* hold off update */ |
| 618 |
|
return; |
| 619 |
|
case 'K': /* kill rtrace process(es) */ |
| 620 |
|
inpresflags |= DFL(DC_KILL); |