]>
Dogcows Code - chaz/openbox/blob - obrender/instance.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 instance.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
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.
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.
17 See the COPYING file for a copy of the GNU General Public License.
23 static RrInstance
*definst
= NULL
;
25 static void RrTrueColorSetup (RrInstance
*inst
);
26 static void RrPseudoColorSetup (RrInstance
*inst
);
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
),
45 static void f(gpointer key
, gpointer value
, gpointer n
)
48 if (c
->id
== *(gint
*)n
)
49 g_message("color %d has %d references", c
->id
, c
->refcount
);
52 void print_refs(gint id
)
54 g_hash_table_foreach(RrColorHash(definst
), f
, &id
);
58 RrInstance
* RrInstanceNew (Display
*display
, gint screen
)
60 g_type_init(); /* supposedly needed for pango but seems to work without */
62 definst
= g_slice_new(RrInstance
);
63 definst
->display
= display
;
64 definst
->screen
= screen
;
66 definst
->depth
= DefaultDepth(display
, screen
);
67 definst
->visual
= DefaultVisual(display
, screen
);
68 definst
->colormap
= DefaultColormap(display
, screen
);
69 definst
->pango
= pango_xft_get_context(display
, screen
);
71 definst
->pseudo_colors
= NULL
;
73 definst
->color_hash
= g_hash_table_new_full(g_int_hash
, g_int_equal
,
76 switch (definst
->visual
->class) {
78 RrTrueColorSetup(definst
);
84 RrPseudoColorSetup(definst
);
87 g_critical("Unsupported visual class");
89 return definst
= NULL
;
94 static void RrTrueColorSetup (RrInstance
*inst
)
96 gulong red_mask
, green_mask
, blue_mask
;
97 XImage
*timage
= NULL
;
99 timage
= XCreateImage(inst
->display
, inst
->visual
, inst
->depth
,
100 ZPixmap
, 0, NULL
, 1, 1, 32, 0);
101 g_assert(timage
!= NULL
);
102 /* find the offsets for each color in the visual's masks */
103 inst
->red_mask
= red_mask
= timage
->red_mask
;
104 inst
->green_mask
= green_mask
= timage
->green_mask
;
105 inst
->blue_mask
= blue_mask
= timage
->blue_mask
;
107 inst
->red_offset
= 0;
108 inst
->green_offset
= 0;
109 inst
->blue_offset
= 0;
111 while (! (red_mask
& 1)) { inst
->red_offset
++; red_mask
>>= 1; }
112 while (! (green_mask
& 1)) { inst
->green_offset
++; green_mask
>>= 1; }
113 while (! (blue_mask
& 1)) { inst
->blue_offset
++; blue_mask
>>= 1; }
115 inst
->red_shift
= inst
->green_shift
= inst
->blue_shift
= 8;
116 while (red_mask
) { red_mask
>>= 1; inst
->red_shift
--; }
117 while (green_mask
) { green_mask
>>= 1; inst
->green_shift
--; }
118 while (blue_mask
) { blue_mask
>>= 1; inst
->blue_shift
--; }
122 #define RrPseudoNcolors(inst) (1 << (inst->pseudo_bpc * 3))
124 static void RrPseudoColorSetup (RrInstance
*inst
)
127 gint tr
, tg
, tb
, n
, r
, g
, b
, i
, incolors
, ii
;
131 /* determine the number of colors and the bits-per-color */
132 inst
->pseudo_bpc
= 2; /* XXX THIS SHOULD BE A USER OPTION */
133 g_assert(inst
->pseudo_bpc
>= 1);
134 _ncolors
= RrPseudoNcolors(inst
);
136 if (_ncolors
> 1 << inst
->depth
) {
137 g_message("Invalid colormap size. Resizing.");
138 inst
->pseudo_bpc
= 1 << (inst
->depth
/3) >> 3;
139 _ncolors
= 1 << (inst
->pseudo_bpc
* 3);
142 /* build a color cube */
143 inst
->pseudo_colors
= g_new(XColor
, _ncolors
);
144 cpc
= 1 << inst
->pseudo_bpc
; /* colors per channel */
146 for (n
= 0, r
= 0; r
< cpc
; r
++)
147 for (g
= 0; g
< cpc
; g
++)
148 for (b
= 0; b
< cpc
; b
++, n
++) {
149 tr
= (gint
)(((gfloat
)(r
)/(gfloat
)(cpc
-1)) * 0xFF);
150 tg
= (gint
)(((gfloat
)(g
)/(gfloat
)(cpc
-1)) * 0xFF);
151 tb
= (gint
)(((gfloat
)(b
)/(gfloat
)(cpc
-1)) * 0xFF);
152 inst
->pseudo_colors
[n
].red
= tr
| tr
<< 8;
153 inst
->pseudo_colors
[n
].green
= tg
| tg
<< 8;
154 inst
->pseudo_colors
[n
].blue
= tb
| tb
<< 8;
155 /* used to track allocation */
156 inst
->pseudo_colors
[n
].flags
= DoRed
|DoGreen
|DoBlue
;
159 /* allocate the colors */
160 for (i
= 0; i
< _ncolors
; i
++)
161 if (!XAllocColor(inst
->display
, inst
->colormap
,
162 &inst
->pseudo_colors
[i
]))
163 inst
->pseudo_colors
[i
].flags
= 0; /* mark it as unallocated */
165 /* try allocate any colors that failed allocation above */
167 /* get the allocated values from the X server
168 (only the first 256 XXX why!?)
170 incolors
= (((1 << inst
->depth
) > 256) ? 256 : (1 << inst
->depth
));
171 for (i
= 0; i
< incolors
; i
++)
172 icolors
[i
].pixel
= i
;
173 XQueryColors(inst
->display
, inst
->colormap
, icolors
, incolors
);
175 /* try match unallocated ones */
176 for (i
= 0; i
< _ncolors
; i
++) {
177 if (!inst
->pseudo_colors
[i
].flags
) { /* if it wasn't allocated... */
178 gulong closest
= 0xffffffff, close
= 0;
179 for (ii
= 0; ii
< incolors
; ii
++) {
180 /* find deviations */
181 r
= (inst
->pseudo_colors
[i
].red
- icolors
[ii
].red
) & 0xff;
182 g
= (inst
->pseudo_colors
[i
].green
- icolors
[ii
].green
) & 0xff;
183 b
= (inst
->pseudo_colors
[i
].blue
- icolors
[ii
].blue
) & 0xff;
184 /* find a weighted absolute deviation */
185 dev
= (r
* r
) + (g
* g
) + (b
* b
);
193 inst
->pseudo_colors
[i
].red
= icolors
[close
].red
;
194 inst
->pseudo_colors
[i
].green
= icolors
[close
].green
;
195 inst
->pseudo_colors
[i
].blue
= icolors
[close
].blue
;
196 inst
->pseudo_colors
[i
].pixel
= icolors
[close
].pixel
;
198 /* try alloc this closest color, it had better succeed! */
199 if (XAllocColor(inst
->display
, inst
->colormap
,
200 &inst
->pseudo_colors
[i
]))
201 /* mark as alloced */
202 inst
->pseudo_colors
[i
].flags
= DoRed
|DoGreen
|DoBlue
;
204 /* wtf has gone wrong, its already alloced for chissake! */
205 g_assert_not_reached();
210 void RrInstanceFree (RrInstance
*inst
)
213 if (inst
== definst
) definst
= NULL
;
214 g_free(inst
->pseudo_colors
);
215 g_hash_table_destroy(inst
->color_hash
);
216 g_object_unref(inst
->pango
);
217 g_slice_free(RrInstance
, inst
);
221 Display
* RrDisplay (const RrInstance
*inst
)
223 return (inst
? inst
: definst
)->display
;
226 gint
RrScreen (const RrInstance
*inst
)
228 return (inst
? inst
: definst
)->screen
;
231 Window
RrRootWindow (const RrInstance
*inst
)
233 return RootWindow (RrDisplay (inst
), RrScreen (inst
));
236 Visual
*RrVisual (const RrInstance
*inst
)
238 return (inst
? inst
: definst
)->visual
;
241 gint
RrDepth (const RrInstance
*inst
)
243 return (inst
? inst
: definst
)->depth
;
246 Colormap
RrColormap (const RrInstance
*inst
)
248 return (inst
? inst
: definst
)->colormap
;
251 gint
RrRedOffset (const RrInstance
*inst
)
253 return (inst
? inst
: definst
)->red_offset
;
256 gint
RrGreenOffset (const RrInstance
*inst
)
258 return (inst
? inst
: definst
)->green_offset
;
261 gint
RrBlueOffset (const RrInstance
*inst
)
263 return (inst
? inst
: definst
)->blue_offset
;
266 gint
RrRedShift (const RrInstance
*inst
)
268 return (inst
? inst
: definst
)->red_shift
;
271 gint
RrGreenShift (const RrInstance
*inst
)
273 return (inst
? inst
: definst
)->green_shift
;
276 gint
RrBlueShift (const RrInstance
*inst
)
278 return (inst
? inst
: definst
)->blue_shift
;
281 gint
RrRedMask (const RrInstance
*inst
)
283 return (inst
? inst
: definst
)->red_mask
;
286 gint
RrGreenMask (const RrInstance
*inst
)
288 return (inst
? inst
: definst
)->green_mask
;
291 gint
RrBlueMask (const RrInstance
*inst
)
293 return (inst
? inst
: definst
)->blue_mask
;
296 guint
RrPseudoBPC (const RrInstance
*inst
)
298 return (inst
? inst
: definst
)->pseudo_bpc
;
301 XColor
*RrPseudoColors (const RrInstance
*inst
)
303 return (inst
? inst
: definst
)->pseudo_colors
;
306 GHashTable
* RrColorHash (const RrInstance
*inst
)
308 return (inst
? inst
: definst
)->color_hash
;
This page took 0.050655 seconds and 4 git commands to generate.