Brian Paul | f02a5f6 | 2002-07-12 15:54:01 +0000 | [diff] [blame^] | 1 | /* $Id: tessdemo.c,v 1.12 2002/07/12 15:54:02 brianp Exp $ */ |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 2 | |
| 3 | /* |
| 4 | * A demo of the GLU polygon tesselation functions written by Bogdan Sikorski. |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 5 | * Updated for GLU 1.3 tessellation by Gareth Hughes <gareth@valinux.com> |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 6 | */ |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 7 | |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 8 | #include <GL/glut.h> |
| 9 | #include <stdio.h> |
| 10 | #include <stdlib.h> |
| 11 | #include <string.h> |
| 12 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 13 | #define MAX_POINTS 256 |
| 14 | #define MAX_CONTOURS 32 |
| 15 | #define MAX_TRIANGLES 256 |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 16 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 17 | #ifndef GLCALLBACK |
| 18 | #ifdef CALLBACK |
| 19 | #define GLCALLBACK CALLBACK |
| 20 | #else |
| 21 | #define GLCALLBACK |
| 22 | #endif |
| 23 | #endif |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 24 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 25 | #ifdef GLU_VERSION_1_2 |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 26 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 27 | typedef enum{ QUIT, TESSELATE, CLEAR } menu_entries; |
| 28 | typedef enum{ DEFINE, TESSELATED } mode_type; |
| 29 | |
| 30 | static GLsizei width, height; |
| 31 | static GLuint contour_cnt; |
| 32 | static GLuint triangle_cnt; |
| 33 | |
| 34 | static mode_type mode; |
| 35 | static int menu; |
| 36 | |
| 37 | static GLuint list_start; |
| 38 | |
| 39 | static GLfloat edge_color[3]; |
| 40 | |
| 41 | static struct { |
| 42 | GLfloat p[MAX_POINTS][2]; |
| 43 | GLuint point_cnt; |
| 44 | } contours[MAX_CONTOURS]; |
| 45 | |
| 46 | static struct { |
| 47 | GLsizei no; |
| 48 | GLfloat p[3][2]; |
| 49 | GLclampf color[3][3]; |
| 50 | } triangles[MAX_TRIANGLES]; |
| 51 | |
| 52 | |
| 53 | |
| 54 | static void GLCALLBACK error_callback( GLenum err ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 55 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 56 | int len, i; |
| 57 | char const *str; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 58 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 59 | glColor3f( 0.9, 0.9, 0.9 ); |
| 60 | glRasterPos2i( 5, 5 ); |
Brian Paul | c4266ac | 2000-07-11 14:11:58 +0000 | [diff] [blame] | 61 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 62 | str = (const char *) gluErrorString( err ); |
| 63 | len = strlen( str ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 64 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 65 | for ( i = 0 ; i < len ; i++ ) { |
| 66 | glutBitmapCharacter( GLUT_BITMAP_9_BY_15, str[i] ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 67 | } |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 70 | static void GLCALLBACK begin_callback( GLenum mode ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 71 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 72 | /* Allow multiple triangles to be output inside the begin/end pair. */ |
| 73 | triangle_cnt = 0; |
| 74 | triangles[triangle_cnt].no = 0; |
| 75 | } |
| 76 | |
| 77 | static void GLCALLBACK edge_callback( GLenum flag ) |
| 78 | { |
| 79 | /* Persist the edge flag across triangles. */ |
| 80 | if ( flag == GL_TRUE ) { |
| 81 | edge_color[0] = 1.0; |
| 82 | edge_color[1] = 1.0; |
| 83 | edge_color[2] = 0.5; |
| 84 | } else { |
| 85 | edge_color[0] = 1.0; |
| 86 | edge_color[1] = 0.0; |
| 87 | edge_color[2] = 0.0; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | static void GLCALLBACK end_callback() |
| 92 | { |
| 93 | GLint i; |
| 94 | |
| 95 | glBegin( GL_LINES ); |
| 96 | |
| 97 | /* Output the three edges of each triangle as lines colored |
| 98 | according to their edge flag. */ |
| 99 | for ( i = 0 ; i < triangle_cnt ; i++ ) { |
| 100 | glColor3f( triangles[i].color[0][0], |
| 101 | triangles[i].color[0][1], |
| 102 | triangles[i].color[0][2] ); |
| 103 | |
| 104 | glVertex2f( triangles[i].p[0][0], triangles[i].p[0][1] ); |
| 105 | glVertex2f( triangles[i].p[1][0], triangles[i].p[1][1] ); |
| 106 | |
| 107 | glColor3f( triangles[i].color[1][0], |
| 108 | triangles[i].color[1][1], |
| 109 | triangles[i].color[1][2] ); |
| 110 | |
| 111 | glVertex2f( triangles[i].p[1][0], triangles[i].p[1][1] ); |
| 112 | glVertex2f( triangles[i].p[2][0], triangles[i].p[2][1] ); |
| 113 | |
| 114 | glColor3f( triangles[i].color[2][0], |
| 115 | triangles[i].color[2][1], |
| 116 | triangles[i].color[2][2] ); |
| 117 | |
| 118 | glVertex2f( triangles[i].p[2][0], triangles[i].p[2][1] ); |
| 119 | glVertex2f( triangles[i].p[0][0], triangles[i].p[0][1] ); |
| 120 | } |
| 121 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 122 | glEnd(); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 125 | static void GLCALLBACK vertex_callback( void *data ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 126 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 127 | GLsizei no; |
| 128 | GLfloat *p; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 129 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 130 | p = (GLfloat *) data; |
| 131 | no = triangles[triangle_cnt].no; |
| 132 | |
| 133 | triangles[triangle_cnt].p[no][0] = p[0]; |
| 134 | triangles[triangle_cnt].p[no][1] = p[1]; |
| 135 | |
| 136 | triangles[triangle_cnt].color[no][0] = edge_color[0]; |
| 137 | triangles[triangle_cnt].color[no][1] = edge_color[1]; |
| 138 | triangles[triangle_cnt].color[no][2] = edge_color[2]; |
| 139 | |
| 140 | /* After every three vertices, initialize the next triangle. */ |
| 141 | if ( ++(triangles[triangle_cnt].no) == 3 ) { |
| 142 | triangle_cnt++; |
| 143 | triangles[triangle_cnt].no = 0; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | static void GLCALLBACK combine_callback( GLdouble coords[3], |
| 148 | GLdouble *vertex_data[4], |
| 149 | GLfloat weight[4], void **data ) |
| 150 | { |
| 151 | GLfloat *vertex; |
| 152 | |
| 153 | vertex = (GLfloat *) malloc( 2 * sizeof(GLfloat) ); |
| 154 | |
| 155 | vertex[0] = (GLfloat) coords[0]; |
| 156 | vertex[1] = (GLfloat) coords[1]; |
| 157 | |
| 158 | *data = vertex; |
Gareth Hughes | 3b7a75a | 2000-01-23 21:25:39 +0000 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 162 | static void set_screen_wh( GLsizei w, GLsizei h ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 163 | { |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 164 | width = w; |
| 165 | height = h; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Brian Paul | f02a5f6 | 2002-07-12 15:54:01 +0000 | [diff] [blame^] | 168 | typedef void (GLAPIENTRY *callback_t)(); |
| 169 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 170 | static void tesse( void ) |
Brian Paul | c4266ac | 2000-07-11 14:11:58 +0000 | [diff] [blame] | 171 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 172 | GLUtesselator *tobj; |
| 173 | GLdouble data[3]; |
| 174 | GLuint i, j, point_cnt; |
| 175 | |
| 176 | list_start = glGenLists( 2 ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 177 | |
| 178 | tobj = gluNewTess(); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 179 | |
| 180 | if ( tobj != NULL ) { |
| 181 | gluTessNormal( tobj, 0.0, 0.0, 1.0 ); |
Brian Paul | f02a5f6 | 2002-07-12 15:54:01 +0000 | [diff] [blame^] | 182 | gluTessCallback( tobj, GLU_TESS_BEGIN, (callback_t) glBegin ); |
| 183 | gluTessCallback( tobj, GLU_TESS_VERTEX, (callback_t) glVertex2fv ); |
| 184 | gluTessCallback( tobj, GLU_TESS_END, (callback_t) glEnd ); |
| 185 | gluTessCallback( tobj, GLU_TESS_ERROR, (callback_t) error_callback ); |
| 186 | gluTessCallback( tobj, GLU_TESS_COMBINE, (callback_t) combine_callback ); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 187 | |
| 188 | glNewList( list_start, GL_COMPILE ); |
| 189 | gluBeginPolygon( tobj ); |
| 190 | |
| 191 | for ( j = 0 ; j <= contour_cnt ; j++ ) { |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 192 | point_cnt = contours[j].point_cnt; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 193 | gluNextContour( tobj, GLU_UNKNOWN ); |
| 194 | |
| 195 | for ( i = 0 ; i < point_cnt ; i++ ) { |
| 196 | data[0] = (GLdouble)( contours[j].p[i][0] ); |
| 197 | data[1] = (GLdouble)( contours[j].p[i][1] ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 198 | data[2] = 0.0; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 199 | gluTessVertex( tobj, data, contours[j].p[i] ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 200 | } |
| 201 | } |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 202 | |
| 203 | gluEndPolygon( tobj ); |
| 204 | glEndList(); |
| 205 | |
Brian Paul | f02a5f6 | 2002-07-12 15:54:01 +0000 | [diff] [blame^] | 206 | gluTessCallback( tobj, GLU_TESS_BEGIN, (callback_t) begin_callback ); |
| 207 | gluTessCallback( tobj, GLU_TESS_VERTEX, (callback_t) vertex_callback ); |
| 208 | gluTessCallback( tobj, GLU_TESS_END, (callback_t) end_callback ); |
| 209 | gluTessCallback( tobj, GLU_TESS_EDGE_FLAG, (callback_t) edge_callback ); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 210 | |
| 211 | glNewList( list_start + 1, GL_COMPILE ); |
| 212 | gluBeginPolygon( tobj ); |
| 213 | |
| 214 | for ( j = 0 ; j <= contour_cnt ; j++ ) { |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 215 | point_cnt = contours[j].point_cnt; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 216 | gluNextContour( tobj, GLU_UNKNOWN ); |
| 217 | |
| 218 | for ( i = 0 ; i < point_cnt ; i++ ) { |
| 219 | data[0] = (GLdouble)( contours[j].p[i][0] ); |
| 220 | data[1] = (GLdouble)( contours[j].p[i][1] ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 221 | data[2] = 0.0; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 222 | gluTessVertex( tobj, data, contours[j].p[i] ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 223 | } |
| 224 | } |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 225 | |
| 226 | gluEndPolygon( tobj ); |
| 227 | glEndList(); |
| 228 | |
| 229 | gluDeleteTess( tobj ); |
| 230 | |
| 231 | glutMouseFunc( NULL ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 232 | mode = TESSELATED; |
| 233 | } |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 234 | } |
| 235 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 236 | static void left_down( int x1, int y1 ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 237 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 238 | GLfloat P[2]; |
| 239 | GLuint point_cnt; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 240 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 241 | /* translate GLUT into GL coordinates */ |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 242 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 243 | P[0] = x1; |
| 244 | P[1] = height - y1; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 245 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 246 | point_cnt = contours[contour_cnt].point_cnt; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 247 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 248 | contours[contour_cnt].p[point_cnt][0] = P[0]; |
| 249 | contours[contour_cnt].p[point_cnt][1] = P[1]; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 250 | |
| 251 | glBegin( GL_LINES ); |
| 252 | |
| 253 | if ( point_cnt ) { |
| 254 | glVertex2fv( contours[contour_cnt].p[point_cnt-1] ); |
| 255 | glVertex2fv( P ); |
| 256 | } else { |
| 257 | glVertex2fv( P ); |
| 258 | glVertex2fv( P ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 259 | } |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 260 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 261 | glEnd(); |
| 262 | glFinish(); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 263 | |
| 264 | contours[contour_cnt].point_cnt++; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 265 | } |
| 266 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 267 | static void middle_down( int x1, int y1 ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 268 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 269 | GLuint point_cnt; |
| 270 | (void) x1; |
| 271 | (void) y1; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 272 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 273 | point_cnt = contours[contour_cnt].point_cnt; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 274 | |
| 275 | if ( point_cnt > 2 ) { |
| 276 | glBegin( GL_LINES ); |
| 277 | |
| 278 | glVertex2fv( contours[contour_cnt].p[0] ); |
| 279 | glVertex2fv( contours[contour_cnt].p[point_cnt-1] ); |
| 280 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 281 | contours[contour_cnt].p[point_cnt][0] = -1; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 282 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 283 | glEnd(); |
| 284 | glFinish(); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 285 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 286 | contour_cnt++; |
| 287 | contours[contour_cnt].point_cnt = 0; |
| 288 | } |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 291 | static void mouse_clicked( int button, int state, int x, int y ) |
Brian Paul | c4266ac | 2000-07-11 14:11:58 +0000 | [diff] [blame] | 292 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 293 | x -= x%10; |
| 294 | y -= y%10; |
| 295 | |
| 296 | switch ( button ) { |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 297 | case GLUT_LEFT_BUTTON: |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 298 | if ( state == GLUT_DOWN ) { |
| 299 | left_down( x, y ); |
| 300 | } |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 301 | break; |
| 302 | case GLUT_MIDDLE_BUTTON: |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 303 | if ( state == GLUT_DOWN ) { |
| 304 | middle_down( x, y ); |
| 305 | } |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 306 | break; |
| 307 | } |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 310 | static void display( void ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 311 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 312 | GLuint i,j; |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 313 | GLuint point_cnt; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 314 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 315 | glClear( GL_COLOR_BUFFER_BIT ); |
| 316 | |
| 317 | switch ( mode ) { |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 318 | case DEFINE: |
| 319 | /* draw grid */ |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 320 | glColor3f( 0.6, 0.5, 0.5 ); |
| 321 | |
| 322 | glBegin( GL_LINES ); |
| 323 | |
| 324 | for ( i = 0 ; i < width ; i += 10 ) { |
| 325 | for ( j = 0 ; j < height ; j += 10 ) { |
| 326 | glVertex2i( 0, j ); |
| 327 | glVertex2i( width, j ); |
| 328 | glVertex2i( i, height ); |
| 329 | glVertex2i( i, 0 ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 330 | } |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Brian Paul | d25df35 | 2000-03-27 15:46:12 +0000 | [diff] [blame] | 333 | glEnd(); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 334 | |
| 335 | glColor3f( 1.0, 1.0, 0.0 ); |
| 336 | |
| 337 | for ( i = 0 ; i <= contour_cnt ; i++ ) { |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 338 | point_cnt = contours[i].point_cnt; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 339 | |
| 340 | glBegin( GL_LINES ); |
| 341 | |
| 342 | switch ( point_cnt ) { |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 343 | case 0: |
| 344 | break; |
| 345 | case 1: |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 346 | glVertex2fv( contours[i].p[0] ); |
| 347 | glVertex2fv( contours[i].p[0] ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 348 | break; |
| 349 | case 2: |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 350 | glVertex2fv( contours[i].p[0] ); |
| 351 | glVertex2fv( contours[i].p[1] ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 352 | break; |
| 353 | default: |
| 354 | --point_cnt; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 355 | for ( j = 0 ; j < point_cnt ; j++ ) { |
| 356 | glVertex2fv( contours[i].p[j] ); |
| 357 | glVertex2fv( contours[i].p[j+1] ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 358 | } |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 359 | if ( contours[i].p[j+1][0] == -1 ) { |
| 360 | glVertex2fv( contours[i].p[0] ); |
| 361 | glVertex2fv( contours[i].p[j] ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 362 | } |
| 363 | break; |
| 364 | } |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 365 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 366 | glEnd(); |
| 367 | } |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 368 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 369 | glFinish(); |
| 370 | break; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 371 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 372 | case TESSELATED: |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 373 | /* draw triangles */ |
| 374 | glColor3f( 0.7, 0.7, 0.0 ); |
| 375 | glCallList( list_start ); |
| 376 | |
| 377 | glLineWidth( 2.0 ); |
| 378 | glCallList( list_start + 1 ); |
| 379 | glLineWidth( 1.0 ); |
| 380 | |
| 381 | glFlush(); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 382 | break; |
| 383 | } |
| 384 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 385 | glColor3f( 1.0, 1.0, 0.0 ); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 386 | } |
| 387 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 388 | static void clear( void ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 389 | { |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 390 | contour_cnt = 0; |
| 391 | contours[0].point_cnt = 0; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 392 | triangle_cnt = 0; |
| 393 | |
| 394 | glutMouseFunc( mouse_clicked ); |
| 395 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 396 | mode = DEFINE; |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 397 | |
| 398 | glDeleteLists( list_start, 2 ); |
| 399 | list_start = 0; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 400 | } |
| 401 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 402 | static void quit( void ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 403 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 404 | exit( 0 ); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 405 | } |
| 406 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 407 | static void menu_selected( int entry ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 408 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 409 | switch ( entry ) { |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 410 | case CLEAR: |
| 411 | clear(); |
| 412 | break; |
| 413 | case TESSELATE: |
| 414 | tesse(); |
| 415 | break; |
| 416 | case QUIT: |
| 417 | quit(); |
| 418 | break; |
| 419 | } |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 420 | |
| 421 | glutPostRedisplay(); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 422 | } |
| 423 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 424 | static void key_pressed( unsigned char key, int x, int y ) |
Brian Paul | c4266ac | 2000-07-11 14:11:58 +0000 | [diff] [blame] | 425 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 426 | (void) x; |
| 427 | (void) y; |
| 428 | |
| 429 | switch ( key ) { |
| 430 | case 'c': |
| 431 | case 'C': |
| 432 | clear(); |
| 433 | break; |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 434 | case 't': |
| 435 | case 'T': |
| 436 | tesse(); |
| 437 | break; |
Gareth Hughes | f5328c5 | 2001-03-21 02:44:36 +0000 | [diff] [blame] | 438 | case 27: |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 439 | case 'q': |
| 440 | case 'Q': |
| 441 | quit(); |
| 442 | break; |
| 443 | } |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 444 | |
| 445 | glutPostRedisplay(); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 446 | } |
| 447 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 448 | static void myinit( void ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 449 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 450 | /* clear background to gray */ |
| 451 | glClearColor( 0.4, 0.4, 0.4, 0.0 ); |
| 452 | glShadeModel( GL_FLAT ); |
| 453 | glPolygonMode( GL_FRONT, GL_FILL ); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 454 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 455 | menu = glutCreateMenu( menu_selected ); |
| 456 | |
| 457 | glutAddMenuEntry( "clear", CLEAR ); |
| 458 | glutAddMenuEntry( "tesselate", TESSELATE ); |
| 459 | glutAddMenuEntry( "quit", QUIT ); |
| 460 | |
| 461 | glutAttachMenu( GLUT_RIGHT_BUTTON ); |
| 462 | |
| 463 | glutMouseFunc( mouse_clicked ); |
| 464 | glutKeyboardFunc( key_pressed ); |
| 465 | |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 466 | contour_cnt = 0; |
| 467 | mode = DEFINE; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 468 | } |
| 469 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 470 | static void reshape( GLsizei w, GLsizei h ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 471 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 472 | glViewport( 0, 0, w, h ); |
| 473 | |
| 474 | glMatrixMode( GL_PROJECTION ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 475 | glLoadIdentity(); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 476 | glOrtho( 0.0, (GLdouble)w, 0.0, (GLdouble)h, -1.0, 1.0 ); |
| 477 | |
| 478 | glMatrixMode( GL_MODELVIEW ); |
Gareth Hughes | eb459c6 | 1999-11-04 04:00:42 +0000 | [diff] [blame] | 479 | glLoadIdentity(); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 480 | |
| 481 | set_screen_wh( w, h ); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 482 | } |
| 483 | |
Gareth Hughes | fa6be6e | 2001-03-21 02:47:32 +0000 | [diff] [blame] | 484 | #endif |
| 485 | |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 486 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 487 | static void usage( void ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 488 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 489 | printf( "Use left mouse button to place vertices.\n" ); |
| 490 | printf( "Press middle mouse button when done.\n" ); |
| 491 | printf( "Select tesselate from the pop-up menu.\n" ); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 492 | } |
| 493 | |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 494 | |
| 495 | int main( int argc, char **argv ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 496 | { |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 497 | const char *version = (const char *) gluGetString( GLU_VERSION ); |
| 498 | printf( "GLU version string: %s\n", version ); |
| 499 | if ( strstr( version, "1.0" ) || strstr( version, "1.1" ) ) { |
| 500 | fprintf( stderr, "Sorry, this demo reqiures GLU 1.2 or later.\n" ); |
| 501 | exit( 1 ); |
| 502 | } |
| 503 | |
Brian Paul | c4266ac | 2000-07-11 14:11:58 +0000 | [diff] [blame] | 504 | usage(); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 505 | |
| 506 | glutInit( &argc, argv ); |
| 507 | glutInitDisplayMode( GLUT_SINGLE | GLUT_RGB ); |
| 508 | glutInitWindowSize( 400, 400 ); |
| 509 | glutCreateWindow( argv[0] ); |
| 510 | |
Gareth Hughes | fa6be6e | 2001-03-21 02:47:32 +0000 | [diff] [blame] | 511 | /* GH: Bit of a hack... |
| 512 | */ |
| 513 | #ifdef GLU_VERSION_1_2 |
Brian Paul | c4266ac | 2000-07-11 14:11:58 +0000 | [diff] [blame] | 514 | myinit(); |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 515 | |
| 516 | glutDisplayFunc( display ); |
| 517 | glutReshapeFunc( reshape ); |
| 518 | |
Brian Paul | c4266ac | 2000-07-11 14:11:58 +0000 | [diff] [blame] | 519 | glutMainLoop(); |
Gareth Hughes | fa6be6e | 2001-03-21 02:47:32 +0000 | [diff] [blame] | 520 | #endif |
Gareth Hughes | 16cdc6a | 2001-03-21 02:43:14 +0000 | [diff] [blame] | 521 | |
Brian Paul | c4266ac | 2000-07-11 14:11:58 +0000 | [diff] [blame] | 522 | return 0; |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 523 | } |