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

Comparing ray/src/common/rglsurf.c (file contents):
Revision 3.3 by gwlarson, Fri Dec 11 13:53:32 1998 UTC vs.
Revision 3.7 by greg, Wed Apr 23 02:28:06 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1998 Silicon Graphics, Inc. */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ SGI";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Convert Radiance -> OpenGL surfaces.
6   */
7  
8 + #include "copyright.h"
9 +
10   #include "radogl.h"
11  
12   #ifndef NSLICES
# Line 29 | Line 28 | static char    *glu_rout = "unk";      /* active GLU routine *
28   #define NOPOLY()        if (curpolysize) {glEnd(); curpolysize = 0;} else
29  
30  
31 + void
32   setmaterial(mp, cent, ispoly)   /* prepare for new material */
33   register MATREC *mp;
34   FVECT   cent;
# Line 80 | Line 80 | register FVECT v[];    /* vertex list */
80   }
81  
82  
83 < static
83 > static void
84   glu_error(en)                   /* report an error as a warning */
85   GLenum  en;
86   {
# Line 130 | Line 130 | newquadric()                   /* allocate GLU quadric structure */
130   }
131  
132  
133 + int
134   o_face(o)                       /* convert a face */
135   register OBJREC *o;
136   {
# Line 141 | Line 142 | register OBJREC        *o;
142                  objerror(o, USER, "bad # real arguments");
143          area = polyarea(cent, norm, o->oargs.nfargs/3, (FVECT *)o->oargs.farg);
144          if (area <= FTINY)
145 <                return;
145 >                return(0);
146          if (dolights)                                   /* check for source */
147 <                doflatsrc(o->os, cent, norm, area);
148 <        setmaterial(o->os, cent, 1);                    /* set material */
147 >                doflatsrc((MATREC *)o->os, cent, norm, area);
148 >        setmaterial((MATREC *)o->os, cent, 1);          /* set material */
149          if (o->oargs.nfargs/3 != curpolysize) {
150                  if (curpolysize) glEnd();
151                  curpolysize = o->oargs.nfargs/3;
# Line 176 | Line 177 | register OBJREC        *o;
177                                          (GLdouble)o->oargs.farg[3*i+1],
178                                          (GLdouble)o->oargs.farg[3*i+2]);
179          }
180 +        return(0);
181   }
182  
183  
184 + void
185   surfclean()                     /* clean up surface routines */
186   {
187          setmaterial(NULL, NULL, 0);
# Line 194 | Line 197 | surfclean()                    /* clean up surface routines */
197   }
198  
199  
200 + int
201   o_sphere(o)                     /* convert a sphere */
202   register OBJREC *o;
203   {
# Line 204 | Line 208 | register OBJREC        *o;
208                  o->otype = o->otype==OBJ_SPHERE ? OBJ_BUBBLE : OBJ_SPHERE;
209                  o->oargs.farg[3] = -o->oargs.farg[3];
210          } else if (o->oargs.farg[3] <= FTINY)
211 <                return;
211 >                return(0);
212          if (dolights)
213 <                dosphsrc(o->os, o->oargs.farg,
213 >                dosphsrc((MATREC *)o->os, o->oargs.farg,
214                                  PI*o->oargs.farg[3]*o->oargs.farg[3]);
215 <        setmaterial(o->os, o->oargs.farg, 0);
215 >        setmaterial((MATREC *)o->os, o->oargs.farg, 0);
216          if (gluqo == NULL) newquadric();
217          glu_rout = "making sphere";
218          gluQuadricOrientation(gluqo,
# Line 220 | Line 224 | register OBJREC        *o;
224                          (GLdouble)o->oargs.farg[2]);
225          gluSphere(gluqo, (GLdouble)o->oargs.farg[3], NSLICES, NSTACKS);
226          glPopMatrix();
227 +        return(0);
228   }
229  
230  
231 + int
232   o_cone(o)                       /* convert a cone or cylinder */
233   register OBJREC *o;
234   {
# Line 232 | Line 238 | register OBJREC *o;
238  
239          iscyl = o->otype==OBJ_CYLINDER | o->otype==OBJ_TUBE;
240          if (o->oargs.nfargs != (iscyl ? 7 : 8))
241 <                objerror(o, "bad # real arguments");
241 >                objerror(o, USER, "bad # real arguments");
242          if (o->oargs.farg[6] < -FTINY) {
243                  o->oargs.farg[6] = -o->oargs.farg[6];
244                  if (iscyl)
# Line 256 | Line 262 | register OBJREC *o;
262          cent[0] = .5*(o->oargs.farg[0] + o->oargs.farg[3]);
263          cent[1] = .5*(o->oargs.farg[1] + o->oargs.farg[4]);
264          cent[2] = .5*(o->oargs.farg[2] + o->oargs.farg[5]);
265 <        setmaterial(o->os, cent, 0);
265 >        setmaterial((MATREC *)o->os, cent, 0);
266          if (gluqo == NULL) newquadric();
267          glu_rout = "making cylinder";
268          gluQuadricOrientation(gluqo, o->otype==OBJ_CUP | o->otype==OBJ_TUBE ?
# Line 282 | Line 288 | register OBJREC *o;
288          gluCylinder(gluqo, o->oargs.farg[6], o->oargs.farg[iscyl ? 6 : 7],
289                          h, NSLICES, 1);
290          glPopMatrix();
291 +        return(0);
292   }
293  
294  
295 + int
296   o_ring(o)                       /* convert a ring */
297   register OBJREC *o;
298   {
299          double  x1, y1, d;
300  
301          if (o->oargs.nfargs != 8)
302 <                objerror(o, "bad # real arguments");
302 >                objerror(o, USER, "bad # real arguments");
303          if (o->oargs.farg[7] < o->oargs.farg[6]) {
304                  register double d = o->oargs.farg[7];
305                  o->oargs.farg[7] = o->oargs.farg[6];
# Line 304 | Line 312 | register OBJREC        *o;
312          if (o->oargs.farg[7] - o->oargs.farg[6] <= FTINY)
313                  return;
314          if (dolights)
315 <                doflatsrc(o->os, o->oargs.farg, o->oargs.farg+3,
315 >                doflatsrc((MATREC *)o->os, o->oargs.farg, o->oargs.farg+3,
316                                  PI*(o->oargs.farg[7]*o->oargs.farg[7] -
317                                          o->oargs.farg[6]*o->oargs.farg[6]));
318 <        setmaterial(o->os, o->oargs.farg, 0);
318 >        setmaterial((MATREC *)o->os, o->oargs.farg, 0);
319          if (gluqo == NULL) newquadric();
320          glu_rout = "making disk";
321          gluQuadricOrientation(gluqo, GLU_OUTSIDE);
# Line 330 | Line 338 | register OBJREC        *o;
338                  glRotated(d, (GLdouble)x1, (GLdouble)y1, 0.);
339          gluDisk(gluqo, o->oargs.farg[6], o->oargs.farg[7], NSLICES, 1);
340          glPopMatrix();
341 +        return(0);
342   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines