]> git.draconx.ca Git - rrace.git/blob - src/ewmhicon.c
Factor out common parts of icon generation.
[rrace.git] / src / ewmhicon.c
1 /*
2  * _NET_WM_ICON helpers for slide puzzle game
3  * Copyright © 2022 Nick Bowler
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
17  */
18
19 #include <config.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23
24 #if !X_DISPLAY_MISSING
25 #  include <X11/Intrinsic.h>
26 #  include <X11/Xatom.h>
27 #endif
28 #include "ewmhicon.h"
29
30 static unsigned long scale16to8(unsigned x)
31 {
32         return x*0xfful / 0xffff;
33 }
34
35 static unsigned long wm_pixel(const XColor *c)
36 {
37         return 0xff000000
38              | scale16to8(c->red) << 16
39              | scale16to8(c->green) << 8
40              | scale16to8(c->blue);
41 }
42
43 static void format_row(unsigned long *row, const XColor *c,
44                        unsigned s, unsigned y, unsigned w, unsigned h)
45 {
46         unsigned x;
47
48         for (x = 0; x < w; x++) {
49                 row[x] = wm_pixel(&c[COLOUR_PRIMARY]);
50                 if (x < s || y < s)
51                         row[x] = wm_pixel(&c[COLOUR_LIGHT]);
52                 if ((x+s >= w && x+y >= w) || (y+s >= h && x+y >= h))
53                         row[x] = wm_pixel(&c[COLOUR_DARK]);
54         }
55 }
56
57 /*
58  * The 16x16 icon is drawn with 1px shadow, 6x6 tiles, with 1 pixel cropped off
59  * all the edge tiles
60  */
61 void ewmh_tile16(unsigned long *icon, const XColor *c, int tile_x, int tile_y)
62 {
63         int out_x, out_y, out_w, y;
64         unsigned long row[6];
65
66         out_x = tile_x * 11 / 2;
67         out_y = tile_y * 11 / 2;
68         out_w = (5 + (tile_x == 1)) * sizeof row[0];
69
70         for (y = 0+(tile_y == 0); y < 6-(tile_y == 2); y++) {
71                 format_row(row, c, 1, y, 6, 6);
72                 memcpy(&icon[16 * out_y++ + out_x], &row[tile_x == 0], out_w);
73         }
74 }
75
76 /*
77  * The 24x24 icon is drawn with 1px shadow and 8x8 tiles.
78  */
79 void ewmh_tile24(unsigned long *icon, const XColor *c, int tile_x, int tile_y)
80 {
81         int out_x, out_y, y;
82         unsigned long row[8];
83
84         out_x = tile_x * 8;
85         out_y = tile_y * 8;
86
87         for (y = 0; y < 8; y++) {
88                 format_row(row, c, 1, y, 8, 8);
89                 memcpy(&icon[24 * out_y++ + out_x], row, sizeof row);
90         }
91 }
92
93 /*
94  * The 32x32 icon is drawn with 1px shadow with slightly uneven tiles on
95  * an 11-10-11 pixel grid.
96  */
97 void ewmh_tile32(unsigned long *icon, const XColor *c, int tile_x, int tile_y)
98 {
99         int out_x, out_y, out_w, out_h, y;
100         unsigned long row[11];
101
102         out_x = 10*tile_x + (tile_x > 0);
103         out_y = 10*tile_y + (tile_y > 0);
104         out_w = 10 + (tile_x != 1);
105         out_h = 10 + (tile_y != 1);
106
107         for (y = 0; y < out_h; y++) {
108                 format_row(row, c, 1, y, out_w, out_h);
109                 memcpy(&icon[32 * out_y++ + out_x], row, out_w * sizeof row[0]);
110         }
111 }
112
113 /*
114  * The 48x48 icon is drawn with 2px shadow and 16x16 tiles.
115  */
116 void ewmh_tile48(unsigned long *icon, const XColor *c, int tile_x, int tile_y)
117 {
118         int out_x, out_y, y;
119         unsigned long row[16];
120
121         out_x = tile_x * 16;
122         out_y = tile_y * 16;
123
124         for (y = 0; y < 16; y++) {
125                 format_row(row, c, 2, y, 16, 16);
126                 memcpy(&icon[48 * out_y++ + out_x], row, sizeof row);
127         }
128 }
129
130 void *ewmh_icon_alloc(unsigned long **sizes)
131 {
132         unsigned long *buf;
133
134         buf = calloc(sizeof *buf, EWMH_ICON_NELEM);
135         if (buf) {
136                 sizes[ICON_16x16] = buf;
137                 *sizes[ICON_16x16]++ = 16;
138                 *sizes[ICON_16x16]++ = 16;
139
140                 sizes[ICON_24x24] = sizes[ICON_16x16] + 16*16;
141                 *sizes[ICON_24x24]++ = 24;
142                 *sizes[ICON_24x24]++ = 24;
143
144                 sizes[ICON_32x32] = sizes[ICON_24x24] + 24*24;
145                 *sizes[ICON_32x32]++ = 32;
146                 *sizes[ICON_32x32]++ = 32;
147
148                 sizes[ICON_48x48] = sizes[ICON_32x32] + 32*32;
149                 *sizes[ICON_48x48]++ = 48;
150                 *sizes[ICON_48x48]++ = 48;
151         }
152
153         return buf;
154 }
155
156 #if !X_DISPLAY_MISSING
157
158 /*
159  * EWMH-supporting window managers that handle _NET_WM_ICON add this atom to
160  * the _NET_SUPPORTED list on the root window.  Look for that and return 1
161  * if it is found, or 0 otherwise.
162  */
163 int ewmh_probe_wm_icon(Widget shell)
164 {
165         Display *display = XtDisplay(shell);
166         Screen *screen = XtScreen(shell);
167         Window root = RootWindowOfScreen(screen);
168         Atom net_supported, net_wm_icon, type;
169
170         unsigned long offset = 0, i, nitems, bytes_after, *props;
171         unsigned char *prop_return;
172         int format;
173
174         net_wm_icon = XInternAtom(display, "_NET_WM_ICON", 0);
175         net_supported = XInternAtom(display, "_NET_SUPPORTED", 0);
176         do {
177                 XGetWindowProperty(display, root, net_supported, offset, 10,
178                                             0, XA_ATOM, &type, &format,
179                                             &nitems, &bytes_after,
180                                             &prop_return);
181
182                 if (format != 32 || type != XA_ATOM)
183                         break;
184                 offset += nitems;
185
186                 props = (void *)prop_return;
187                 for (i = 0; i < nitems; i++) {
188                         if (props[i] == net_wm_icon) {
189                                 return 1;
190                         }
191                 }
192         } while (nitems > 0 && bytes_after > 0);
193
194         return 0;
195 }
196
197 #endif