http://ftp.aanet.ru/pub/Linux/X11/apps/xscreensaver-2.31.tar.gz
[xscreensaver] / hacks / xlockmore.c
1 /* xlockmore.c --- xscreensaver compatibility layer for xlockmore modules.
2  * xscreensaver, Copyright (c) 1997, 1998 Jamie Zawinski <jwz@jwz.org>
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation.  No representations are made about the suitability of this
9  * software for any purpose.  It is provided "as is" without express or 
10  * implied warranty.
11  *
12  * This file, along with xlockmore.h, make it possible to compile an xlockmore
13  * module into a standalone program, and thus use it with xscreensaver.
14  * By Jamie Zawinski <jwz@jwz.org> on 10-May-97; based on the ideas
15  * in the older xlock.h by Charles Hannum <mycroft@ai.mit.edu>.  (I had
16  * to redo it, since xlockmore has diverged so far from xlock...)
17  */
18
19 #include <stdio.h>
20 #include <math.h>
21 #include <string.h>
22 #include "screenhack.h"
23 #include "xlockmoreI.h"
24
25 #define countof(x) (sizeof((x))/sizeof(*(x)))
26
27 extern ModeSpecOpt xlockmore_opts[];
28 extern const char *app_defaults;
29
30 void
31 pre_merge_options (void)
32 {
33   int i, j;
34   char *s;
35
36   /* Translate the xlockmore `opts[]' argument to a form that
37      screenhack.c expects.
38    */
39   for (i = 0; i < xlockmore_opts->numopts; i++)
40     {
41       XrmOptionDescRec *old = &xlockmore_opts->opts[i];
42       XrmOptionDescRec *new = &options[i];
43
44       if (old->option[0] == '-')
45         new->option = old->option;
46       else
47         {
48           /* Convert "+foo" to "-no-foo". */
49           new->option = (char *) malloc (strlen(old->option) + 5);
50           strcpy (new->option, "-no-");
51           strcat (new->option, old->option + 1);
52         }
53
54       new->specifier = strrchr (old->specifier, '.');
55       if (!new->specifier) abort();
56
57       new->argKind = old->argKind;
58       new->value = old->value;
59     }
60
61   /* Add extra args, if they're mentioned in the defaults... */
62   {
63     char *args[] = { "-count", "-cycles", "-delay", "-ncolors",
64                      "-size", "-wireframe", "-use3d", "-useSHM" };
65     for (j = 0; j < countof(args); j++)
66       if (strstr(app_defaults, args[j]+1))
67         {
68           XrmOptionDescRec *new = &options[i++];
69           new->option = args[j];
70           new->specifier = strdup(args[j]);
71           new->specifier[0] = '.';
72           if (!strcmp(new->option, "-wireframe"))
73             {
74               new->argKind = XrmoptionNoArg;
75               new->value = "True";
76               new = &options[i++];
77               new->option = "-no-wireframe";
78               new->specifier = options[i-2].specifier;
79               new->argKind = XrmoptionNoArg;
80               new->value = "False";
81             }
82           else if (!strcmp(new->option, "-use3d"))
83             {
84               new->option = "-3d";
85               new->argKind = XrmoptionNoArg;
86               new->value = "True";
87               new = &options[i++];
88               new->option = "-no-3d";
89               new->specifier = options[i-2].specifier;
90               new->argKind = XrmoptionNoArg;
91               new->value = "False";
92             }
93           else if (!strcmp(new->option, "-useSHM"))
94             {
95               new->option = "-shm";
96               new->argKind = XrmoptionNoArg;
97               new->value = "True";
98               new = &options[i++];
99               new->option = "-no-shm";
100               new->specifier = options[i-2].specifier;
101               new->argKind = XrmoptionNoArg;
102               new->value = "False";
103             }
104           else
105             {
106               new->argKind = XrmoptionSepArg;
107               new->value = 0;
108             }
109         }
110   }
111
112
113   /* Construct the kind of `defaults' that screenhack.c expects from
114      the xlockmore `vars[]' argument.
115    */
116   i = 0;
117
118   /* Put on the PROGCLASS.background/foreground resources. */
119   s = (char *) malloc(50);
120   strcpy (s, progclass);
121   strcat (s, ".background: black");
122   defaults [i++] = s;
123
124   s = (char *) malloc(50);
125   strcpy (s, progclass);
126   strcat (s, ".foreground: white");
127   defaults [i++] = s;
128
129   /* Copy the lines out of the `app_defaults' var and into this array. */
130   s = strdup (app_defaults);
131   while (s && *s)
132     {
133       defaults [i++] = s;
134       s = strchr(s, '\n');
135       if (s)
136         *s++ = 0;
137     }
138
139   /* Copy the defaults out of the `xlockmore_opts->' variable. */
140   for (j = 0; j < xlockmore_opts->numvarsdesc; j++)
141     {
142       const char *def = xlockmore_opts->vars[j].def;
143       if (!def) def = "False";
144       if (def == ((char*) 1)) def = "True";
145       s = (char *) malloc (strlen (xlockmore_opts->vars[j].name) +
146                            strlen (def) + 10);
147       strcpy (s, "*");
148       strcat (s, xlockmore_opts->vars[j].name);
149       strcat (s, ": ");
150       strcat (s, def);
151       defaults [i++] = s;
152     }
153
154   defaults [i] = 0;
155 }
156
157
158 static void
159 xlockmore_read_resources (void)
160 {
161   int i;
162   for (i = 0; i < xlockmore_opts->numvarsdesc; i++)
163     {
164       void  *var   = xlockmore_opts->vars[i].var;
165       Bool  *var_b = (Bool *)  var;
166       char **var_c = (char **) var;
167       int   *var_i = (int *) var;
168       float *var_f = (float *) var;
169
170       switch (xlockmore_opts->vars[i].type)
171         {
172         case t_String:
173           *var_c = get_string_resource (xlockmore_opts->vars[i].name,
174                                         xlockmore_opts->vars[i].classname);
175           break;
176         case t_Float:
177           *var_f = get_float_resource (xlockmore_opts->vars[i].name,
178                                        xlockmore_opts->vars[i].classname);
179           break;
180         case t_Int:
181           *var_i = get_integer_resource (xlockmore_opts->vars[i].name,
182                                          xlockmore_opts->vars[i].classname);
183           break;
184         case t_Bool:
185           *var_b = get_boolean_resource (xlockmore_opts->vars[i].name,
186                                          xlockmore_opts->vars[i].classname);
187           break;
188         default:
189           abort ();
190         }
191     }
192 }
193
194
195
196 void 
197 xlockmore_screenhack (Display *dpy, Window window,
198                       Bool want_writable_colors,
199                       Bool want_uniform_colors,
200                       Bool want_smooth_colors,
201                       Bool want_bright_colors,
202                       void (*hack_init) (ModeInfo *),
203                       void (*hack_draw) (ModeInfo *),
204                       void (*hack_free) (ModeInfo *))
205 {
206   ModeInfo mi;
207   XGCValues gcv;
208   XColor color;
209   int i;
210   time_t start, now;
211   int orig_pause;
212
213   memset(&mi, 0, sizeof(mi));
214   mi.dpy = dpy;
215   mi.window = window;
216   XGetWindowAttributes (dpy, window, &mi.xgwa);
217
218   color.flags = DoRed|DoGreen|DoBlue;
219   color.red = color.green = color.blue = 0;
220   if (!XAllocColor(dpy, mi.xgwa.colormap, &color))
221     abort();
222   mi.black = color.pixel;
223   color.red = color.green = color.blue = 0xFFFF;
224   if (!XAllocColor(dpy, mi.xgwa.colormap, &color))
225     abort();
226   mi.white = color.pixel;
227
228   if (mono_p)
229     {
230       static unsigned long pixels[2];
231       static XColor colors[2];
232     MONO:
233       mi.npixels = 2;
234       mi.pixels = pixels;
235       mi.colors = colors;
236       pixels[0] = mi.black;
237       pixels[1] = mi.white;
238       colors[0].flags = DoRed|DoGreen|DoBlue;
239       colors[1].flags = DoRed|DoGreen|DoBlue;
240       colors[0].red = colors[0].green = colors[0].blue = 0;
241       colors[1].red = colors[1].green = colors[1].blue = 0xFFFF;
242       mi.writable_p = False;
243     }
244   else
245     {
246       mi.npixels = get_integer_resource ("ncolors", "Integer");
247       if (mi.npixels <= 0)
248         mi.npixels = 64;
249       else if (mi.npixels > 256)
250         mi.npixels = 256;
251
252       mi.colors = (XColor *) calloc (mi.npixels, sizeof (*mi.colors));
253
254       mi.writable_p = want_writable_colors;
255
256       if (want_uniform_colors)
257         make_uniform_colormap (dpy, mi.xgwa.visual, mi.xgwa.colormap,
258                                mi.colors, &mi.npixels,
259                                True, &mi.writable_p, True);
260       else if (want_smooth_colors)
261         make_smooth_colormap (dpy, mi.xgwa.visual, mi.xgwa.colormap,
262                               mi.colors, &mi.npixels,
263                               True, &mi.writable_p, True);
264       else
265         make_random_colormap (dpy, mi.xgwa.visual, mi.xgwa.colormap,
266                               mi.colors, &mi.npixels,
267                               want_bright_colors,
268                               True, &mi.writable_p, True);
269
270       if (mi.npixels <= 2)
271         goto MONO;
272       else
273         {
274           int i;
275           mi.pixels = (unsigned long *)
276             calloc (mi.npixels, sizeof (*mi.pixels));
277           for (i = 0; i < mi.npixels; i++)
278             mi.pixels[i] = mi.colors[i].pixel;
279         }
280     }
281
282   gcv.foreground = mi.white;
283   gcv.background = mi.black;
284   mi.gc = XCreateGC(dpy, window, GCForeground|GCBackground, &gcv);
285
286   mi.fullrandom = True;
287
288   mi.pause      = get_integer_resource ("delay", "Usecs");
289
290   mi.cycles     = get_integer_resource ("cycles", "Int");
291   mi.batchcount = get_integer_resource ("count", "Int");
292   mi.size       = get_integer_resource ("size", "Int");
293
294   mi.threed = get_boolean_resource ("use3d", "Boolean");
295   mi.threed_delta = get_float_resource ("delta3d", "Boolean");
296   mi.threed_right_color = get_pixel_resource ("right3d", "Color", dpy,
297                                               mi.xgwa.colormap);
298   mi.threed_left_color = get_pixel_resource ("left3d", "Color", dpy,
299                                              mi.xgwa.colormap);
300   mi.threed_both_color = get_pixel_resource ("both3d", "Color", dpy,
301                                              mi.xgwa.colormap);
302   mi.threed_none_color = get_pixel_resource ("none3d", "Color", dpy,
303                                              mi.xgwa.colormap);
304
305   mi.wireframe_p = get_boolean_resource ("wireframe", "Boolean");
306   mi.root_p = (window == RootWindowOfScreen (mi.xgwa.screen));
307 #ifdef HAVE_XSHM_EXTENSION
308   mi.use_shm = get_boolean_resource ("useSHM", "Boolean");
309 #endif /* !HAVE_XSHM_EXTENSION */
310
311   if (mi.pause < 0)
312     mi.pause = 0;
313   else if (mi.pause > 100000000)
314     mi.pause = 100000000;
315   orig_pause = mi.pause;
316
317   xlockmore_read_resources ();
318
319   XClearWindow (dpy, window);
320
321   i = 0;
322   start = time((time_t) 0);
323
324   hack_init (&mi);
325   do {
326     hack_draw (&mi);
327     XSync(dpy, False);
328     if (mi.pause)
329       usleep(mi.pause);
330     mi.pause = orig_pause;
331
332     if (hack_free)
333       {
334         if (i++ > (mi.batchcount / 4) &&
335             (start + 5) < (now = time((time_t) 0)))
336           {
337             i = 0;
338             start = now;
339             hack_free (&mi);
340             hack_init (&mi);
341             XSync(dpy, False);
342           }
343       }
344
345   } while (1);
346 }