1 /* -*- Mode: C; tab-width: 4 -*- */
2 /* atunnels --- OpenGL Advanced Tunnel Screensaver */
5 static const char sccsid[] = "@(#)atunnels.c 5.13 2004/05/25 xlockmore";
8 /* Copyright (c) E. Lassauge, 2003-2004. */
11 * Permission to use, copy, modify, and distribute this software and its
12 * documentation for any purpose and without fee is hereby granted,
13 * provided that the above copyright notice appear in all copies and that
14 * both that copyright notice and this permission notice appear in
15 * supporting documentation.
17 * This file is provided AS IS with no warranties of any kind. The author
18 * shall have no liability with respect to the infringement of copyrights,
19 * trade secrets or any patents by this file or any part thereof. In no
20 * event will the author be liable for any lost revenue or profits or
21 * other special, indirect and consequential damages.
23 * The original code for this mode was written by Roman Podobedov
25 * WEB: http://romka.demonews.com
27 * Eric Lassauge (May-25-2004) <lassauge@users.sourceforge.net>
28 * http://lassauge.free.fr/linux.html
32 * E.Lassauge - 25-May-2004:
33 * - added more texture !
34 * E.Lassauge - 16-Mar-2002:
35 * - created based on the Roman demo.
36 * - deleted all external file stuff to use xpm textures and
37 * hardcoded path point values.
41 #ifdef STANDALONE /* xscreensaver mode */
42 # define PROGCLASS "Atunnels"
43 # define HACK_INIT init_atunnels
44 # define HACK_DRAW draw_atunnels
45 # define HACK_RESHAPE reshape_atunnels
46 # define atunnels_opts xlockmore_opts
47 #define DEFAULTS "*delay: 10000 \n" \
48 "*showFPS: False \n" \
54 # include "xlockmore.h" /* from the xscreensaver distribution */
55 #else /* !STANDALONE */
56 # include "xlock.h" /* from the xlockmore distribution */
57 #endif /* !STANDALONE */
59 #ifdef MODE_atunnels /* whole file */
64 #include "tunnel_draw.h"
66 #if defined( USE_XPM ) || defined( USE_XPMINC ) || defined(STANDALONE)
67 /* USE_XPM & USE_XPMINC in xlock mode ; STANDALONE in xscreensaver mode */
68 #include "xpm-ximage.h"
72 #include "../images/tunnel0.xpm"
73 #include "../images/tunnel1.xpm"
74 #include "../images/tunnel2.xpm"
75 #include "../images/tunnel3.xpm"
76 #include "../images/tunnel4.xpm"
77 #include "../images/tunnel5.xpm"
78 #else /* !STANDALONE */
79 #include "pixmaps/tunnel0.xpm"
80 #include "pixmaps/tunnel1.xpm"
81 #include "pixmaps/tunnel2.xpm"
82 #include "pixmaps/tunnel3.xpm"
83 #include "pixmaps/tunnel4.xpm"
84 #include "pixmaps/tunnel5.xpm"
85 #endif /* !STANDALONE */
90 #define countof(x) (sizeof((x))/sizeof((*x)))
92 #define DEF_LIGHT "True"
93 #define DEF_WIRE "False"
94 #define DEF_TEXTURE "True"
98 static Bool do_texture;
100 static XrmOptionDescRec opts[] = {
101 {"-light", ".atunnels.light", XrmoptionNoArg, "true" },
102 {"+light", ".atunnels.light", XrmoptionNoArg, "false" },
103 {"-wire", ".atunnels.wire", XrmoptionNoArg, "true" },
104 {"+wire", ".atunnels.wire", XrmoptionNoArg, "false" },
105 {"-texture", ".atunnels.texture", XrmoptionNoArg, "true" },
106 {"+texture", ".atunnels.texture", XrmoptionNoArg, "false" },
109 static argtype vars[] = {
110 {&do_light, "light", "Light", DEF_LIGHT, t_Bool},
111 {&do_wire, "wire", "Wire", DEF_WIRE, t_Bool},
112 {&do_texture, "texture", "Texture", DEF_TEXTURE, t_Bool},
115 static OptionStruct desc[] =
117 {"-/+ light", "whether to do enable lighting (slower)"},
118 {"-/+ wire", "whether to do use wireframe instead of filled (faster)"},
119 {"-/+ texture", "whether to apply a texture (slower)"},
122 ModeSpecOpt atunnels_opts = {countof(opts), opts, countof(vars), vars, desc};
125 ModStruct atunnels_description =
126 {"atunnels", "init_atunnels", "draw_atunnels", "release_atunnels",
127 "draw_atunnels", "init_atunnels", NULL, &atunnels_opts,
128 1000, 1, 2, 1, 4, 1.0, "",
129 "OpenGL advanced tunnel screensaver", 0, NULL};
132 /* structure for holding the screensaver data */
134 int screen_width, screen_height;
135 GLXContext *glx_context;
139 static atunnelsstruct *Atunnels = NULL;
141 static GLuint texture[MAX_TEXTURE]; /* texture id: GL world */
143 /*=================== Load Texture =========================================*/
144 static void LoadTexture(ModeInfo * mi, char **fn, int t_num)
146 #if defined( I_HAVE_XPM )
147 XImage *teximage; /* Texture data */
149 if ((teximage = xpm_to_ximage(MI_DISPLAY(mi), MI_VISUAL(mi),
150 MI_COLORMAP(mi), fn)) == None) {
151 (void) fprintf(stderr, "Error reading the texture.\n");
152 glDeleteTextures(1, &texture[t_num]);
161 #ifdef HAVE_GLBINDTEXTURE
162 glBindTexture(GL_TEXTURE_2D, texture[t_num]);
163 #endif /* HAVE_GLBINDTEXTURE */
164 glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
166 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, teximage->width, teximage->height,
167 0, GL_RGBA, GL_UNSIGNED_BYTE, teximage->data);
168 check_gl_error("texture");
170 /* Texture parameters, LINEAR scaling for better texture quality */
171 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
172 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
174 XDestroyImage(teximage);
175 #else /* !I_HAVE_XPM */
177 #endif /* !I_HAVE_XPM */
180 /*=================== Main Initialization ==================================*/
181 static void Init(ModeInfo * mi)
183 GLfloat light_ambient[] = {1.0, 1.0, 1.0, 1.0};
184 GLfloat light_diffuse[] = {1.0, 1.0, 1.0, 1.0};
185 GLfloat light_specular[] = {1.0, 1.0, 1.0, 1.0};
186 GLfloat light_position[] = {0.0, 0.0, 1.0, 0.0};
187 GLfloat fogColor[4] = {0.8, 0.8, 0.8, 1.0};
189 glClearColor(0, 0, 0, 0);
192 glGenTextures(MAX_TEXTURE, texture);
193 LoadTexture(mi, texture0,0);
194 LoadTexture(mi, texture1,1);
195 LoadTexture(mi, texture2,2);
196 LoadTexture(mi, texture3,3);
197 LoadTexture(mi, texture4,4);
198 LoadTexture(mi, texture5,5);
199 glEnable(GL_TEXTURE_2D);
203 /* Set lighting parameters */
206 glLightfv(GL_LIGHT0, GL_AMBIENT, light_ambient);
207 glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse);
208 glLightfv(GL_LIGHT0, GL_SPECULAR, light_specular);
209 glLightfv(GL_LIGHT0, GL_POSITION, light_position);
213 glDepthFunc(GL_LESS);
215 glEnable(GL_LIGHTING);
218 glDisable(GL_NORMALIZE);
219 glDisable(GL_CULL_FACE);
220 glDisable(GL_DEPTH_TEST);
221 glDisable(GL_TEXTURE_2D);
222 glPolygonMode(GL_FRONT,GL_LINE);
223 glPolygonMode(GL_BACK,GL_LINE);
227 glEnable(GL_DEPTH_TEST);
228 glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
231 glFogi(GL_FOG_MODE, GL_EXP);
232 glFogfv(GL_FOG_COLOR, fogColor);
233 glFogf(GL_FOG_DENSITY, 0.3);
237 glCullFace(GL_FRONT);
238 glEnable(GL_CULL_FACE);
241 glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
245 /* Standard reshape function */
247 reshape_atunnels(ModeInfo *mi, int width, int height)
251 glViewport(0, 0, width, height);
252 glMatrixMode(GL_PROJECTION);
254 a = (float)width/(float)height;
255 glFrustum(-0.1*a, 0.1*a, -0.1, 0.1, 0.1, 10);
256 glMatrixMode(GL_MODELVIEW);
259 /* draw the screensaver once */
260 void draw_atunnels(ModeInfo * mi)
262 atunnelsstruct *sa = &Atunnels[MI_SCREEN(mi)];
263 Display *display = MI_DISPLAY(mi);
264 Window window = MI_WINDOW(mi);
266 if (!sa->glx_context)
269 glXMakeCurrent(display, window, *(sa->glx_context));
271 glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
275 DrawTunnel(do_texture, do_light, texture);
276 SplashScreen(do_wire, do_texture, do_light);
279 /* manage framerate display */
280 if (MI_IS_FPS(mi)) do_fps (mi);
281 glXSwapBuffers(display, window);
286 /* xscreensaver initialization routine */
287 void init_atunnels(ModeInfo * mi)
289 int screen = MI_SCREEN(mi);
292 if (Atunnels == NULL) {
293 if ((Atunnels = (atunnelsstruct *) calloc(MI_NUM_SCREENS(mi), sizeof (atunnelsstruct))) == NULL)
296 sa = &Atunnels[screen];
298 sa->window = MI_WINDOW(mi);
299 if ((sa->glx_context = init_GL(mi)) != NULL) {
300 reshape_atunnels(mi, MI_WIDTH(mi), MI_HEIGHT(mi));
308 /* all sorts of nice cleanup code should go here! */
309 void release_atunnels(ModeInfo * mi)
312 if (Atunnels != NULL) {
313 for (screen = 0; screen < MI_NUM_SCREENS(mi); screen++) {
314 /* atunnelsstruct *sa = &Atunnels[screen];*/
316 (void) free((void *) Atunnels);