1 /* -*- Mode: C; tab-width: 4 -*- */
2 /* cage --- the Impossible Cage, an Escher like scene. */
5 static const char sccsid[] = "@(#)cage.c 5.01 2001/03/01 xlockmore";
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.
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.
21 * The RotateAroundU() routine was adapted from the book
22 * "Computer Graphics Principles and Practice
23 * Foley - vanDam - Feiner - Hughes
24 * Second Edition" Pag. 227, exercise 5.15.
26 * This mode shows some interesting scenes that are impossible OR very
27 * wierd to build in the real universe. Much of the scenes are inspirated
28 * on Mauritz Cornelis Escher's works which derivated the mode's name.
29 * M.C. Escher (1898-1972) was a dutch artist and many people prefer to
30 * say he was a mathematician.
32 * Thanks goes to Brian Paul for making it possible and inexpensive to use
35 * Since I'm not a native English speaker, my apologies for any grammatical
38 * My e-mail address is
39 * mfvianna@centroin.com.br
41 * Marcelo F. Vianna (Jun-01-1997)
44 * 05-Apr-2002: Removed all gllist uses (fix some bug with nvidia driver)
45 * 01-Mar-2001: Added FPS stuff E.Lassauge <lassauge@mail.dotcom.fr>
46 * 01-Nov-2000: Allocation checks
47 * 01-Jan-1998: Mode separated from escher and renamed
48 * 08-Jun-1997: New scene implemented: "Impossible Cage" based in a M.C.
49 * Escher's painting with the same name (quite similar). The
50 * first GL mode to use texture mapping.
51 * The "Impossible Cage" scene doesn't use DEPTH BUFFER, the
52 * wood planks are drawn consistently using GL_CULL_FACE, and
53 * the painter's algorithm is used to sort the planks.
55 * 07-Jun-1997: Speed ups in Moebius Strip using GL_CULL_FACE.
57 * 03-Jun-1997: Initial Release (Only one scene: "Moebius Strip")
58 * The Moebius Strip scene was inspirated in a M.C. Escher's
59 * painting named Moebius Strip II in wich ants walk across a
60 * Moebius Strip path, sometimes meeting each other and sometimes
61 * being in "opposite faces" (note that the moebius strip has
62 * only one face and one edge).
67 * Texture mapping is only available on RGBA contexts, Mono and color index
68 * visuals DO NOT support texture mapping in OpenGL.
70 * BUT Mesa do implements RGBA contexts in pseudo color visuals, so texture
71 * mapping shuld work on PseudoColor, DirectColor, TrueColor using Mesa. Mono
72 * is not officially supported for both OpenGL and Mesa, but seems to not crash
75 * In real OpenGL, PseudoColor DO NOT support texture map (as far as I know).
80 # define DEFAULTS "*delay: 25000 \n" \
81 "*showFPS: False \n" \
82 "*wireframe: False \n"
84 # define refresh_cage 0
85 # define reshape_cage 0
86 # define cage_handle_event 0
87 # include "xlockmore.h" /* from the xscreensaver distribution */
88 #else /* !STANDALONE */
89 # include "xlock.h" /* from the xlockmore distribution */
90 #endif /* !STANDALONE */
95 #include "e_textures.h"
97 #include "xpm-ximage.h"
98 #include "../images/wood.xpm"
101 ENTRYPOINT ModeSpecOpt cage_opts =
102 {0, (XrmOptionDescRec *) NULL, 0, (argtype *) NULL, (OptionStruct *) NULL};
105 ModStruct cage_description =
106 {"cage", "init_cage", "draw_cage", "release_cage",
107 "draw_cage", "change_cage", (char *) NULL, &cage_opts,
108 25000, 1, 1, 1, 1.0, 4, "",
109 "Shows the Impossible Cage, an Escher-like GL scene", 0, NULL};
113 #define Scale4Window 0.3
114 #define Scale4Iconic 0.4
116 #define sqr(A) ((A)*(A))
122 #define ObjWoodPlank 0
125 /*************************************************************************/
130 GLXContext *glx_context;
133 static const float front_shininess[] = {60.0};
134 static const float front_specular[] = {0.7, 0.7, 0.7, 1.0};
135 static const float ambient[] = {0.0, 0.0, 0.0, 1.0};
136 static const float diffuse[] = {1.0, 1.0, 1.0, 1.0};
137 static const float position0[] = {1.0, 1.0, 1.0, 0.0};
138 static const float position1[] = {-1.0, -1.0, 1.0, 0.0};
139 static const float lmodel_ambient[] = {0.5, 0.5, 0.5, 1.0};
140 static const float lmodel_twoside[] = {GL_TRUE};
142 static const float MaterialWhite[] = {0.7, 0.7, 0.7, 1.0};
144 static cagestruct *cage = (cagestruct *) NULL;
146 #define PlankWidth 3.0
147 #define PlankHeight 0.35
148 #define PlankThickness 0.15
151 draw_woodplank(ModeInfo *mi, cagestruct * cp, int wire)
153 glBegin(wire ? GL_LINES : GL_QUADS);
156 glVertex3f(-PlankWidth, -PlankHeight, PlankThickness);
158 glVertex3f(PlankWidth, -PlankHeight, PlankThickness);
160 glVertex3f(PlankWidth, PlankHeight, PlankThickness);
162 glVertex3f(-PlankWidth, PlankHeight, PlankThickness);
164 glNormal3f(0, 0, -1);
166 glVertex3f(-PlankWidth, PlankHeight, -PlankThickness);
168 glVertex3f(PlankWidth, PlankHeight, -PlankThickness);
170 glVertex3f(PlankWidth, -PlankHeight, -PlankThickness);
172 glVertex3f(-PlankWidth, -PlankHeight, -PlankThickness);
176 glVertex3f(-PlankWidth, PlankHeight, PlankThickness);
178 glVertex3f(PlankWidth, PlankHeight, PlankThickness);
180 glVertex3f(PlankWidth, PlankHeight, -PlankThickness);
182 glVertex3f(-PlankWidth, PlankHeight, -PlankThickness);
184 glNormal3f(0, -1, 0);
186 glVertex3f(-PlankWidth, -PlankHeight, -PlankThickness);
188 glVertex3f(PlankWidth, -PlankHeight, -PlankThickness);
190 glVertex3f(PlankWidth, -PlankHeight, PlankThickness);
192 glVertex3f(-PlankWidth, -PlankHeight, PlankThickness);
196 glVertex3f(PlankWidth, -PlankHeight, PlankThickness);
198 glVertex3f(PlankWidth, -PlankHeight, -PlankThickness);
200 glVertex3f(PlankWidth, PlankHeight, -PlankThickness);
202 glVertex3f(PlankWidth, PlankHeight, PlankThickness);
204 glNormal3f(-1, 0, 0);
206 glVertex3f(-PlankWidth, PlankHeight, PlankThickness);
208 glVertex3f(-PlankWidth, PlankHeight, -PlankThickness);
210 glVertex3f(-PlankWidth, -PlankHeight, -PlankThickness);
212 glVertex3f(-PlankWidth, -PlankHeight, PlankThickness);
220 draw_impossiblecage(ModeInfo *mi, cagestruct * cp, int wire)
223 glRotatef(90, 0, 1, 0);
224 glTranslatef(0.0, PlankHeight - PlankWidth, -PlankThickness - PlankWidth);
225 if (!draw_woodplank(mi, cp, wire))
229 glRotatef(90, 0, 0, 1);
230 glTranslatef(0.0, PlankHeight - PlankWidth, PlankWidth - PlankThickness);
231 if (!draw_woodplank(mi, cp, wire))
235 glRotatef(90, 0, 1, 0);
236 glTranslatef(0.0, PlankWidth - PlankHeight, -PlankThickness - PlankWidth);
237 if (!draw_woodplank(mi, cp, wire))
241 glTranslatef(0.0, PlankWidth - PlankHeight, 3 * PlankThickness - PlankWidth);
242 if (!draw_woodplank(mi, cp, wire))
246 glRotatef(90, 0, 0, 1);
247 glTranslatef(0.0, PlankWidth - PlankHeight, PlankWidth - PlankThickness);
248 if (!draw_woodplank(mi, cp, wire))
252 glTranslatef(0.0, PlankWidth - PlankHeight, PlankWidth - 3 * PlankThickness);
253 if (!draw_woodplank(mi, cp, wire))
257 glTranslatef(0.0, PlankHeight - PlankWidth, 3 * PlankThickness - PlankWidth);
258 if (!draw_woodplank(mi, cp, wire))
262 glRotatef(90, 0, 0, 1);
263 glTranslatef(0.0, PlankHeight - PlankWidth, PlankThickness - PlankWidth);
264 if (!draw_woodplank(mi, cp, wire))
268 glTranslatef(0.0, PlankHeight - PlankWidth, PlankWidth - 3 * PlankThickness);
269 if (!draw_woodplank(mi, cp, wire))
273 glRotatef(90, 0, 1, 0);
274 glTranslatef(0.0, PlankHeight - PlankWidth, PlankWidth + PlankThickness);
275 if (!draw_woodplank(mi, cp, wire))
279 glRotatef(90, 0, 0, 1);
280 glTranslatef(0.0, PlankWidth - PlankHeight, PlankThickness - PlankWidth);
281 if (!draw_woodplank(mi, cp, wire))
285 glRotatef(90, 0, 1, 0);
286 glTranslatef(0.0, PlankWidth - PlankHeight, PlankWidth + PlankThickness);
287 if (!draw_woodplank(mi, cp, wire))
294 reshape(ModeInfo * mi, int width, int height)
296 cagestruct *cp = &cage[MI_SCREEN(mi)];
299 glViewport(0, 0, cp->WindW = (GLint) width, cp->WindH = (GLint) height);
300 glMatrixMode(GL_PROJECTION);
302 glFrustum(-1.0, 1.0, -1.0, 1.0, 5.0, 15.0);
303 glMatrixMode(GL_MODELVIEW);
314 if (MI_IS_WIREFRAME(mi))
317 glLightfv(GL_LIGHT0, GL_AMBIENT, ambient);
318 glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse);
319 glLightfv(GL_LIGHT0, GL_POSITION, position0);
320 glLightfv(GL_LIGHT1, GL_AMBIENT, ambient);
321 glLightfv(GL_LIGHT1, GL_DIFFUSE, diffuse);
322 glLightfv(GL_LIGHT1, GL_POSITION, position1);
323 glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient);
324 glLightModelfv(GL_LIGHT_MODEL_TWO_SIDE, lmodel_twoside);
325 glEnable(GL_LIGHTING);
328 glEnable(GL_NORMALIZE);
333 glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, MaterialWhite);
334 glShadeModel(GL_FLAT);
335 glDisable(GL_DEPTH_TEST);
336 glEnable(GL_TEXTURE_2D);
337 glEnable(GL_CULL_FACE);
339 glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
346 status = gluBuild2DMipmaps(GL_TEXTURE_2D, 3,
347 WoodTextureWidth, WoodTextureHeight,
348 GL_RGB, GL_UNSIGNED_BYTE, WoodTextureData);
351 const char *s = (char *) gluErrorString (status);
352 fprintf (stderr, "%s: error mipmapping texture: %s\n",
353 progname, (s ? s : "(unknown)"));
356 check_gl_error("mipmapping");
359 XImage *img = xpm_to_ximage (mi->dpy,
363 glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA,
364 img->width, img->height, 0,
366 /* GL_UNSIGNED_BYTE, */
367 GL_UNSIGNED_INT_8_8_8_8_REV,
369 check_gl_error("texture");
374 glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
375 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
376 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
377 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
378 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
380 glMaterialfv(GL_FRONT_AND_BACK, GL_SHININESS, front_shininess);
381 glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, front_specular);
385 release_cage (ModeInfo * mi)
390 for (screen = 0; screen < MI_NUM_SCREENS(mi); screen++) {
391 cagestruct *cp = &cage[screen];
393 if (cp->glx_context) {
394 cp->glx_context = (GLXContext *) NULL;
397 (void) free((void *) cage);
398 cage = (cagestruct *) NULL;
404 init_cage (ModeInfo * mi)
409 if ((cage = (cagestruct *) calloc(MI_NUM_SCREENS(mi),
410 sizeof (cagestruct))) == NULL)
413 cp = &cage[MI_SCREEN(mi)];
415 cp->step = NRAND(90);
416 if ((cp->glx_context = init_GL(mi)) != NULL) {
418 reshape(mi, MI_WIDTH(mi), MI_HEIGHT(mi));
419 glDrawBuffer(GL_BACK);
427 draw_cage (ModeInfo * mi)
429 Display *display = MI_DISPLAY(mi);
430 Window window = MI_WINDOW(mi);
435 cp = &cage[MI_SCREEN(mi)];
437 MI_IS_DRAWN(mi) = True;
438 if (!cp->glx_context)
441 mi->polygon_count = 0;
442 glXMakeCurrent(display, window, *(cp->glx_context));
444 glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
447 glTranslatef(0.0, 0.0, -10.0);
449 if (!MI_IS_ICONIC(mi)) {
450 glScalef(Scale4Window * cp->WindH / cp->WindW, Scale4Window, Scale4Window);
452 glScalef(Scale4Iconic * cp->WindH / cp->WindW, Scale4Iconic, Scale4Iconic);
456 glRotatef(cp->step * 100, 0, 0, 1);
457 glRotatef(25 + cos(cp->step * 5) * 6, 1, 0, 0);
458 glRotatef(204.5 - sin(cp->step * 5) * 8, 0, 1, 0);
459 if (!draw_impossiblecage(mi, cp, MI_IS_WIREFRAME(mi))) {
465 if (MI_IS_FPS(mi)) do_fps (mi);
468 glXSwapBuffers(display, window);
475 change_cage (ModeInfo * mi)
477 cagestruct *cp = &cage[MI_SCREEN(mi)];
479 if (!cp->glx_context)
482 glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *(cp->glx_context));
485 #endif /* !STANDALONE */
487 XSCREENSAVER_MODULE ("Cage", cage)