4 * Freeglut geometry rendering methods.
6 * Copyright (c) 1999-2000 Pawel W. Olszta. All Rights Reserved.
7 * Written by Pawel W. Olszta, <olszta@sourceforge.net>
8 * Creation date: Fri Dec 3 1999
10 * Permission is hereby granted, free of charge, to any person obtaining a
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included
18 * in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 #include <GL/freeglut.h>
29 #include "fg_internal.h"
34 * Need more types of polyhedra? See CPolyhedron in MRPT
38 /* General functions for drawing geometry
39 * Solids are drawn by glDrawArrays if composed of triangles, or by
40 * glDrawElements if consisting of squares or pentagons that were
41 * decomposed into triangles (some vertices are repeated in that case).
42 * WireFrame drawing will have to be done per face, using GL_LINE_LOOP and
43 * issuing one draw call per face. Always use glDrawArrays as no triangle
44 * decomposition needed. We use the "first" parameter in glDrawArrays to go
48 /* Version for OpenGL (ES) 1.1 */
49 #ifndef GL_ES_VERSION_2_0
50 static void fghDrawGeometryWire11(GLfloat *vertices, GLfloat *normals, GLsizei numFaces, GLsizei numEdgePerFace)
54 glEnableClientState(GL_VERTEX_ARRAY);
55 glEnableClientState(GL_NORMAL_ARRAY);
57 glVertexPointer(3, GL_FLOAT, 0, vertices);
58 glNormalPointer(GL_FLOAT, 0, normals);
60 /* Draw per face (TODO: could use glMultiDrawArrays if available) */
61 for (i=0; i<numFaces; i++)
62 glDrawArrays(GL_LINE_LOOP, i*numEdgePerFace, numEdgePerFace);
64 glDisableClientState(GL_VERTEX_ARRAY);
65 glDisableClientState(GL_NORMAL_ARRAY);
69 /* Version for OpenGL (ES) >= 2.0 */
70 static void fghDrawGeometryWire20(GLfloat *vertices, GLfloat *normals, GLsizei numFaces, GLsizei numEdgePerFace,
71 GLint attribute_v_coord, GLint attribute_v_normal)
73 GLuint vbo_coords = 0, vbo_normals = 0;
74 GLuint numVertices = numFaces * numEdgePerFace;
78 if (numVertices > 0 && attribute_v_coord != -1) {
79 fghGenBuffers(1, &vbo_coords);
80 fghBindBuffer(FGH_ARRAY_BUFFER, vbo_coords);
81 fghBufferData(FGH_ARRAY_BUFFER, numVertices * 3 * sizeof(vertices[0]),
82 vertices, FGH_STATIC_DRAW);
85 if (numVertices > 0 && attribute_v_normal != -1) {
86 fghGenBuffers(1, &vbo_normals);
87 fghBindBuffer(FGH_ARRAY_BUFFER, vbo_normals);
88 fghBufferData(FGH_ARRAY_BUFFER, numVertices * 3 * sizeof(normals[0]),
89 normals, FGH_STATIC_DRAW);
93 fghEnableVertexAttribArray(attribute_v_coord);
94 fghBindBuffer(FGH_ARRAY_BUFFER, vbo_coords);
95 fghVertexAttribPointer(
96 attribute_v_coord, /* attribute */
97 3, /* number of elements per vertex, here (x,y,z) */
98 GL_FLOAT, /* the type of each element */
99 GL_FALSE, /* take our values as-is */
100 0, /* no extra data between each position */
101 0 /* offset of first element */
106 fghEnableVertexAttribArray(attribute_v_normal);
107 fghBindBuffer(FGH_ARRAY_BUFFER, vbo_normals);
108 fghVertexAttribPointer(
109 attribute_v_normal, /* attribute */
110 3, /* number of elements per vertex, here (x,y,z) */
111 GL_FLOAT, /* the type of each element */
112 GL_FALSE, /* take our values as-is */
113 0, /* no extra data between each position */
114 0 /* offset of first element */
118 /* Draw per face (TODO: could use glMultiDrawArrays if available) */
119 for (i=0; i<numFaces; i++)
120 glDrawArrays(GL_LINE_LOOP, i*numEdgePerFace, numEdgePerFace);
124 fghDisableVertexAttribArray(attribute_v_coord);
125 if (vbo_normals != 0)
126 fghDisableVertexAttribArray(attribute_v_normal);
129 fghDeleteBuffers(1, &vbo_coords);
130 if (vbo_normals != 0)
131 fghDeleteBuffers(1, &vbo_normals);
134 static void fghDrawGeometryWire(GLfloat *vertices, GLfloat *normals, GLsizei numFaces, GLsizei numEdgePerFace)
136 GLint attribute_v_coord = fgStructure.CurrentWindow->Window.attribute_v_coord;
137 GLint attribute_v_normal = fgStructure.CurrentWindow->Window.attribute_v_normal;
139 if (fgState.HasOpenGL20 && (attribute_v_coord != -1 || attribute_v_normal != -1))
140 /* User requested a 2.0 draw */
141 fghDrawGeometryWire20(vertices, normals, numFaces, numEdgePerFace,
142 attribute_v_coord, attribute_v_normal);
143 #ifndef GL_ES_VERSION_2_0
145 fghDrawGeometryWire11(vertices, normals, numFaces, numEdgePerFace);
150 /* Draw the geometric shape with filled triangles
152 * - If the shape is naturally triangulated (numEdgePerFace==3), each
153 * vertex+normal pair is used only once, so no vertex indices.
155 * - If the shape was triangulated (DECOMPOSE_TO_TRIANGLE), some
156 * vertex+normal pairs are reused, so use vertex indices.
159 /* Version for OpenGL (ES) 1.1 */
160 #ifndef GL_ES_VERSION_2_0
161 static void fghDrawGeometrySolid11(GLfloat *vertices, GLfloat *normals, GLubyte *vertIdxs,
162 GLsizei numVertices, GLsizei numVertIdxs)
164 glEnableClientState(GL_VERTEX_ARRAY);
165 glEnableClientState(GL_NORMAL_ARRAY);
167 glVertexPointer(3, GL_FLOAT, 0, vertices);
168 glNormalPointer(GL_FLOAT, 0, normals);
169 if (vertIdxs == NULL)
170 glDrawArrays(GL_TRIANGLES, 0, numVertices);
172 glDrawElements(GL_TRIANGLES, numVertIdxs, GL_UNSIGNED_BYTE, vertIdxs);
174 glDisableClientState(GL_VERTEX_ARRAY);
175 glDisableClientState(GL_NORMAL_ARRAY);
179 /* Version for OpenGL (ES) >= 2.0 */
180 static void fghDrawGeometrySolid20(GLfloat *vertices, GLfloat *normals, GLubyte *vertIdxs,
181 GLsizei numVertices, GLsizei numVertIdxs,
182 GLint attribute_v_coord, GLint attribute_v_normal)
184 GLuint vbo_coords = 0, vbo_normals = 0, ibo_elements = 0;
186 if (numVertices > 0 && attribute_v_coord != -1) {
187 fghGenBuffers(1, &vbo_coords);
188 fghBindBuffer(FGH_ARRAY_BUFFER, vbo_coords);
189 fghBufferData(FGH_ARRAY_BUFFER, numVertices * 3 * sizeof(vertices[0]),
190 vertices, FGH_STATIC_DRAW);
193 if (numVertices > 0 && attribute_v_normal != -1) {
194 fghGenBuffers(1, &vbo_normals);
195 fghBindBuffer(FGH_ARRAY_BUFFER, vbo_normals);
196 fghBufferData(FGH_ARRAY_BUFFER, numVertices * 3 * sizeof(normals[0]),
197 normals, FGH_STATIC_DRAW);
200 if (vertIdxs != NULL) {
201 fghGenBuffers(1, &ibo_elements);
202 fghBindBuffer(FGH_ELEMENT_ARRAY_BUFFER, ibo_elements);
203 fghBufferData(FGH_ELEMENT_ARRAY_BUFFER, numVertIdxs * sizeof(vertIdxs[0]),
204 vertIdxs, FGH_STATIC_DRAW);
208 fghEnableVertexAttribArray(attribute_v_coord);
209 fghBindBuffer(FGH_ARRAY_BUFFER, vbo_coords);
210 fghVertexAttribPointer(
211 attribute_v_coord, /* attribute */
212 3, /* number of elements per vertex, here (x,y,z) */
213 GL_FLOAT, /* the type of each element */
214 GL_FALSE, /* take our values as-is */
215 0, /* no extra data between each position */
216 0 /* offset of first element */
221 fghEnableVertexAttribArray(attribute_v_normal);
222 fghBindBuffer(FGH_ARRAY_BUFFER, vbo_normals);
223 fghVertexAttribPointer(
224 attribute_v_normal, /* attribute */
225 3, /* number of elements per vertex, here (x,y,z) */
226 GL_FLOAT, /* the type of each element */
227 GL_FALSE, /* take our values as-is */
228 0, /* no extra data between each position */
229 0 /* offset of first element */
233 if (vertIdxs == NULL) {
234 glDrawArrays(GL_TRIANGLES, 0, numVertices);
236 fghBindBuffer(FGH_ELEMENT_ARRAY_BUFFER, ibo_elements);
237 glDrawElements(GL_TRIANGLES, numVertIdxs, GL_UNSIGNED_BYTE, 0);
240 /* Clean existing bindings before clean-up */
241 /* Android showed instability otherwise */
242 fghBindBuffer(FGH_ARRAY_BUFFER, 0);
243 fghBindBuffer(FGH_ELEMENT_ARRAY_BUFFER, 0);
246 fghDisableVertexAttribArray(attribute_v_coord);
247 if (vbo_normals != 0)
248 fghDisableVertexAttribArray(attribute_v_normal);
251 fghDeleteBuffers(1, &vbo_coords);
252 if (vbo_normals != 0)
253 fghDeleteBuffers(1, &vbo_normals);
254 if (ibo_elements != 0)
255 fghDeleteBuffers(1, &ibo_elements);
258 static void fghDrawGeometrySolid(GLfloat *vertices, GLfloat *normals, GLubyte *vertIdxs,
259 GLsizei numVertices, GLsizei numVertIdxs)
261 GLint attribute_v_coord = fgStructure.CurrentWindow->Window.attribute_v_coord;
262 GLint attribute_v_normal = fgStructure.CurrentWindow->Window.attribute_v_normal;
264 if (fgState.HasOpenGL20 && (attribute_v_coord != -1 || attribute_v_normal != -1))
265 /* User requested a 2.0 draw */
266 fghDrawGeometrySolid20(vertices, normals, vertIdxs,
267 numVertices, numVertIdxs,
268 attribute_v_coord, attribute_v_normal);
269 #ifndef GL_ES_VERSION_2_0
271 fghDrawGeometrySolid11(vertices, normals, vertIdxs,
272 numVertices, numVertIdxs);
276 /* Shape decomposition to triangles
277 * We'll use glDrawElements to draw all shapes that are not naturally
278 * composed of triangles, so generate an index vector here, using the
279 * below sampling scheme.
280 * Be careful to keep winding of all triangles counter-clockwise,
281 * assuming that input has correct winding...
283 static GLubyte vert4Decomp[6] = {0,1,2, 0,2,3}; /* quad : 4 input vertices, 6 output (2 triangles) */
284 static GLubyte vert5Decomp[9] = {0,1,2, 0,2,4, 4,2,3}; /* pentagon: 5 input vertices, 9 output (3 triangles) */
286 static void fghGenerateGeometryWithIndexArray(int numFaces, int numEdgePerFace, GLfloat *vertices, GLubyte *vertIndices, GLfloat *normals, GLfloat *vertOut, GLfloat *normOut, GLubyte *vertIdxOut)
288 int i,j,numEdgeIdxPerFace;
289 GLubyte *vertSamps = NULL;
290 switch (numEdgePerFace)
293 /* nothing to do here, we'll draw with glDrawArrays */
296 vertSamps = vert4Decomp;
297 numEdgeIdxPerFace = 6; /* 6 output vertices for each face */
300 vertSamps = vert5Decomp;
301 numEdgeIdxPerFace = 9; /* 9 output vertices for each face */
305 * Build array with vertices using vertex coordinates and vertex indices
306 * Do same for normals.
307 * Need to do this because of different normals at shared vertices.
309 for (i=0; i<numFaces; i++)
312 int faceIdxVertIdx = i*numEdgePerFace; /* index to first element of "row" in vertex indices */
313 for (j=0; j<numEdgePerFace; j++)
315 int outIdx = i*numEdgePerFace*3+j*3;
316 int vertIdx = vertIndices[faceIdxVertIdx+j]*3;
318 vertOut[outIdx ] = vertices[vertIdx ];
319 vertOut[outIdx+1] = vertices[vertIdx+1];
320 vertOut[outIdx+2] = vertices[vertIdx+2];
322 normOut[outIdx ] = normals [normIdx ];
323 normOut[outIdx+1] = normals [normIdx+1];
324 normOut[outIdx+2] = normals [normIdx+2];
327 /* generate vertex indices for each face */
329 for (j=0; j<numEdgeIdxPerFace; j++)
330 vertIdxOut[i*numEdgeIdxPerFace+j] = faceIdxVertIdx + vertSamps[j];
334 static void fghGenerateGeometry(int numFaces, int numEdgePerFace, GLfloat *vertices, GLubyte *vertIndices, GLfloat *normals, GLfloat *vertOut, GLfloat *normOut)
336 /* This function does the same as fghGenerateGeometryWithIndexArray, just skipping the index array generation... */
337 fghGenerateGeometryWithIndexArray(numFaces, numEdgePerFace, vertices, vertIndices, normals, vertOut, normOut, NULL);
341 /* -- INTERNAL SETUP OF GEOMETRY --------------------------------------- */
342 /* -- stuff that can be cached -- */
343 /* Cache of input to glDrawArrays or glDrawElements
344 * In general, we build arrays with all vertices or normals.
345 * We cant compress this and use glDrawElements as all combinations of
346 * vertices and normals are unique.
348 #define DECLARE_SHAPE_CACHE(name,nameICaps,nameCaps)\
349 static GLboolean name##Cached = FALSE;\
350 static GLfloat name##_verts[nameCaps##_VERT_ELEM_PER_OBJ];\
351 static GLfloat name##_norms[nameCaps##_VERT_ELEM_PER_OBJ];\
352 static void fgh##nameICaps##Generate()\
354 fghGenerateGeometry(nameCaps##_NUM_FACES, nameCaps##_NUM_EDGE_PER_FACE,\
355 name##_v, name##_vi, name##_n,\
356 name##_verts, name##_norms);\
358 #define DECLARE_SHAPE_CACHE_DECOMPOSE_TO_TRIANGLE(name,nameICaps,nameCaps)\
359 static GLboolean name##Cached = FALSE;\
360 static GLfloat name##_verts[nameCaps##_VERT_ELEM_PER_OBJ];\
361 static GLfloat name##_norms[nameCaps##_VERT_ELEM_PER_OBJ];\
362 static GLubyte name##_vertIdxs[nameCaps##_VERT_PER_OBJ_TRI];\
363 static void fgh##nameICaps##Generate()\
365 fghGenerateGeometryWithIndexArray(nameCaps##_NUM_FACES, nameCaps##_NUM_EDGE_PER_FACE,\
366 name##_v, name##_vi, name##_n,\
367 name##_verts, name##_norms, name##_vertIdxs);\
371 #define CUBE_NUM_VERT 8
372 #define CUBE_NUM_FACES 6
373 #define CUBE_NUM_EDGE_PER_FACE 4
374 #define CUBE_VERT_PER_OBJ (CUBE_NUM_FACES*CUBE_NUM_EDGE_PER_FACE)
375 #define CUBE_VERT_ELEM_PER_OBJ (CUBE_VERT_PER_OBJ*3)
376 #define CUBE_VERT_PER_OBJ_TRI (CUBE_VERT_PER_OBJ+CUBE_NUM_FACES*2) /* 2 extra edges per face when drawing quads as triangles */
377 /* Vertex Coordinates */
378 static GLfloat cube_v[CUBE_NUM_VERT*3] =
390 static GLfloat cube_n[CUBE_NUM_FACES*3] =
400 /* Vertex indices, as quads, before triangulation */
401 static GLubyte cube_vi[CUBE_VERT_PER_OBJ] =
410 DECLARE_SHAPE_CACHE_DECOMPOSE_TO_TRIANGLE(cube,Cube,CUBE)
412 /* -- Dodecahedron -- */
413 /* Magic Numbers: It is possible to create a dodecahedron by attaching two
414 * pentagons to each face of of a cube. The coordinates of the points are:
415 * (+-x,0, z); (+-1, 1, 1); (0, z, x )
416 * where x = (-1 + sqrt(5))/2, z = (1 + sqrt(5))/2 or
417 * x = 0.61803398875 and z = 1.61803398875.
419 #define DODECAHEDRON_NUM_VERT 20
420 #define DODECAHEDRON_NUM_FACES 12
421 #define DODECAHEDRON_NUM_EDGE_PER_FACE 5
422 #define DODECAHEDRON_VERT_PER_OBJ (DODECAHEDRON_NUM_FACES*DODECAHEDRON_NUM_EDGE_PER_FACE)
423 #define DODECAHEDRON_VERT_ELEM_PER_OBJ (DODECAHEDRON_VERT_PER_OBJ*3)
424 #define DODECAHEDRON_VERT_PER_OBJ_TRI (DODECAHEDRON_VERT_PER_OBJ+DODECAHEDRON_NUM_FACES*4) /* 4 extra edges per face when drawing pentagons as triangles */
425 /* Vertex Coordinates */
426 static GLfloat dodecahedron_v[DODECAHEDRON_NUM_VERT*3] =
428 0.0f, 1.61803398875f, 0.61803398875f,
430 -0.61803398875f, 0.0f, 1.61803398875f,
431 0.61803398875f, 0.0f, 1.61803398875f,
433 0.0f, 1.61803398875f, -0.61803398875f,
435 0.61803398875f, 0.0f, -1.61803398875f,
436 -0.61803398875f, 0.0f, -1.61803398875f,
437 - 1.0f, 1.0f, - 1.0f,
438 0.0f, -1.61803398875f, 0.61803398875f,
440 - 1.0f, - 1.0f, 1.0f,
441 0.0f, -1.61803398875f, -0.61803398875f,
442 - 1.0f, - 1.0f, - 1.0f,
443 1.0f, - 1.0f, - 1.0f,
444 1.61803398875f, -0.61803398875f, 0.0f,
445 1.61803398875f, 0.61803398875f, 0.0f,
446 -1.61803398875f, 0.61803398875f, 0.0f,
447 -1.61803398875f, -0.61803398875f, 0.0f
450 static GLfloat dodecahedron_n[DODECAHEDRON_NUM_FACES*3] =
452 0.0f, 0.525731112119f, 0.850650808354f,
453 0.0f, 0.525731112119f, -0.850650808354f,
454 0.0f, -0.525731112119f, 0.850650808354f,
455 0.0f, -0.525731112119f, -0.850650808354f,
457 0.850650808354f, 0.0f, 0.525731112119f,
458 -0.850650808354f, 0.0f, 0.525731112119f,
459 0.850650808354f, 0.0f, -0.525731112119f,
460 -0.850650808354f, 0.0f, -0.525731112119f,
462 0.525731112119f, 0.850650808354f, 0.0f,
463 0.525731112119f, -0.850650808354f, 0.0f,
464 -0.525731112119f, 0.850650808354f, 0.0f,
465 -0.525731112119f, -0.850650808354f, 0.0f,
469 static GLubyte dodecahedron_vi[DODECAHEDRON_VERT_PER_OBJ] =
486 DECLARE_SHAPE_CACHE_DECOMPOSE_TO_TRIANGLE(dodecahedron,Dodecahedron,DODECAHEDRON)
489 /* -- Icosahedron -- */
490 #define ICOSAHEDRON_NUM_VERT 12
491 #define ICOSAHEDRON_NUM_FACES 20
492 #define ICOSAHEDRON_NUM_EDGE_PER_FACE 3
493 #define ICOSAHEDRON_VERT_PER_OBJ (ICOSAHEDRON_NUM_FACES*ICOSAHEDRON_NUM_EDGE_PER_FACE)
494 #define ICOSAHEDRON_VERT_ELEM_PER_OBJ (ICOSAHEDRON_VERT_PER_OBJ*3)
495 #define ICOSAHEDRON_VERT_PER_OBJ_TRI ICOSAHEDRON_VERT_PER_OBJ
496 /* Vertex Coordinates */
497 static GLfloat icosahedron_v[ICOSAHEDRON_NUM_VERT*3] =
500 0.447213595500f, 0.894427191000f, 0.0f,
501 0.447213595500f, 0.276393202252f, 0.850650808354f,
502 0.447213595500f, -0.723606797748f, 0.525731112119f,
503 0.447213595500f, -0.723606797748f, -0.525731112119f,
504 0.447213595500f, 0.276393202252f, -0.850650808354f,
505 -0.447213595500f, -0.894427191000f, 0.0f,
506 -0.447213595500f, -0.276393202252f, 0.850650808354f,
507 -0.447213595500f, 0.723606797748f, 0.525731112119f,
508 -0.447213595500f, 0.723606797748f, -0.525731112119f,
509 -0.447213595500f, -0.276393202252f, -0.850650808354f,
513 * icosahedron_n[i][0] = ( icosahedron_v[icosahedron_vi[i][1]][1] - icosahedron_v[icosahedron_vi[i][0]][1] ) * ( icosahedron_v[icosahedron_vi[i][2]][2] - icosahedron_v[icosahedron_vi[i][0]][2] ) - ( icosahedron_v[icosahedron_vi[i][1]][2] - icosahedron_v[icosahedron_vi[i][0]][2] ) * ( icosahedron_v[icosahedron_vi[i][2]][1] - icosahedron_v[icosahedron_vi[i][0]][1] ) ;
514 * icosahedron_n[i][1] = ( icosahedron_v[icosahedron_vi[i][1]][2] - icosahedron_v[icosahedron_vi[i][0]][2] ) * ( icosahedron_v[icosahedron_vi[i][2]][0] - icosahedron_v[icosahedron_vi[i][0]][0] ) - ( icosahedron_v[icosahedron_vi[i][1]][0] - icosahedron_v[icosahedron_vi[i][0]][0] ) * ( icosahedron_v[icosahedron_vi[i][2]][2] - icosahedron_v[icosahedron_vi[i][0]][2] ) ;
515 * icosahedron_n[i][2] = ( icosahedron_v[icosahedron_vi[i][1]][0] - icosahedron_v[icosahedron_vi[i][0]][0] ) * ( icosahedron_v[icosahedron_vi[i][2]][1] - icosahedron_v[icosahedron_vi[i][0]][1] ) - ( icosahedron_v[icosahedron_vi[i][1]][1] - icosahedron_v[icosahedron_vi[i][0]][1] ) * ( icosahedron_v[icosahedron_vi[i][2]][0] - icosahedron_v[icosahedron_vi[i][0]][0] ) ;
517 static GLfloat icosahedron_n[ICOSAHEDRON_NUM_FACES*3] =
519 0.760845213037948f, 0.470228201835026f, 0.341640786498800f,
520 0.760845213036861f, -0.179611190632978f, 0.552786404500000f,
521 0.760845213033849f, -0.581234022404097f, 0.0f,
522 0.760845213036861f, -0.179611190632978f, -0.552786404500000f,
523 0.760845213037948f, 0.470228201835026f, -0.341640786498800f,
524 0.179611190628666f, 0.760845213037948f, 0.552786404498399f,
525 0.179611190634277f, -0.290617011204044f, 0.894427191000000f,
526 0.179611190633958f, -0.940456403667806f, 0.0f,
527 0.179611190634278f, -0.290617011204044f, -0.894427191000000f,
528 0.179611190628666f, 0.760845213037948f, -0.552786404498399f,
529 -0.179611190633958f, 0.940456403667806f, 0.0f,
530 -0.179611190634277f, 0.290617011204044f, 0.894427191000000f,
531 -0.179611190628666f, -0.760845213037948f, 0.552786404498399f,
532 -0.179611190628666f, -0.760845213037948f, -0.552786404498399f,
533 -0.179611190634277f, 0.290617011204044f, -0.894427191000000f,
534 -0.760845213036861f, 0.179611190632978f, -0.552786404500000f,
535 -0.760845213033849f, 0.581234022404097f, 0.0f,
536 -0.760845213036861f, 0.179611190632978f, 0.552786404500000f,
537 -0.760845213037948f, -0.470228201835026f, 0.341640786498800f,
538 -0.760845213037948f, -0.470228201835026f, -0.341640786498800f,
542 static GLubyte icosahedron_vi[ICOSAHEDRON_VERT_PER_OBJ] =
565 DECLARE_SHAPE_CACHE(icosahedron,Icosahedron,ICOSAHEDRON)
567 /* -- Octahedron -- */
568 #define OCTAHEDRON_NUM_VERT 6
569 #define OCTAHEDRON_NUM_FACES 8
570 #define OCTAHEDRON_NUM_EDGE_PER_FACE 3
571 #define OCTAHEDRON_VERT_PER_OBJ (OCTAHEDRON_NUM_FACES*OCTAHEDRON_NUM_EDGE_PER_FACE)
572 #define OCTAHEDRON_VERT_ELEM_PER_OBJ (OCTAHEDRON_VERT_PER_OBJ*3)
573 #define OCTAHEDRON_VERT_PER_OBJ_TRI OCTAHEDRON_VERT_PER_OBJ
575 /* Vertex Coordinates */
576 static GLfloat octahedron_v[OCTAHEDRON_NUM_VERT*3] =
587 static GLfloat octahedron_n[OCTAHEDRON_NUM_FACES*3] =
589 0.577350269189f, 0.577350269189f, 0.577350269189f, /* sqrt(1/3) */
590 0.577350269189f, 0.577350269189f,-0.577350269189f,
591 0.577350269189f,-0.577350269189f, 0.577350269189f,
592 0.577350269189f,-0.577350269189f,-0.577350269189f,
593 -0.577350269189f, 0.577350269189f, 0.577350269189f,
594 -0.577350269189f, 0.577350269189f,-0.577350269189f,
595 -0.577350269189f,-0.577350269189f, 0.577350269189f,
596 -0.577350269189f,-0.577350269189f,-0.577350269189f
601 static GLubyte octahedron_vi[OCTAHEDRON_VERT_PER_OBJ] =
612 DECLARE_SHAPE_CACHE(octahedron,Octahedron,OCTAHEDRON)
614 /* -- RhombicDodecahedron -- */
615 #define RHOMBICDODECAHEDRON_NUM_VERT 14
616 #define RHOMBICDODECAHEDRON_NUM_FACES 12
617 #define RHOMBICDODECAHEDRON_NUM_EDGE_PER_FACE 4
618 #define RHOMBICDODECAHEDRON_VERT_PER_OBJ (RHOMBICDODECAHEDRON_NUM_FACES*RHOMBICDODECAHEDRON_NUM_EDGE_PER_FACE)
619 #define RHOMBICDODECAHEDRON_VERT_ELEM_PER_OBJ (RHOMBICDODECAHEDRON_VERT_PER_OBJ*3)
620 #define RHOMBICDODECAHEDRON_VERT_PER_OBJ_TRI (RHOMBICDODECAHEDRON_VERT_PER_OBJ+RHOMBICDODECAHEDRON_NUM_FACES*2) /* 2 extra edges per face when drawing quads as triangles */
622 /* Vertex Coordinates */
623 static GLfloat rhombicdodecahedron_v[RHOMBICDODECAHEDRON_NUM_VERT*3] =
626 0.707106781187f, 0.0f, 0.5f,
627 0.0f, 0.707106781187f, 0.5f,
628 -0.707106781187f, 0.0f, 0.5f,
629 0.0f, -0.707106781187f, 0.5f,
630 0.707106781187f, 0.707106781187f, 0.0f,
631 -0.707106781187f, 0.707106781187f, 0.0f,
632 -0.707106781187f, -0.707106781187f, 0.0f,
633 0.707106781187f, -0.707106781187f, 0.0f,
634 0.707106781187f, 0.0f, -0.5f,
635 0.0f, 0.707106781187f, -0.5f,
636 -0.707106781187f, 0.0f, -0.5f,
637 0.0f, -0.707106781187f, -0.5f,
641 static GLfloat rhombicdodecahedron_n[RHOMBICDODECAHEDRON_NUM_FACES*3] =
643 0.353553390594f, 0.353553390594f, 0.5f,
644 -0.353553390594f, 0.353553390594f, 0.5f,
645 -0.353553390594f, -0.353553390594f, 0.5f,
646 0.353553390594f, -0.353553390594f, 0.5f,
651 0.353553390594f, 0.353553390594f, -0.5f,
652 -0.353553390594f, 0.353553390594f, -0.5f,
653 -0.353553390594f, -0.353553390594f, -0.5f,
654 0.353553390594f, -0.353553390594f, -0.5f
658 static GLubyte rhombicdodecahedron_vi[RHOMBICDODECAHEDRON_VERT_PER_OBJ] =
673 DECLARE_SHAPE_CACHE_DECOMPOSE_TO_TRIANGLE(rhombicdodecahedron,RhombicDodecahedron,RHOMBICDODECAHEDRON)
675 /* -- Tetrahedron -- */
676 /* Magic Numbers: r0 = ( 1, 0, 0 )
677 * r1 = ( -1/3, 2 sqrt(2) / 3, 0 )
678 * r2 = ( -1/3, - sqrt(2) / 3, sqrt(6) / 3 )
679 * r3 = ( -1/3, - sqrt(2) / 3, -sqrt(6) / 3 )
680 * |r0| = |r1| = |r2| = |r3| = 1
681 * Distance between any two points is 2 sqrt(6) / 3
683 * Normals: The unit normals are simply the negative of the coordinates of the point not on the surface.
685 #define TETRAHEDRON_NUM_VERT 4
686 #define TETRAHEDRON_NUM_FACES 4
687 #define TETRAHEDRON_NUM_EDGE_PER_FACE 3
688 #define TETRAHEDRON_VERT_PER_OBJ (TETRAHEDRON_NUM_FACES*TETRAHEDRON_NUM_EDGE_PER_FACE)
689 #define TETRAHEDRON_VERT_ELEM_PER_OBJ (TETRAHEDRON_VERT_PER_OBJ*3)
690 #define TETRAHEDRON_VERT_PER_OBJ_TRI TETRAHEDRON_VERT_PER_OBJ
692 /* Vertex Coordinates */
693 static GLfloat tetrahedron_v[TETRAHEDRON_NUM_VERT*3] =
696 -0.333333333333f, 0.942809041582f, 0.0f,
697 -0.333333333333f, -0.471404520791f, 0.816496580928f,
698 -0.333333333333f, -0.471404520791f, -0.816496580928f
701 static GLfloat tetrahedron_n[TETRAHEDRON_NUM_FACES*3] =
704 0.333333333333f, -0.942809041582f, 0.0f,
705 0.333333333333f, 0.471404520791f, -0.816496580928f,
706 0.333333333333f, 0.471404520791f, 0.816496580928f
710 static GLubyte tetrahedron_vi[TETRAHEDRON_VERT_PER_OBJ] =
717 DECLARE_SHAPE_CACHE(tetrahedron,Tetrahedron,TETRAHEDRON)
719 /* -- Sierpinski Sponge -- */
720 static unsigned int ipow (int x, unsigned int y)
722 return y==0? 1: y==1? x: (y%2? x: 1) * ipow(x*x, y/2);
725 static void fghSierpinskiSpongeGenerate ( int numLevels, double offset[3], GLfloat scale, GLfloat* vertices, GLfloat* normals )
728 if ( numLevels == 0 )
730 for (i=0; i<TETRAHEDRON_NUM_FACES; i++)
733 int faceIdxVertIdx = i*TETRAHEDRON_NUM_EDGE_PER_FACE;
734 for (j=0; j<TETRAHEDRON_NUM_EDGE_PER_FACE; j++)
736 int outIdx = i*TETRAHEDRON_NUM_EDGE_PER_FACE*3+j*3;
737 int vertIdx = tetrahedron_vi[faceIdxVertIdx+j]*3;
739 vertices[outIdx ] = (GLfloat)offset[0] + scale * tetrahedron_v[vertIdx ];
740 vertices[outIdx+1] = (GLfloat)offset[1] + scale * tetrahedron_v[vertIdx+1];
741 vertices[outIdx+2] = (GLfloat)offset[2] + scale * tetrahedron_v[vertIdx+2];
743 normals [outIdx ] = tetrahedron_n[normIdx ];
744 normals [outIdx+1] = tetrahedron_n[normIdx+1];
745 normals [outIdx+2] = tetrahedron_n[normIdx+2];
749 else if ( numLevels > 0 )
751 double local_offset[3] ; /* Use a local variable to avoid buildup of roundoff errors */
752 unsigned int stride = ipow(4,--numLevels)*TETRAHEDRON_VERT_ELEM_PER_OBJ;
754 for ( i = 0 ; i < TETRAHEDRON_NUM_FACES ; i++ )
757 local_offset[0] = offset[0] + scale * tetrahedron_v[idx ];
758 local_offset[1] = offset[1] + scale * tetrahedron_v[idx+1];
759 local_offset[2] = offset[2] + scale * tetrahedron_v[idx+2];
760 fghSierpinskiSpongeGenerate ( numLevels, local_offset, scale, vertices+i*stride, normals+i*stride );
765 #ifndef GL_ES_VERSION_2_0
766 /* -- Now the various shapes involving circles -- */
768 * Compute lookup table of cos and sin values forming a circle
769 * (or half circle if halfCircle==TRUE)
772 * It is the responsibility of the caller to free these tables
773 * The size of the table is (n+1) to form a connected loop
774 * The last entry is exactly the same as the first
775 * The sign of n can be flipped to get the reverse loop
777 static void fghCircleTable(GLfloat **sint, GLfloat **cost, const int n, const GLboolean halfCircle)
781 /* Table size, the sign of n flips the circle direction */
782 const int size = abs(n);
784 /* Determine the angle between samples */
785 const GLfloat angle = (halfCircle?1:2)*(GLfloat)M_PI/(GLfloat)( ( n == 0 ) ? 1 : n );
787 /* Allocate memory for n samples, plus duplicate of first entry at the end */
788 *sint = malloc(sizeof(GLfloat) * (size+1));
789 *cost = malloc(sizeof(GLfloat) * (size+1));
791 /* Bail out if memory allocation fails, fgError never returns */
792 if (!(*sint) || !(*cost))
796 fgError("Failed to allocate memory in fghCircleTable");
799 /* Compute cos and sin around the circle */
803 for (i=1; i<size; i++)
806 (*sint)[i] = sinf(angle*i);
807 (*cost)[i] = cosf(angle*i);
809 (*sint)[i] = (float)sin((double)(angle*i));
810 (*cost)[i] = (float)cos((double)(angle*i));
811 #endif /* __cplusplus */
817 (*sint)[size] = 0.0f; /* sin PI */
818 (*cost)[size] = -1.0f; /* cos PI */
822 /* Last sample is duplicate of the first (sin or cos of 2 PI) */
823 (*sint)[size] = (*sint)[0];
824 (*cost)[size] = (*cost)[0];
828 static void fghGenerateSphere(GLfloat radius, GLint slices, GLint stacks, GLfloat **vertices, GLfloat **normals, int* nVert)
831 int idx = 0; /* idx into vertex/normal buffer */
834 /* Pre-computed circle */
835 GLfloat *sint1,*cost1;
836 GLfloat *sint2,*cost2;
838 /* number of unique vertices */
839 if (slices==0 || stacks<2)
841 /* nothing to generate */
845 *nVert = slices*(stacks-1)+2;
847 /* precompute values on unit circle */
848 fghCircleTable(&sint1,&cost1,-slices,FALSE);
849 fghCircleTable(&sint2,&cost2, stacks,TRUE);
851 /* Allocate vertex and normal buffers, bail out if memory allocation fails */
852 *vertices = malloc((*nVert)*3*sizeof(GLfloat));
853 *normals = malloc((*nVert)*3*sizeof(GLfloat));
854 if (!(vertices) || !(normals))
858 fgError("Failed to allocate memory in fghGenerateSphere");
862 (*vertices)[0] = 0.f;
863 (*vertices)[1] = 0.f;
864 (*vertices)[2] = radius;
865 (*normals )[0] = 0.f;
866 (*normals )[1] = 0.f;
867 (*normals )[2] = 1.f;
871 for( i=1; i<stacks; i++ )
873 for(j=0; j<slices; j++, idx+=3)
875 x = cost1[j]*sint2[i];
876 y = sint1[j]*sint2[i];
879 (*vertices)[idx ] = x*radius;
880 (*vertices)[idx+1] = y*radius;
881 (*vertices)[idx+2] = z*radius;
882 (*normals )[idx ] = x;
883 (*normals )[idx+1] = y;
884 (*normals )[idx+2] = z;
889 (*vertices)[idx ] = 0.f;
890 (*vertices)[idx+1] = 0.f;
891 (*vertices)[idx+2] = -radius;
892 (*normals )[idx ] = 0.f;
893 (*normals )[idx+1] = 0.f;
894 (*normals )[idx+2] = -1.f;
896 /* Done creating vertices, release sin and cos tables */
903 void fghGenerateCone(
904 GLfloat base, GLfloat height, GLint slices, GLint stacks, /* input */
905 GLfloat **vertices, GLfloat **normals, int* nVert /* output */
909 int idx = 0; /* idx into vertex/normal buffer */
911 /* Pre-computed circle */
914 /* Step in z and radius as stacks are drawn. */
916 GLfloat r = (GLfloat)base;
918 const GLfloat zStep = (GLfloat)height / ( ( stacks > 0 ) ? stacks : 1 );
919 const GLfloat rStep = (GLfloat)base / ( ( stacks > 0 ) ? stacks : 1 );
921 /* Scaling factors for vertex normals */
923 const GLfloat cosn = ( (GLfloat)height / sqrtf( height * height + base * base ));
924 const GLfloat sinn = ( (GLfloat)base / sqrtf( height * height + base * base ));
926 const GLfloat cosn = ( (GLfloat)height / (GLfloat)sqrt( (double)(height * height + base * base) ));
927 const GLfloat sinn = ( (GLfloat)base / (GLfloat)sqrt( (double)(height * height + base * base) ));
928 #endif /* __cplusplus */
932 /* number of unique vertices */
933 if (slices==0 || stacks<1)
935 /* nothing to generate */
939 *nVert = slices*(stacks+1)+1;
941 /* Pre-computed circle */
942 fghCircleTable(&sint,&cost,-slices,FALSE);
944 /* Allocate vertex and normal buffers, bail out if memory allocation fails */
945 *vertices = malloc((*nVert)*3*sizeof(GLfloat));
946 *normals = malloc((*nVert)*3*sizeof(GLfloat));
947 if (!(vertices) || !(normals))
951 fgError("Failed to allocate memory in fghGenerateSphere");
955 (*vertices)[0] = 0.f;
956 (*vertices)[1] = 0.f;
958 (*normals )[0] = 0.f;
959 (*normals )[1] = 0.f;
960 (*normals )[2] = -1.f;
964 for (i=0; i<stacks+1; i++ )
966 for (j=0; j<slices; j++, idx+=3)
968 (*vertices)[idx ] = cost[j]*r;
969 (*vertices)[idx+1] = sint[j]*r;
970 (*vertices)[idx+2] = z;
971 (*normals )[idx ] = cost[j]*sinn;
972 (*normals )[idx+1] = sint[j]*sinn;
973 (*normals )[idx+2] = cosn;
980 /* Release sin and cos tables */
986 /* -- INTERNAL DRAWING functions --------------------------------------- */
987 #define _DECLARE_INTERNAL_DRAW_DO_DECLARE(name,nameICaps,nameCaps,vertIdxs)\
988 static void fgh##nameICaps( GLboolean useWireMode )\
992 fgh##nameICaps##Generate();\
993 name##Cached = GL_TRUE;\
998 fghDrawGeometryWire (name##_verts,name##_norms,\
999 nameCaps##_NUM_FACES,nameCaps##_NUM_EDGE_PER_FACE);\
1003 fghDrawGeometrySolid(name##_verts,name##_norms,vertIdxs,\
1004 nameCaps##_VERT_PER_OBJ, nameCaps##_VERT_PER_OBJ_TRI); \
1007 #define DECLARE_INTERNAL_DRAW(name,nameICaps,nameCaps) _DECLARE_INTERNAL_DRAW_DO_DECLARE(name,nameICaps,nameCaps,NULL)
1008 #define DECLARE_INTERNAL_DRAW_DECOMPOSED_TO_TRIANGLE(name,nameICaps,nameCaps) _DECLARE_INTERNAL_DRAW_DO_DECLARE(name,nameICaps,nameCaps,name##_vertIdxs)
1010 static void fghCube( GLfloat dSize, GLboolean useWireMode )
1017 cubeCached = GL_TRUE;
1022 /* Need to build new vertex list containing vertices for cube of different size */
1025 vertices = malloc(CUBE_VERT_ELEM_PER_OBJ * sizeof(GLfloat));
1027 /* Bail out if memory allocation fails, fgError never returns */
1031 fgError("Failed to allocate memory in fghCube");
1034 for (i=0; i<CUBE_VERT_ELEM_PER_OBJ; i++)
1035 vertices[i] = dSize*cube_verts[i];
1038 vertices = cube_verts;
1041 fghDrawGeometryWire(vertices, cube_norms,
1042 CUBE_NUM_FACES, CUBE_NUM_EDGE_PER_FACE);
1044 fghDrawGeometrySolid(vertices, cube_norms, cube_vertIdxs,
1045 CUBE_VERT_PER_OBJ, CUBE_VERT_PER_OBJ_TRI);
1048 /* cleanup allocated memory */
1052 DECLARE_INTERNAL_DRAW_DECOMPOSED_TO_TRIANGLE(dodecahedron,Dodecahedron,DODECAHEDRON)
1053 DECLARE_INTERNAL_DRAW(icosahedron,Icosahedron,ICOSAHEDRON)
1054 DECLARE_INTERNAL_DRAW(octahedron,Octahedron,OCTAHEDRON)
1055 DECLARE_INTERNAL_DRAW_DECOMPOSED_TO_TRIANGLE(rhombicdodecahedron,RhombicDodecahedron,RHOMBICDODECAHEDRON)
1056 DECLARE_INTERNAL_DRAW(tetrahedron,Tetrahedron,TETRAHEDRON)
1058 static void fghSierpinskiSponge ( int numLevels, double offset[3], GLfloat scale, GLboolean useWireMode )
1062 GLsizei numTetr = numLevels<0? 0 : ipow(4,numLevels); /* No sponge for numLevels below 0 */
1063 GLsizei numVert = numTetr*TETRAHEDRON_VERT_PER_OBJ;
1064 GLsizei numFace = numTetr*TETRAHEDRON_NUM_FACES;
1068 /* Allocate memory */
1069 vertices = malloc(numVert*3 * sizeof(GLfloat));
1070 normals = malloc(numVert*3 * sizeof(GLfloat));
1071 /* Bail out if memory allocation fails, fgError never returns */
1072 if (!vertices || !normals)
1076 fgError("Failed to allocate memory in fghSierpinskiSponge");
1079 /* Generate elements */
1080 fghSierpinskiSpongeGenerate ( numLevels, offset, scale, vertices, normals );
1082 /* Draw and cleanup */
1084 fghDrawGeometryWire (vertices,normals,numFace,TETRAHEDRON_NUM_EDGE_PER_FACE);
1086 fghDrawGeometrySolid(vertices,normals,NULL,numVert,numVert);
1094 #ifndef GL_ES_VERSION_2_0
1095 static void fghSphere( double radius, GLint slices, GLint stacks, GLboolean useWireMode )
1098 GLfloat *vertices, *normals;
1100 if (slices * stacks > 65535)
1101 fgWarning("fghSphere: too many slices or stacks requested, indices will wrap");
1103 /* Generate vertices and normals */
1104 fghGenerateSphere((GLfloat)radius,slices,stacks,&vertices,&normals,&nVert);
1107 /* nothing to draw */
1112 GLushort *sliceIdx, *stackIdx;
1113 /* First, generate vertex index arrays for drawing with glDrawElements
1114 * We have a bunch of line_loops to draw for each stack, and a
1115 * bunch for each slice.
1118 sliceIdx = malloc(slices*(stacks+1)*sizeof(GLushort));
1119 stackIdx = malloc(slices*(stacks-1)*sizeof(GLushort));
1120 if (!(stackIdx) || !(sliceIdx))
1124 fgError("Failed to allocate memory in fghGenerateSphere");
1127 /* generate for each stack */
1128 for (i=0,idx=0; i<stacks-1; i++)
1130 GLushort offset = 1+i*slices; /* start at 1 (0 is top vertex), and we advance one stack down as we go along */
1131 for (j=0; j<slices; j++, idx++)
1133 stackIdx[idx] = offset+j;
1137 /* generate for each slice */
1138 for (i=0,idx=0; i<slices; i++)
1140 GLushort offset = 1+i; /* start at 1 (0 is top vertex), and we advance one slice as we go along */
1141 sliceIdx[idx++] = 0; /* vertex on top */
1142 for (j=0; j<stacks-1; j++, idx++)
1144 sliceIdx[idx] = offset+j*slices;
1146 sliceIdx[idx++] = nVert-1; /* zero based index, last element in array... */
1150 glEnableClientState(GL_VERTEX_ARRAY);
1151 glEnableClientState(GL_NORMAL_ARRAY);
1153 glVertexPointer(3, GL_FLOAT, 0, vertices);
1154 glNormalPointer(GL_FLOAT, 0, normals);
1156 for (i=0; i<slices; i++)
1157 glDrawElements(GL_LINE_STRIP,stacks+1,GL_UNSIGNED_SHORT,sliceIdx+i*(stacks+1));
1159 for (i=0; i<stacks-1; i++)
1160 glDrawElements(GL_LINE_LOOP, slices,GL_UNSIGNED_SHORT,stackIdx+i*slices);
1162 glDisableClientState(GL_VERTEX_ARRAY);
1163 glDisableClientState(GL_NORMAL_ARRAY);
1165 /* cleanup allocated memory */
1171 /* First, generate vertex index arrays for drawing with glDrawElements
1172 * All stacks, including top and bottom are covered with a triangle
1176 /* Create index vector */
1179 /* Allocate buffers for indices, bail out if memory allocation fails */
1180 stripIdx = malloc((slices+1)*2*(stacks)*sizeof(GLushort));
1184 fgError("Failed to allocate memory in fghGenerateSphere");
1188 for (j=0, idx=0; j<slices; j++, idx+=2)
1190 stripIdx[idx ] = j+1; /* 0 is top vertex, 1 is first for first stack */
1191 stripIdx[idx+1] = 0;
1193 stripIdx[idx ] = 1; /* repeat first slice's idx for closing off shape */
1194 stripIdx[idx+1] = 0;
1197 /* middle stacks: */
1198 /* Strip indices are relative to first index belonging to strip, NOT relative to first vertex/normal pair in array */
1199 for (i=0; i<stacks-2; i++, idx+=2)
1201 offset = 1+i*slices; /* triangle_strip indices start at 1 (0 is top vertex), and we advance one stack down as we go along */
1202 for (j=0; j<slices; j++, idx+=2)
1204 stripIdx[idx ] = offset+j+slices;
1205 stripIdx[idx+1] = offset+j;
1207 stripIdx[idx ] = offset+slices; /* repeat first slice's idx for closing off shape */
1208 stripIdx[idx+1] = offset;
1212 offset = 1+(stacks-2)*slices; /* triangle_strip indices start at 1 (0 is top vertex), and we advance one stack down as we go along */
1213 for (j=0; j<slices; j++, idx+=2)
1215 stripIdx[idx ] = nVert-1; /* zero based index, last element in array (bottom vertex)... */
1216 stripIdx[idx+1] = offset+j;
1218 stripIdx[idx ] = nVert-1; /* repeat first slice's idx for closing off shape */
1219 stripIdx[idx+1] = offset;
1223 glEnableClientState(GL_VERTEX_ARRAY);
1224 glEnableClientState(GL_NORMAL_ARRAY);
1226 glVertexPointer(3, GL_FLOAT, 0, vertices);
1227 glNormalPointer(GL_FLOAT, 0, normals);
1229 for (i=0; i<stacks; i++)
1230 glDrawElements(GL_TRIANGLE_STRIP,(slices+1)*2,GL_UNSIGNED_SHORT,stripIdx+i*(slices+1)*2);
1232 glDisableClientState(GL_VERTEX_ARRAY);
1233 glDisableClientState(GL_NORMAL_ARRAY);
1235 /* cleanup allocated memory */
1239 /* cleanup allocated memory */
1244 static void fghCone( double base, double height, GLint slices, GLint stacks, GLboolean useWireMode )
1247 GLfloat *vertices, *normals;
1249 if (slices * stacks > 65535)
1250 fgWarning("fghCone: too many slices or stacks requested, indices will wrap");
1252 /* Generate vertices and normals */
1253 fghGenerateCone((GLfloat)base,(GLfloat)height,slices,stacks,&vertices,&normals,&nVert);
1256 /* nothing to draw */
1261 GLushort *sliceIdx, *stackIdx;
1262 /* First, generate vertex index arrays for drawing with glDrawElements
1263 * We have a bunch of line_loops to draw for each stack, and a
1264 * bunch for each slice.
1267 stackIdx = malloc(slices*(stacks+1)*sizeof(GLushort));
1268 sliceIdx = malloc(slices*2 *sizeof(GLushort));
1269 if (!(stackIdx) || !(sliceIdx))
1273 fgError("Failed to allocate memory in fghGenerateCone");
1276 /* generate for each stack */
1277 for (i=0,idx=0; i<stacks+1; i++)
1279 GLushort offset = 1+i*slices; /* start at 1 (0 is top vertex), and we advance one stack down as we go along */
1280 for (j=0; j<slices; j++, idx++)
1282 stackIdx[idx] = offset+j;
1286 /* generate for each slice */
1287 for (i=0,idx=0; i<slices; i++)
1289 GLushort offset = 1+i; /* start at 1 (0 is top vertex), and we advance one slice as we go along */
1290 sliceIdx[idx++] = offset;
1291 sliceIdx[idx++] = offset+stacks*slices;
1295 glEnableClientState(GL_VERTEX_ARRAY);
1296 glEnableClientState(GL_NORMAL_ARRAY);
1298 glVertexPointer(3, GL_FLOAT, 0, vertices);
1299 glNormalPointer(GL_FLOAT, 0, normals);
1301 glDrawElements(GL_LINES,slices*2,GL_UNSIGNED_SHORT,sliceIdx);
1303 for (i=0; i<stacks; i++)
1304 glDrawElements(GL_LINE_LOOP, slices,GL_UNSIGNED_SHORT,stackIdx+i*slices);
1306 glDisableClientState(GL_VERTEX_ARRAY);
1307 glDisableClientState(GL_NORMAL_ARRAY);
1309 /* cleanup allocated memory */
1315 /* First, generate vertex index arrays for drawing with glDrawElements
1316 * All stacks, including top and bottom are covered with a triangle
1320 /* Create index vector */
1323 /* Allocate buffers for indices, bail out if memory allocation fails */
1324 stripIdx = malloc((slices+1)*2*(stacks+1)*sizeof(GLushort));
1328 fgError("Failed to allocate memory in fghGenerateCone");
1332 for (j=0, idx=0; j<slices; j++, idx+=2)
1335 stripIdx[idx+1] = j+1; /* 0 is top vertex, 1 is first for first stack */
1337 stripIdx[idx ] = 0; /* repeat first slice's idx for closing off shape */
1338 stripIdx[idx+1] = 1;
1341 /* middle stacks: */
1342 /* Strip indices are relative to first index belonging to strip, NOT relative to first vertex/normal pair in array */
1343 for (i=0; i<stacks; i++, idx+=2)
1345 offset = 1+i*slices; /* triangle_strip indices start at 1 (0 is top vertex), and we advance one stack down as we go along */
1346 for (j=0; j<slices; j++, idx+=2)
1348 stripIdx[idx ] = offset+j;
1349 stripIdx[idx+1] = offset+j+slices;
1351 stripIdx[idx ] = offset; /* repeat first slice's idx for closing off shape */
1352 stripIdx[idx+1] = offset+slices;
1356 glEnableClientState(GL_VERTEX_ARRAY);
1357 glEnableClientState(GL_NORMAL_ARRAY);
1359 glVertexPointer(3, GL_FLOAT, 0, vertices);
1360 glNormalPointer(GL_FLOAT, 0, normals);
1362 for (i=0; i<stacks+1; i++)
1363 glDrawElements(GL_TRIANGLE_STRIP,(slices+1)*2,GL_UNSIGNED_SHORT,stripIdx+i*(slices+1)*2);
1365 glDisableClientState(GL_VERTEX_ARRAY);
1366 glDisableClientState(GL_NORMAL_ARRAY);
1368 /* cleanup allocated memory */
1372 /* cleanup allocated memory */
1378 /* -- INTERFACE FUNCTIONS ---------------------------------------------- */
1382 * Draws a solid sphere
1384 void FGAPIENTRY glutSolidSphere(double radius, GLint slices, GLint stacks)
1386 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSolidSphere" );
1388 fghSphere( radius, slices, stacks, FALSE );
1392 * Draws a wire sphere
1394 void FGAPIENTRY glutWireSphere(double radius, GLint slices, GLint stacks)
1396 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutWireSphere" );
1398 fghSphere( radius, slices, stacks, TRUE );
1401 #endif /* GL_ES_VERSION_2_0 */
1403 #ifndef EGL_VERSION_1_0
1405 * Draws a solid cone
1407 void FGAPIENTRY glutSolidCone( double base, double height, GLint slices, GLint stacks )
1409 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSolidCone" );
1411 fghCone( base, height, slices, stacks, FALSE );
1417 void FGAPIENTRY glutWireCone( double base, double height, GLint slices, GLint stacks)
1419 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutWireCone" );
1421 fghCone( base, height, slices, stacks, TRUE );
1426 * Draws a solid cylinder
1428 void FGAPIENTRY glutSolidCylinder(double radius, double height, GLint slices, GLint stacks)
1432 /* Step in z and radius as stacks are drawn. */
1433 GLfloat radf = (GLfloat)radius;
1435 const GLfloat zStep = (GLfloat)height / ( ( stacks > 0 ) ? stacks : 1 );
1437 /* Pre-computed circle */
1439 GLfloat *sint,*cost;
1441 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSolidCylinder" );
1443 fghCircleTable(&sint,&cost,-slices,FALSE);
1445 /* Cover the base and top */
1447 glBegin(GL_TRIANGLE_FAN);
1448 glNormal3f(0, 0, -1 );
1449 glVertex3f(0, 0, 0 );
1450 for (j=0; j<=slices; j++)
1451 glVertex3f(cost[j]*radf, sint[j]*radf, 0);
1454 glBegin(GL_TRIANGLE_FAN);
1455 glNormal3f(0, 0, 1 );
1456 glVertex3f(0, 0, (GLfloat)height);
1457 for (j=slices; j>=0; j--)
1458 glVertex3f(cost[j]*radf, sint[j]*radf, (GLfloat)height);
1466 for (i=1; i<=stacks; i++)
1469 z1 = (GLfloat)height;
1471 glBegin(GL_TRIANGLE_STRIP);
1472 for (j=0; j<=slices; j++ )
1474 glNormal3f(cost[j], sint[j], 0 );
1475 glVertex3f(cost[j]*radf, sint[j]*radf, z0 );
1476 glVertex3f(cost[j]*radf, sint[j]*radf, z1 );
1480 z0 = z1; z1 += zStep;
1483 /* Release sin and cos tables */
1490 * Draws a wire cylinder
1492 void FGAPIENTRY glutWireCylinder(double radius, double height, GLint slices, GLint stacks)
1496 /* Step in z and radius as stacks are drawn. */
1497 GLfloat radf = (GLfloat)radius;
1499 const GLfloat zStep = (GLfloat)height / ( ( stacks > 0 ) ? stacks : 1 );
1501 /* Pre-computed circle */
1503 GLfloat *sint,*cost;
1505 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutWireCylinder" );
1507 fghCircleTable(&sint,&cost,-slices,FALSE);
1509 /* Draw the stacks... */
1511 for (i=0; i<=stacks; i++)
1514 z = (GLfloat)height;
1516 glBegin(GL_LINE_LOOP);
1518 for( j=0; j<slices; j++ )
1520 glNormal3f(cost[j], sint[j], 0);
1521 glVertex3f(cost[j]*radf, sint[j]*radf, z);
1529 /* Draw the slices */
1533 for (j=0; j<slices; j++)
1535 glNormal3f(cost[j], sint[j], 0 );
1536 glVertex3f(cost[j]*radf, sint[j]*radf, 0 );
1537 glVertex3f(cost[j]*radf, sint[j]*radf, (GLfloat)height);
1542 /* Release sin and cos tables */
1549 * Draws a wire torus
1551 void FGAPIENTRY glutWireTorus( double dInnerRadius, double dOuterRadius, GLint nSides, GLint nRings )
1553 GLfloat iradius = (float)dInnerRadius, oradius = (float)dOuterRadius;
1554 GLfloat phi, psi, dpsi, dphi;
1555 GLfloat *vertex, *normal;
1557 GLfloat spsi, cpsi, sphi, cphi ;
1559 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutWireTorus" );
1561 if ( nSides < 1 ) nSides = 1;
1562 if ( nRings < 1 ) nRings = 1;
1564 /* Allocate the vertices array */
1565 vertex = (GLfloat *)calloc( sizeof(GLfloat), 3 * nSides * nRings );
1566 normal = (GLfloat *)calloc( sizeof(GLfloat), 3 * nSides * nRings );
1570 dpsi = 2.0f * (GLfloat)M_PI / (GLfloat)(nRings) ;
1571 dphi = -2.0f * (GLfloat)M_PI / (GLfloat)(nSides) ;
1574 for( j=0; j<nRings; j++ )
1577 cpsi = cosf( psi ) ;
1578 spsi = sinf( psi ) ;
1580 cpsi = (float)cos( (double)psi ) ;
1581 spsi = (float)sin( (double)psi ) ;
1582 #endif /* __cplusplus */
1585 for( i=0; i<nSides; i++ )
1587 int offset = 3 * ( j * nSides + i ) ;
1589 cphi = cosf( phi ) ;
1590 sphi = sinf( phi ) ;
1592 cphi = (float)cos( (double)phi ) ;
1593 sphi = (float)sin( (double)phi ) ;
1594 #endif /* __cplusplus */
1595 *(vertex + offset + 0) = cpsi * ( oradius + cphi * iradius ) ;
1596 *(vertex + offset + 1) = spsi * ( oradius + cphi * iradius ) ;
1597 *(vertex + offset + 2) = sphi * iradius ;
1598 *(normal + offset + 0) = cpsi * cphi ;
1599 *(normal + offset + 1) = spsi * cphi ;
1600 *(normal + offset + 2) = sphi ;
1607 for( i=0; i<nSides; i++ )
1609 glBegin( GL_LINE_LOOP );
1611 for( j=0; j<nRings; j++ )
1613 int offset = 3 * ( j * nSides + i ) ;
1614 glNormal3fv( normal + offset );
1615 glVertex3fv( vertex + offset );
1621 for( j=0; j<nRings; j++ )
1623 glBegin(GL_LINE_LOOP);
1625 for( i=0; i<nSides; i++ )
1627 int offset = 3 * ( j * nSides + i ) ;
1628 glNormal3fv( normal + offset );
1629 glVertex3fv( vertex + offset );
1641 * Draws a solid torus
1643 void FGAPIENTRY glutSolidTorus( double dInnerRadius, double dOuterRadius, GLint nSides, GLint nRings )
1645 GLfloat iradius = (float)dInnerRadius, oradius = (float)dOuterRadius;
1646 GLfloat phi, psi, dpsi, dphi;
1647 GLfloat *vertex, *normal;
1649 GLfloat spsi, cpsi, sphi, cphi ;
1651 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSolidTorus" );
1653 if ( nSides < 1 ) nSides = 1;
1654 if ( nRings < 1 ) nRings = 1;
1656 /* Increment the number of sides and rings to allow for one more point than surface */
1660 /* Allocate the vertices array */
1661 vertex = (GLfloat *)calloc( sizeof(GLfloat), 3 * nSides * nRings );
1662 normal = (GLfloat *)calloc( sizeof(GLfloat), 3 * nSides * nRings );
1666 dpsi = 2.0f * (GLfloat)M_PI / (GLfloat)(nRings - 1) ;
1667 dphi = -2.0f * (GLfloat)M_PI / (GLfloat)(nSides - 1) ;
1670 for( j=0; j<nRings; j++ )
1673 cpsi = cosf( psi ) ;
1674 spsi = sinf( psi ) ;
1676 cpsi = (float)cos( (double)psi ) ;
1677 spsi = (float)sin( (double)psi ) ;
1678 #endif /* __cplusplus */
1681 for( i=0; i<nSides; i++ )
1683 int offset = 3 * ( j * nSides + i ) ;
1685 cphi = cosf( phi ) ;
1686 sphi = sinf( phi ) ;
1688 cphi = (float)cos( (double)phi ) ;
1689 sphi = (float)sin( (double)phi ) ;
1690 #endif /* __cplusplus */
1691 *(vertex + offset + 0) = cpsi * ( oradius + cphi * iradius ) ;
1692 *(vertex + offset + 1) = spsi * ( oradius + cphi * iradius ) ;
1693 *(vertex + offset + 2) = sphi * iradius ;
1694 *(normal + offset + 0) = cpsi * cphi ;
1695 *(normal + offset + 1) = spsi * cphi ;
1696 *(normal + offset + 2) = sphi ;
1703 glBegin( GL_QUADS );
1704 for( i=0; i<nSides-1; i++ )
1706 for( j=0; j<nRings-1; j++ )
1708 int offset = 3 * ( j * nSides + i ) ;
1709 glNormal3fv( normal + offset );
1710 glVertex3fv( vertex + offset );
1711 glNormal3fv( normal + offset + 3 );
1712 glVertex3fv( vertex + offset + 3 );
1713 glNormal3fv( normal + offset + 3 * nSides + 3 );
1714 glVertex3fv( vertex + offset + 3 * nSides + 3 );
1715 glNormal3fv( normal + offset + 3 * nSides );
1716 glVertex3fv( vertex + offset + 3 * nSides );
1726 #endif /* EGL_VERSION_1_0 */
1730 /* -- INTERFACE FUNCTIONS -------------------------------------------------- */
1731 /* Macro to generate interface functions */
1732 #define DECLARE_SHAPE_INTERFACE(nameICaps)\
1733 void FGAPIENTRY glutWire##nameICaps( void )\
1735 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutWire"#nameICaps );\
1736 fgh##nameICaps( TRUE );\
1738 void FGAPIENTRY glutSolid##nameICaps( void )\
1740 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSolid"#nameICaps );\
1741 fgh##nameICaps( FALSE );\
1744 void FGAPIENTRY glutWireCube( double dSize )
1746 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutWireCube" );
1747 fghCube( (GLfloat)dSize, TRUE );
1749 void FGAPIENTRY glutSolidCube( double dSize )
1751 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSolidCube" );
1752 fghCube( (GLfloat)dSize, FALSE );
1755 DECLARE_SHAPE_INTERFACE(Dodecahedron)
1756 DECLARE_SHAPE_INTERFACE(Icosahedron)
1757 DECLARE_SHAPE_INTERFACE(Octahedron)
1758 DECLARE_SHAPE_INTERFACE(RhombicDodecahedron)
1760 void FGAPIENTRY glutWireSierpinskiSponge ( int num_levels, double offset[3], double scale )
1762 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutWireSierpinskiSponge" );
1763 fghSierpinskiSponge ( num_levels, offset, (GLfloat)scale, TRUE );
1765 void FGAPIENTRY glutSolidSierpinskiSponge ( int num_levels, double offset[3], double scale )
1767 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSolidSierpinskiSponge" );
1768 fghSierpinskiSponge ( num_levels, offset, (GLfloat)scale, FALSE );
1771 DECLARE_SHAPE_INTERFACE(Tetrahedron)
1774 /*** END OF FILE ***/