blob: b45cba539a814a69dec87291b345910093ddd4b3 [file] [log] [blame]
Kristian Høgsberg558949b2011-12-21 22:54:49 -05001/*
2 * Copyright © 2011 Benjamin Franzke
3 * Copyright © 2011 Intel Corporation
4 *
5 * Permission to use, copy, modify, distribute, and sell this software and its
6 * documentation for any purpose is hereby granted without fee, provided that
7 * the above copyright notice appear in all copies and that both that copyright
8 * notice and this permission notice appear in supporting documentation, and
9 * that the name of the copyright holders not be used in advertising or
10 * publicity pertaining to distribution of the software without specific,
11 * written prior permission. The copyright holders make no representations
12 * about the suitability of this software for any purpose. It is provided "as
13 * is" without express or implied warranty.
14 *
15 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
19 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
20 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
21 * OF THIS SOFTWARE.
22 */
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <stdbool.h>
28#include <assert.h>
29#include <unistd.h>
30#include <sys/mman.h>
31
32#include <wayland-client.h>
33#include <wayland-egl.h>
34
35struct touch {
36 struct wl_display *display;
37 struct wl_compositor *compositor;
38 struct wl_shell *shell;
39 struct wl_shm *shm;
40 struct wl_input_device *input_device;
41 struct wl_surface *surface;
42 struct wl_shell_surface *shell_surface;
43 struct wl_buffer *buffer;
44 int has_argb;
45 uint32_t mask;
46 int width, height;
47 void *data;
48};
49
50static void
51create_shm_buffer(struct touch *touch)
52{
53 char filename[] = "/tmp/wayland-shm-XXXXXX";
54 int fd, size, stride;
55
56 fd = mkstemp(filename);
57 if (fd < 0) {
58 fprintf(stderr, "open %s failed: %m\n", filename);
59 exit(1);
60 }
61 stride = touch->width * 4;
62 size = stride * touch->height;
63 if (ftruncate(fd, size) < 0) {
64 fprintf(stderr, "ftruncate failed: %m\n");
65 close(fd);
66 exit(1);
67 }
68
69 touch->data =
70 mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
71 unlink(filename);
72
73 if (touch->data == MAP_FAILED) {
74 fprintf(stderr, "mmap failed: %m\n");
75 close(fd);
76 exit(1);
77 }
78
79 touch->buffer =
80 wl_shm_create_buffer(touch->shm, fd,
81 touch->width, touch->height, stride,
Kristian Høgsberg8e81df42012-01-11 14:24:46 -050082 WL_SHM_FORMAT_ARGB8888);
Kristian Høgsberg558949b2011-12-21 22:54:49 -050083
84 close(fd);
85}
86
87static void
88shm_format(void *data, struct wl_shm *wl_shm, uint32_t format)
89{
90 struct touch *touch = data;
91
Kristian Høgsberg8e81df42012-01-11 14:24:46 -050092 if (format == WL_SHM_FORMAT_ARGB8888)
Kristian Høgsberg558949b2011-12-21 22:54:49 -050093 touch->has_argb = 1;
94}
95
96struct wl_shm_listener shm_listenter = {
97 shm_format
98};
99
100
101static void
102input_device_handle_motion(void *data, struct wl_input_device *input_device,
Pekka Paalanenb29f4122012-02-14 14:59:18 +0200103 uint32_t time, int32_t sx, int32_t sy)
Kristian Høgsberg558949b2011-12-21 22:54:49 -0500104{
105}
106
107static void
108input_device_handle_button(void *data,
109 struct wl_input_device *input_device,
110 uint32_t time, uint32_t button, uint32_t state)
111{
112}
113
114static void
115input_device_handle_key(void *data, struct wl_input_device *input_device,
116 uint32_t time, uint32_t key, uint32_t state)
117{
118}
119
120static void
121input_device_handle_pointer_focus(void *data,
122 struct wl_input_device *input_device,
123 uint32_t time, struct wl_surface *surface,
Pekka Paalanenb29f4122012-02-14 14:59:18 +0200124 int32_t sx, int32_t sy)
Kristian Høgsberg558949b2011-12-21 22:54:49 -0500125{
126}
127
128static void
129input_device_handle_keyboard_focus(void *data,
130 struct wl_input_device *input_device,
131 uint32_t time,
132 struct wl_surface *surface,
133 struct wl_array *keys)
134{
135}
136
137static void
138touch_paint(struct touch *touch, int32_t x, int32_t y, int32_t id)
139{
140 uint32_t *p, c;
141 static const uint32_t colors[] = {
142 0xffff0000,
143 0xffffff00,
144 0xff0000ff,
145 0xffff00ff,
146 };
147
148 if (id < ARRAY_LENGTH(colors))
149 c = colors[id];
150 else
151 c = 0xffffffff;
152
153 if (x < 1 || touch->width - 1 < x ||
154 y < 1 || touch->height - 1 < y)
155 return;
156
157 p = (uint32_t *) touch->data + (x - 1) + (y -1 ) * touch->width;
158 p[1] = c;
159 p += touch->width;
160 p[0] = c;
161 p[1] = c;
162 p[2] = c;
163 p += touch->width;
164 p[1] = c;
165
166 wl_buffer_damage(touch->buffer, 0, 0, touch->width, touch->height);
167 wl_surface_damage(touch->surface,
168 0, 0, touch->width, touch->height);
169}
170
171static void
172input_device_handle_touch_down(void *data,
173 struct wl_input_device *wl_input_device,
174 uint32_t time, struct wl_surface *surface,
175 int32_t id, int32_t x, int32_t y)
176{
177 struct touch *touch = data;
178
179 touch_paint(touch, x, y, id);
180}
181
182static void
183input_device_handle_touch_up(void *data,
184 struct wl_input_device *wl_input_device,
185 uint32_t time, int32_t id)
186{
187}
188
189static void
190input_device_handle_touch_motion(void *data,
191 struct wl_input_device *wl_input_device,
192 uint32_t time,
193 int32_t id, int32_t x, int32_t y)
194{
195 struct touch *touch = data;
196
197 touch_paint(touch, x, y, id);
198}
199
200static void
201input_device_handle_touch_frame(void *data,
202 struct wl_input_device *wl_input_device)
203{
204}
205
206static void
207input_device_handle_touch_cancel(void *data,
208 struct wl_input_device *wl_input_device)
209{
210}
211
212static const struct wl_input_device_listener input_device_listener = {
213 input_device_handle_motion,
214 input_device_handle_button,
215 input_device_handle_key,
216 input_device_handle_pointer_focus,
217 input_device_handle_keyboard_focus,
218 input_device_handle_touch_down,
219 input_device_handle_touch_up,
220 input_device_handle_touch_motion,
221 input_device_handle_touch_frame,
222 input_device_handle_touch_cancel,
223};
224
225static void
226handle_global(struct wl_display *display, uint32_t id,
227 const char *interface, uint32_t version, void *data)
228{
229 struct touch *touch = data;
230
231 if (strcmp(interface, "wl_compositor") == 0) {
232 touch->compositor =
233 wl_display_bind(display, id, &wl_compositor_interface);
234 } else if (strcmp(interface, "wl_shell") == 0) {
235 touch->shell =
236 wl_display_bind(display, id, &wl_shell_interface);
237 } else if (strcmp(interface, "wl_shm") == 0) {
238 touch->shm = wl_display_bind(display, id, &wl_shm_interface);
239 wl_shm_add_listener(touch->shm, &shm_listenter, touch);
240 } else if (strcmp(interface, "wl_input_device") == 0) {
241 touch->input_device =
242 wl_display_bind(display, id,
243 &wl_input_device_interface);
244 wl_input_device_add_listener(touch->input_device,
245 &input_device_listener, touch);
246 }
247}
248
249static int
250event_mask_update(uint32_t mask, void *data)
251{
252 struct touch *touch = data;
253
254 touch->mask = mask;
255
256 return 0;
257}
258
259static struct touch *
260touch_create(int width, int height)
261{
262 struct touch *touch;
263
264 touch = malloc(sizeof *touch);
265 touch->display = wl_display_connect(NULL);
266 assert(touch->display);
267
268 touch->has_argb = 0;
269 wl_display_add_global_listener(touch->display, handle_global, touch);
270 wl_display_iterate(touch->display, WL_DISPLAY_READABLE);
271 wl_display_roundtrip(touch->display);
272
273 if (!touch->has_argb) {
274 fprintf(stderr, "WL_SHM_FORMAT_ARGB32 not available\n");
275 exit(1);
276 }
277
278 wl_display_get_fd(touch->display, event_mask_update, touch);
279
280 touch->width = width;
281 touch->height = height;
282 touch->surface = wl_compositor_create_surface(touch->compositor);
283 touch->shell_surface = wl_shell_get_shell_surface(touch->shell,
284 touch->surface);
285 create_shm_buffer(touch);
286
287 wl_shell_surface_set_toplevel(touch->shell_surface);
288 wl_surface_set_user_data(touch->surface, touch);
289
290 memset(touch->data, 64, width * height * 4);
291 wl_buffer_damage(touch->buffer, 0, 0, width, height);
292 wl_surface_attach(touch->surface, touch->buffer, 0, 0);
293 wl_surface_damage(touch->surface, 0, 0, width, height);
294
295 return touch;
296}
297
298int
299main(int argc, char **argv)
300{
301 struct touch *touch;
302
303 touch = touch_create(600, 500);
304
305 while (true)
306 wl_display_iterate(touch->display, touch->mask);
307
308 return 0;
309}