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

Comparing ray/src/hd/rhdisp.c (file contents):
Revision 3.49 by schorsch, Sun Jul 27 22:12:02 2003 UTC vs.
Revision 3.52 by greg, Tue Mar 11 02:21:47 2008 UTC

# Line 8 | Line 8 | static const char      RCSid[] = "$Id$";
8   #include <string.h>
9   #include <ctype.h>
10  
11 + #include "rterror.h"
12   #include "rholo.h"
13   #include "rhdisp.h"
14   #include "rhdriver.h"
# Line 57 | Line 58 | static long    nimmrays, naddrays;
58   #define RDY_DEV         02
59   #define RDY_SIN         04
60  
61 + static int disp_wait(void);
62 + static void add_holo(HDGRID *hdg, char *gfn, char *pfn);
63 + static void disp_bundle(PACKHEAD *p);
64 + static void new_view(register VIEW *v);
65 + static void set_focus(char *args);
66 + static int usr_input(void);
67 + static void printview(void);
68  
69 < main(argc, argv)
70 < int     argc;
71 < char    *argv[];
69 >
70 > int
71 > main(
72 >        int     argc,
73 >        char    *argv[]
74 > )
75   {
76          int     rdy, inp, res = 0, pause = 0;
77  
# Line 149 | Line 160 | char   *argv[];
160   #endif
161                                          /* all done */
162          quit(0);
163 +        return 0; /* pro forma return */
164   }
165  
166  
167 < int
168 < disp_wait()                     /* wait for more input */
167 > static int
168 > disp_wait(void)                 /* wait for more input */
169   {
170          fd_set  readset, errset;
171          int     flgs;
172          int     n;
161        register int    i;
173                                  /* see if we can avoid select call */
174          if (hdlist[0] == NULL)
175                  return(RDY_SRV);        /* initialize first */
# Line 203 | Line 214 | disp_wait()                    /* wait for more input */
214   }
215  
216  
217 < add_holo(hdg, gfn, pfn)         /* register a new holodeck section */
218 < HDGRID  *hdg;
219 < char    *gfn, *pfn;
217 > static void
218 > add_holo(               /* register a new holodeck section */
219 >        HDGRID  *hdg,
220 >        char    *gfn,
221 >        char    *pfn
222 > )
223   {
224          VIEW    nv;
225          double  d;
# Line 241 | Line 255 | char   *gfn, *pfn;
255   }
256  
257  
258 < disp_bundle(p)                  /* display a ray bundle */
259 < register PACKHEAD       *p;
258 > static void
259 > disp_bundle(                    /* display a ray bundle */
260 >        register PACKHEAD       *p
261 > )
262   {
263          GCOORD  gc[2];
264          FVECT   ro, rd, wp;
# Line 270 | Line 286 | register PACKHEAD      *p;
286   }
287  
288  
289 < new_view(v)                     /* change view parameters */
290 < register VIEW   *v;
289 > static void
290 > new_view(                       /* change view parameters */
291 >        register VIEW   *v
292 > )
293   {
294          static VIEW     viewhist[VIEWHISTLEN];
295          static unsigned nhist;
# Line 307 | Line 325 | again:
325                                  return;
326                          }
327                          *v = *(viewhist + ((nhist-1)%VIEWHISTLEN));
328 <                        goto again;     /* poss. overloading dev_section()? */
328 >                        goto again;     /* XXX overloading dev_section()? */
329                  }
330                  DCHECK(*slist < 0, WARNING, "no visible sections in new_view");
331                  for ( ; *slist >= 0; slist++)
# Line 325 | Line 343 | again:
343   }
344  
345  
346 < set_focus(args)                 /* set focus frame */
347 < char    *args;
346 > static void
347 > set_focus(                      /* set focus frame */
348 >        char    *args
349 > )
350   {
351          double  hcent, vcent, hsiz, vsiz;
352          VIEW    *dv, vwfocus;
# Line 362 | Line 382 | char   *args;
382                  vwfocus.horiz = hsiz * odev.v.horiz;
383                  vwfocus.vert = vsiz * odev.v.vert;
384                  break;
385 +        case VT_PLS:
386 +                vwfocus.horiz = hsiz * sin((PI/180./2.)*odev.v.horiz) /
387 +                                (1.0 + cos((PI/180./2.)*odev.v.horiz));
388 +                vwfocus.horiz *= vwfocus.horiz;
389 +                vwfocus.horiz = (2.*180./PI)*acos((1. - vwfocus.horiz) /
390 +                                                (1. + vwfocus.horiz));
391 +                vwfocus.vert = vsiz * sin((PI/180./2.)*odev.v.vert) /
392 +                                (1.0 + cos((PI/180./2.)*odev.v.vert));
393 +                vwfocus.vert *= vwfocus.vert;
394 +                vwfocus.vert = (2.*180./PI)*acos((1. - vwfocus.vert) /
395 +                                                (1. + vwfocus.vert));
396 +                break;
397          case VT_HEM:
398                  vwfocus.horiz = 2.*180./PI*asin(
399                                  hsiz * sin(PI/180./2.*odev.v.horiz) );
# Line 385 | Line 417 | char   *args;
417   }
418  
419  
420 < int
421 < usr_input()                     /* get user input and process it */
420 > static int
421 > usr_input(void)                 /* get user input and process it */
422   {
423          VIEW    vparams;
424          char    cmd[256];
# Line 457 | Line 489 | usr_input()                    /* get user input and process it */
489   }
490  
491  
492 < printview()                     /* print our current view to server stdout */
492 > static void
493 > printview(void)                 /* print our current view to server stdout */
494   {
495          fputs(VIEWSTR, sstdout);
496          fprintview(&odev.v, sstdout);
# Line 466 | Line 499 | printview()                    /* print our current view to server stdo
499   }
500  
501  
502 < int
503 < serv_result()                   /* get next server result and process it */
502 > extern int
503 > serv_result(void)                       /* get next server result and process it */
504   {
505          static char     *buf = NULL;
506          static int      bufsiz = 0;
507          MSGHEAD msg;
475        int     n;
508                                          /* read message header */
509          if (fread((char *)&msg, sizeof(MSGHEAD), 1, stdin) != 1)
510                  goto readerr;
# Line 540 | Line 572 | readerr:
572          if (feof(stdin))
573                  error(SYSTEM, "server process died");
574          error(SYSTEM, "error reading from server process");
575 +        return -1;  
576   }
577  
578  
579 < serv_request(type, nbytes, p)   /* send a request to the server process */
580 < int     type, nbytes;
581 < char    *p;
579 > extern void
580 > serv_request(   /* send a request to the server process */
581 >        int     type,
582 >        int     nbytes,
583 >        char    *p
584 > )
585   {
586          MSGHEAD msg;
587          int     m;
# Line 570 | Line 606 | char   *p;
606  
607  
608   void
609 < eputs(s)                        /* put error message to stderr */
610 < register char  *s;
609 > eputs(                  /* put error message to stderr */
610 >        register char  *s
611 > )
612   {
613          static int  midline = 0;
614  
# Line 590 | Line 627 | register char  *s;
627  
628  
629   void
630 < quit(code)                      /* clean up and exit */
631 < int     code;
630 > quit(                   /* clean up and exit */
631 >        int     code
632 > )
633   {
634          if (code)
635                  exit(code);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines