blob: b8eecde2fa9f4fe63ae441d65e3759dc11230836 [file] [log] [blame]
Kristian Høgsbergffd710e2008-12-02 15:15:01 -05001/*
2 * Copyright © 2008 Kristian Høgsberg
3 *
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -05004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
Kristian Høgsbergffd710e2008-12-02 15:15:01 -05008 *
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -05009 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Kristian Høgsbergffd710e2008-12-02 15:15:01 -050017 */
18
Kristian Høgsberg06bc2642010-12-01 09:50:16 -050019#define _GNU_SOURCE
20
Kristian Høgsberga9410222011-01-14 17:22:35 -050021#include "config.h"
22
Kristian Høgsberg16eb6752008-10-08 22:51:32 -040023#include <stdio.h>
24#include <string.h>
25#include <stdlib.h>
26#include <stdint.h>
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +010027#include <limits.h>
Kristian Høgsberg8d7ca6b2008-11-09 00:22:51 -050028#include <stdarg.h>
Kristian Høgsberg16eb6752008-10-08 22:51:32 -040029#include <sys/ioctl.h>
Kristian Høgsberg16eb6752008-10-08 22:51:32 -040030#include <fcntl.h>
31#include <unistd.h>
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -050032#include <gdk-pixbuf/gdk-pixbuf.h>
Kristian Høgsberg54879822008-11-23 17:07:32 -050033#include <math.h>
Kristian Høgsbergfc783d42010-06-11 12:56:24 -040034#include <linux/input.h>
Kristian Høgsberg890bc052008-12-30 14:31:33 -050035
Kristian Høgsberg4cca3492011-01-18 07:53:49 -050036#include "wayland-server.h"
Kristian Høgsberg82863022010-06-04 21:52:02 -040037#include "compositor.h"
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -050038
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -050039struct wlsc_switcher {
40 struct wlsc_compositor *compositor;
41 struct wlsc_surface *current;
42 struct wl_listener listener;
43};
44
Benjamin Franzkeec2e6422010-11-27 19:04:12 +010045/* The plan here is to generate a random anonymous socket name and
46 * advertise that through a service on the session dbus.
47 */
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -050048static const char *option_socket_name = NULL;
Kristian Høgsberg61a82512010-10-26 11:26:44 -040049static const char *option_background = "background.jpg";
50static const char *option_geometry = "1024x640";
51static int option_connector = 0;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050052
53static const GOptionEntry option_entries[] = {
54 { "background", 'b', 0, G_OPTION_ARG_STRING,
55 &option_background, "Background image" },
Kristian Høgsbergf5878fa2009-09-18 17:02:41 -040056 { "connector", 'c', 0, G_OPTION_ARG_INT,
57 &option_connector, "KMS connector" },
Kristian Høgsberg61a82512010-10-26 11:26:44 -040058 { "geometry", 'g', 0, G_OPTION_ARG_STRING,
59 &option_geometry, "Geometry" },
Benjamin Franzkeec2e6422010-11-27 19:04:12 +010060 { "socket", 's', 0, G_OPTION_ARG_STRING,
61 &option_socket_name, "Socket Name" },
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050062 { NULL }
63};
64
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050065static void
66wlsc_matrix_init(struct wlsc_matrix *matrix)
67{
68 static const struct wlsc_matrix identity = {
69 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 }
70 };
71
72 memcpy(matrix, &identity, sizeof identity);
73}
74
75static void
76wlsc_matrix_multiply(struct wlsc_matrix *m, const struct wlsc_matrix *n)
77{
78 struct wlsc_matrix tmp;
Kristian Høgsberg27803c62010-06-06 22:23:21 -040079 const GLfloat *row, *column;
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050080 div_t d;
81 int i, j;
82
83 for (i = 0; i < 16; i++) {
84 tmp.d[i] = 0;
85 d = div(i, 4);
86 row = m->d + d.quot * 4;
87 column = n->d + d.rem;
88 for (j = 0; j < 4; j++)
89 tmp.d[i] += row[j] * column[j * 4];
90 }
91 memcpy(m, &tmp, sizeof tmp);
92}
93
94static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -040095wlsc_matrix_translate(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050096{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -050097 struct wlsc_matrix translate = {
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050098 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, x, y, z, 1 }
99 };
100
101 wlsc_matrix_multiply(matrix, &translate);
102}
103
104static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400105wlsc_matrix_scale(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500106{
107 struct wlsc_matrix scale = {
108 { x, 0, 0, 0, 0, y, 0, 0, 0, 0, z, 0, 0, 0, 0, 1 }
109 };
110
111 wlsc_matrix_multiply(matrix, &scale);
112}
113
114static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400115wlsc_matrix_transform(struct wlsc_matrix *matrix, struct wlsc_vector *v)
116{
117 int i, j;
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400118 struct wlsc_vector t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400119
120 for (i = 0; i < 4; i++) {
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400121 t.f[i] = 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400122 for (j = 0; j < 4; j++)
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400123 t.f[i] += v->f[j] * matrix->d[i + j * 4];
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400124 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500125
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400126 *v = t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400127}
128
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400129static struct wlsc_surface *
130wlsc_surface_create(struct wlsc_compositor *compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400131 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500132{
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400133 struct wlsc_surface *surface;
134
135 surface = malloc(sizeof *surface);
136 if (surface == NULL)
137 return NULL;
138
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500139 wl_list_init(&surface->surface.destroy_listener_list);
Kristian Høgsbergf6b14712011-01-06 15:32:14 -0500140 wl_list_init(&surface->link);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500141 surface->map_type = WLSC_SURFACE_MAP_UNMAPPED;
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500142
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500143 glGenTextures(1, &surface->texture);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400144 glBindTexture(GL_TEXTURE_2D, surface->texture);
145 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
146 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
147 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
148 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
149
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500150 surface->compositor = compositor;
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500151 surface->visual = NULL;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400152 surface->x = x;
153 surface->y = y;
154 surface->width = width;
155 surface->height = height;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400156 wlsc_matrix_init(&surface->matrix);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400157 wlsc_matrix_scale(&surface->matrix, width, height, 1);
158 wlsc_matrix_translate(&surface->matrix, x, y, 0);
159
160 wlsc_matrix_init(&surface->matrix_inv);
161 wlsc_matrix_translate(&surface->matrix_inv, -x, -y, 0);
162 wlsc_matrix_scale(&surface->matrix_inv, 1.0 / width, 1.0 / height, 1);
Kristian Høgsberg1e4b86a2008-11-23 23:41:08 -0500163
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400164 return surface;
Kristian Høgsberg54879822008-11-23 17:07:32 -0500165}
166
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500167void
168wlsc_surface_damage_rectangle(struct wlsc_surface *surface,
169 int32_t x, int32_t y,
170 int32_t width, int32_t height)
171{
172 struct wlsc_compositor *compositor = surface->compositor;
173
174 pixman_region32_union_rect(&compositor->damage_region,
175 &compositor->damage_region,
176 surface->x + x, surface->y + y,
177 width, height);
178 wlsc_compositor_schedule_repaint(compositor);
179}
180
181void
182wlsc_surface_damage(struct wlsc_surface *surface)
183{
184 wlsc_surface_damage_rectangle(surface, 0, 0,
185 surface->width, surface->height);
186}
187
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500188uint32_t
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500189get_time(void)
190{
191 struct timeval tv;
192
193 gettimeofday(&tv, NULL);
194
195 return tv.tv_sec * 1000 + tv.tv_usec / 1000;
196}
197
Kristian Høgsberg54879822008-11-23 17:07:32 -0500198static void
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400199destroy_surface(struct wl_resource *resource, struct wl_client *client)
Kristian Høgsberg54879822008-11-23 17:07:32 -0500200{
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400201 struct wlsc_surface *surface =
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500202 container_of(resource, struct wlsc_surface, surface.resource);
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500203 struct wl_listener *l, *next;
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500204 uint32_t time;
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400205
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500206 wlsc_surface_damage(surface);
207
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400208 wl_list_remove(&surface->link);
209 glDeleteTextures(1, &surface->texture);
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400210
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500211 time = get_time();
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500212 wl_list_for_each_safe(l, next,
213 &surface->surface.destroy_listener_list, link)
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500214 l->func(l, &surface->surface, time);
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400215
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400216 free(surface);
Kristian Høgsberg54879822008-11-23 17:07:32 -0500217}
218
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500219uint32_t *
220wlsc_load_image(const char *filename, int width, int height)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500221{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400222 GdkPixbuf *pixbuf;
223 GError *error = NULL;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500224 int stride, i, n_channels;
225 unsigned char *pixels, *end, *argb_pixels, *s, *d;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500226
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400227 pixbuf = gdk_pixbuf_new_from_file_at_scale(filename,
228 width, height,
229 FALSE, &error);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500230 if (error != NULL) {
231 fprintf(stderr, "failed to load image: %s\n", error->message);
232 g_error_free(error);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500233 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500234 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400235
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500236 stride = gdk_pixbuf_get_rowstride(pixbuf);
237 pixels = gdk_pixbuf_get_pixels(pixbuf);
238 n_channels = gdk_pixbuf_get_n_channels(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400239
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500240 argb_pixels = malloc (height * width * 4);
241 if (argb_pixels == NULL) {
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500242 g_object_unref(pixbuf);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500243 return NULL;
244 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400245
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500246 if (n_channels == 4) {
247 for (i = 0; i < height; i++) {
248 s = pixels + i * stride;
249 end = s + width * 4;
250 d = argb_pixels + i * width * 4;
251 while (s < end) {
252 unsigned int t;
253
254#define MULT(_d,c,a,t) \
255 do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0)
256
257 MULT(d[0], s[2], s[3], t);
258 MULT(d[1], s[1], s[3], t);
259 MULT(d[2], s[0], s[3], t);
260 d[3] = s[3];
261 s += 4;
262 d += 4;
263 }
264 }
265 } else if (n_channels == 3) {
266 for (i = 0; i < height; i++) {
267 s = pixels + i * stride;
268 end = s + width * 3;
269 d = argb_pixels + i * width * 4;
270 while (s < end) {
271 d[0] = s[2];
272 d[1] = s[1];
273 d[2] = s[0];
274 d[3] = 0xff;
275 s += 3;
276 d += 4;
277 }
278 }
279 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400280
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500281 g_object_unref(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400282
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500283 return (uint32_t *) argb_pixels;
284}
285
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100286static void
287wlsc_buffer_attach(struct wl_buffer *buffer, struct wl_surface *surface)
288{
289 struct wlsc_surface *es = (struct wlsc_surface *) surface;
290 struct wlsc_compositor *ec = es->compositor;
291 EGLImageKHR *image;
292
293 if (buffer->attach) {
294 buffer->attach(buffer, surface);
295 } else {
296 image = eglCreateImageKHR(ec->display, ec->context,
297 EGL_WAYLAND_BUFFER_WL,
298 buffer, NULL);
299
300 glBindTexture(GL_TEXTURE_2D, es->texture);
301 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, image);
302 es->visual = buffer->visual;
303 eglDestroyImageKHR(ec->display, image);
304 }
305}
306
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500307static struct wl_buffer *
308create_buffer_from_png(struct wlsc_compositor *ec,
309 const char *filename, int width, int height)
310{
311 uint32_t *pixels;
312 struct wl_buffer *buffer;
313
314 pixels = wlsc_load_image(filename, width, height);
Tim Wiederhakeac5c5e72011-01-27 01:32:36 +0100315 if(pixels == NULL)
316 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500317
Benjamin Franzkec649a922011-03-02 11:56:04 +0100318 buffer = ec->create_buffer(ec, width, height, width * 4,
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500319 &ec->compositor.premultiplied_argb_visual,
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500320 pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500321
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500322 free(pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500323
324 return buffer;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500325}
326
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400327static const struct {
328 const char *filename;
329 int hotspot_x, hotspot_y;
330} pointer_images[] = {
Kristian Høgsberg4219a402010-08-16 16:43:03 -0400331 { DATADIR "/wayland/bottom_left_corner.png", 6, 30 },
332 { DATADIR "/wayland/bottom_right_corner.png", 28, 28 },
333 { DATADIR "/wayland/bottom_side.png", 16, 20 },
334 { DATADIR "/wayland/grabbing.png", 20, 17 },
335 { DATADIR "/wayland/left_ptr.png", 10, 5 },
336 { DATADIR "/wayland/left_side.png", 10, 20 },
337 { DATADIR "/wayland/right_side.png", 30, 19 },
338 { DATADIR "/wayland/top_left_corner.png", 8, 8 },
339 { DATADIR "/wayland/top_right_corner.png", 26, 8 },
340 { DATADIR "/wayland/top_side.png", 18, 8 },
341 { DATADIR "/wayland/xterm.png", 15, 15 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400342};
343
344static void
345create_pointer_images(struct wlsc_compositor *ec)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500346{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400347 int i, count;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400348 const int width = 32, height = 32;
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400349
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400350 count = ARRAY_LENGTH(pointer_images);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400351 ec->pointer_buffers = malloc(count * sizeof *ec->pointer_buffers);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400352 for (i = 0; i < count; i++) {
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400353 ec->pointer_buffers[i] =
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500354 create_buffer_from_png(ec,
355 pointer_images[i].filename,
356 width, height);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400357 }
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400358}
359
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500360static struct wlsc_surface *
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500361background_create(struct wlsc_output *output, const char *filename)
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500362{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500363 struct wlsc_surface *background;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500364 struct wl_buffer *buffer;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500365
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400366 background = wlsc_surface_create(output->compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400367 output->x, output->y,
368 output->width, output->height);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500369 if (background == NULL)
370 return NULL;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500371
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500372 buffer = create_buffer_from_png(output->compositor,
373 filename,
374 output->width, output->height);
Benjamin Franzked3b023e2011-01-15 12:34:49 +0100375 if (buffer == NULL) {
376 free(background);
377 return NULL;
378 }
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100379
380 wlsc_buffer_attach(buffer, &background->surface);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500381
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500382 return background;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500383}
384
385static void
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500386wlsc_surface_draw(struct wlsc_surface *es,
387 struct wlsc_output *output, pixman_region32_t *clip)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500388{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500389 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500390 GLfloat *v, inv_width, inv_height;
391 unsigned int *p;
392 pixman_region32_t repaint;
393 pixman_box32_t *rectangles;
394 int i, n;
395
396 pixman_region32_init_rect(&repaint,
397 es->x, es->y, es->width, es->height);
398 pixman_region32_intersect(&repaint, &repaint, clip);
399 if (!pixman_region32_not_empty(&repaint))
400 return;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500401
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500402 if (es->visual == &ec->compositor.argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500403 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
404 glEnable(GL_BLEND);
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500405 } else if (es->visual == &ec->compositor.premultiplied_argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500406 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
407 glEnable(GL_BLEND);
408 } else {
409 glDisable(GL_BLEND);
410 }
411
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500412 rectangles = pixman_region32_rectangles(&repaint, &n);
413 v = wl_array_add(&ec->vertices, n * 16 * sizeof *v);
414 p = wl_array_add(&ec->indices, n * 6 * sizeof *p);
415 inv_width = 1.0 / es->width;
416 inv_height = 1.0 / es->height;
417 for (i = 0; i < n; i++, v += 16, p += 6) {
418 v[ 0] = rectangles[i].x1;
419 v[ 1] = rectangles[i].y1;
420 v[ 2] = (GLfloat) (rectangles[i].x1 - es->x) * inv_width;
421 v[ 3] = (GLfloat) (rectangles[i].y1 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500422
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500423 v[ 4] = rectangles[i].x1;
424 v[ 5] = rectangles[i].y2;
425 v[ 6] = v[ 2];
426 v[ 7] = (GLfloat) (rectangles[i].y2 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500427
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500428 v[ 8] = rectangles[i].x2;
429 v[ 9] = rectangles[i].y1;
430 v[10] = (GLfloat) (rectangles[i].x2 - es->x) * inv_width;
431 v[11] = v[ 3];
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500432
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500433 v[12] = rectangles[i].x2;
434 v[13] = rectangles[i].y2;
435 v[14] = v[10];
436 v[15] = v[ 7];
437
438 p[0] = i * 4 + 0;
439 p[1] = i * 4 + 1;
440 p[2] = i * 4 + 2;
441 p[3] = i * 4 + 2;
442 p[4] = i * 4 + 1;
443 p[5] = i * 4 + 3;
444 }
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500445
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500446 glBindTexture(GL_TEXTURE_2D, es->texture);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500447 v = ec->vertices.data;
448 glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[0]);
449 glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[2]);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400450 glEnableVertexAttribArray(0);
451 glEnableVertexAttribArray(1);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500452 glDrawElements(GL_TRIANGLES, n * 6, GL_UNSIGNED_INT, ec->indices.data);
453
454 ec->vertices.size = 0;
455 ec->indices.size = 0;
456 pixman_region32_fini(&repaint);
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500457}
458
459static void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400460wlsc_surface_raise(struct wlsc_surface *surface)
461{
462 struct wlsc_compositor *compositor = surface->compositor;
463
464 wl_list_remove(&surface->link);
Kristian Høgsberg747638b2010-07-12 17:06:06 -0400465 wl_list_insert(&compositor->surface_list, &surface->link);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400466}
467
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500468void
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400469wlsc_surface_update_matrix(struct wlsc_surface *es)
470{
471 wlsc_matrix_init(&es->matrix);
472 wlsc_matrix_scale(&es->matrix, es->width, es->height, 1);
473 wlsc_matrix_translate(&es->matrix, es->x, es->y, 0);
474
475 wlsc_matrix_init(&es->matrix_inv);
476 wlsc_matrix_translate(&es->matrix_inv, -es->x, -es->y, 0);
477 wlsc_matrix_scale(&es->matrix_inv,
478 1.0 / es->width, 1.0 / es->height, 1);
479}
480
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400481void
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100482wlsc_output_finish_frame(struct wlsc_output *output, int msecs)
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400483{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100484 struct wlsc_compositor *compositor = output->compositor;
485 struct wlsc_surface *es;
486
487 wl_list_for_each(es, &compositor->surface_list, link) {
488 if (es->output == output) {
489 wl_display_post_frame(compositor->wl_display,
490 &es->surface, msecs);
491 }
492 }
493
494 output->finished = 1;
495
Kristian Høgsberg5d312db2009-09-12 16:57:02 -0400496 wl_event_source_timer_update(compositor->timer_source, 5);
Kristian Høgsbergf30c67e2011-02-06 12:58:44 -0500497 compositor->repaint_on_timeout = 1;
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400498}
499
500static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400501wlsc_output_repaint(struct wlsc_output *output)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400502{
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500503 struct wlsc_compositor *ec = output->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500504 struct wlsc_surface *es;
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -0500505 struct wlsc_input_device *eid;
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400506 pixman_region32_t new_damage, total_damage, repaint;
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500507
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100508 output->prepare_render(output);
509
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500510 glViewport(0, 0, output->width, output->height);
Kristian Høgsbergfdec2362001-01-01 22:23:51 -0500511
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500512 glUniformMatrix4fv(ec->proj_uniform, 1, GL_FALSE, output->matrix.d);
513 glUniform1i(ec->tex_uniform, 0);
514
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500515 pixman_region32_init(&new_damage);
516 pixman_region32_init(&total_damage);
517 pixman_region32_intersect_rect(&new_damage,
518 &ec->damage_region,
519 output->x, output->y,
520 output->width, output->height);
521 pixman_region32_subtract(&ec->damage_region,
522 &ec->damage_region, &new_damage);
523 pixman_region32_union(&total_damage, &new_damage,
524 &output->previous_damage_region);
525 pixman_region32_copy(&output->previous_damage_region, &new_damage);
526
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500527 es = container_of(ec->surface_list.next, struct wlsc_surface, link);
528 if (es->map_type == WLSC_SURFACE_MAP_FULLSCREEN &&
529 es->fullscreen_output == output) {
530 if (es->width < output->width || es->height < output->height)
531 glClear(GL_COLOR_BUFFER_BIT);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500532 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500533 } else {
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400534 wl_list_for_each(es, &ec->surface_list, link) {
535 if (es->visual != &ec->compositor.rgb_visual)
536 continue;
537
538 pixman_region32_init_rect(&repaint,
539 es->x, es->y,
540 es->width, es->height);
541 wlsc_surface_draw(es, output, &total_damage);
542 pixman_region32_subtract(&total_damage,
543 &total_damage, &repaint);
544 }
545
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500546 if (output->background)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500547 wlsc_surface_draw(output->background,
548 output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500549 else
550 glClear(GL_COLOR_BUFFER_BIT);
551
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500552 wl_list_for_each_reverse(es, &ec->surface_list, link) {
553 if (ec->switcher &&
554 ec->switcher->current == es)
555 continue;
556
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400557 if (es->visual == &ec->compositor.rgb_visual) {
558 pixman_region32_union_rect(&total_damage,
559 &total_damage,
560 es->x, es->y,
561 es->width, es->height);
562 continue;
563 }
564
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500565 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500566 }
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500567 }
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400568
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500569 if (ec->switcher)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500570 wlsc_surface_draw(ec->switcher->current,
571 output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500572
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400573 if (ec->focus)
574 wl_list_for_each(eid, &ec->input_device_list, link)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500575 wlsc_surface_draw(eid->sprite, output, &total_damage);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500576}
577
578static void
579repaint(void *data)
580{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500581 struct wlsc_compositor *ec = data;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500582 struct wlsc_output *output;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100583 int repainted_all_outputs = 1;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500584
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100585 wl_list_for_each(output, &ec->output_list, link) {
586 if (!output->repaint_needed)
587 continue;
588
589 if (!output->finished) {
590 repainted_all_outputs = 0;
591 continue;
592 }
593
594 wlsc_output_repaint(output);
595 output->finished = 0;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100596 output->repaint_needed = 0;
Kristian Høgsberg11e28282011-04-11 16:47:50 -0400597 output->present(output);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500598 }
599
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100600 if (repainted_all_outputs)
601 ec->repaint_on_timeout = 0;
602 else
603 wl_event_source_timer_update(ec->timer_source, 1);
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400604}
605
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400606void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400607wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400608{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100609 struct wlsc_output *output;
610
611 wl_list_for_each(output, &compositor->output_list, link)
612 output->repaint_needed = 1;
613
Kristian Høgsbergb0a167c2009-08-14 11:15:18 -0400614 if (compositor->repaint_on_timeout)
615 return;
616
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400617 wl_event_source_timer_update(compositor->timer_source, 1);
618 compositor->repaint_on_timeout = 1;
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400619}
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500620
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500621static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500622surface_destroy(struct wl_client *client,
623 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400624{
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500625 wl_resource_destroy(&surface->resource, client);
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400626}
627
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100628void
629wlsc_surface_assign_output(struct wlsc_surface *es)
630{
631 struct wlsc_compositor *ec = es->compositor;
632 struct wlsc_output *output;
633
634 struct wlsc_output *tmp = es->output;
635 es->output = NULL;
636
637 wl_list_for_each(output, &ec->output_list, link) {
638 if (output->x < es->x && es->x < output->x + output->width &&
639 output->y < es->y && es->y < output->y + output->height) {
640 if (output != tmp)
641 printf("assiging surface %p to output %p\n",
642 es, output);
643 es->output = output;
644 }
645 }
646
647 if (es->output == NULL) {
648 printf("no output found\n");
649 es->output = container_of(ec->output_list.next,
650 struct wlsc_output, link);
651 }
652}
653
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500654static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500655surface_attach(struct wl_client *client,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500656 struct wl_surface *surface, struct wl_buffer *buffer,
657 int32_t x, int32_t y)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400658{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500659 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400660
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500661 /* FIXME: This damages the entire old surface, but we should
662 * really just damage the part that's no longer covered by the
663 * surface. Anything covered by the new surface will be
664 * damaged by the client. */
665 wlsc_surface_damage(es);
666
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100667 wlsc_buffer_attach(buffer, surface);
668
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400669 es->buffer = buffer;
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500670 es->x += x;
671 es->y += y;
672 es->width = buffer->width;
673 es->height = buffer->height;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100674 if (x != 0 || y != 0)
675 wlsc_surface_assign_output(es);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500676 wlsc_surface_update_matrix(es);
Kristian Høgsbergf9212892008-10-11 18:40:23 -0400677}
678
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500679static void
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500680surface_map_toplevel(struct wl_client *client,
681 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400682{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500683 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100684 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400685
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500686 switch (es->map_type) {
687 case WLSC_SURFACE_MAP_UNMAPPED:
688 es->x = 10 + random() % 400;
689 es->y = 10 + random() % 400;
690 wlsc_surface_update_matrix(es);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100691 /* assign to first output */
692 es->output = container_of(ec->output_list.next,
693 struct wlsc_output, link);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500694 wl_list_insert(&es->compositor->surface_list, &es->link);
695 break;
696 case WLSC_SURFACE_MAP_TOPLEVEL:
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500697 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500698 case WLSC_SURFACE_MAP_FULLSCREEN:
699 es->fullscreen_output = NULL;
700 es->x = es->saved_x;
701 es->y = es->saved_y;
702 wlsc_surface_update_matrix(es);
703 break;
704 default:
705 break;
706 }
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500707
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500708 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500709 es->map_type = WLSC_SURFACE_MAP_TOPLEVEL;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400710}
711
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500712static void
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500713surface_map_transient(struct wl_client *client,
714 struct wl_surface *surface, struct wl_surface *parent,
715 int x, int y, uint32_t flags)
716{
717 struct wlsc_surface *es = (struct wlsc_surface *) surface;
718 struct wlsc_surface *pes = (struct wlsc_surface *) parent;
719
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500720 switch (es->map_type) {
721 case WLSC_SURFACE_MAP_UNMAPPED:
722 wl_list_insert(&es->compositor->surface_list, &es->link);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100723 /* assign to parents output */
724 es->output = pes->output;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500725 break;
726 case WLSC_SURFACE_MAP_FULLSCREEN:
727 es->fullscreen_output = NULL;
728 break;
729 default:
730 break;
731 }
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500732
733 es->x = pes->x + x;
734 es->y = pes->y + y;
735
736 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500737 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500738 es->map_type = WLSC_SURFACE_MAP_TRANSIENT;
739}
740
741static void
742surface_map_fullscreen(struct wl_client *client, struct wl_surface *surface)
743{
744 struct wlsc_surface *es = (struct wlsc_surface *) surface;
745 struct wlsc_output *output;
746
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100747 /* FIXME: Fullscreen on first output */
748 /* FIXME: Handle output going away */
749 output = container_of(es->compositor->output_list.next,
750 struct wlsc_output, link);
751
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500752 switch (es->map_type) {
753 case WLSC_SURFACE_MAP_UNMAPPED:
754 es->x = 10 + random() % 400;
755 es->y = 10 + random() % 400;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100756 /* assign to first output */
757 es->output = output;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500758 wl_list_insert(&es->compositor->surface_list, &es->link);
759 break;
760 case WLSC_SURFACE_MAP_FULLSCREEN:
761 return;
762 default:
763 break;
764 }
765
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500766 es->saved_x = es->x;
767 es->saved_y = es->y;
768 es->x = (output->width - es->width) / 2;
769 es->y = (output->height - es->height) / 2;
770 es->fullscreen_output = output;
771 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500772 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500773 es->map_type = WLSC_SURFACE_MAP_FULLSCREEN;
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500774}
775
776static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500777surface_damage(struct wl_client *client,
778 struct wl_surface *surface,
779 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500780{
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400781 struct wlsc_surface *es = (struct wlsc_surface *) surface;
782
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400783 es->buffer->damage(es->buffer, surface, x, y, width, height);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500784
785 wlsc_surface_damage_rectangle(es, x, y, width, height);
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500786}
787
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500788const static struct wl_surface_interface surface_interface = {
789 surface_destroy,
790 surface_attach,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500791 surface_map_toplevel,
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500792 surface_map_transient,
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500793 surface_map_fullscreen,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500794 surface_damage
795};
796
797static void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400798wlsc_input_device_attach(struct wlsc_input_device *device,
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400799 struct wl_buffer *buffer, int x, int y)
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400800{
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500801 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400802
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100803 wlsc_buffer_attach(buffer, &device->sprite->surface);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400804 device->hotspot_x = x;
805 device->hotspot_y = y;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400806
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500807 device->sprite->x = device->input_device.x - device->hotspot_x;
808 device->sprite->y = device->input_device.y - device->hotspot_y;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400809 device->sprite->width = buffer->width;
810 device->sprite->height = buffer->height;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400811 wlsc_surface_update_matrix(device->sprite);
812
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500813 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400814}
815
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400816
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500817void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400818wlsc_input_device_set_pointer_image(struct wlsc_input_device *device,
819 enum wlsc_pointer_type type)
820{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500821 struct wlsc_compositor *compositor =
822 (struct wlsc_compositor *) device->input_device.compositor;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400823
824 wlsc_input_device_attach(device,
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500825 compositor->pointer_buffers[type],
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400826 pointer_images[type].hotspot_x,
827 pointer_images[type].hotspot_y);
828}
829
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400830static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500831compositor_create_surface(struct wl_client *client,
832 struct wl_compositor *compositor, uint32_t id)
833{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500834 struct wlsc_compositor *ec = (struct wlsc_compositor *) compositor;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400835 struct wlsc_surface *surface;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500836
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500837 surface = wlsc_surface_create(ec, 0, 0, 0, 0);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400838 if (surface == NULL) {
Kristian Høgsberg13b8ae42010-09-02 20:55:16 -0400839 wl_client_post_no_memory(client);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500840 return;
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400841 }
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500842
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500843 surface->surface.resource.destroy = destroy_surface;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400844
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500845 surface->surface.resource.object.id = id;
846 surface->surface.resource.object.interface = &wl_surface_interface;
847 surface->surface.resource.object.implementation =
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400848 (void (**)(void)) &surface_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500849 surface->surface.client = client;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400850
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500851 wl_client_add_resource(client, &surface->surface.resource);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500852}
853
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500854const static struct wl_compositor_interface compositor_interface = {
855 compositor_create_surface,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500856};
857
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500858static void
859wlsc_surface_transform(struct wlsc_surface *surface,
860 int32_t x, int32_t y, int32_t *sx, int32_t *sy)
861{
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400862 struct wlsc_vector v = { { x, y, 0, 1 } };
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500863
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400864 wlsc_matrix_transform(&surface->matrix_inv, &v);
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400865 *sx = v.f[0] * surface->width;
866 *sy = v.f[1] * surface->height;
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500867}
868
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500869struct wlsc_surface *
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500870pick_surface(struct wl_input_device *device, int32_t *sx, int32_t *sy)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500871{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500872 struct wlsc_compositor *ec =
873 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500874 struct wlsc_surface *es;
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500875
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400876 wl_list_for_each(es, &ec->surface_list, link) {
877 wlsc_surface_transform(es, device->x, device->y, sx, sy);
878 if (0 <= *sx && *sx < es->width &&
879 0 <= *sy && *sy < es->height)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500880 return es;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400881 }
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500882
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500883 return NULL;
884}
885
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500886
887static void
888motion_grab_motion(struct wl_grab *grab,
889 uint32_t time, int32_t x, int32_t y)
890{
891 struct wlsc_input_device *device =
892 (struct wlsc_input_device *) grab->input_device;
893 struct wlsc_surface *es =
894 (struct wlsc_surface *) device->input_device.pointer_focus;
895 int32_t sx, sy;
896
897 wlsc_surface_transform(es, x, y, &sx, &sy);
898 wl_client_post_event(es->surface.client,
899 &device->input_device.object,
900 WL_INPUT_DEVICE_MOTION,
901 time, x, y, sx, sy);
902}
903
904static void
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500905motion_grab_button(struct wl_grab *grab,
906 uint32_t time, int32_t button, int32_t state)
907{
908 wl_client_post_event(grab->input_device->pointer_focus->client,
909 &grab->input_device->object,
910 WL_INPUT_DEVICE_BUTTON,
911 time, button, state);
912}
913
914static void
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500915motion_grab_end(struct wl_grab *grab, uint32_t time)
916{
917}
918
919static const struct wl_grab_interface motion_grab_interface = {
920 motion_grab_motion,
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500921 motion_grab_button,
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500922 motion_grab_end
923};
924
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500925void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500926notify_motion(struct wl_input_device *device, uint32_t time, int x, int y)
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500927{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500928 struct wlsc_surface *es;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500929 struct wlsc_compositor *ec =
930 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500931 struct wlsc_output *output;
Kristian Høgsberg6d65d5f2010-12-07 13:30:18 -0500932 const struct wl_grab_interface *interface;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500933 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsbergfc9c28a2010-12-07 13:04:43 -0500934 int32_t sx, sy;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100935 int x_valid = 0, y_valid = 0;
936 int min_x = INT_MAX, min_y = INT_MAX, max_x = INT_MIN, max_y = INT_MIN;
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500937
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100938 wl_list_for_each(output, &ec->output_list, link) {
939 if (output->x <= x && x <= output->x + output->width)
940 x_valid = 1;
941
942 if (output->y <= y && y <= output->y + output->height)
943 y_valid = 1;
944
945 /* FIXME: calculate this only on output addition/deletion */
946 if (output->x < min_x)
947 min_x = output->x;
948 if (output->y < min_y)
949 min_y = output->y;
950
951 if (output->x + output->width > max_x)
952 max_x = output->x + output->width;
953 if (output->y + output->height > max_y)
954 max_y = output->y + output->height;
955 }
956
957 if (!x_valid) {
958 if (x < min_x)
959 x = min_x;
960 else if (x >= max_x)
961 x = max_x;
962 }
963 if (!y_valid) {
964 if (y < min_y)
965 y = min_y;
966 else if (y >= max_y)
967 y = max_y;
968 }
Ray Strode90e701d2008-12-18 23:05:43 -0500969
Kristian Høgsberge3ef3e52008-12-21 19:30:01 -0500970 device->x = x;
971 device->y = y;
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -0500972
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500973 if (device->grab) {
974 interface = device->grab->interface;
975 interface->motion(device->grab, time, x, y);
976 } else {
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400977 es = pick_surface(device, &sx, &sy);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500978 wl_input_device_set_pointer_focus(device,
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500979 &es->surface,
Kristian Høgsberg26437072010-12-01 10:17:47 -0500980 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400981 if (es)
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500982 wl_client_post_event(es->surface.client,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500983 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -0400984 WL_INPUT_DEVICE_MOTION,
985 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400986 }
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500987
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500988 wlsc_surface_damage(wd->sprite);
989
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500990 wd->sprite->x = device->x - wd->hotspot_x;
991 wd->sprite->y = device->y - wd->hotspot_y;
992 wlsc_surface_update_matrix(wd->sprite);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500993
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500994 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500995}
996
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500997static void
998wlsc_surface_activate(struct wlsc_surface *surface,
999 struct wlsc_input_device *device, uint32_t time)
1000{
1001 wlsc_surface_raise(surface);
1002 if (device->selection)
1003 wlsc_selection_set_focus(device->selection,
1004 &surface->surface, time);
1005
1006 wl_input_device_set_keyboard_focus(&device->input_device,
1007 &surface->surface,
1008 time);
1009}
1010
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001011static void
1012move_binding(struct wl_input_device *device, uint32_t time,
1013 uint32_t key, uint32_t button, uint32_t state, void *data)
1014{
1015 struct wlsc_compositor *compositor = data;
1016 struct wlsc_surface *surface =
1017 (struct wlsc_surface *) device->pointer_focus;
1018
1019 shell_move(NULL,
1020 (struct wl_shell *) &compositor->shell,
1021 &surface->surface, device, time);
1022}
1023
1024static void
1025resize_binding(struct wl_input_device *device, uint32_t time,
1026 uint32_t key, uint32_t button, uint32_t state, void *data)
1027{
1028 struct wlsc_compositor *compositor = data;
1029 struct wlsc_surface *surface =
1030 (struct wlsc_surface *) device->pointer_focus;
1031 uint32_t edges = 0;
1032 int32_t x, y;
1033
1034 x = device->grab_x - surface->x;
1035 y = device->grab_y - surface->y;
1036
1037 if (x < surface->width / 3)
1038 edges |= WL_SHELL_RESIZE_LEFT;
1039 else if (x < 2 * surface->width / 3)
1040 edges |= 0;
1041 else
1042 edges |= WL_SHELL_RESIZE_RIGHT;
1043
1044 if (y < surface->height / 3)
1045 edges |= WL_SHELL_RESIZE_TOP;
1046 else if (y < 2 * surface->height / 3)
1047 edges |= 0;
1048 else
1049 edges |= WL_SHELL_RESIZE_BOTTOM;
1050
1051 shell_resize(NULL,
1052 (struct wl_shell *) &compositor->shell,
1053 &surface->surface, device, time, edges);
1054}
1055
1056struct wlsc_binding {
1057 uint32_t key;
1058 uint32_t button;
1059 uint32_t modifier;
1060 wlsc_binding_handler_t handler;
1061 void *data;
1062 struct wl_list link;
1063};
1064
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001065void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001066notify_button(struct wl_input_device *device,
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001067 uint32_t time, int32_t button, int32_t state)
Kristian Høgsbergeac149a2008-12-10 00:24:18 -05001068{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001069 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001070 struct wlsc_compositor *compositor =
1071 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001072 struct wlsc_binding *b;
1073 struct wlsc_surface *surface =
1074 (struct wlsc_surface *) device->pointer_focus;
Kristian Høgsbergea081152010-12-07 08:59:51 -05001075
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -05001076 if (state && surface && device->grab == NULL) {
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001077 wlsc_surface_activate(surface, wd, time);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001078 wl_input_device_start_grab(device,
1079 &device->motion_grab,
1080 button, time);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001081 }
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -05001082
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001083 wl_list_for_each(b, &compositor->binding_list, link) {
1084 if (b->button == button &&
1085 b->modifier == wd->modifier_state && state) {
1086 b->handler(&wd->input_device,
1087 time, 0, button, state, b->data);
1088 break;
1089 }
Benjamin Franzke5a2218a2011-02-01 16:30:31 +01001090 }
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -05001091
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -05001092 if (device->grab)
1093 device->grab->interface->button(device->grab, time,
1094 button, state);
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -05001095
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001096 if (!state && device->grab && device->grab_button == button)
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001097 wl_input_device_end_grab(device, time);
Kristian Høgsbergeac149a2008-12-10 00:24:18 -05001098}
1099
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001100static void
1101wlsc_switcher_next(struct wlsc_switcher *switcher)
1102{
1103 struct wl_list *l;
1104
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001105 wlsc_surface_damage(switcher->current);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001106 l = switcher->current->link.next;
1107 if (l == &switcher->compositor->surface_list)
1108 l = switcher->compositor->surface_list.next;
1109 switcher->current = container_of(l, struct wlsc_surface, link);
1110 wl_list_remove(&switcher->listener.link);
1111 wl_list_insert(switcher->current->surface.destroy_listener_list.prev,
1112 &switcher->listener.link);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001113 wlsc_surface_damage(switcher->current);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001114}
1115
1116static void
1117switcher_handle_surface_destroy(struct wl_listener *listener,
1118 struct wl_surface *surface, uint32_t time)
1119{
1120 struct wlsc_switcher *switcher =
1121 container_of(listener, struct wlsc_switcher, listener);
1122
1123 wlsc_switcher_next(switcher);
1124}
1125
1126static struct wlsc_switcher *
1127wlsc_switcher_create(struct wlsc_compositor *compositor)
1128{
1129 struct wlsc_switcher *switcher;
1130
1131 switcher = malloc(sizeof *switcher);
1132 switcher->compositor = compositor;
1133 switcher->current = container_of(compositor->surface_list.next,
1134 struct wlsc_surface, link);
1135 switcher->listener.func = switcher_handle_surface_destroy;
1136 wl_list_init(&switcher->listener.link);
1137
1138 return switcher;
1139}
1140
1141static void
1142wlsc_switcher_destroy(struct wlsc_switcher *switcher)
1143{
1144 wl_list_remove(&switcher->listener.link);
1145 free(switcher);
1146}
1147
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001148static void
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001149switcher_next_binding(struct wl_input_device *device, uint32_t time,
1150 uint32_t key, uint32_t button,
1151 uint32_t state, void *data)
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001152{
1153 struct wlsc_compositor *compositor = data;
1154
1155 if (!state)
1156 return;
1157 if (wl_list_empty(&compositor->surface_list))
1158 return;
1159 if (compositor->switcher == NULL)
1160 compositor->switcher = wlsc_switcher_create(compositor);
1161
1162 wlsc_switcher_next(compositor->switcher);
1163}
1164
1165static void
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001166switcher_terminate_binding(struct wl_input_device *device,
1167 uint32_t time, uint32_t key, uint32_t button,
1168 uint32_t state, void *data)
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001169{
1170 struct wlsc_compositor *compositor = data;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001171 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001172
1173 if (compositor->switcher && !state) {
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001174 wlsc_surface_activate(compositor->switcher->current, wd, time);
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001175 wlsc_switcher_destroy(compositor->switcher);
1176 compositor->switcher = NULL;
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001177 }
1178}
1179
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001180static void
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001181terminate_binding(struct wl_input_device *device, uint32_t time,
1182 uint32_t key, uint32_t button, uint32_t state, void *data)
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001183{
1184 struct wlsc_compositor *compositor = data;
1185
1186 wl_display_terminate(compositor->wl_display);
1187}
1188
1189struct wlsc_binding *
1190wlsc_compositor_add_binding(struct wlsc_compositor *compositor,
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001191 uint32_t key, uint32_t button, uint32_t modifier,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001192 wlsc_binding_handler_t handler, void *data)
1193{
1194 struct wlsc_binding *binding;
1195
1196 binding = malloc(sizeof *binding);
1197 if (binding == NULL)
1198 return NULL;
1199
1200 binding->key = key;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001201 binding->button = button;
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001202 binding->modifier = modifier;
1203 binding->handler = handler;
1204 binding->data = data;
1205 wl_list_insert(compositor->binding_list.prev, &binding->link);
1206
1207 return binding;
1208}
1209
1210void
1211wlsc_binding_destroy(struct wlsc_binding *binding)
1212{
1213 wl_list_remove(&binding->link);
1214 free(binding);
1215}
1216
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001217static void
1218update_modifier_state(struct wlsc_input_device *device,
1219 uint32_t key, uint32_t state)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -05001220{
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001221 uint32_t modifier;
Kristian Høgsbergab909ae2001-01-01 22:24:24 -05001222
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001223 switch (key) {
1224 case KEY_LEFTCTRL:
1225 case KEY_RIGHTCTRL:
1226 modifier = MODIFIER_CTRL;
1227 break;
1228
1229 case KEY_LEFTALT:
1230 case KEY_RIGHTALT:
1231 modifier = MODIFIER_ALT;
1232 break;
1233
Kristian Høgsberg5b75f1b2010-08-04 23:21:41 -04001234 case KEY_LEFTMETA:
1235 case KEY_RIGHTMETA:
1236 modifier = MODIFIER_SUPER;
1237 break;
1238
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001239 default:
1240 modifier = 0;
1241 break;
1242 }
1243
1244 if (state)
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001245 device->modifier_state |= modifier;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001246 else
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001247 device->modifier_state &= ~modifier;
1248}
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001249
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001250void
1251notify_key(struct wl_input_device *device,
1252 uint32_t time, uint32_t key, uint32_t state)
1253{
1254 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1255 struct wlsc_compositor *compositor =
1256 (struct wlsc_compositor *) device->compositor;
1257 uint32_t *k, *end;
1258 struct wlsc_binding *b;
1259
1260 wl_list_for_each(b, &compositor->binding_list, link) {
1261 if (b->key == key &&
1262 b->modifier == wd->modifier_state && state) {
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001263 b->handler(&wd->input_device,
1264 time, key, 0, state, b->data);
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001265 break;
1266 }
1267 }
1268
1269 update_modifier_state(wd, key, state);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001270 end = device->keys.data + device->keys.size;
1271 for (k = device->keys.data; k < end; k++) {
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001272 if (*k == key)
1273 *k = *--end;
1274 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001275 device->keys.size = (void *) end - device->keys.data;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001276 if (state) {
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001277 k = wl_array_add(&device->keys, sizeof *k);
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001278 *k = key;
1279 }
Ray Strodee96dcb82008-12-20 02:00:49 -05001280
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001281 if (device->keyboard_focus != NULL)
1282 wl_client_post_event(device->keyboard_focus->client,
1283 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -04001284 WL_INPUT_DEVICE_KEY, time, key, state);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001285}
1286
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001287void
1288notify_pointer_focus(struct wl_input_device *device,
1289 uint32_t time, struct wlsc_output *output,
1290 int32_t x, int32_t y)
1291{
1292 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1293 struct wlsc_compositor *compositor =
1294 (struct wlsc_compositor *) device->compositor;
1295 struct wlsc_surface *es;
1296 int32_t sx, sy;
1297
1298 if (output) {
1299 device->x = x;
1300 device->y = y;
1301 es = pick_surface(device, &sx, &sy);
1302 wl_input_device_set_pointer_focus(device,
1303 &es->surface,
1304 time, x, y, sx, sy);
1305
1306 compositor->focus = 1;
1307
1308 wd->sprite->x = device->x - wd->hotspot_x;
1309 wd->sprite->y = device->y - wd->hotspot_y;
1310 wlsc_surface_update_matrix(wd->sprite);
1311 } else {
1312 wl_input_device_set_pointer_focus(device, NULL,
1313 time, 0, 0, 0, 0);
1314 compositor->focus = 0;
1315 }
1316
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001317 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001318}
1319
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001320void
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001321notify_keyboard_focus(struct wl_input_device *device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001322 uint32_t time, struct wlsc_output *output,
1323 struct wl_array *keys)
1324{
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001325 struct wlsc_input_device *wd =
1326 (struct wlsc_input_device *) device;
1327 struct wlsc_compositor *compositor =
1328 (struct wlsc_compositor *) device->compositor;
1329 struct wlsc_surface *es;
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001330 uint32_t *k, *end;
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001331
1332 if (!wl_list_empty(&compositor->surface_list))
1333 es = container_of(compositor->surface_list.next,
1334 struct wlsc_surface, link);
1335 else
1336 es = NULL;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001337
1338 if (output) {
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001339 wl_array_copy(&wd->input_device.keys, keys);
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001340 wd->modifier_state = 0;
1341 end = device->keys.data + device->keys.size;
1342 for (k = device->keys.data; k < end; k++) {
1343 update_modifier_state(wd, *k, 1);
1344 }
1345
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001346 wl_input_device_set_keyboard_focus(&wd->input_device,
1347 &es->surface, time);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001348 } else {
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001349 wd->modifier_state = 0;
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001350 wl_input_device_set_keyboard_focus(&wd->input_device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001351 NULL, time);
1352 }
1353}
1354
1355
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001356static void
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001357input_device_attach(struct wl_client *client,
1358 struct wl_input_device *device_base,
1359 uint32_t time,
1360 struct wl_buffer *buffer, int32_t x, int32_t y)
1361{
1362 struct wlsc_input_device *device =
1363 (struct wlsc_input_device *) device_base;
1364
1365 if (time < device->input_device.pointer_focus_time)
1366 return;
1367 if (device->input_device.pointer_focus == NULL)
1368 return;
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001369 if (device->input_device.pointer_focus->client != client)
1370 return;
1371
1372 if (buffer == NULL) {
1373 wlsc_input_device_set_pointer_image(device,
1374 WLSC_POINTER_LEFT_PTR);
1375 return;
1376 }
1377
1378 wlsc_input_device_attach(device, buffer, x, y);
1379}
1380
1381const static struct wl_input_device_interface input_device_interface = {
1382 input_device_attach,
1383};
1384
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001385void
1386wlsc_input_device_init(struct wlsc_input_device *device,
1387 struct wlsc_compositor *ec)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -05001388{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001389 wl_input_device_init(&device->input_device, &ec->compositor);
Kristian Høgsberg02ef1c12010-12-06 21:35:19 -05001390
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001391 device->input_device.object.interface = &wl_input_device_interface;
1392 device->input_device.object.implementation =
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001393 (void (**)(void)) &input_device_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001394 wl_display_add_object(ec->wl_display, &device->input_device.object);
1395 wl_display_add_global(ec->wl_display, &device->input_device.object, NULL);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -04001396
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -05001397 device->sprite = wlsc_surface_create(ec,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001398 device->input_device.x,
1399 device->input_device.y, 32, 32);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001400 device->hotspot_x = 16;
1401 device->hotspot_y = 16;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001402 device->modifier_state = 0;
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001403
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001404 device->input_device.motion_grab.interface = &motion_grab_interface;
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001405
Kristian Høgsbergc492b482008-12-12 12:00:02 -05001406 wl_list_insert(ec->input_device_list.prev, &device->link);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001407
1408 wlsc_input_device_set_pointer_image(device, WLSC_POINTER_LEFT_PTR);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001409}
1410
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001411static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001412wlsc_output_post_geometry(struct wl_client *client, struct wl_object *global)
Kristian Høgsbergbf9541f2008-11-25 12:10:09 -05001413{
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001414 struct wlsc_output *output =
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001415 container_of(global, struct wlsc_output, object);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001416
1417 wl_client_post_event(client, global,
1418 WL_OUTPUT_GEOMETRY,
Kristian Høgsbergf8fc08f2010-12-01 20:10:10 -05001419 output->x, output->y,
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001420 output->width, output->height);
1421}
1422
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001423static const char vertex_shader[] =
1424 "uniform mat4 proj;\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001425 "attribute vec2 position;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001426 "attribute vec2 texcoord;\n"
1427 "varying vec2 v_texcoord;\n"
1428 "void main()\n"
1429 "{\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001430 " gl_Position = proj * vec4(position, 0.0, 1.0);\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001431 " v_texcoord = texcoord;\n"
1432 "}\n";
1433
1434static const char fragment_shader[] =
Kristian Høgsbergdfce71d2010-12-07 20:19:10 -05001435 "precision mediump float;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001436 "varying vec2 v_texcoord;\n"
1437 "uniform sampler2D tex;\n"
1438 "void main()\n"
1439 "{\n"
1440 " gl_FragColor = texture2D(tex, v_texcoord)\n;"
1441 "}\n";
1442
Kristian Høgsberga9468212010-06-14 21:03:11 -04001443static int
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001444init_shaders(struct wlsc_compositor *ec)
1445{
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001446 GLuint v, f, program;
1447 const char *p;
1448 char msg[512];
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001449 GLint status;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001450
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001451 p = vertex_shader;
1452 v = glCreateShader(GL_VERTEX_SHADER);
1453 glShaderSource(v, 1, &p, NULL);
1454 glCompileShader(v);
1455 glGetShaderiv(v, GL_COMPILE_STATUS, &status);
1456 if (!status) {
1457 glGetShaderInfoLog(v, sizeof msg, NULL, msg);
1458 fprintf(stderr, "vertex shader info: %s\n", msg);
1459 return -1;
1460 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001461
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001462 p = fragment_shader;
1463 f = glCreateShader(GL_FRAGMENT_SHADER);
1464 glShaderSource(f, 1, &p, NULL);
1465 glCompileShader(f);
1466 glGetShaderiv(f, GL_COMPILE_STATUS, &status);
1467 if (!status) {
1468 glGetShaderInfoLog(f, sizeof msg, NULL, msg);
1469 fprintf(stderr, "fragment shader info: %s\n", msg);
1470 return -1;
1471 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001472
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001473 program = glCreateProgram();
1474 glAttachShader(program, v);
1475 glAttachShader(program, f);
1476 glBindAttribLocation(program, 0, "position");
1477 glBindAttribLocation(program, 1, "texcoord");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001478
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001479 glLinkProgram(program);
1480 glGetProgramiv(program, GL_LINK_STATUS, &status);
1481 if (!status) {
1482 glGetProgramInfoLog(program, sizeof msg, NULL, msg);
1483 fprintf(stderr, "link info: %s\n", msg);
1484 return -1;
1485 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001486
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001487 glUseProgram(program);
1488 ec->proj_uniform = glGetUniformLocation(program, "proj");
1489 ec->tex_uniform = glGetUniformLocation(program, "tex");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001490
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001491 return 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001492}
1493
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001494void
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001495wlsc_output_destroy(struct wlsc_output *output)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001496{
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001497 destroy_surface(&output->background->surface.resource, NULL);
1498}
1499
1500void
1501wlsc_output_move(struct wlsc_output *output, int x, int y)
1502{
1503 struct wlsc_compositor *c = output->compositor;
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001504 int flip;
1505
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001506 output->x = x;
1507 output->y = y;
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001508
Benjamin Franzke264b3f92011-03-16 13:48:42 +01001509 if (output->background) {
1510 output->background->x = x;
1511 output->background->y = y;
1512 wlsc_surface_update_matrix(output->background);
1513 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001514
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001515 pixman_region32_init(&output->previous_damage_region);
1516
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001517 wlsc_matrix_init(&output->matrix);
1518 wlsc_matrix_translate(&output->matrix,
1519 -output->x - output->width / 2.0,
1520 -output->y - output->height / 2.0, 0);
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001521
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001522 flip = (output->flags & WL_OUTPUT_FLIPPED) ? -1 : 1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001523 wlsc_matrix_scale(&output->matrix,
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001524 2.0 / output->width,
1525 flip * 2.0 / output->height, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001526
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001527 pixman_region32_union_rect(&c->damage_region,
1528 &c->damage_region,
1529 x, y, output->width, output->height);
1530}
1531
1532void
1533wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c,
1534 int x, int y, int width, int height, uint32_t flags)
1535{
1536 output->compositor = c;
1537 output->x = x;
1538 output->y = y;
1539 output->width = width;
1540 output->height = height;
1541
1542 output->background =
1543 background_create(output, option_background);
1544
1545 output->flags = flags;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001546 output->finished = 1;
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001547 wlsc_output_move(output, x, y);
1548
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001549 output->object.interface = &wl_output_interface;
1550 wl_display_add_object(c->wl_display, &output->object);
1551 wl_display_add_global(c->wl_display, &output->object,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001552 wlsc_output_post_geometry);
1553}
1554
1555int
1556wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
1557{
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001558 struct wl_event_loop *loop;
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001559 const char *extensions;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001560
Kristian Høgsbergf9212892008-10-11 18:40:23 -04001561 ec->wl_display = display;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001562
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -05001563 wl_compositor_init(&ec->compositor, &compositor_interface, display);
Kristian Høgsbergee02ca62008-12-21 23:37:12 -05001564
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -04001565 wlsc_shm_init(ec);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +01001566 eglBindWaylandDisplayWL(ec->display, ec->wl_display);
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -04001567
Kristian Høgsberg4cca3492011-01-18 07:53:49 -05001568 wlsc_shell_init(ec);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04001569
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001570 wl_list_init(&ec->surface_list);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001571 wl_list_init(&ec->input_device_list);
1572 wl_list_init(&ec->output_list);
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001573 wl_list_init(&ec->binding_list);
1574
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001575 wlsc_compositor_add_binding(ec, KEY_BACKSPACE, 0,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001576 MODIFIER_CTRL | MODIFIER_ALT,
1577 terminate_binding, ec);
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001578 wlsc_compositor_add_binding(ec, KEY_TAB, MODIFIER_SUPER, 0,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001579 switcher_next_binding, ec);
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001580 wlsc_compositor_add_binding(ec, KEY_LEFTMETA, MODIFIER_SUPER, 0,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001581 switcher_terminate_binding, ec);
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001582 wlsc_compositor_add_binding(ec, KEY_RIGHTMETA, MODIFIER_SUPER, 0,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001583 switcher_terminate_binding, ec);
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001584 wlsc_compositor_add_binding(ec, 0, BTN_LEFT, MODIFIER_SUPER,
1585 move_binding, ec);
1586 wlsc_compositor_add_binding(ec, 0, BTN_MIDDLE, MODIFIER_SUPER,
1587 resize_binding, ec);
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001588
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001589 create_pointer_images(ec);
1590
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001591 screenshooter_create(ec);
1592
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001593 extensions = (const char *) glGetString(GL_EXTENSIONS);
1594 if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) {
1595 fprintf(stderr,
1596 "GL_EXT_texture_format_BGRA8888 not available\n");
1597 return -1;
1598 }
1599
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001600 glActiveTexture(GL_TEXTURE0);
Kristian Høgsberga9468212010-06-14 21:03:11 -04001601 if (init_shaders(ec) < 0)
1602 return -1;
Kristian Høgsberg8d7ca6b2008-11-09 00:22:51 -05001603
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001604 loop = wl_display_get_event_loop(ec->wl_display);
Kristian Høgsberg4a298902008-11-28 18:35:25 -05001605 ec->timer_source = wl_event_loop_add_timer(loop, repaint, ec);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001606 pixman_region32_init(&ec->damage_region);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -04001607 wlsc_compositor_schedule_repaint(ec);
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -04001608
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001609 return 0;
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001610}
1611
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001612static void on_term_signal(int signal_number, void *data)
1613{
1614 struct wlsc_compositor *ec = data;
1615
1616 wl_display_terminate(ec->wl_display);
1617}
1618
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001619int main(int argc, char *argv[])
1620{
1621 struct wl_display *display;
Kristian Høgsberg8e438622009-01-26 23:07:00 -05001622 struct wlsc_compositor *ec;
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001623 struct wl_event_loop *loop;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001624 GError *error = NULL;
1625 GOptionContext *context;
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001626 int width, height;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001627
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001628 g_type_init(); /* GdkPixbuf needs this, it seems. */
1629
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001630 context = g_option_context_new(NULL);
1631 g_option_context_add_main_entries(context, option_entries, "Wayland");
1632 if (!g_option_context_parse(context, &argc, &argv, &error)) {
1633 fprintf(stderr, "option parsing failed: %s\n", error->message);
1634 exit(EXIT_FAILURE);
1635 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001636 if (sscanf(option_geometry, "%dx%d", &width, &height) != 2) {
1637 fprintf(stderr, "invalid geometry option: %s \n",
1638 option_geometry);
1639 exit(EXIT_FAILURE);
1640 }
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001641
1642 display = wl_display_create();
1643
Kristian Høgsberga9410222011-01-14 17:22:35 -05001644 ec = NULL;
1645
1646#if BUILD_WAYLAND_COMPOSITOR
Benjamin Franzkeec2e6422010-11-27 19:04:12 +01001647 if (getenv("WAYLAND_DISPLAY"))
1648 ec = wayland_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001649#endif
1650
1651#if BUILD_X11_COMPOSITOR
1652 if (ec == NULL && getenv("DISPLAY"))
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001653 ec = x11_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001654#endif
1655
1656#if BUILD_DRM_COMPOSITOR
1657 if (ec == NULL)
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001658 ec = drm_compositor_create(display, option_connector);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001659#endif
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001660
Kristian Høgsberg841883b2008-12-05 11:19:56 -05001661 if (ec == NULL) {
1662 fprintf(stderr, "failed to create compositor\n");
1663 exit(EXIT_FAILURE);
1664 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001665
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001666 if (wl_display_add_socket(display, option_socket_name)) {
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001667 fprintf(stderr, "failed to add socket: %m\n");
1668 exit(EXIT_FAILURE);
1669 }
1670
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001671 loop = wl_display_get_event_loop(ec->wl_display);
1672 wl_event_loop_add_signal(loop, SIGTERM, on_term_signal, ec);
1673 wl_event_loop_add_signal(loop, SIGINT, on_term_signal, ec);
1674
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001675 wl_display_run(display);
1676
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +01001677 eglUnbindWaylandDisplayWL(ec->display, display);
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001678 wl_display_destroy(display);
1679
Kristian Høgsbergcaa64422010-12-01 16:52:15 -05001680 ec->destroy(ec);
1681
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001682 return 0;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001683}