]> Dogcows Code - chaz/openbox/blob - render/instance.c
update copyright step 2
[chaz/openbox] / render / instance.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 instance.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003 Ben Jansens
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "render.h"
21 #include "instance.h"
22
23 static RrInstance *definst = NULL;
24
25 static void RrTrueColorSetup (RrInstance *inst);
26 static void RrPseudoColorSetup (RrInstance *inst);
27
28 #ifdef DEBUG
29 #include "color.h"
30 #endif
31 static void
32 dest(gpointer data)
33 {
34 #ifdef DEBUG
35 RrColor *c = data;
36 if (c->refcount > 0)
37 g_error("color %d (%d,%d,%d) in hash table with %d "
38 "leftover references",
39 c->id, RrColorRed(c), RrColorGreen(c), RrColorBlue(c),
40 c->refcount);
41 #endif
42 }
43
44 #if 0
45 static void f(gpointer key, gpointer value, gpointer n)
46 {
47 RrColor *c = value;
48 if (c->id == *(gint*)n)
49 g_message("color %d has %d references", c->id, c->refcount);
50 }
51
52 void print_refs(gint id)
53 {
54 g_hash_table_foreach(RrColorHash(definst), f, &id);
55 }
56 #endif
57
58 RrInstance* RrInstanceNew (Display *display, gint screen)
59 {
60 definst = g_new (RrInstance, 1);
61 definst->display = display;
62 definst->screen = screen;
63
64 definst->depth = DefaultDepth(display, screen);
65 definst->visual = DefaultVisual(display, screen);
66 definst->colormap = DefaultColormap(display, screen);
67
68 definst->pseudo_colors = NULL;
69
70 definst->color_hash = g_hash_table_new_full(g_int_hash, g_int_equal,
71 NULL, dest);
72
73 switch (definst->visual->class) {
74 case TrueColor:
75 RrTrueColorSetup(definst);
76 break;
77 case PseudoColor:
78 case StaticColor:
79 case GrayScale:
80 case StaticGray:
81 RrPseudoColorSetup(definst);
82 break;
83 default:
84 g_critical("Unsupported visual class");
85 g_free (definst);
86 return definst = NULL;
87 }
88 return definst;
89 }
90
91 void RrTrueColorSetup (RrInstance *inst)
92 {
93 gulong red_mask, green_mask, blue_mask;
94 XImage *timage = NULL;
95
96 timage = XCreateImage(inst->display, inst->visual, inst->depth,
97 ZPixmap, 0, NULL, 1, 1, 32, 0);
98 g_assert(timage != NULL);
99 /* find the offsets for each color in the visual's masks */
100 inst->red_mask = red_mask = timage->red_mask;
101 inst->green_mask = green_mask = timage->green_mask;
102 inst->blue_mask = blue_mask = timage->blue_mask;
103
104 inst->red_offset = 0;
105 inst->green_offset = 0;
106 inst->blue_offset = 0;
107
108 while (! (red_mask & 1)) { inst->red_offset++; red_mask >>= 1; }
109 while (! (green_mask & 1)) { inst->green_offset++; green_mask >>= 1; }
110 while (! (blue_mask & 1)) { inst->blue_offset++; blue_mask >>= 1; }
111
112 inst->red_shift = inst->green_shift = inst->blue_shift = 8;
113 while (red_mask) { red_mask >>= 1; inst->red_shift--; }
114 while (green_mask) { green_mask >>= 1; inst->green_shift--; }
115 while (blue_mask) { blue_mask >>= 1; inst->blue_shift--; }
116 XFree(timage);
117 }
118
119 #define RrPseudoNcolors(inst) (1 << (inst->pseudo_bpc * 3))
120
121 void RrPseudoColorSetup (RrInstance *inst)
122 {
123 XColor icolors[256];
124 gint tr, tg, tb, n, r, g, b, i, incolors, ii;
125 gulong dev;
126 gint cpc, _ncolors;
127
128 /* determine the number of colors and the bits-per-color */
129 inst->pseudo_bpc = 2; /* XXX THIS SHOULD BE A USER OPTION */
130 g_assert(inst->pseudo_bpc >= 1);
131 _ncolors = RrPseudoNcolors(inst);
132
133 if (_ncolors > 1 << inst->depth) {
134 g_warning("PseudoRenderControl: Invalid colormap size. Resizing.\n");
135 inst->pseudo_bpc = 1 << (inst->depth/3) >> 3;
136 _ncolors = 1 << (inst->pseudo_bpc * 3);
137 }
138
139 /* build a color cube */
140 inst->pseudo_colors = g_new(XColor, _ncolors);
141 cpc = 1 << inst->pseudo_bpc; /* colors per channel */
142
143 for (n = 0, r = 0; r < cpc; r++)
144 for (g = 0; g < cpc; g++)
145 for (b = 0; b < cpc; b++, n++) {
146 tr = (gint)(((gfloat)(r)/(gfloat)(cpc-1)) * 0xFF);
147 tg = (gint)(((gfloat)(g)/(gfloat)(cpc-1)) * 0xFF);
148 tb = (gint)(((gfloat)(b)/(gfloat)(cpc-1)) * 0xFF);
149 inst->pseudo_colors[n].red = tr | tr << 8;
150 inst->pseudo_colors[n].green = tg | tg << 8;
151 inst->pseudo_colors[n].blue = tb | tb << 8;
152 /* used to track allocation */
153 inst->pseudo_colors[n].flags = DoRed|DoGreen|DoBlue;
154 }
155
156 /* allocate the colors */
157 for (i = 0; i < _ncolors; i++)
158 if (!XAllocColor(inst->display, inst->colormap,
159 &inst->pseudo_colors[i]))
160 inst->pseudo_colors[i].flags = 0; /* mark it as unallocated */
161
162 /* try allocate any colors that failed allocation above */
163
164 /* get the allocated values from the X server
165 (only the first 256 XXX why!?)
166 */
167 incolors = (((1 << inst->depth) > 256) ? 256 : (1 << inst->depth));
168 for (i = 0; i < incolors; i++)
169 icolors[i].pixel = i;
170 XQueryColors(inst->display, inst->colormap, icolors, incolors);
171
172 /* try match unallocated ones */
173 for (i = 0; i < _ncolors; i++) {
174 if (!inst->pseudo_colors[i].flags) { /* if it wasn't allocated... */
175 gulong closest = 0xffffffff, close = 0;
176 for (ii = 0; ii < incolors; ii++) {
177 /* find deviations */
178 r = (inst->pseudo_colors[i].red - icolors[ii].red) & 0xff;
179 g = (inst->pseudo_colors[i].green - icolors[ii].green) & 0xff;
180 b = (inst->pseudo_colors[i].blue - icolors[ii].blue) & 0xff;
181 /* find a weighted absolute deviation */
182 dev = (r * r) + (g * g) + (b * b);
183
184 if (dev < closest) {
185 closest = dev;
186 close = ii;
187 }
188 }
189
190 inst->pseudo_colors[i].red = icolors[close].red;
191 inst->pseudo_colors[i].green = icolors[close].green;
192 inst->pseudo_colors[i].blue = icolors[close].blue;
193 inst->pseudo_colors[i].pixel = icolors[close].pixel;
194
195 /* try alloc this closest color, it had better succeed! */
196 if (XAllocColor(inst->display, inst->colormap,
197 &inst->pseudo_colors[i]))
198 /* mark as alloced */
199 inst->pseudo_colors[i].flags = DoRed|DoGreen|DoBlue;
200 else
201 /* wtf has gone wrong, its already alloced for chissake! */
202 g_assert_not_reached();
203 }
204 }
205 }
206
207 void RrInstanceFree (RrInstance *inst)
208 {
209 if (inst) {
210 if (inst == definst) definst = NULL;
211 g_free(inst->pseudo_colors);
212 g_hash_table_destroy(inst->color_hash);
213 }
214 }
215
216 Display* RrDisplay (const RrInstance *inst)
217 {
218 return (inst ? inst : definst)->display;
219 }
220
221 gint RrScreen (const RrInstance *inst)
222 {
223 return (inst ? inst : definst)->screen;
224 }
225
226 Window RrRootWindow (const RrInstance *inst)
227 {
228 return RootWindow (RrDisplay (inst), RrScreen (inst));
229 }
230
231 Visual *RrVisual (const RrInstance *inst)
232 {
233 return (inst ? inst : definst)->visual;
234 }
235
236 gint RrDepth (const RrInstance *inst)
237 {
238 return (inst ? inst : definst)->depth;
239 }
240
241 Colormap RrColormap (const RrInstance *inst)
242 {
243 return (inst ? inst : definst)->colormap;
244 }
245
246 gint RrRedOffset (const RrInstance *inst)
247 {
248 return (inst ? inst : definst)->red_offset;
249 }
250
251 gint RrGreenOffset (const RrInstance *inst)
252 {
253 return (inst ? inst : definst)->green_offset;
254 }
255
256 gint RrBlueOffset (const RrInstance *inst)
257 {
258 return (inst ? inst : definst)->blue_offset;
259 }
260
261 gint RrRedShift (const RrInstance *inst)
262 {
263 return (inst ? inst : definst)->red_shift;
264 }
265
266 gint RrGreenShift (const RrInstance *inst)
267 {
268 return (inst ? inst : definst)->green_shift;
269 }
270
271 gint RrBlueShift (const RrInstance *inst)
272 {
273 return (inst ? inst : definst)->blue_shift;
274 }
275
276 gint RrRedMask (const RrInstance *inst)
277 {
278 return (inst ? inst : definst)->red_mask;
279 }
280
281 gint RrGreenMask (const RrInstance *inst)
282 {
283 return (inst ? inst : definst)->green_mask;
284 }
285
286 gint RrBlueMask (const RrInstance *inst)
287 {
288 return (inst ? inst : definst)->blue_mask;
289 }
290
291 guint RrPseudoBPC (const RrInstance *inst)
292 {
293 return (inst ? inst : definst)->pseudo_bpc;
294 }
295
296 XColor *RrPseudoColors (const RrInstance *inst)
297 {
298 return (inst ? inst : definst)->pseudo_colors;
299 }
300
301 GHashTable* RrColorHash (const RrInstance *inst)
302 {
303 return (inst ? inst : definst)->color_hash;
304 }
This page took 0.053318 seconds and 4 git commands to generate.