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.13 by gregl, Thu Dec 11 09:37:43 1997 UTC vs.
Revision 3.19 by gregl, Wed Dec 24 16:56:00 1997 UTC

# Line 22 | Line 22 | static char SCCSid[] = "$SunId$ SGI";
22   #define FEQ(a,b)        ((a)-(b) <= FTINY && (a)-(b) >= -FTINY)
23   #endif
24  
25 #define CTRL(c)         ((c)-'@')
26
25   #define GAMMA           2.2             /* default gamma correction */
26  
27   #define MOVPCT          7               /* percent distance to move /frame */
# Line 160 | Line 158 | char  *id;
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");
171
172                                        /* figure out sensible view */
173        pwidth = (double)DisplayWidthMM(ourdisplay, ourscreen) /
174                        DisplayWidth(ourdisplay, ourscreen);
175        pheight = (double)DisplayHeightMM(ourdisplay, ourscreen) /
176                        DisplayHeight(ourdisplay, ourscreen);
177        copystruct(&odev.v, &stdview);
176          odev.name = id;
179        odev.v.type = VT_PER;
180        odev.v.horiz = 2.*180./PI * atan(0.5/VIEWDIST*pwidth*odev.hres);
181        odev.v.vert = 2.*180./PI * atan(0.5/VIEWDIST*pheight*odev.vres);
177          odev.ifd = ConnectionNumber(ourdisplay);
178   }
179  
# Line 205 | Line 200 | dev_view(nv)                   /* assign new driver view */
200   VIEW    *nv;
201   {
202          if (nv->type == VT_PAR ||               /* check view legality */
203 <                nv->horiz > 160. || nv->vert > 160.) {
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;
# Line 224 | Line 219 | VIEW   *nv;
219                          int     dh = DisplayHeight(ourdisplay,ourscreen);
220  
221                          dw -= 25;       /* for window frame */
222 <                        dh -= 100;
222 >                        dh -= 50;
223                          odev.hres = 2.*VIEWDIST/pwidth *
224                                          tan(PI/180./2.*nv->horiz);
225                          odev.vres = 2.*VIEWDIST/pheight *
# Line 238 | Line 233 | VIEW   *nv;
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          }
# Line 457 | Line 453 | draw_grids()                   /* draw holodeck section grids */
453          static BYTE     gridrgb[3] = {0x0, 0xff, 0xff};
454          unsigned long  pixel;
455  
456 <        if (!mapped || odev.v.type != VT_PER)
456 >        if (!mapped)
457                  return;
458          if (ncolors > 0)
459                  pixel = pixval[get_pixel(gridrgb, xnewcolr)];
# Line 474 | Line 470 | moveview(dx, dy, mov, orb)     /* move our view */
470   int     dx, dy, mov, orb;
471   {
472          VIEW    nv;
473 <        FVECT   v1;
473 >        FVECT   odir, v1;
474          double  d;
475          register int    li;
476                                  /* start with old view */
# Line 483 | Line 479 | int    dx, dy, mov, orb;
479          if (mov | orb) {
480                  if ((li = qtFindLeaf(dx, dy)) < 0)
481                          return(0);      /* not on window */
482 <                VSUM(nv.vdir, qtL.wp[li], nv.vp, -1.);
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          if (orb && mov) {               /* orbit left/right */
489 <                spinvector(nv.vdir, nv.vdir, nv.vup, MOVDEG*PI/180.*mov);
490 <                VSUM(nv.vp, qtL.wp[li], nv.vdir, -1.);
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, nv.vdir, nv.vup);
493 >                fcross(v1, odir, nv.vup);
494                  if (normalize(v1) == 0.)
495                          return(0);
496 <                spinvector(nv.vdir, nv.vdir, v1, MOVDEG*PI/180.*orb);
497 <                VSUM(nv.vp, qtL.wp[li], nv.vdir, -1.);
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, nv.vdir, d);
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.);
# Line 510 | Line 508 | int    dx, dy, mov, orb;
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  
# Line 544 | Line 542 | XButtonPressedEvent    *ebut;
542                  qtUpdate();
543                  draw_grids();
544          }
545 <        if (!(inpresflags & DEV_NEWVIEW)) {     /* do final motion */
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;
# Line 574 | Line 572 | register XKeyPressedEvent  *ekey;
572                  headlocked = 0;
573                  return;
574          case 'l':                       /* retrieve last view */
575 <                inpresflags |= DEV_LASTVIEW;
575 >                inpresflags |= DFL(DC_LASTVIEW);
576                  return;
579        case CTRL('S'):
577          case 'p':                       /* pause computation */
578 <                inpresflags |= DEV_WAIT;
578 >                inpresflags |= DFL(DC_PAUSE);
579                  return;
580          case 'v':                       /* spit out view */
581 <                inpresflags |= DEV_PUTVIEW;
581 >                inpresflags |= DFL(DC_GETVIEW);
582                  return;
586        case CTRL('Q'):
583          case '\n':
584          case '\r':                      /* resume computation */
585 <                inpresflags |= DEV_RESUME;
585 >                inpresflags |= DFL(DC_RESUME);
586                  return;
587          case CTRL('R'):                 /* redraw screen */
588                  if (ncolors > 0)
# Line 594 | Line 590 | register XKeyPressedEvent  *ekey;
590                  qtRedraw(0, 0, odev.hres, odev.vres);
591                  return;
592          case CTRL('L'):                 /* refresh from server */
593 <                if (inpresflags & DEV_REDRAW)
593 >                if (inpresflags & DFL(DC_REDRAW))
594                          return;
595                  XClearWindow(ourdisplay, gwind);
596                  draw_grids();
# Line 602 | Line 598 | register XKeyPressedEvent  *ekey;
598                  qtCompost(100);                 /* unload the old tree */
599                  if (ncolors > 0)
600                          new_ctab(ncolors);
601 <                inpresflags |= DEV_REDRAW;      /* resend values from server */
601 >                inpresflags |= DFL(DC_REDRAW);  /* resend values from server */
602                  return;
603 <        case CTRL('D'):
604 <        case 'Q':
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);
# Line 623 | Line 626 | register XExposeEvent  *eexp;
626          if (odev.hres == 0 || odev.vres == 0) { /* first exposure */
627                  odev.hres = eexp->width;
628                  odev.vres = eexp->height;
626                inpresflags |= DEV_NEWSIZE;
629          }
630          qtRedraw(eexp->x, odev.vres - eexp->y - eexp->height,
631                          eexp->x + eexp->width, odev.vres - eexp->y);
# Line 643 | Line 645 | register XConfigureEvent  *ersz;
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 |= DEV_NEWSIZE|DEV_NEWVIEW;
648 >        inpresflags |= DFL(DC_SETVIEW);
649   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines