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

Comparing ray/src/hd/rholo4.c (file contents):
Revision 3.13 by gregl, Fri Dec 12 11:13:17 1997 UTC vs.
Revision 3.24 by gwlarson, Sun Dec 20 20:39:31 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 13 | Line 13 | static char SCCSid[] = "$SunId$ SGI";
13   #include <sys/uio.h>
14  
15   #ifndef HDSUF
16 < #define HDSUF   ".hdisp"
16 > #define HDSUF   ".hdi"
17   #endif
18  
19 + #ifndef FNONBLK
20 + #define FNONBLK         O_NONBLOCK
21 + #endif
22 +
23   static int      inp_flags;
24   static int      dpd[3];
25   static FILE     *dpout;
# Line 24 | Line 28 | static FILE    *dpout;
28   disp_open(dname)                /* open the named display driver */
29   char    *dname;
30   {
31 <        char    dpath[128], fd0[8], fd1[8], *cmd[5];
32 <        int     i;
31 >        char    buf[128], fd0[8], fd1[8], *cmd[5], *sfn;
32 >        int     i, n, len;
33                                  /* get full display program name */
34   #ifdef DEVPATH
35 <        sprintf(dpath, "%s/%s%s", DEVPATH, dname, HDSUF);
35 >        sprintf(buf, "%s/%s%s", DEVPATH, dname, HDSUF);
36   #else
37 <        sprintf(dpath, "dev/%s%s", dname, HDSUF);
37 >        sprintf(buf, "dev/%s%s", dname, HDSUF);
38   #endif
39                                  /* dup stdin and stdout */
40          if (readinp)
# Line 39 | Line 43 | char   *dname;
43                  strcpy(fd0, "-1");
44          sprintf(fd1, "%d", dup(1));
45                                  /* start the display process */
46 <        cmd[0] = dpath;
46 >        cmd[0] = buf;
47          cmd[1] = froot; cmd[2] = fd1; cmd[3] = fd0;
48          cmd[4] = NULL;
49          i = open_process(dpd, cmd);
# Line 53 | Line 57 | char   *dname;
57          if (readinp)
58                  close(atoi(fd0));
59          close(atoi(fd1));
60 <                                /* write out hologram grids */
61 <        for (i = 0; hdlist[i] != NULL; i++)
62 <                disp_result(DS_ADDHOLO, sizeof(HDGRID), (char *)hdlist[i]);
60 >                                /* check if outside */
61 >        if (vdef(OBSTRUCTIONS) && vbool(OBSTRUCTIONS))
62 >                disp_result(DS_OUTSECT, 0, NULL);
63 >                                /* send eye separation if specified */
64 >        if (vdef(EYESEP)) {
65 >                sprintf(buf, "%.9e", vflt(EYESEP));
66 >                disp_result(DS_EYESEP, strlen(buf)+1, buf);
67 >        }
68 >                                /* write out hologram grids & octrees */
69 >        for (i = 0; hdlist[i] != NULL; i++) {
70 >                bcopy((char *)hdlist[i], buf, sizeof(HDGRID));
71 >                len = sizeof(HDGRID);
72 >                n = vdef(GEOMETRY);
73 >                sfn = i<n ? nvalue(GEOMETRY,i) :
74 >                                n ? nvalue(GEOMETRY,n-1) : vval(OCTREE);
75 >                strcpy(buf+len, sfn);
76 >                len += strlen(sfn) + 1;
77 >                n = vdef(PORTS);
78 >                sfn = i<n ? nvalue(PORTS,i) : n ? nvalue(PORTS,n-1) : "";
79 >                strcpy(buf+len, sfn);
80 >                len += strlen(sfn) + 1;
81 >                disp_result(DS_ADDHOLO, len, buf);
82 >        }
83          disp_flush();
84   }
85  
# Line 96 | Line 120 | int    block;
120                  return(2);              /* acceptable failure */
121          }
122          if (msg.nbytes) {               /* get the message body */
123 +                if (msg.nbytes < 0)
124 +                        error(INTERNAL, "anti-message from display process");
125                  buf = (char *)malloc(msg.nbytes);
126                  if (buf == NULL)
127                          error(SYSTEM, "out of memory in disp_check");
128 <                if (fcntl(dpd[0], F_SETFL, inp_flags=0) < 0)
128 >                if (inp_flags != 0 && fcntl(dpd[0], F_SETFL, inp_flags=0) < 0)
129                          goto fcntlerr;
130                  if (readbuf(dpd[0], buf, msg.nbytes) != msg.nbytes)
131                          goto readerr;
# Line 113 | Line 139 | int    block;
139          case DR_NEWSET:         /* new calculation set */
140                  if (msg.nbytes % sizeof(PACKHEAD))
141                          error(INTERNAL, "bad DR_NEWSET from display process");
142 <                disp_result(DS_STARTIMM, 0, NULL);
142 >                if (msg.nbytes)
143 >                        disp_result(DS_STARTIMM, 0, NULL);
144                  bundle_set(BS_NEW, (PACKHEAD *)buf, msg.nbytes/sizeof(PACKHEAD));
145 <                disp_result(DS_ENDIMM, 0, NULL);
146 <                disp_flush();
145 >                if (msg.nbytes) {
146 >                        disp_result(DS_ENDIMM, 0, NULL);
147 >                        disp_flush();
148 >                }
149                  break;
150          case DR_ADDSET:         /* add to calculation set */
151 +                if (!msg.nbytes)
152 +                        break;
153                  if (msg.nbytes % sizeof(PACKHEAD))
154                          error(INTERNAL, "bad DR_ADDSET from display process");
155                  disp_result(DS_STARTIMM, 0, NULL);
156                  bundle_set(BS_ADD, (PACKHEAD *)buf, msg.nbytes/sizeof(PACKHEAD));
157                  disp_result(DS_ENDIMM, 0, NULL);
158 <                disp_check(0);          /* hack -- delete usu. follows add */
158 >                disp_flush();
159                  break;
160          case DR_ADJSET:         /* adjust calculation set members */
161 +                if (!msg.nbytes)
162 +                        break;
163                  if (msg.nbytes % sizeof(PACKHEAD))
164                          error(INTERNAL, "bad DR_ADJSET from display process");
165                  disp_result(DS_STARTIMM, 0, NULL);
# Line 135 | Line 168 | int    block;
168                  disp_flush();
169                  break;
170          case DR_DELSET:         /* delete from calculation set */
171 +                if (!msg.nbytes)
172 +                        break;
173                  if (msg.nbytes % sizeof(PACKHEAD))
174                          error(INTERNAL, "bad DR_DELSET from display process");
175                  bundle_set(BS_DEL, (PACKHEAD *)buf, msg.nbytes/sizeof(PACKHEAD));
176                  break;
177 +        case DR_VIEWPOINT:      /* set target eye position */
178 +                if (msg.nbytes != sizeof(VIEWPOINT))
179 +                        error(INTERNAL, "bad DR_VIEWPOINT from display process");
180 +                copystruct(&myeye, (VIEWPOINT *)buf);
181 +                break;
182          case DR_ATTEN:          /* block for priority request */
183                  if (msg.nbytes)
184                          error(INTERNAL, "bad DR_ATTEN from display process");
# Line 148 | Line 188 | int    block;
188          case DR_KILL:           /* kill computation process(es) */
189                  if (msg.nbytes)
190                          error(INTERNAL, "bad DR_KILL from display process");
191 <                if (nprocs > 0) {
192 <                        done_packets(flush_queue());
193 <                        if (end_rtrace())
154 <                                error(WARNING, "bad status returned by rtrace");
155 <                } else
191 >                if (nprocs > 0)
192 >                        done_rtrace();
193 >                else
194                          error(WARNING, "no rtrace process to kill");
195                  break;
196          case DR_RESTART:        /* restart computation process(es) */
197                  if (msg.nbytes)
198                          error(INTERNAL, "bad DR_RESTART from display process");
199 <                if (ncprocs > nprocs) {
200 <                        checkrad();
201 <                        if (start_rtrace() < 1)
164 <                                error(WARNING, "cannot restart rtrace");
165 <                } else if (nprocs > 0)
199 >                if (ncprocs > nprocs)
200 >                        new_rtrace();
201 >                else if (nprocs > 0)
202                          error(WARNING, "rtrace already runnning");
203                  else
204                          error(WARNING, "holodeck not open for writing");
# Line 203 | Line 239 | disp_close()                   /* close our display process */
239  
240          if (dpout == NULL)
241                  return(-1);
242 +        myeye.rng = 0;
243          disp_result(DS_SHUTDOWN, 0, NULL);
244          fclose(dpout);
245          dpout = NULL;
# Line 215 | Line 252 | int    type, nbytes;
252   char    *p;
253   {
254          MSGHEAD msg;
255 <
255 >                                        /* consistency checks */
256 > #ifdef DEBUG
257 >        if (nbytes < 0 || nbytes > 0 & p == NULL)
258 >                error(CONSISTENCY, "bad buffer handed to disp_result");
259 > #endif
260          if (dpout == NULL)
261                  return;
262          msg.type = type;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines