ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/hd/rhd_x11.c
(Generate patch)

Comparing ray/src/hd/rhd_x11.c (file contents):
Revision 3.15 by gregl, Fri Dec 12 11:13:15 1997 UTC vs.
Revision 3.30 by gwlarson, Thu Dec 10 10:45:54 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1997 Silicon Graphics, Inc. */
1 > /* Copyright (c) 1998 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ SGI";
# Line 10 | Line 10 | static char SCCSid[] = "$SunId$ SGI";
10   */
11  
12   #include "standard.h"
13 #include "rhd_qtree.h"
14
13   #include  <X11/Xlib.h>
14   #include  <X11/cursorfont.h>
15   #include  <X11/Xutil.h>
16 <
16 > #include "rhd_qtree.h"
17   #include  "x11icon.h"
18  
19 + #ifndef RAYQLEN
20 + #define RAYQLEN         50000           /* max. rays to queue before flush */
21 + #endif
22 +
23   #ifndef FEQ
24   #define FEQ(a,b)        ((a)-(b) <= FTINY && (a)-(b) >= -FTINY)
25   #endif
26  
27   #define GAMMA           2.2             /* default gamma correction */
28  
29 + #define FRAMESTATE(s)   (((s)&(ShiftMask|ControlMask))==(ShiftMask|ControlMask))
30 +
31   #define MOVPCT          7               /* percent distance to move /frame */
32   #define MOVDIR(b)       ((b)==Button1 ? 1 : (b)==Button2 ? 0 : -1)
33   #define MOVDEG          (-5)            /* degrees to orbit CW/down /frame */
# Line 45 | Line 49 | static char SCCSid[] = "$SunId$ SGI";
49  
50   struct driver   odev;                   /* global device driver structure */
51  
52 + char odev_args[64];                     /* command arguments */
53 +
54   static XEvent  currentevent;            /* current event */
55  
56   static int  ncolors = 0;                /* color table size */
# Line 64 | Line 70 | static int     inpresflags;            /* input result flags */
70  
71   static int      headlocked = 0;         /* lock vertical motion */
72  
73 < static int  getpixels(), xnewcolr(), freepixels(), resizewindow(),
73 > static int  getpixels(), xnewcolr(), freepixels(), resizewindow(), getframe(),
74                  getevent(), getkey(), moveview(), getmove(), fixwindow();
75   static unsigned long  true_pixel();
76  
# Line 81 | Line 87 | mytmflags()                    /* figure out tone mapping flags */
87          for (cp = tail; *cp && *cp != '.'; cp++)
88                  ;
89          if (cp-tail == 3 && !strncmp(tail, "x11", 3))
90 <                return(TM_F_CAMERA);
90 >                return(TM_F_CAMERA|TM_F_NOSTDERR);
91          if (cp-tail == 4 && !strncmp(tail, "x11h", 4))
92 <                return(TM_F_HUMAN);
92 >                return(TM_F_HUMAN|TM_F_NOSTDERR);
93          error(USER, "illegal driver name");
94   }
95  
# Line 92 | Line 98 | dev_open(id)                   /* initialize X11 driver */
98   char  *id;
99   {
100          extern char  *getenv();
101 <        char  *gv;
101 >        static RGBPRIMS myprims = STDPRIMS;
102 >        char  *ev;
103          double  gamval = GAMMA;
104 +        RGBPRIMP        dpri = stdprims;
105          int  nplanes;
106          XSetWindowAttributes    ourwinattr;
107          XWMHints  ourxwmhints;
# Line 126 | Line 134 | char  *id;
134                  ourwhite = WhitePixel(ourdisplay,ourscreen);
135          }
136                                          /* set gamma and tone mapping */
137 <        if ((gv = XGetDefault(ourdisplay, "radiance", "gamma")) != NULL
138 <                        || (gv = getenv("DISPLAY_GAMMA")) != NULL)
139 <                gamval = atof(gv);
140 <        if (tmInit(mytmflags(), stdprims, gamval) == NULL)
137 >        if ((ev = XGetDefault(ourdisplay, "radiance", "gamma")) != NULL
138 >                        || (ev = getenv("DISPLAY_GAMMA")) != NULL)
139 >                gamval = atof(ev);
140 >        if ((ev = getenv("DISPLAY_PRIMARIES")) != NULL &&
141 >                        sscanf(ev, "%f %f %f %f %f %f %f %f",
142 >                                &myprims[RED][CIEX],&myprims[RED][CIEY],
143 >                                &myprims[GRN][CIEX],&myprims[GRN][CIEY],
144 >                                &myprims[BLU][CIEX],&myprims[BLU][CIEY],
145 >                                &myprims[WHT][CIEX],&myprims[WHT][CIEY]) >= 6)
146 >                dpri = myprims;
147 >        if (tmInit(mytmflags(), dpri, gamval) == NULL)
148                  error(SYSTEM, "not enough memory in dev_open");
149                                          /* open window */
150          ourwinattr.background_pixel = ourblack;
# Line 158 | Line 173 | char  *id;
173          oursizhints.min_height = MINHEIGHT;
174          oursizhints.flags = PMinSize;
175          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
176                                          /* figure out sensible view */
177          pwidth = (double)DisplayWidthMM(ourdisplay, ourscreen) /
178                          DisplayWidth(ourdisplay, ourscreen);
179          pheight = (double)DisplayHeightMM(ourdisplay, ourscreen) /
180                          DisplayHeight(ourdisplay, ourscreen);
181          copystruct(&odev.v, &stdview);
176        odev.name = id;
182          odev.v.type = VT_PER;
183 <        odev.v.horiz = 2.*180./PI * atan(0.5/VIEWDIST*pwidth*odev.hres);
184 <        odev.v.vert = 2.*180./PI * atan(0.5/VIEWDIST*pheight*odev.vres);
183 >                                        /* map the window and get its size */
184 >        XMapWindow(ourdisplay, gwind);
185 >        dev_input();                    /* sets size and view angles */
186 >                                        /* allocate our leaf pile */
187 >        if (!qtAllocLeaves(DisplayWidth(ourdisplay,ourscreen) *
188 >                        DisplayHeight(ourdisplay,ourscreen) * 3 /
189 >                        (qtMinNodesiz*qtMinNodesiz*2)))
190 >                error(SYSTEM, "insufficient memory for leaf storage");
191 >        odev.name = id;
192          odev.ifd = ConnectionNumber(ourdisplay);
193   }
194  
# Line 198 | Line 210 | dev_close()                    /* close our display */
210   }
211  
212  
213 +
214 + dev_clear()                     /* clear our quadtree */
215 + {
216 +        qtCompost(100);
217 +        if (ncolors > 0)
218 +                new_ctab(ncolors);
219 +        rayqleft = 0;                   /* hold off update */
220 + }
221 +
222 +
223   int
224   dev_view(nv)                    /* assign new driver view */
225   VIEW    *nv;
226   {
227          if (nv->type == VT_PAR ||               /* check view legality */
228 <                nv->horiz > 160. || nv->vert > 160.) {
228 >                        nv->horiz > 160. || nv->vert > 160.) {
229                  error(COMMAND, "illegal view type/angle");
230                  nv->type = VT_PER;
231                  nv->horiz = odev.v.horiz;
# Line 222 | Line 244 | VIEW   *nv;
244                          int     dh = DisplayHeight(ourdisplay,ourscreen);
245  
246                          dw -= 25;       /* for window frame */
247 <                        dh -= 100;
247 >                        dh -= 50;
248                          odev.hres = 2.*VIEWDIST/pwidth *
249                                          tan(PI/180./2.*nv->horiz);
250                          odev.vres = 2.*VIEWDIST/pheight *
# Line 236 | Line 258 | VIEW   *nv;
258                                  odev.vres = dh;
259                          }
260                          XResizeWindow(ourdisplay, gwind, odev.hres, odev.vres);
261 +                        dev_input();    /* wait for resize event */
262                  }
263                  copystruct(&odev.v, nv);
264          }
# Line 244 | Line 267 | VIEW   *nv;
267   }
268  
269  
270 + dev_auxcom(cmd, args)           /* process an auxiliary command */
271 + char    *cmd, *args;
272 + {
273 +        sprintf(errmsg, "%s: unknown command", cmd);
274 +        error(COMMAND, errmsg);
275 + }
276 +
277 +
278 + VIEW *
279 + dev_auxview(n, hvres)           /* return nth auxiliary view */
280 + int     n;
281 + int     hvres[2];
282 + {
283 +        if (n)
284 +                return(NULL);
285 +        hvres[0] = odev.hres; hvres[1] = odev.vres;
286 +        return(&odev.v);
287 + }
288 +
289 +
290   int
291   dev_input()                     /* get X11 input */
292   {
# Line 252 | Line 295 | dev_input()                    /* get X11 input */
295          do
296                  getevent();
297  
298 <        while (XQLength(ourdisplay) > 0);
298 >        while (XPending(ourdisplay) > 0);
299  
300 +        odev.inpready = 0;
301 +
302          return(inpresflags);
303   }
304  
# Line 280 | Line 325 | int
325   dev_flush()                     /* flush output */
326   {
327          qtUpdate();
328 <        return(XPending(ourdisplay));
328 >        rayqleft = RAYQLEN;
329 >        return(odev.inpready = XPending(ourdisplay));
330   }
331  
332  
# Line 409 | Line 455 | getevent()                     /* get next event */
455                  getkey(levptr(XKeyPressedEvent));
456                  break;
457          case ButtonPress:
458 <                getmove(levptr(XButtonPressedEvent));
458 >                if (FRAMESTATE(levptr(XButtonPressedEvent)->state))
459 >                        getframe(levptr(XButtonPressedEvent));
460 >                else
461 >                        getmove(levptr(XButtonPressedEvent));
462                  break;
463          }
464   }
# Line 420 | Line 469 | ilclip(dp, wp)                 /* clip world coordinates to device *
469   int     dp[2][2];
470   FVECT   wp[2];
471   {
472 <        static FVECT    vmin = {0.,0.,0.}, vmax = {1.,1.,FHUGE};
473 <        FVECT   ip[2];
474 <                                /* not exactly right, but who cares? */
475 <        viewloc(ip[0], &odev.v, wp[0]);
476 <        viewloc(ip[1], &odev.v, wp[1]);
472 >        static FVECT    vmin = {0.,0.,0.}, vmax = {1.-FTINY,1.-FTINY,FHUGE};
473 >        FVECT   wpc[2], ip[2];
474 >        double  d, d0, d1;
475 >                                /* check for points behind view */
476 >        d = DOT(odev.v.vp, odev.v.vdir);
477 >        d0 = DOT(wp[0], odev.v.vdir) - d;
478 >        d1 = DOT(wp[1], odev.v.vdir) - d;
479 >                                /* work on copy of world points */
480 >        if (d0 <= d1) {
481 >                VCOPY(wpc[0], wp[0]); VCOPY(wpc[1], wp[1]);
482 >        } else {
483 >                d = d0; d0 = d1; d1 = d;
484 >                VCOPY(wpc[1], wp[0]); VCOPY(wpc[0], wp[1]);
485 >        }
486 >        if (d0 <= FTINY) {
487 >                if (d1 <= FTINY) return(0);
488 >                VSUB(wpc[0], wpc[0], wpc[1]);
489 >                d = .99*d1/(d1-d0);
490 >                VSUM(wpc[0], wpc[1], wpc[0], d);
491 >        }
492 >                                /* get view coordinates and clip to window */
493 >        viewloc(ip[0], &odev.v, wpc[0]);
494 >        viewloc(ip[1], &odev.v, wpc[1]);
495          if (!clip(ip[0], ip[1], vmin, vmax))
496                  return(0);
497          dp[0][0] = ip[0][0]*odev.hres;
# Line 455 | Line 522 | draw_grids()                   /* draw holodeck section grids */
522          static BYTE     gridrgb[3] = {0x0, 0xff, 0xff};
523          unsigned long  pixel;
524  
458        if (!mapped || odev.v.type != VT_PER)
459                return;
525          if (ncolors > 0)
526                  pixel = pixval[get_pixel(gridrgb, xnewcolr)];
527          else
# Line 472 | Line 537 | moveview(dx, dy, mov, orb)     /* move our view */
537   int     dx, dy, mov, orb;
538   {
539          VIEW    nv;
540 <        FVECT   v1;
540 >        FVECT   odir, v1;
541          double  d;
542          register int    li;
543                                  /* start with old view */
# Line 481 | Line 546 | int    dx, dy, mov, orb;
546          if (mov | orb) {
547                  if ((li = qtFindLeaf(dx, dy)) < 0)
548                          return(0);      /* not on window */
549 <                VSUM(nv.vdir, qtL.wp[li], nv.vp, -1.);
549 >                VSUM(odir, qtL.wp[li], nv.vp, -1.);
550          } else {
551                  if (viewray(nv.vp, nv.vdir, &odev.v,
552                                  (dx+.5)/odev.hres, (dy+.5)/odev.vres) < -FTINY)
553                          return(0);      /* outside view */
554          }
555          if (orb && mov) {               /* orbit left/right */
556 <                spinvector(nv.vdir, nv.vdir, nv.vup, MOVDEG*PI/180.*mov);
557 <                VSUM(nv.vp, qtL.wp[li], nv.vdir, -1.);
556 >                spinvector(odir, odir, nv.vup, d=MOVDEG*PI/180.*mov);
557 >                VSUM(nv.vp, qtL.wp[li], odir, -1.);
558 >                spinvector(nv.vdir, nv.vdir, nv.vup, d);
559          } else if (orb) {               /* orbit up/down */
560 <                fcross(v1, nv.vdir, nv.vup);
560 >                fcross(v1, odir, nv.vup);
561                  if (normalize(v1) == 0.)
562                          return(0);
563 <                spinvector(nv.vdir, nv.vdir, v1, MOVDEG*PI/180.*orb);
564 <                VSUM(nv.vp, qtL.wp[li], nv.vdir, -1.);
563 >                spinvector(odir, odir, v1, d=MOVDEG*PI/180.*orb);
564 >                VSUM(nv.vp, qtL.wp[li], odir, -1.);
565 >                spinvector(nv.vdir, nv.vdir, v1, d);
566          } else if (mov) {               /* move forward/backward */
567                  d = MOVPCT/100. * mov;
568 <                VSUM(nv.vp, nv.vp, nv.vdir, d);
568 >                VSUM(nv.vp, nv.vp, odir, d);
569          }
570          if (!mov ^ !orb && headlocked) {        /* restore head height */
571                  VSUM(v1, odev.v.vp, nv.vp, -1.);
# Line 514 | Line 581 | int    dx, dy, mov, orb;
581  
582  
583   static
584 + getframe(ebut)                          /* get focus frame */
585 + XButtonPressedEvent     *ebut;
586 + {
587 +        int     startx = ebut->x, starty = ebut->y;
588 +        int     endx, endy;
589 +
590 +        XMaskEvent(ourdisplay, ButtonReleaseMask, levptr(XEvent));
591 +        endx = levptr(XButtonReleasedEvent)->x;
592 +        endy = levptr(XButtonReleasedEvent)->y;
593 +        if (endx == startx | endy == starty) {
594 +                XBell(ourdisplay, 0);
595 +                return;
596 +        }
597 +        if (endx < startx) {register int c = endx; endx = startx; startx = c;}
598 +        if (endy < starty) {register int c = endy; endy = starty; starty = c;}
599 +        sprintf(odev_args, "%.3f %.3f %.3f %.3f",
600 +                        (startx+.5)/odev.hres, 1.-(endy+.5)/odev.vres,
601 +                        (endx+.5)/odev.hres, 1.-(starty+.5)/odev.vres);
602 +        inpresflags |= DFL(DC_FOCUS);
603 + }
604 +
605 +
606 + static
607   getmove(ebut)                           /* get view change */
608   XButtonPressedEvent     *ebut;
609   {
# Line 558 | Line 648 | static
648   getkey(ekey)                            /* get input key */
649   register XKeyPressedEvent  *ekey;
650   {
651 +        Window  rootw, childw;
652 +        int     rootx, rooty, wx, wy;
653 +        unsigned int    statemask;
654          int  n;
655          char    buf[8];
656  
# Line 574 | Line 667 | register XKeyPressedEvent  *ekey;
667          case 'l':                       /* retrieve last view */
668                  inpresflags |= DFL(DC_LASTVIEW);
669                  return;
670 +        case 'f':                       /* frame view position */
671 +                if (!XQueryPointer(ourdisplay, gwind, &rootw, &childw,
672 +                                &rootx, &rooty, &wx, &wy, &statemask))
673 +                        return;         /* on another screen */
674 +                sprintf(odev_args, "%.4f %.4f", (wx+.5)/odev.hres,
675 +                                1.-(wy+.5)/odev.vres);
676 +                inpresflags |= DFL(DC_FOCUS);
677 +                return;
678 +        case 'F':                       /* unfocus */
679 +                odev_args[0] = '\0';
680 +                inpresflags |= DFL(DC_FOCUS);
681 +                return;
682          case 'p':                       /* pause computation */
683                  inpresflags |= DFL(DC_PAUSE);
684                  return;
# Line 599 | Line 704 | register XKeyPressedEvent  *ekey;
704                  if (ncolors > 0)
705                          new_ctab(ncolors);
706                  inpresflags |= DFL(DC_REDRAW);  /* resend values from server */
707 +                rayqleft = 0;                   /* hold off update */
708                  return;
709          case 'K':                       /* kill rtrace process(es) */
710                  inpresflags |= DFL(DC_KILL);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines