1 /* xscreensaver, Copyright (c) 1992, 1995, 1996, 1997, 2006
2 * Jamie Zawinski <jwz@jwz.org>
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
13 /* Beauty is only skin deep, unless you've got an alpha channel. */
21 #include "resources.h"
23 #include <X11/Xutil.h>
26 # define countof(x) (sizeof(*(x))/sizeof((x)))
30 /* I don't believe this fucking language doesn't have builtin exponentiation.
31 I further can't believe that the fucking ^ character means fucking XOR!! */
42 merge_colors (int argc, XColor **argv, XColor *into_color, int mask,
46 *into_color = *argv [0];
47 into_color->pixel |= mask;
49 for (j = 1; j < argc; j++)
51 # define SHORT_INC(x,y) (x = ((((x)+(y)) > 0xFFFF) ? 0xFFFF : ((x)+(y))))
52 # define SHORT_DEC(x,y) (x = ((((x)-(y)) < 0) ? 0 : ((x)-(y))))
55 SHORT_INC (into_color->red, argv[j]->red);
56 SHORT_INC (into_color->green, argv[j]->green);
57 SHORT_INC (into_color->blue, argv[j]->blue);
61 SHORT_DEC (into_color->red, argv[j]->red);
62 SHORT_DEC (into_color->green, argv[j]->green);
63 SHORT_DEC (into_color->blue, argv[j]->blue);
71 permute_colors (XColor *pcolors, XColor *colors,
73 unsigned long *plane_masks,
77 int max = i_exp (2, count);
78 if (count > 31) abort ();
79 for (out = 1; out < max; out++)
85 for (bit = 0; bit < 32; bit++)
88 argv [argc++] = &pcolors [bit];
89 this_mask |= plane_masks [bit];
91 merge_colors (argc, argv, &colors [out-1], this_mask, additive_p);
97 allocate_color_planes (Display *dpy, Colormap cmap,
98 int nplanes, unsigned long *plane_masks,
99 unsigned long *base_pixel_ret)
101 while (nplanes > 1 &&
102 !XAllocColorCells (dpy, cmap, False, plane_masks, nplanes,
111 initialize_transparency_colormap (Display *dpy, Colormap cmap,
113 unsigned long base_pixel,
114 unsigned long *plane_masks,
119 int total_colors = i_exp (2, nplanes);
120 XColor *all_colors = (XColor *) calloc (total_colors, sizeof (XColor));
122 for (i = 0; i < nplanes; i++)
123 colors[i].pixel = base_pixel | plane_masks [i];
124 permute_colors (colors, all_colors, nplanes, plane_masks, additive_p);
126 /* clone the default background of the window into our "base" pixel */
127 all_colors [total_colors - 1].pixel =
128 get_pixel_resource (dpy, cmap, "background", "Background");
129 XQueryColor (dpy, cmap, &all_colors [total_colors - 1]);
130 all_colors [total_colors - 1].pixel = base_pixel;
132 for (i = 0; i < total_colors; i++)
133 all_colors[i].flags = DoRed|DoGreen|DoBlue;
134 XStoreColors (dpy, cmap, all_colors, total_colors);
135 XFree ((XPointer) all_colors);
140 allocate_alpha_colors (Screen *screen, Visual *visual, Colormap cmap,
141 int *nplanesP, Bool additive_p,
142 unsigned long **plane_masks,
143 unsigned long *base_pixelP)
145 Display *dpy = DisplayOfScreen (screen);
147 int nplanes = *nplanesP;
150 if (!has_writable_cells (screen, visual))
153 if (!cmap) /* A TrueColor visual, or similar. */
155 int depth = visual_depth (screen, visual);
157 XVisualInfo vi_in, *vi_out;
159 /* Find out which bits the R, G, and B components actually occupy
161 vi_in.screen = screen_number (screen);
162 vi_in.visualid = XVisualIDFromVisual (visual);
163 vi_out = XGetVisualInfo (dpy, VisualScreenMask|VisualIDMask,
165 if (! vi_out) abort ();
166 masks = vi_out[0].red_mask | vi_out[0].green_mask | vi_out[0].blue_mask;
167 XFree ((char *) vi_out);
173 *plane_masks = (unsigned long *) calloc(sizeof(unsigned long), nplanes);
175 /* Pick the planar values randomly, but constrain them to fall within
176 the bit positions of the R, G, and B fields. */
177 for (i = 0; i < nplanes; i++)
178 (*plane_masks)[i] = random() & masks;
181 else /* A PseudoColor visual, or similar. */
183 if (nplanes > 31) nplanes = 31;
184 *plane_masks = (unsigned long *) malloc(sizeof(unsigned long) * nplanes);
186 nplanes = allocate_color_planes (dpy, cmap, nplanes, *plane_masks,
197 colors = (XColor *) calloc (nplanes, sizeof (XColor));
198 for (i = 0; i < nplanes; i++)
200 /* pick the base colors. If we are in subtractive mode, pick higher
202 hsv_to_rgb (random () % 360,
204 frand (0.5) + (additive_p ? 0.2 : 0.5),
209 initialize_transparency_colormap (dpy, cmap, nplanes,
210 *base_pixelP, *plane_masks, colors,
212 XFree ((XPointer) colors);