icount: Take iothread lock when running QEMU timers
[qemu/ar7.git] / ui / cursor.c
blob835f0802f951a3ec965b95d7742eda1704c8fccd
1 #include "qemu/osdep.h"
2 #include "ui/console.h"
4 #include "cursor_hidden.xpm"
5 #include "cursor_left_ptr.xpm"
7 /* for creating built-in cursors */
8 static QEMUCursor *cursor_parse_xpm(const char *xpm[])
10 QEMUCursor *c;
11 uint32_t ctab[128];
12 unsigned int width, height, colors, chars;
13 unsigned int line = 0, i, r, g, b, x, y, pixel;
14 char name[16];
15 uint8_t idx;
17 /* parse header line: width, height, #colors, #chars */
18 if (sscanf(xpm[line], "%u %u %u %u",
19 &width, &height, &colors, &chars) != 4) {
20 fprintf(stderr, "%s: header parse error: \"%s\"\n",
21 __func__, xpm[line]);
22 return NULL;
24 if (chars != 1) {
25 fprintf(stderr, "%s: chars != 1 not supported\n", __func__);
26 return NULL;
28 line++;
30 /* parse color table */
31 for (i = 0; i < colors; i++, line++) {
32 if (sscanf(xpm[line], "%c c %15s", &idx, name) == 2) {
33 if (sscanf(name, "#%02x%02x%02x", &r, &g, &b) == 3) {
34 ctab[idx] = (0xff << 24) | (b << 16) | (g << 8) | r;
35 continue;
37 if (strcmp(name, "None") == 0) {
38 ctab[idx] = 0x00000000;
39 continue;
42 fprintf(stderr, "%s: color parse error: \"%s\"\n",
43 __func__, xpm[line]);
44 return NULL;
47 /* parse pixel data */
48 c = cursor_alloc(width, height);
49 assert(c != NULL);
51 for (pixel = 0, y = 0; y < height; y++, line++) {
52 for (x = 0; x < height; x++, pixel++) {
53 idx = xpm[line][x];
54 c->data[pixel] = ctab[idx];
57 return c;
60 /* nice for debugging */
61 void cursor_print_ascii_art(QEMUCursor *c, const char *prefix)
63 uint32_t *data = c->data;
64 int x,y;
66 for (y = 0; y < c->height; y++) {
67 fprintf(stderr, "%s: %2d: |", prefix, y);
68 for (x = 0; x < c->width; x++, data++) {
69 if ((*data & 0xff000000) != 0xff000000) {
70 fprintf(stderr, " "); /* transparent */
71 } else if ((*data & 0x00ffffff) == 0x00ffffff) {
72 fprintf(stderr, "."); /* white */
73 } else if ((*data & 0x00ffffff) == 0x00000000) {
74 fprintf(stderr, "X"); /* black */
75 } else {
76 fprintf(stderr, "o"); /* other */
79 fprintf(stderr, "|\n");
83 QEMUCursor *cursor_builtin_hidden(void)
85 return cursor_parse_xpm(cursor_hidden_xpm);
88 QEMUCursor *cursor_builtin_left_ptr(void)
90 return cursor_parse_xpm(cursor_left_ptr_xpm);
93 QEMUCursor *cursor_alloc(int width, int height)
95 QEMUCursor *c;
96 size_t datasize = width * height * sizeof(uint32_t);
98 if (width > 512 || height > 512) {
99 return NULL;
102 c = g_malloc0(sizeof(QEMUCursor) + datasize);
103 c->width = width;
104 c->height = height;
105 c->refcount = 1;
106 return c;
109 void cursor_get(QEMUCursor *c)
111 c->refcount++;
114 void cursor_put(QEMUCursor *c)
116 if (c == NULL)
117 return;
118 c->refcount--;
119 if (c->refcount)
120 return;
121 g_free(c);
124 int cursor_get_mono_bpl(QEMUCursor *c)
126 return DIV_ROUND_UP(c->width, 8);
129 void cursor_set_mono(QEMUCursor *c,
130 uint32_t foreground, uint32_t background, uint8_t *image,
131 int transparent, uint8_t *mask)
133 uint32_t *data = c->data;
134 uint8_t bit;
135 int x,y,bpl;
136 bool expand_bitmap_only = image == mask;
137 bool has_inverted_colors = false;
138 const uint32_t inverted = 0x80000000;
141 * Converts a monochrome bitmap with XOR mask 'image' and AND mask 'mask':
142 * https://docs.microsoft.com/en-us/windows-hardware/drivers/display/drawing-monochrome-pointers
144 bpl = cursor_get_mono_bpl(c);
145 for (y = 0; y < c->height; y++) {
146 bit = 0x80;
147 for (x = 0; x < c->width; x++, data++) {
148 if (transparent && mask[x/8] & bit) {
149 if (!expand_bitmap_only && image[x / 8] & bit) {
150 *data = inverted;
151 has_inverted_colors = true;
152 } else {
153 *data = 0x00000000;
155 } else if (!transparent && !(mask[x/8] & bit)) {
156 *data = 0x00000000;
157 } else if (image[x/8] & bit) {
158 *data = 0xff000000 | foreground;
159 } else {
160 *data = 0xff000000 | background;
162 bit >>= 1;
163 if (bit == 0) {
164 bit = 0x80;
167 mask += bpl;
168 image += bpl;
172 * If there are any pixels with inverted colors, create an outline (fill
173 * transparent neighbors with the background color) and use the foreground
174 * color as "inverted" color.
176 if (has_inverted_colors) {
177 data = c->data;
178 for (y = 0; y < c->height; y++) {
179 for (x = 0; x < c->width; x++, data++) {
180 if (*data == 0 /* transparent */ &&
181 ((x > 0 && data[-1] == inverted) ||
182 (x + 1 < c->width && data[1] == inverted) ||
183 (y > 0 && data[-c->width] == inverted) ||
184 (y + 1 < c->height && data[c->width] == inverted))) {
185 *data = 0xff000000 | background;
189 data = c->data;
190 for (x = 0; x < c->width * c->height; x++, data++) {
191 if (*data == inverted) {
192 *data = 0xff000000 | foreground;
198 void cursor_get_mono_image(QEMUCursor *c, int foreground, uint8_t *image)
200 uint32_t *data = c->data;
201 uint8_t bit;
202 int x,y,bpl;
204 bpl = cursor_get_mono_bpl(c);
205 memset(image, 0, bpl * c->height);
206 for (y = 0; y < c->height; y++) {
207 bit = 0x80;
208 for (x = 0; x < c->width; x++, data++) {
209 if (((*data & 0xff000000) == 0xff000000) &&
210 ((*data & 0x00ffffff) == foreground)) {
211 image[x/8] |= bit;
213 bit >>= 1;
214 if (bit == 0) {
215 bit = 0x80;
218 image += bpl;
222 void cursor_get_mono_mask(QEMUCursor *c, int transparent, uint8_t *mask)
224 uint32_t *data = c->data;
225 uint8_t bit;
226 int x,y,bpl;
228 bpl = cursor_get_mono_bpl(c);
229 memset(mask, 0, bpl * c->height);
230 for (y = 0; y < c->height; y++) {
231 bit = 0x80;
232 for (x = 0; x < c->width; x++, data++) {
233 if ((*data & 0xff000000) != 0xff000000) {
234 if (transparent != 0) {
235 mask[x/8] |= bit;
237 } else {
238 if (transparent == 0) {
239 mask[x/8] |= bit;
242 bit >>= 1;
243 if (bit == 0) {
244 bit = 0x80;
247 mask += bpl;