blob: b72af12885d24c13643f0d3da30dc9b5431a0f7e [file] [log] [blame]
jtgafb833d1999-08-19 00:55:39 +00001/*
2 * Demo of a reflective, texture-mapped surface with OpenGL.
3 * Brian Paul August 14, 1995 This file is in the public domain.
4 *
5 * Hardware texture mapping is highly recommended!
6 *
7 * The basic steps are:
8 * 1. Render the reflective object (a polygon) from the normal viewpoint,
9 * setting the stencil planes = 1.
10 * 2. Render the scene from a special viewpoint: the viewpoint which
11 * is on the opposite side of the reflective plane. Only draw where
12 * stencil = 1. This draws the objects in the reflective surface.
13 * 3. Render the scene from the original viewpoint. This draws the
14 * objects in the normal fashion. Use blending when drawing
15 * the reflective, textured surface.
16 *
17 * This is a very crude demo. It could be much better.
18 */
19
20/*
Brian Paul7a6bb1b2000-04-12 01:08:30 +000021 * Authors:
22 * Brian Paul
23 * Dirk Reiners (reiners@igd.fhg.de) made some modifications to this code.
24 * Mark Kilgard (April 1997)
25 * Brian Paul (April 2000 - added keyboard d/s options)
Brian Paul5d7c4862005-08-24 21:32:02 +000026 * Brian Paul (August 2005 - added multi window feature)
jtgafb833d1999-08-19 00:55:39 +000027 */
28
jtgafb833d1999-08-19 00:55:39 +000029
Brian Paul5d7c4862005-08-24 21:32:02 +000030#include <assert.h>
jtgafb833d1999-08-19 00:55:39 +000031#include <math.h>
32#include <stdio.h>
33#include <stdlib.h>
34#include "GL/glut.h"
Brian Paul92eddb02005-01-09 17:37:50 +000035#include "showbuffer.h"
36#include "readtex.h"
jtgafb833d1999-08-19 00:55:39 +000037
38
39#define DEG2RAD (3.14159/180.0)
jtgafb833d1999-08-19 00:55:39 +000040#define TABLE_TEXTURE "../images/tile.rgb"
jtgafb833d1999-08-19 00:55:39 +000041#define MAX_OBJECTS 2
Brian Paul5d7c4862005-08-24 21:32:02 +000042#define INIT_WIDTH 400
43#define INIT_HEIGHT 300
jtgafb833d1999-08-19 00:55:39 +000044
Karl Schultzb6875312006-03-29 03:42:32 +000045#ifdef _WIN32
46#undef CreateWindowA
47#endif
jtgafb833d1999-08-19 00:55:39 +000048
Brian Paul5d7c4862005-08-24 21:32:02 +000049struct window {
50 int id; /* returned by glutCreateWindow() */
51 int width, height;
52 GLboolean anim;
53 GLfloat xrot, yrot;
54 GLfloat spin;
55 GLenum showBuffer;
Brian Pauld5783732005-08-31 16:42:59 +000056 GLenum drawBuffer;
Brian Paul5d7c4862005-08-24 21:32:02 +000057 GLuint table_list;
58 GLuint objects_list[MAX_OBJECTS];
59 double t0;
60 struct window *next;
61};
62
63
64static struct window *FirstWindow = NULL;
65
66
67static void
68CreateWindow(void);
69
70
71static struct window *
72CurrentWindow(void)
73{
74 int id = glutGetWindow();
75 struct window *w;
76 for (w = FirstWindow; w; w = w->next) {
77 if (w->id == id)
78 return w;
79 }
80 return NULL;
81}
82
83
84static GLboolean
85AnyAnimating(void)
86{
87 struct window *w;
88 for (w = FirstWindow; w; w = w->next) {
89 if (w->anim)
90 return 1;
91 }
92 return 0;
93}
94
95
96static void
97KillWindow(struct window *w)
98{
99 struct window *win, *prev = NULL;
100 for (win = FirstWindow; win; win = win->next) {
101 if (win == w) {
102 if (prev) {
103 prev->next = win->next;
104 }
105 else {
106 FirstWindow = win->next;
107 }
108 glutDestroyWindow(win->id);
109 win->next = NULL;
110 free(win);
111 return;
112 }
113 prev = win;
114 }
115}
116
117
118static void
119KillAllWindows(void)
120{
121 while (FirstWindow)
122 KillWindow(FirstWindow);
123}
124
125
126static GLuint
127MakeTable(void)
jtgafb833d1999-08-19 00:55:39 +0000128{
129 static GLfloat table_mat[] = { 1.0, 1.0, 1.0, 0.6 };
130 static GLfloat gray[] = { 0.4, 0.4, 0.4, 1.0 };
Brian Paul5d7c4862005-08-24 21:32:02 +0000131 GLuint table_list;
jtgafb833d1999-08-19 00:55:39 +0000132
133 table_list = glGenLists(1);
134 glNewList( table_list, GL_COMPILE );
135
136 /* load table's texture */
137 glMaterialfv( GL_FRONT, GL_AMBIENT_AND_DIFFUSE, table_mat );
Brian Paul5d7c4862005-08-24 21:32:02 +0000138 /*glMaterialfv( GL_FRONT, GL_EMISSION, gray );*/
jtgafb833d1999-08-19 00:55:39 +0000139 glMaterialfv( GL_FRONT, GL_DIFFUSE, table_mat );
140 glMaterialfv( GL_FRONT, GL_AMBIENT, gray );
141
142 /* draw textured square for the table */
143 glPushMatrix();
144 glScalef( 4.0, 4.0, 4.0 );
145 glBegin( GL_POLYGON );
146 glNormal3f( 0.0, 1.0, 0.0 );
147 glTexCoord2f( 0.0, 0.0 ); glVertex3f( -1.0, 0.0, 1.0 );
148 glTexCoord2f( 1.0, 0.0 ); glVertex3f( 1.0, 0.0, 1.0 );
149 glTexCoord2f( 1.0, 1.0 ); glVertex3f( 1.0, 0.0, -1.0 );
150 glTexCoord2f( 0.0, 1.0 ); glVertex3f( -1.0, 0.0, -1.0 );
151 glEnd();
152 glPopMatrix();
153
154 glDisable( GL_TEXTURE_2D );
155
156 glEndList();
Brian Paul5d7c4862005-08-24 21:32:02 +0000157 return table_list;
jtgafb833d1999-08-19 00:55:39 +0000158}
159
160
Brian Paul5d7c4862005-08-24 21:32:02 +0000161static void
162MakeObjects(GLuint *objects_list)
jtgafb833d1999-08-19 00:55:39 +0000163{
164 GLUquadricObj *q;
165
166 static GLfloat cyan[] = { 0.0, 1.0, 1.0, 1.0 };
167 static GLfloat green[] = { 0.2, 1.0, 0.2, 1.0 };
168 static GLfloat black[] = { 0.0, 0.0, 0.0, 0.0 };
169
170 q = gluNewQuadric();
171 gluQuadricDrawStyle( q, GLU_FILL );
172 gluQuadricNormals( q, GLU_SMOOTH );
173
174 objects_list[0] = glGenLists(1);
175 glNewList( objects_list[0], GL_COMPILE );
176 glMaterialfv( GL_FRONT, GL_AMBIENT_AND_DIFFUSE, cyan );
177 glMaterialfv( GL_FRONT, GL_EMISSION, black );
178 gluCylinder( q, 0.5, 0.5, 1.0, 15, 1 );
179 glEndList();
180
181 objects_list[1] = glGenLists(1);
182 glNewList( objects_list[1], GL_COMPILE );
183 glMaterialfv( GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green );
184 glMaterialfv( GL_FRONT, GL_EMISSION, black );
185 gluCylinder( q, 1.5, 0.0, 2.5, 15, 1 );
186 glEndList();
Brian Paul1ad3b7e2005-11-19 23:09:14 +0000187
188 gluDeleteQuadric(q);
jtgafb833d1999-08-19 00:55:39 +0000189}
190
191
Brian Paul5d7c4862005-08-24 21:32:02 +0000192static void
193InitWindow(struct window *w)
jtgafb833d1999-08-19 00:55:39 +0000194{
Brian Paul5d7c4862005-08-24 21:32:02 +0000195 GLint imgWidth, imgHeight;
196 GLenum imgFormat;
197 GLubyte *image = NULL;
jtgafb833d1999-08-19 00:55:39 +0000198
Brian Paul5d7c4862005-08-24 21:32:02 +0000199 w->table_list = MakeTable();
200 MakeObjects(w->objects_list);
201
202 image = LoadRGBImage( TABLE_TEXTURE, &imgWidth, &imgHeight, &imgFormat );
203 if (!image) {
jtgafb833d1999-08-19 00:55:39 +0000204 printf("Couldn't read %s\n", TABLE_TEXTURE);
205 exit(0);
206 }
207
Brian Paul5d7c4862005-08-24 21:32:02 +0000208 gluBuild2DMipmaps(GL_TEXTURE_2D, 3, imgWidth, imgHeight,
209 imgFormat, GL_UNSIGNED_BYTE, image);
210 free(image);
jtgafb833d1999-08-19 00:55:39 +0000211
212 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT );
213 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT );
214 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST );
215 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST );
jtgafb833d1999-08-19 00:55:39 +0000216
jtgafb833d1999-08-19 00:55:39 +0000217 glShadeModel( GL_FLAT );
218
219 glEnable( GL_LIGHT0 );
220 glEnable( GL_LIGHTING );
221
Brian Paul73ccfa02001-04-25 15:51:32 +0000222 glClearColor( 0.5, 0.5, 0.9, 0.0 );
jtgafb833d1999-08-19 00:55:39 +0000223
224 glEnable( GL_NORMALIZE );
225}
226
227
Brian Paul5d7c4862005-08-24 21:32:02 +0000228static void
229Reshape(int width, int height)
jtgafb833d1999-08-19 00:55:39 +0000230{
Brian Paul5d7c4862005-08-24 21:32:02 +0000231 struct window *w = CurrentWindow();
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000232 GLfloat yAspect = 2.5;
Brian Paul5d7c4862005-08-24 21:32:02 +0000233 GLfloat xAspect = yAspect * (float) width / (float) height;
234 w->width = width;
235 w->height = height;
236 glViewport(0, 0, width, height);
jtgafb833d1999-08-19 00:55:39 +0000237 glMatrixMode(GL_PROJECTION);
238 glLoadIdentity();
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000239 glFrustum( -xAspect, xAspect, -yAspect, yAspect, 10.0, 30.0 );
jtgafb833d1999-08-19 00:55:39 +0000240 glMatrixMode(GL_MODELVIEW);
241 glLoadIdentity();
242}
243
244
Brian Paul5d7c4862005-08-24 21:32:02 +0000245static void
246DrawObjects(struct window *w, GLfloat eyex, GLfloat eyey, GLfloat eyez)
jtgafb833d1999-08-19 00:55:39 +0000247{
248 (void) eyex;
249 (void) eyey;
250 (void) eyez;
251#ifndef USE_ZBUFFER
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000252 if (eyex<0.5) {
jtgafb833d1999-08-19 00:55:39 +0000253#endif
Brian Paul5d7c4862005-08-24 21:32:02 +0000254 glPushMatrix();
255 glTranslatef( 1.0, 1.5, 0.0 );
256 glRotatef( w->spin, 1.0, 0.5, 0.0 );
257 glRotatef( 0.5*w->spin, 0.0, 0.5, 1.0 );
258 glCallList( w->objects_list[0] );
259 glPopMatrix();
260
261 glPushMatrix();
262 glTranslatef( -1.0, 0.85+3.0*fabs( cos(0.01*w->spin) ), 0.0 );
263 glRotatef( 0.5*w->spin, 0.0, 0.5, 1.0 );
264 glRotatef( w->spin, 1.0, 0.5, 0.0 );
265 glScalef( 0.5, 0.5, 0.5 );
266 glCallList( w->objects_list[1] );
267 glPopMatrix();
jtgafb833d1999-08-19 00:55:39 +0000268#ifndef USE_ZBUFFER
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000269 }
270 else {
Brian Paul5d7c4862005-08-24 21:32:02 +0000271 glPushMatrix();
272 glTranslatef( -1.0, 0.85+3.0*fabs( cos(0.01*w->spin) ), 0.0 );
273 glRotatef( 0.5*w->spin, 0.0, 0.5, 1.0 );
274 glRotatef( w->spin, 1.0, 0.5, 0.0 );
275 glScalef( 0.5, 0.5, 0.5 );
276 glCallList( w->objects_list[1] );
277 glPopMatrix();
jtgafb833d1999-08-19 00:55:39 +0000278
Brian Paul5d7c4862005-08-24 21:32:02 +0000279 glPushMatrix();
280 glTranslatef( 1.0, 1.5, 0.0 );
281 glRotatef( w->spin, 1.0, 0.5, 0.0 );
282 glRotatef( 0.5*w->spin, 0.0, 0.5, 1.0 );
283 glCallList( w->objects_list[0] );
284 glPopMatrix();
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000285 }
jtgafb833d1999-08-19 00:55:39 +0000286#endif
287}
288
289
Brian Paul5d7c4862005-08-24 21:32:02 +0000290static void
291DrawTable(struct window *w)
jtgafb833d1999-08-19 00:55:39 +0000292{
Brian Paul5d7c4862005-08-24 21:32:02 +0000293 glCallList(w->table_list);
jtgafb833d1999-08-19 00:55:39 +0000294}
295
296
Brian Paul5d7c4862005-08-24 21:32:02 +0000297static void
298DrawWindow(void)
jtgafb833d1999-08-19 00:55:39 +0000299{
Brian Paul5d7c4862005-08-24 21:32:02 +0000300 struct window *w = CurrentWindow();
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000301 static GLfloat light_pos[] = { 0.0, 20.0, 0.0, 1.0 };
jtgafb833d1999-08-19 00:55:39 +0000302 GLfloat dist = 20.0;
303 GLfloat eyex, eyey, eyez;
304
Brian Paul693a66a2006-03-30 14:24:58 +0000305 if (w->drawBuffer == GL_NONE) {
306 glDrawBuffer(GL_BACK);
307 glReadBuffer(GL_BACK);
308 }
309 else {
310 glDrawBuffer(w->drawBuffer);
311 glReadBuffer(w->drawBuffer);
312 }
jtgafb833d1999-08-19 00:55:39 +0000313
Brian Pauld5783732005-08-31 16:42:59 +0000314 glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
jtgafb833d1999-08-19 00:55:39 +0000315
Brian Paul693a66a2006-03-30 14:24:58 +0000316 if (w->drawBuffer == GL_NONE) {
317 glDrawBuffer(GL_NONE);
318 }
319
Brian Paul5d7c4862005-08-24 21:32:02 +0000320 eyex = dist * cos(w->yrot * DEG2RAD) * cos(w->xrot * DEG2RAD);
321 eyez = dist * sin(w->yrot * DEG2RAD) * cos(w->xrot * DEG2RAD);
322 eyey = dist * sin(w->xrot * DEG2RAD);
jtgafb833d1999-08-19 00:55:39 +0000323
324 /* view from top */
325 glPushMatrix();
326 gluLookAt( eyex, eyey, eyez, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 );
327
328 glLightfv( GL_LIGHT0, GL_POSITION, light_pos );
329
330 /* draw table into stencil planes */
jtgafb833d1999-08-19 00:55:39 +0000331 glDisable( GL_DEPTH_TEST );
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000332 glEnable( GL_STENCIL_TEST );
jtgafb833d1999-08-19 00:55:39 +0000333 glStencilFunc( GL_ALWAYS, 1, 0xffffffff );
334 glStencilOp( GL_REPLACE, GL_REPLACE, GL_REPLACE );
335 glColorMask( GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE );
Brian Paul5d7c4862005-08-24 21:32:02 +0000336 DrawTable(w);
jtgafb833d1999-08-19 00:55:39 +0000337 glColorMask( GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE );
338
jtgafb833d1999-08-19 00:55:39 +0000339 glEnable( GL_DEPTH_TEST );
jtgafb833d1999-08-19 00:55:39 +0000340
341 /* render view from below (reflected viewport) */
342 /* only draw where stencil==1 */
343 if (eyey>0.0) {
344 glPushMatrix();
345
346 glStencilFunc( GL_EQUAL, 1, 0xffffffff ); /* draw if ==1 */
347 glStencilOp( GL_KEEP, GL_KEEP, GL_KEEP );
348 glScalef( 1.0, -1.0, 1.0 );
349
350 /* Reposition light in reflected space. */
351 glLightfv(GL_LIGHT0, GL_POSITION, light_pos);
352
Brian Paul5d7c4862005-08-24 21:32:02 +0000353 DrawObjects(w, eyex, eyey, eyez);
jtgafb833d1999-08-19 00:55:39 +0000354 glPopMatrix();
355
356 /* Restore light's original unreflected position. */
357 glLightfv(GL_LIGHT0, GL_POSITION, light_pos);
358 }
359
360 glDisable( GL_STENCIL_TEST );
361
362 glEnable( GL_BLEND );
363 glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
364
jtgafb833d1999-08-19 00:55:39 +0000365 glEnable( GL_TEXTURE_2D );
Brian Paul5d7c4862005-08-24 21:32:02 +0000366 DrawTable(w);
jtgafb833d1999-08-19 00:55:39 +0000367 glDisable( GL_TEXTURE_2D );
368 glDisable( GL_BLEND );
369
370 /* view from top */
371 glPushMatrix();
372
Brian Paul5d7c4862005-08-24 21:32:02 +0000373 DrawObjects(w, eyex, eyey, eyez);
jtgafb833d1999-08-19 00:55:39 +0000374
375 glPopMatrix();
376
377 glPopMatrix();
378
Brian Paul5d7c4862005-08-24 21:32:02 +0000379 if (w->showBuffer == GL_DEPTH) {
380 ShowDepthBuffer(w->width, w->height, 1.0, 0.0);
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000381 }
Brian Paul5d7c4862005-08-24 21:32:02 +0000382 else if (w->showBuffer == GL_STENCIL) {
383 ShowStencilBuffer(w->width, w->height, 255.0, 0.0);
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000384 }
Brian Paul5d7c4862005-08-24 21:32:02 +0000385 else if (w->showBuffer == GL_ALPHA) {
386 ShowAlphaBuffer(w->width, w->height);
Brian Paul73ccfa02001-04-25 15:51:32 +0000387 }
jtgafb833d1999-08-19 00:55:39 +0000388
Brian Paul693a66a2006-03-30 14:24:58 +0000389 if (w->drawBuffer == GL_FRONT)
Brian Pauld5783732005-08-31 16:42:59 +0000390 glFinish();
Brian Paul693a66a2006-03-30 14:24:58 +0000391 else
392 glutSwapBuffers();
Brian Paulcefc42f2000-09-15 16:43:57 +0000393
Brian Paul5d7c4862005-08-24 21:32:02 +0000394 /* calc/show frame rate */
Brian Paulcefc42f2000-09-15 16:43:57 +0000395 {
Brian Paul5d7c4862005-08-24 21:32:02 +0000396 static GLint t0 = 0;
397 static GLint frames = 0;
Brian Paulcefc42f2000-09-15 16:43:57 +0000398 GLint t = glutGet(GLUT_ELAPSED_TIME);
Brian Paul5d7c4862005-08-24 21:32:02 +0000399 frames++;
400 if (t - t0 >= 5000) {
401 GLfloat seconds = (t - t0) / 1000.0;
402 GLfloat fps = frames / seconds;
403 printf("%d frames in %g seconds = %g FPS\n", frames, seconds, fps);
Keith Whitwelle6479c62009-02-24 12:02:24 +0000404 fflush(stdout);
Brian Paul5d7c4862005-08-24 21:32:02 +0000405 t0 = t;
406 frames = 0;
Brian Paulcefc42f2000-09-15 16:43:57 +0000407 }
408 }
jtgafb833d1999-08-19 00:55:39 +0000409}
jtgafb833d1999-08-19 00:55:39 +0000410
411
Brian Paul5d7c4862005-08-24 21:32:02 +0000412static void
413Idle(void)
Brian Paul2b2e6212001-01-23 23:43:53 +0000414{
Brian Paul5d7c4862005-08-24 21:32:02 +0000415 double t = glutGet(GLUT_ELAPSED_TIME) / 1000.0;
416 struct window *w;
417 for (w = FirstWindow; w; w = w->next) {
418 if (w->anim) {
419 double dt;
420 if (w->t0 < 0.0)
421 w->t0 = t;
422 dt = t - w->t0;
423 w->t0 = t;
424 w->spin += 60.0 * dt;
425 w->yrot += 90.0 * dt;
426 assert(w->id);
427 glutSetWindow(w->id);
428 glutPostRedisplay();
429 }
430 }
Brian Paul2b2e6212001-01-23 23:43:53 +0000431}
432
433
Brian Paul5d7c4862005-08-24 21:32:02 +0000434static void
Brian Paul8e247d52005-08-25 17:46:04 +0000435UpdateIdleFunc(void)
436{
437 if (AnyAnimating())
438 glutIdleFunc(Idle);
439 else
440 glutIdleFunc(NULL);
441}
442
443static void
Brian Paul5d7c4862005-08-24 21:32:02 +0000444Key(unsigned char key, int x, int y)
jtgafb833d1999-08-19 00:55:39 +0000445{
Brian Paul5d7c4862005-08-24 21:32:02 +0000446 struct window *w = CurrentWindow();
jtgafb833d1999-08-19 00:55:39 +0000447 (void) x;
448 (void) y;
Brian Paul5d7c4862005-08-24 21:32:02 +0000449
450 switch (key) {
451 case 'd':
452 w->showBuffer = GL_DEPTH;
453 glutPostRedisplay();
454 break;
455 case 's':
456 w->showBuffer = GL_STENCIL;
457 glutPostRedisplay();
458 break;
459 case 'a':
460 w->showBuffer = GL_ALPHA;
461 glutPostRedisplay();
462 break;
463 case 'c':
464 w->showBuffer = GL_NONE;
465 glutPostRedisplay();
466 break;
Brian Pauld5783732005-08-31 16:42:59 +0000467 case 'f':
468 if (w->drawBuffer == GL_FRONT)
469 w->drawBuffer = GL_BACK;
470 else
471 w->drawBuffer = GL_FRONT;
472 glutPostRedisplay();
473 break;
Brian Paul693a66a2006-03-30 14:24:58 +0000474 case '0':
475 w->drawBuffer = GL_NONE;
476 glutPostRedisplay();
477 break;
Brian Paul5d7c4862005-08-24 21:32:02 +0000478 case ' ':
479 w->anim = !w->anim;
480 w->t0 = -1;
Brian Paul8e247d52005-08-25 17:46:04 +0000481 UpdateIdleFunc();
Brian Paul5d7c4862005-08-24 21:32:02 +0000482 glutPostRedisplay();
483 break;
484 case 'n':
485 CreateWindow();
Brian Paul8e247d52005-08-25 17:46:04 +0000486 UpdateIdleFunc();
Brian Paul5d7c4862005-08-24 21:32:02 +0000487 break;
488 case 'k':
489 KillWindow(w);
490 if (FirstWindow == NULL)
491 exit(0);
492 break;
493 case 27:
494 KillAllWindows();
jtgafb833d1999-08-19 00:55:39 +0000495 exit(0);
Brian Paul5d7c4862005-08-24 21:32:02 +0000496 break;
497 default:
498 ;
Brian Paul7a6bb1b2000-04-12 01:08:30 +0000499 }
jtgafb833d1999-08-19 00:55:39 +0000500}
501
502
Brian Paul5d7c4862005-08-24 21:32:02 +0000503static void
504SpecialKey(int key, int x, int y)
jtgafb833d1999-08-19 00:55:39 +0000505{
Brian Paul5d7c4862005-08-24 21:32:02 +0000506 struct window *w = CurrentWindow();
jtgafb833d1999-08-19 00:55:39 +0000507 (void) x;
508 (void) y;
509 switch (key) {
510 case GLUT_KEY_UP:
Brian Paul5d7c4862005-08-24 21:32:02 +0000511 w->xrot += 3.0;
512 if (w->xrot > 85)
513 w->xrot = 85;
jtgafb833d1999-08-19 00:55:39 +0000514 break;
515 case GLUT_KEY_DOWN:
Brian Paul5d7c4862005-08-24 21:32:02 +0000516 w->xrot -= 3.0;
517 if (w->xrot < 5)
518 w->xrot = 5;
jtgafb833d1999-08-19 00:55:39 +0000519 break;
520 case GLUT_KEY_LEFT:
Brian Paul5d7c4862005-08-24 21:32:02 +0000521 w->yrot += 3.0;
jtgafb833d1999-08-19 00:55:39 +0000522 break;
523 case GLUT_KEY_RIGHT:
Brian Paul5d7c4862005-08-24 21:32:02 +0000524 w->yrot -= 3.0;
jtgafb833d1999-08-19 00:55:39 +0000525 break;
526 }
527 glutPostRedisplay();
528}
529
530
Brian Paul5d7c4862005-08-24 21:32:02 +0000531static void
532CreateWindow(void)
jtgafb833d1999-08-19 00:55:39 +0000533{
Brian Paul5d7c4862005-08-24 21:32:02 +0000534 char title[1000];
535 struct window *w = (struct window *) calloc(1, sizeof(struct window));
536
537 glutInitWindowSize(INIT_WIDTH, INIT_HEIGHT);
538 w->id = glutCreateWindow("foo");
539 sprintf(title, "reflect window %d", w->id);
540 glutSetWindowTitle(title);
541 assert(w->id);
542 w->width = INIT_WIDTH;
543 w->height = INIT_HEIGHT;
544 w->anim = GL_TRUE;
545 w->xrot = 30.0;
546 w->yrot = 50.0;
547 w->spin = 0.0;
548 w->showBuffer = GL_NONE;
Brian Pauld5783732005-08-31 16:42:59 +0000549 w->drawBuffer = GL_BACK;
Brian Paul5d7c4862005-08-24 21:32:02 +0000550
551 InitWindow(w);
552
553 glutReshapeFunc(Reshape);
554 glutDisplayFunc(DrawWindow);
jtgafb833d1999-08-19 00:55:39 +0000555 glutKeyboardFunc(Key);
556 glutSpecialFunc(SpecialKey);
Brian Paul5d7c4862005-08-24 21:32:02 +0000557
558 /* insert at head of list */
559 w->next = FirstWindow;
560 FirstWindow = w;
561}
562
563
564static void
565Usage(void)
566{
567 printf("Keys:\n");
568 printf(" a - show alpha buffer\n");
569 printf(" d - show depth buffer\n");
570 printf(" s - show stencil buffer\n");
571 printf(" c - show color buffer\n");
Brian Pauld5783732005-08-31 16:42:59 +0000572 printf(" f - toggle rendering to front/back color buffer\n");
Brian Paul5d7c4862005-08-24 21:32:02 +0000573 printf(" n - create new window\n");
574 printf(" k - kill window\n");
575 printf(" SPACE - toggle animation\n");
576 printf(" ARROWS - rotate scene\n");
577}
578
579
580int
581main(int argc, char *argv[])
582{
583 glutInit(&argc, argv);
584 glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH |
585 GLUT_STENCIL | GLUT_ALPHA);
586 CreateWindow();
587 glutIdleFunc(Idle);
588 Usage();
jtgafb833d1999-08-19 00:55:39 +0000589 glutMainLoop();
590 return 0;
591}