From http://www.jwz.org/xscreensaver/xscreensaver-5.38.tar.gz
[xscreensaver] / hacks / glx / stairs.c
1 /* -*- Mode: C; tab-width: 4 -*- */
2 /* stairs --- Infinite Stairs, and Escher-like scene. */
3
4 #if 0
5 static const char sccsid[] = "@(#)stairs.c      4.07 97/11/24 xlockmore";
6 #endif
7
8 /*-
9  * Permission to use, copy, modify, and distribute this software and its
10  * documentation for any purpose and without fee is hereby granted,
11  * provided that the above copyright notice appear in all copies and that
12  * both that copyright notice and this permission notice appear in
13  * supporting documentation.
14  *
15  * This file is provided AS IS with no warranties of any kind.  The author
16  * shall have no liability with respect to the infringement of copyrights,
17  * trade secrets or any patents by this file or any part thereof.  In no
18  * event will the author be liable for any lost revenue or profits or
19  * other special, indirect and consequential damages.
20  *
21  * This mode shows some interesting scenes that are impossible OR very
22  * weird to build in the real universe. Much of the scenes are inspirated
23  * on Mauritz Cornelis stairs's works which derivated the mode's name.
24  * M.C. Escher (1898-1972) was a dutch artist and many people prefer to
25  * say he was a mathematician.
26  *
27  * Thanks goes to Brian Paul for making it possible and inexpensive to use 
28  * OpenGL at home.
29  *
30  * Since I'm not a native English speaker, my apologies for any grammatical
31  * mistake.
32  *
33  * My e-mail address is
34  * m-vianna@usa.net
35  *
36  * Marcelo F. Vianna (Jun-01-1997)
37  *
38  * Revision History:
39  * 07-Jan-98: This would be a scene for the escher mode, but now escher mode
40  *            was splitted in different modes for each scene. This is the
41  *            initial release and is not working yet.
42  *            Marcelo F. Vianna.
43  *
44  */
45
46 /*-
47  * Texture mapping is only available on RGBA contexts, Mono and color index
48  * visuals DO NOT support texture mapping in OpenGL.
49  *
50  * BUT Mesa do implements RGBA contexts in pseudo color visuals, so texture
51  * mapping shuld work on PseudoColor, DirectColor, TrueColor using Mesa. Mono
52  * is not officially supported for both OpenGL and Mesa, but seems to not crash
53  * Mesa.
54  *
55  * In real OpenGL, PseudoColor DO NOT support texture map (as far as I know).
56  */
57
58 #ifdef STANDALONE
59 # define DEFAULTS                       "*delay:                20000   \n" \
60                                                         "*showFPS:      False   \n"
61
62 # define release_stairs 0
63 # include "xlockmore.h"         /* from the xscreensaver distribution */
64 #else /* !STANDALONE */
65 # include "xlock.h"                     /* from the xlockmore distribution */
66
67 #endif /* !STANDALONE */
68
69 #ifdef USE_GL
70
71 #if 0
72 #include "e_textures.h"
73 #else
74 #include "xpm-ximage.h"
75 #include "../images/wood.xpm"
76 #endif
77
78 #include "sphere.h"
79 #include "gltrackball.h"
80
81 ENTRYPOINT ModeSpecOpt stairs_opts =
82 {0, NULL, 0, NULL, NULL};
83
84 #ifdef USE_MODULES
85 ModStruct   stairs_description =
86 {"stairs", "init_stairs", "draw_stairs", NULL,
87  "draw_stairs", "change_stairs", "free_stairs", &stairs_opts,
88  1000, 1, 1, 1, 4, 1.0, "",
89  "Shows Infinite Stairs, an Escher-like scene", 0, NULL};
90
91 #endif
92
93 #define Scale4Window               0.3
94 #define Scale4Iconic               0.4
95
96 #define sqr(A)                     ((A)*(A))
97
98 #ifndef Pi
99 #define Pi                         M_PI
100 #endif
101
102 /*************************************************************************/
103
104 typedef struct {
105         GLint       WindH, WindW;
106         GLfloat     step;
107         int         rotating;
108         int         AreObjectsDefined[1];
109         int         sphere_position;
110         int         sphere_tick;
111         GLXContext *glx_context;
112     trackball_state *trackball;
113     Bool button_down_p;
114     GLuint objects;
115 } stairsstruct;
116
117 static const float front_shininess[] = {60.0};
118 static const float front_specular[] = {0.7, 0.7, 0.7, 1.0};
119 static const float ambient[] = {0.0, 0.0, 0.0, 1.0};
120 static const float diffuse[] = {1.0, 1.0, 1.0, 1.0};
121 static const float position0[] = {1.0, 1.0, 1.0, 0.0};
122 static const float position1[] = {-1.0, -1.0, 1.0, 0.0};
123 static const float lmodel_ambient[] = {0.5, 0.5, 0.5, 1.0};
124 static const float lmodel_twoside[] = {GL_TRUE};
125
126 static const float MaterialYellow[] = {0.7, 0.7, 0.0, 1.0};
127 static const float MaterialWhite[] = {0.7, 0.7, 0.7, 1.0};
128
129 static const float ball_positions[] = {
130   -3.0, 3.0, 1.0,
131   -3.0, 2.8, 2.0,
132   -3.0, 2.6, 3.0,
133
134   -2.0, 2.4, 3.0,
135   -1.0, 2.2, 3.0,
136    0.0, 2.0, 3.0,
137    1.0, 1.8, 3.0,
138    2.0, 1.6, 3.0,
139
140    2.0, 1.5, 2.0,
141    2.0, 1.4, 1.0,
142    2.0, 1.3, 0.0,
143    2.0, 1.2, -1.0,
144    2.0, 1.1, -2.0,
145
146    1.0, 0.9, -2.0,
147    0.0, 0.7, -2.0,
148   -1.0, 0.5, -2.0,
149 };
150
151 #define NPOSITIONS ((sizeof ball_positions) / (sizeof ball_positions[0]) / 3)
152 #define SPHERE_TICKS 32
153
154 static stairsstruct *stairs = NULL;
155
156 static int
157 draw_block(GLfloat width, GLfloat height, GLfloat thickness)
158 {
159     int polys = 0;
160         glFrontFace(GL_CCW);
161         glBegin(GL_QUADS);
162         glNormal3f(0, 0, 1);
163         glTexCoord2f(0, 0);
164         glVertex3f(-width, -height, thickness);
165         glTexCoord2f(1, 0);
166         glVertex3f(width, -height, thickness);
167         glTexCoord2f(1, 1);
168         glVertex3f(width, height, thickness);
169         glTexCoord2f(0, 1);
170         glVertex3f(-width, height, thickness);
171     polys++;
172         glNormal3f(0, 0, -1);
173         glTexCoord2f(0, 0);
174         glVertex3f(-width, height, -thickness);
175         glTexCoord2f(1, 0);
176         glVertex3f(width, height, -thickness);
177         glTexCoord2f(1, 1);
178         glVertex3f(width, -height, -thickness);
179         glTexCoord2f(0, 1);
180         glVertex3f(-width, -height, -thickness);
181     polys++;
182         glNormal3f(0, 1, 0);
183         glTexCoord2f(0, 0);
184         glVertex3f(-width, height, thickness);
185         glTexCoord2f(1, 0);
186         glVertex3f(width, height, thickness);
187         glTexCoord2f(1, 1);
188         glVertex3f(width, height, -thickness);
189         glTexCoord2f(0, 1);
190         glVertex3f(-width, height, -thickness);
191     polys++;
192         glNormal3f(0, -1, 0);
193         glTexCoord2f(0, 0);
194         glVertex3f(-width, -height, -thickness);
195         glTexCoord2f(1, 0);
196         glVertex3f(width, -height, -thickness);
197         glTexCoord2f(1, 1);
198         glVertex3f(width, -height, thickness);
199         glTexCoord2f(0, 1);
200         glVertex3f(-width, -height, thickness);
201     polys++;
202         glNormal3f(1, 0, 0);
203         glTexCoord2f(0, 0);
204         glVertex3f(width, -height, thickness);
205         glTexCoord2f(1, 0);
206         glVertex3f(width, -height, -thickness);
207         glTexCoord2f(1, 1);
208         glVertex3f(width, height, -thickness);
209         glTexCoord2f(0, 1);
210         glVertex3f(width, height, thickness);
211     polys++;
212         glNormal3f(-1, 0, 0);
213         glTexCoord2f(0, 0);
214         glVertex3f(-width, height, thickness);
215         glTexCoord2f(1, 0);
216         glVertex3f(-width, height, -thickness);
217         glTexCoord2f(1, 1);
218         glVertex3f(-width, -height, -thickness);
219         glTexCoord2f(0, 1);
220         glVertex3f(-width, -height, thickness);
221     polys++;
222         glEnd();
223     return polys;
224 }
225
226 static void
227 draw_stairs_internal(ModeInfo * mi)
228 {
229         GLfloat     X;
230
231     mi->polygon_count = 0;
232
233         glPushMatrix();
234         glPushMatrix();
235         glTranslatef(-3.0, 0.1, 2.0);
236         for (X = 0; X < 2; X++) {
237         mi->polygon_count += draw_block(0.5, 2.7 + 0.1 * X, 0.5);
238                 glTranslatef(0.0, 0.1, -1.0);
239         }
240         glPopMatrix();
241         glTranslatef(-3.0, 0.0, 3.0);
242         glPushMatrix();
243
244         for (X = 0; X < 6; X++) {
245                 mi->polygon_count += draw_block(0.5, 2.6 - 0.1 * X, 0.5);
246                 glTranslatef(1.0, -0.1, 0.0);
247         }
248         glTranslatef(-1.0, -0.9, -1.0);
249         for (X = 0; X < 5; X++) {
250                 mi->polygon_count += draw_block(0.5, 3.0 - 0.1 * X, 0.5);
251                 glTranslatef(0.0, 0.0, -1.0);
252         }
253         glTranslatef(-1.0, -1.1, 1.0);
254         for (X = 0; X < 3; X++) {
255                 mi->polygon_count += draw_block(0.5, 3.5 - 0.1 * X, 0.5);
256                 glTranslatef(-1.0, -0.1, 0.0);
257         }
258         glPopMatrix();
259         glPopMatrix();
260 }
261
262 /*#define DEBUG*/
263 /*#define DEBUG_PATH*/
264
265 static int
266 draw_sphere(int pos, int tick)
267 {
268     int pos2 = (pos+1) % NPOSITIONS;
269     GLfloat x1 = ball_positions[pos*3];
270     GLfloat y1 = ball_positions[pos*3+1];
271     GLfloat z1 = ball_positions[pos*3+2];
272     GLfloat x2 = ball_positions[pos2*3];
273     GLfloat y2 = ball_positions[pos2*3+1];
274     GLfloat z2 = ball_positions[pos2*3+2];
275     GLfloat frac = tick / (GLfloat) SPHERE_TICKS;
276     GLfloat x = x1 + (x2 - x1) * frac;
277     GLfloat y = y1 + (y2 - y1) * frac + (2 * sin (M_PI * frac));
278     GLfloat z = z1 + (z2 - z1) * frac;
279     int polys = 0;
280
281         glPushMatrix();
282
283 # ifdef DEBUG_PATH
284     glVertex3f(x, y, z);
285     if (tick == 0) {
286       glVertex3f(x, y-7.5, z);
287       glVertex3f(x, y, z); glVertex3f(x, y, z-0.6);
288       glVertex3f(x, y, z); glVertex3f(x, y, z+0.6);
289       glVertex3f(x, y, z); glVertex3f(x+0.6, y, z);
290       glVertex3f(x, y, z); glVertex3f(x-0.6, y, z);
291       glVertex3f(x, y, z);
292     }
293
294 # else /* !DEBUG_PATH */
295     y += 0.5;
296     glTranslatef(x, y, z);
297
298     glScalef (0.5, 0.5, 0.5);
299
300     /* make ball a little smaller on the gap to obscure distance */
301         if (pos == NPOSITIONS-1)
302       glScalef (0.95, 0.95, 0.95);
303
304         glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, MaterialYellow);
305     glDisable (GL_TEXTURE_2D);
306         glShadeModel(GL_SMOOTH);
307         glFrontFace(GL_CCW);
308     polys += unit_sphere (32, 32, False);
309         glShadeModel(GL_FLAT);
310     glEnable (GL_TEXTURE_2D);
311 #endif /* !DEBUG_PATH */
312
313         glPopMatrix();
314     return polys;
315 }
316
317
318
319 ENTRYPOINT void
320 reshape_stairs (ModeInfo * mi, int width, int height)
321 {
322         stairsstruct *sp = &stairs[MI_SCREEN(mi)];
323     int y = 0;
324
325     if (width > height * 5) {   /* tiny window: show middle */
326       height = width;
327       y = -height/2;
328     }
329
330         glViewport(0, y, sp->WindW = (GLint) width, sp->WindH = (GLint) height);
331         glMatrixMode(GL_PROJECTION);
332         glLoadIdentity();
333         glFrustum(-1.0, 1.0, -1.0, 1.0, 5.0, 15.0);
334         glMatrixMode(GL_MODELVIEW);
335         if (width >= 1024) {
336                 glLineWidth(3);
337                 glPointSize(3);
338         } else if (width >= 512) {
339                 glLineWidth(2);
340                 glPointSize(2);
341         } else {
342                 glLineWidth(1);
343                 glPointSize(1);
344         }
345 }
346
347 ENTRYPOINT Bool
348 stairs_handle_event (ModeInfo *mi, XEvent *event)
349 {
350   stairsstruct *sp = &stairs[MI_SCREEN(mi)];
351
352   if (gltrackball_event_handler (event, sp->trackball,
353                                  MI_WIDTH (mi), MI_HEIGHT (mi),
354                                  &sp->button_down_p))
355     return True;
356   else if (event->xany.type == KeyPress)
357     {
358       KeySym keysym;
359       char c = 0;
360       XLookupString (&event->xkey, &c, 1, &keysym, 0);
361       if (c == ' ' || c == '\t')
362         {
363           gltrackball_reset (sp->trackball, 0, 0);
364           return True;
365         }
366     }
367
368   return False;
369 }
370
371
372 static void
373 pinit(ModeInfo *mi)
374 {
375   /* int status; */
376         glClearDepth(1.0);
377         glLightfv(GL_LIGHT0, GL_AMBIENT, ambient);
378         glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse);
379         glLightfv(GL_LIGHT0, GL_POSITION, position0);
380         glLightfv(GL_LIGHT1, GL_AMBIENT, ambient);
381         glLightfv(GL_LIGHT1, GL_DIFFUSE, diffuse);
382         glLightfv(GL_LIGHT1, GL_POSITION, position1);
383         glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient);
384         glLightModelfv(GL_LIGHT_MODEL_TWO_SIDE, lmodel_twoside);
385         glEnable(GL_LIGHTING);
386         glEnable(GL_LIGHT0);
387         glEnable(GL_LIGHT1);
388         glEnable(GL_NORMALIZE);
389         glCullFace(GL_BACK);
390
391         glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, MaterialWhite);
392         glShadeModel(GL_FLAT);
393         glEnable(GL_DEPTH_TEST);
394         glEnable(GL_TEXTURE_2D);
395         glEnable(GL_CULL_FACE);
396
397         glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
398
399 #if 0
400     clear_gl_error();
401     status = gluBuild2DMipmaps(GL_TEXTURE_2D, 3,
402                                WoodTextureWidth, WoodTextureHeight,
403                                GL_RGB, GL_UNSIGNED_BYTE, WoodTextureData);
404     if (status)
405       {
406         const char *s = (char *) gluErrorString (status);
407         fprintf (stderr, "%s: error mipmapping %dx%d texture: %s\n",
408                  progname, WoodTextureWidth, WoodTextureHeight,
409                  (s ? s : "(unknown)"));
410         exit (1);
411       }
412     check_gl_error("mipmapping");
413 #else
414     {
415       XImage *img = xpm_to_ximage (mi->dpy,
416                                    mi->xgwa.visual,
417                                    mi->xgwa.colormap,
418                                    wood_texture);
419           glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA,
420                     img->width, img->height, 0,
421                     GL_RGBA,
422                     /* GL_UNSIGNED_BYTE, */
423                     GL_UNSIGNED_INT_8_8_8_8_REV,
424                     img->data);
425       check_gl_error("texture");
426       XDestroyImage (img);
427     }
428 #endif
429
430         glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
431         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
432         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
433         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
434         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
435
436         glMaterialfv(GL_FRONT_AND_BACK, GL_SHININESS, front_shininess);
437         glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, front_specular);
438 }
439
440 ENTRYPOINT void
441 init_stairs (ModeInfo * mi)
442 {
443         int         screen = MI_SCREEN(mi);
444         stairsstruct *sp;
445
446         MI_INIT (mi, stairs);
447         sp = &stairs[screen];
448
449         sp->step = 0.0;
450         sp->rotating = 0;
451         sp->sphere_position = NRAND(NPOSITIONS);
452         sp->sphere_tick = 0;
453
454         if ((sp->glx_context = init_GL(mi)) != NULL) {
455
456                 reshape_stairs(mi, MI_WIDTH(mi), MI_HEIGHT(mi));
457                 glDrawBuffer(GL_BACK);
458                 if (!glIsList(sp->objects))
459                         sp->objects = glGenLists(1);
460                 pinit(mi);
461         } else {
462                 MI_CLEARWINDOW(mi);
463         }
464
465     sp->trackball = gltrackball_init (False);
466 }
467
468 ENTRYPOINT void
469 draw_stairs (ModeInfo * mi)
470 {
471         stairsstruct *sp = &stairs[MI_SCREEN(mi)];
472     GLfloat rot = current_device_rotation();
473
474         Display    *display = MI_DISPLAY(mi);
475         Window      window = MI_WINDOW(mi);
476
477         if (!sp->glx_context)
478                 return;
479
480         glXMakeCurrent(display, window, *(sp->glx_context));
481
482         glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
483
484         glPushMatrix();
485
486     glRotatef(rot, 0, 0, 1);
487
488         glTranslatef(0.0, 0.0, -10.0);
489
490         if (!MI_IS_ICONIC(mi)) {
491                 glScalef(Scale4Window * sp->WindH / sp->WindW, Scale4Window, Scale4Window);
492         } else {
493                 glScalef(Scale4Iconic * sp->WindH / sp->WindW, Scale4Iconic, Scale4Iconic);
494         }
495
496 # ifdef HAVE_MOBILE     /* Keep it the same relative size when rotated. */
497   {
498     GLfloat h = MI_HEIGHT(mi) / (GLfloat) MI_WIDTH(mi);
499     if (rot != 0 && rot != 180 && rot != -180)
500       glScalef (1/h, 1/h, 1/h);
501   }
502 # endif
503
504     gltrackball_rotate (sp->trackball);
505
506     glTranslatef(0, 0.5, 0);
507         glRotatef(44.5, 1, 0, 0);
508     glRotatef(50, 0, 1, 0);
509
510     if (!sp->rotating) {
511       if ((LRAND() % 500) == 0)
512         sp->rotating = (LRAND() & 1) ? 1 : -1;
513     }
514
515     if (sp->rotating) {
516       glRotatef(sp->rotating * sp->step, 0, 1, 0);
517       if (sp->step >= 360) {
518         sp->rotating = 0;
519                 sp->step = 0;
520       }
521
522 # ifndef DEBUG
523       if (!sp->button_down_p)
524         sp->step += 2;
525 # endif /* DEBUG */
526     }
527
528         draw_stairs_internal(mi);
529
530
531 # ifdef DEBUG
532     {
533       int i, j;
534 #  ifdef DEBUG_PATH
535       glDisable(GL_LIGHTING);
536       glDisable(GL_TEXTURE_2D);
537       glBegin (GL_LINE_LOOP);
538 #  endif /* DEBUG_PATH */
539       for (i = 0; i < NPOSITIONS; i ++)
540         for (j = 0; j < SPHERE_TICKS; j++)
541           mi->polygon_count += draw_sphere(i, j);
542 #  ifdef DEBUG_PATH
543       glEnd();
544       glEnable(GL_LIGHTING);
545       glEnable(GL_TEXTURE_2D);
546 #  endif /* DEBUG_PATH */
547     }
548 #else  /* !DEBUG */
549     mi->polygon_count += draw_sphere(sp->sphere_position, sp->sphere_tick);
550 #endif /* !DEBUG */
551
552     if (sp->button_down_p)
553       ;
554     else if (++sp->sphere_tick >= SPHERE_TICKS)
555       {
556         sp->sphere_tick = 0;
557         if (++sp->sphere_position >= NPOSITIONS)
558           sp->sphere_position = 0;
559       }
560
561         glPopMatrix();
562
563     if (mi->fps_p) do_fps (mi);
564         glFlush();
565
566         glXSwapBuffers(display, window);
567 }
568
569 #ifndef STANDALONE
570 ENTRYPOINT void
571 change_stairs (ModeInfo * mi)
572 {
573         stairsstruct *sp = &stairs[MI_SCREEN(mi)];
574
575         if (!sp->glx_context)
576                 return;
577
578         glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *(sp->glx_context));
579         pinit();
580 }
581 #endif /* !STANDALONE */
582
583 ENTRYPOINT void
584 free_stairs (ModeInfo * mi)
585 {
586         stairsstruct *sp = &stairs[MI_SCREEN(mi)];
587         if (glIsList(sp->objects)) {
588                 glDeleteLists(sp->objects, 1);
589         }
590 }
591
592 XSCREENSAVER_MODULE ("Stairs", stairs)
593
594 #endif