blob: c9928c3a2c212447b6b559b2f2b78f8d89aff3b3 [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
Benjamin Franzkeec2e6422010-11-27 19:04:12 +010039/* The plan here is to generate a random anonymous socket name and
40 * advertise that through a service on the session dbus.
41 */
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -050042static const char *option_socket_name = NULL;
Kristian Høgsberg61a82512010-10-26 11:26:44 -040043static const char *option_background = "background.jpg";
44static const char *option_geometry = "1024x640";
45static int option_connector = 0;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050046
47static const GOptionEntry option_entries[] = {
48 { "background", 'b', 0, G_OPTION_ARG_STRING,
49 &option_background, "Background image" },
Kristian Høgsbergf5878fa2009-09-18 17:02:41 -040050 { "connector", 'c', 0, G_OPTION_ARG_INT,
51 &option_connector, "KMS connector" },
Kristian Høgsberg61a82512010-10-26 11:26:44 -040052 { "geometry", 'g', 0, G_OPTION_ARG_STRING,
53 &option_geometry, "Geometry" },
Benjamin Franzkeec2e6422010-11-27 19:04:12 +010054 { "socket", 's', 0, G_OPTION_ARG_STRING,
55 &option_socket_name, "Socket Name" },
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050056 { NULL }
57};
58
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050059static void
60wlsc_matrix_init(struct wlsc_matrix *matrix)
61{
62 static const struct wlsc_matrix identity = {
63 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 }
64 };
65
66 memcpy(matrix, &identity, sizeof identity);
67}
68
69static void
70wlsc_matrix_multiply(struct wlsc_matrix *m, const struct wlsc_matrix *n)
71{
72 struct wlsc_matrix tmp;
Kristian Høgsberg27803c62010-06-06 22:23:21 -040073 const GLfloat *row, *column;
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050074 div_t d;
75 int i, j;
76
77 for (i = 0; i < 16; i++) {
78 tmp.d[i] = 0;
79 d = div(i, 4);
80 row = m->d + d.quot * 4;
81 column = n->d + d.rem;
82 for (j = 0; j < 4; j++)
83 tmp.d[i] += row[j] * column[j * 4];
84 }
85 memcpy(m, &tmp, sizeof tmp);
86}
87
88static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -040089wlsc_matrix_translate(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050090{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -050091 struct wlsc_matrix translate = {
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050092 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, x, y, z, 1 }
93 };
94
95 wlsc_matrix_multiply(matrix, &translate);
96}
97
98static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -040099wlsc_matrix_scale(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500100{
101 struct wlsc_matrix scale = {
102 { x, 0, 0, 0, 0, y, 0, 0, 0, 0, z, 0, 0, 0, 0, 1 }
103 };
104
105 wlsc_matrix_multiply(matrix, &scale);
106}
107
108static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400109wlsc_matrix_transform(struct wlsc_matrix *matrix, struct wlsc_vector *v)
110{
111 int i, j;
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400112 struct wlsc_vector t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400113
114 for (i = 0; i < 4; i++) {
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400115 t.f[i] = 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400116 for (j = 0; j < 4; j++)
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400117 t.f[i] += v->f[j] * matrix->d[i + j * 4];
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400118 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500119
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400120 *v = t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400121}
122
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200123struct wlsc_surface *
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400124wlsc_surface_create(struct wlsc_compositor *compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400125 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500126{
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400127 struct wlsc_surface *surface;
128
129 surface = malloc(sizeof *surface);
130 if (surface == NULL)
131 return NULL;
132
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500133 wl_list_init(&surface->surface.destroy_listener_list);
Kristian Høgsbergf6b14712011-01-06 15:32:14 -0500134 wl_list_init(&surface->link);
Benjamin Franzkebab41fb2011-03-07 18:04:59 +0100135 wl_list_init(&surface->buffer_link);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500136 surface->map_type = WLSC_SURFACE_MAP_UNMAPPED;
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500137
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500138 glGenTextures(1, &surface->texture);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400139 glBindTexture(GL_TEXTURE_2D, surface->texture);
140 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
141 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
142 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
143 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
144
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500145 surface->compositor = compositor;
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500146 surface->visual = NULL;
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200147 surface->image = EGL_NO_IMAGE_KHR;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200148 surface->saved_texture = 0;
Benjamin Franzkebab41fb2011-03-07 18:04:59 +0100149 surface->buffer = NULL;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400150 surface->x = x;
151 surface->y = y;
152 surface->width = width;
153 surface->height = height;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400154 wlsc_matrix_init(&surface->matrix);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400155 wlsc_matrix_scale(&surface->matrix, width, height, 1);
156 wlsc_matrix_translate(&surface->matrix, x, y, 0);
157
158 wlsc_matrix_init(&surface->matrix_inv);
159 wlsc_matrix_translate(&surface->matrix_inv, -x, -y, 0);
160 wlsc_matrix_scale(&surface->matrix_inv, 1.0 / width, 1.0 / height, 1);
Kristian Høgsberg1e4b86a2008-11-23 23:41:08 -0500161
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400162 return surface;
Kristian Høgsberg54879822008-11-23 17:07:32 -0500163}
164
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500165void
166wlsc_surface_damage_rectangle(struct wlsc_surface *surface,
167 int32_t x, int32_t y,
168 int32_t width, int32_t height)
169{
170 struct wlsc_compositor *compositor = surface->compositor;
171
172 pixman_region32_union_rect(&compositor->damage_region,
173 &compositor->damage_region,
174 surface->x + x, surface->y + y,
175 width, height);
176 wlsc_compositor_schedule_repaint(compositor);
177}
178
179void
180wlsc_surface_damage(struct wlsc_surface *surface)
181{
182 wlsc_surface_damage_rectangle(surface, 0, 0,
183 surface->width, surface->height);
184}
185
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500186uint32_t
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500187get_time(void)
188{
189 struct timeval tv;
190
191 gettimeofday(&tv, NULL);
192
193 return tv.tv_sec * 1000 + tv.tv_usec / 1000;
194}
195
Kristian Høgsberg54879822008-11-23 17:07:32 -0500196static void
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400197destroy_surface(struct wl_resource *resource, struct wl_client *client)
Kristian Høgsberg54879822008-11-23 17:07:32 -0500198{
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400199 struct wlsc_surface *surface =
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500200 container_of(resource, struct wlsc_surface, surface.resource);
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500201 struct wl_listener *l, *next;
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500202 uint32_t time;
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400203
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500204 wlsc_surface_damage(surface);
205
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400206 wl_list_remove(&surface->link);
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200207 if (surface->saved_texture == 0)
208 glDeleteTextures(1, &surface->texture);
209 else
210 glDeleteTextures(1, &surface->saved_texture);
211
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400212
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200213 if (surface->image != EGL_NO_IMAGE_KHR)
214 eglDestroyImageKHR(surface->compositor->display,
215 surface->image);
216
Benjamin Franzkebab41fb2011-03-07 18:04:59 +0100217 wl_list_remove(&surface->buffer_link);
218
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500219 time = get_time();
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500220 wl_list_for_each_safe(l, next,
221 &surface->surface.destroy_listener_list, link)
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500222 l->func(l, &surface->surface, time);
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400223
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400224 free(surface);
Kristian Høgsberg54879822008-11-23 17:07:32 -0500225}
226
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500227uint32_t *
228wlsc_load_image(const char *filename, int width, int height)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500229{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400230 GdkPixbuf *pixbuf;
231 GError *error = NULL;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500232 int stride, i, n_channels;
233 unsigned char *pixels, *end, *argb_pixels, *s, *d;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500234
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400235 pixbuf = gdk_pixbuf_new_from_file_at_scale(filename,
236 width, height,
237 FALSE, &error);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500238 if (error != NULL) {
239 fprintf(stderr, "failed to load image: %s\n", error->message);
240 g_error_free(error);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500241 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500242 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400243
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500244 stride = gdk_pixbuf_get_rowstride(pixbuf);
245 pixels = gdk_pixbuf_get_pixels(pixbuf);
246 n_channels = gdk_pixbuf_get_n_channels(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400247
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500248 argb_pixels = malloc (height * width * 4);
249 if (argb_pixels == NULL) {
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500250 g_object_unref(pixbuf);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500251 return NULL;
252 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400253
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500254 if (n_channels == 4) {
255 for (i = 0; i < height; i++) {
256 s = pixels + i * stride;
257 end = s + width * 4;
258 d = argb_pixels + i * width * 4;
259 while (s < end) {
260 unsigned int t;
261
262#define MULT(_d,c,a,t) \
263 do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0)
264
265 MULT(d[0], s[2], s[3], t);
266 MULT(d[1], s[1], s[3], t);
267 MULT(d[2], s[0], s[3], t);
268 d[3] = s[3];
269 s += 4;
270 d += 4;
271 }
272 }
273 } else if (n_channels == 3) {
274 for (i = 0; i < height; i++) {
275 s = pixels + i * stride;
276 end = s + width * 3;
277 d = argb_pixels + i * width * 4;
278 while (s < end) {
279 d[0] = s[2];
280 d[1] = s[1];
281 d[2] = s[0];
282 d[3] = 0xff;
283 s += 3;
284 d += 4;
285 }
286 }
287 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400288
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500289 g_object_unref(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400290
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500291 return (uint32_t *) argb_pixels;
292}
293
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100294static void
295wlsc_buffer_attach(struct wl_buffer *buffer, struct wl_surface *surface)
296{
297 struct wlsc_surface *es = (struct wlsc_surface *) surface;
298 struct wlsc_compositor *ec = es->compositor;
Benjamin Franzke315b3dc2011-03-08 11:32:57 +0100299 struct wl_list *surfaces_attached_to;
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100300
Benjamin Franzke315b3dc2011-03-08 11:32:57 +0100301 if (es->saved_texture != 0)
302 es->texture = es->saved_texture;
303
304 glBindTexture(GL_TEXTURE_2D, es->texture);
305
306 if (wl_buffer_is_shm(buffer)) {
307 /* Unbind any EGLImage texture that may be bound, so we don't
308 * overwrite it.*/
309 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT,
310 0, 0, 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, NULL);
311 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT,
312 buffer->width, buffer->height, 0,
313 GL_BGRA_EXT, GL_UNSIGNED_BYTE,
314 wl_shm_buffer_get_data(buffer));
315 es->visual = buffer->visual;
316
317 surfaces_attached_to = buffer->user_data;
318
319 if (es->buffer)
320 wl_list_remove(&es->buffer_link);
321 wl_list_insert(surfaces_attached_to, &es->buffer_link);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100322 } else {
Kristian Høgsbergdf2f1972011-04-21 23:48:13 -0400323 es->image = eglCreateImageKHR(ec->display, NULL,
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200324 EGL_WAYLAND_BUFFER_WL,
325 buffer, NULL);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100326
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200327 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, es->image);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100328 es->visual = buffer->visual;
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100329 }
330}
331
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200332static void
333wlsc_sprite_attach(struct wlsc_sprite *sprite, struct wl_surface *surface)
334{
335 struct wlsc_surface *es = (struct wlsc_surface *) surface;
336
337 es->image = sprite->image;
338 if (sprite->image != EGL_NO_IMAGE_KHR) {
339 glBindTexture(GL_TEXTURE_2D, es->texture);
340 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, es->image);
341 } else {
342 if (es->saved_texture == 0)
343 es->saved_texture = es->texture;
344 es->texture = sprite->texture;
345 }
346
347 es->visual = sprite->visual;
348}
349
350enum sprite_usage {
351 SPRITE_USE_CURSOR = (1 << 0),
352};
353
354static struct wlsc_sprite *
355create_sprite_from_png(struct wlsc_compositor *ec,
356 const char *filename, int width, int height,
357 uint32_t usage)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500358{
359 uint32_t *pixels;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200360 struct wlsc_sprite *sprite;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500361
362 pixels = wlsc_load_image(filename, width, height);
Tim Wiederhakeac5c5e72011-01-27 01:32:36 +0100363 if(pixels == NULL)
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200364 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500365
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200366 sprite = malloc(sizeof *sprite);
367 if (sprite == NULL) {
368 free(pixels);
369 return NULL;
370 }
371
372 sprite->visual = &ec->compositor.premultiplied_argb_visual;
373 sprite->width = width;
374 sprite->height = height;
375 sprite->image = EGL_NO_IMAGE_KHR;
376
377 if (usage & SPRITE_USE_CURSOR && ec->create_cursor_image != NULL)
378 sprite->image = ec->create_cursor_image(ec, width, height);
379
380 glGenTextures(1, &sprite->texture);
381 glBindTexture(GL_TEXTURE_2D, sprite->texture);
382 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
383 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
384 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
385 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
386
387 if (sprite->image != EGL_NO_IMAGE_KHR) {
388 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, sprite->image);
389 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height,
390 GL_BGRA_EXT, GL_UNSIGNED_BYTE, pixels);
391 } else {
392 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT, width, height, 0,
393 GL_BGRA_EXT, GL_UNSIGNED_BYTE, pixels);
394 }
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500395
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500396 free(pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500397
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200398 return sprite;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500399}
400
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400401static const struct {
402 const char *filename;
403 int hotspot_x, hotspot_y;
404} pointer_images[] = {
Kristian Høgsberg4219a402010-08-16 16:43:03 -0400405 { DATADIR "/wayland/bottom_left_corner.png", 6, 30 },
406 { DATADIR "/wayland/bottom_right_corner.png", 28, 28 },
407 { DATADIR "/wayland/bottom_side.png", 16, 20 },
408 { DATADIR "/wayland/grabbing.png", 20, 17 },
409 { DATADIR "/wayland/left_ptr.png", 10, 5 },
410 { DATADIR "/wayland/left_side.png", 10, 20 },
411 { DATADIR "/wayland/right_side.png", 30, 19 },
412 { DATADIR "/wayland/top_left_corner.png", 8, 8 },
413 { DATADIR "/wayland/top_right_corner.png", 26, 8 },
414 { DATADIR "/wayland/top_side.png", 18, 8 },
415 { DATADIR "/wayland/xterm.png", 15, 15 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400416};
417
418static void
419create_pointer_images(struct wlsc_compositor *ec)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500420{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400421 int i, count;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400422 const int width = 32, height = 32;
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400423
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400424 count = ARRAY_LENGTH(pointer_images);
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200425 ec->pointer_sprites = malloc(count * sizeof *ec->pointer_sprites);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400426 for (i = 0; i < count; i++) {
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200427 ec->pointer_sprites[i] =
428 create_sprite_from_png(ec,
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500429 pointer_images[i].filename,
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200430 width, height,
431 SPRITE_USE_CURSOR);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400432 }
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400433}
434
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500435static struct wlsc_surface *
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500436background_create(struct wlsc_output *output, const char *filename)
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500437{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500438 struct wlsc_surface *background;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200439 struct wlsc_sprite *sprite;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500440
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400441 background = wlsc_surface_create(output->compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400442 output->x, output->y,
443 output->width, output->height);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500444 if (background == NULL)
445 return NULL;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500446
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200447 sprite = create_sprite_from_png(output->compositor, filename,
448 output->width, output->height, 0);
449 if (sprite == NULL) {
Benjamin Franzked3b023e2011-01-15 12:34:49 +0100450 free(background);
451 return NULL;
452 }
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100453
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200454 wlsc_sprite_attach(sprite, &background->surface);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500455
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500456 return background;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500457}
458
459static void
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500460wlsc_surface_draw(struct wlsc_surface *es,
461 struct wlsc_output *output, pixman_region32_t *clip)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500462{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500463 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500464 GLfloat *v, inv_width, inv_height;
465 unsigned int *p;
466 pixman_region32_t repaint;
467 pixman_box32_t *rectangles;
468 int i, n;
469
470 pixman_region32_init_rect(&repaint,
471 es->x, es->y, es->width, es->height);
472 pixman_region32_intersect(&repaint, &repaint, clip);
473 if (!pixman_region32_not_empty(&repaint))
474 return;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500475
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500476 if (es->visual == &ec->compositor.argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500477 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
478 glEnable(GL_BLEND);
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500479 } else if (es->visual == &ec->compositor.premultiplied_argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500480 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
481 glEnable(GL_BLEND);
482 } else {
483 glDisable(GL_BLEND);
484 }
485
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500486 rectangles = pixman_region32_rectangles(&repaint, &n);
487 v = wl_array_add(&ec->vertices, n * 16 * sizeof *v);
488 p = wl_array_add(&ec->indices, n * 6 * sizeof *p);
489 inv_width = 1.0 / es->width;
490 inv_height = 1.0 / es->height;
491 for (i = 0; i < n; i++, v += 16, p += 6) {
492 v[ 0] = rectangles[i].x1;
493 v[ 1] = rectangles[i].y1;
494 v[ 2] = (GLfloat) (rectangles[i].x1 - es->x) * inv_width;
495 v[ 3] = (GLfloat) (rectangles[i].y1 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500496
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500497 v[ 4] = rectangles[i].x1;
498 v[ 5] = rectangles[i].y2;
499 v[ 6] = v[ 2];
500 v[ 7] = (GLfloat) (rectangles[i].y2 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500501
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500502 v[ 8] = rectangles[i].x2;
503 v[ 9] = rectangles[i].y1;
504 v[10] = (GLfloat) (rectangles[i].x2 - es->x) * inv_width;
505 v[11] = v[ 3];
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500506
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500507 v[12] = rectangles[i].x2;
508 v[13] = rectangles[i].y2;
509 v[14] = v[10];
510 v[15] = v[ 7];
511
512 p[0] = i * 4 + 0;
513 p[1] = i * 4 + 1;
514 p[2] = i * 4 + 2;
515 p[3] = i * 4 + 2;
516 p[4] = i * 4 + 1;
517 p[5] = i * 4 + 3;
518 }
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500519
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500520 glBindTexture(GL_TEXTURE_2D, es->texture);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500521 v = ec->vertices.data;
522 glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[0]);
523 glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[2]);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400524 glEnableVertexAttribArray(0);
525 glEnableVertexAttribArray(1);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500526 glDrawElements(GL_TRIANGLES, n * 6, GL_UNSIGNED_INT, ec->indices.data);
527
528 ec->vertices.size = 0;
529 ec->indices.size = 0;
530 pixman_region32_fini(&repaint);
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500531}
532
533static void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400534wlsc_surface_raise(struct wlsc_surface *surface)
535{
536 struct wlsc_compositor *compositor = surface->compositor;
537
538 wl_list_remove(&surface->link);
Kristian Høgsberg747638b2010-07-12 17:06:06 -0400539 wl_list_insert(&compositor->surface_list, &surface->link);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400540}
541
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500542void
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400543wlsc_surface_update_matrix(struct wlsc_surface *es)
544{
545 wlsc_matrix_init(&es->matrix);
546 wlsc_matrix_scale(&es->matrix, es->width, es->height, 1);
547 wlsc_matrix_translate(&es->matrix, es->x, es->y, 0);
548
549 wlsc_matrix_init(&es->matrix_inv);
550 wlsc_matrix_translate(&es->matrix_inv, -es->x, -es->y, 0);
551 wlsc_matrix_scale(&es->matrix_inv,
552 1.0 / es->width, 1.0 / es->height, 1);
553}
554
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400555void
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100556wlsc_output_finish_frame(struct wlsc_output *output, int msecs)
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400557{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100558 struct wlsc_compositor *compositor = output->compositor;
559 struct wlsc_surface *es;
560
561 wl_list_for_each(es, &compositor->surface_list, link) {
562 if (es->output == output) {
563 wl_display_post_frame(compositor->wl_display,
564 &es->surface, msecs);
565 }
566 }
567
568 output->finished = 1;
569
Kristian Høgsberg5d312db2009-09-12 16:57:02 -0400570 wl_event_source_timer_update(compositor->timer_source, 5);
Kristian Høgsbergf30c67e2011-02-06 12:58:44 -0500571 compositor->repaint_on_timeout = 1;
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400572}
573
574static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400575wlsc_output_repaint(struct wlsc_output *output)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400576{
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500577 struct wlsc_compositor *ec = output->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500578 struct wlsc_surface *es;
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -0500579 struct wlsc_input_device *eid;
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400580 pixman_region32_t new_damage, total_damage, repaint;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200581 int using_hardware_cursor = 1;
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500582
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100583 output->prepare_render(output);
584
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500585 glViewport(0, 0, output->width, output->height);
Kristian Høgsbergfdec2362001-01-01 22:23:51 -0500586
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500587 glUniformMatrix4fv(ec->proj_uniform, 1, GL_FALSE, output->matrix.d);
588 glUniform1i(ec->tex_uniform, 0);
589
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500590 pixman_region32_init(&new_damage);
591 pixman_region32_init(&total_damage);
592 pixman_region32_intersect_rect(&new_damage,
593 &ec->damage_region,
594 output->x, output->y,
595 output->width, output->height);
596 pixman_region32_subtract(&ec->damage_region,
597 &ec->damage_region, &new_damage);
598 pixman_region32_union(&total_damage, &new_damage,
599 &output->previous_damage_region);
600 pixman_region32_copy(&output->previous_damage_region, &new_damage);
601
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200602 if (ec->focus)
603 if (output->set_hardware_cursor(output, ec->input_device) < 0)
604 using_hardware_cursor = 0;
605
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500606 es = container_of(ec->surface_list.next, struct wlsc_surface, link);
607 if (es->map_type == WLSC_SURFACE_MAP_FULLSCREEN &&
608 es->fullscreen_output == output) {
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200609 if (es->visual == &ec->compositor.rgb_visual &&
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200610 using_hardware_cursor) {
611 if (output->prepare_scanout_surface(output, es) == 0) {
612 /* We're drawing nothing now,
613 * draw the damaged regions later. */
614 pixman_region32_union(&ec->damage_region,
615 &ec->damage_region,
616 &total_damage);
617 return;
618 }
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200619 }
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200620
621 if (es->width < output->width ||
622 es->height < output->height)
623 glClear(GL_COLOR_BUFFER_BIT);
624 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500625 } else {
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400626 wl_list_for_each(es, &ec->surface_list, link) {
627 if (es->visual != &ec->compositor.rgb_visual)
628 continue;
629
630 pixman_region32_init_rect(&repaint,
631 es->x, es->y,
632 es->width, es->height);
633 wlsc_surface_draw(es, output, &total_damage);
634 pixman_region32_subtract(&total_damage,
635 &total_damage, &repaint);
636 }
637
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500638 if (output->background)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500639 wlsc_surface_draw(output->background,
640 output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500641 else
642 glClear(GL_COLOR_BUFFER_BIT);
643
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500644 wl_list_for_each_reverse(es, &ec->surface_list, link) {
Kristian Høgsberg547cadf2011-04-12 22:23:30 -0400645 if (ec->overlay == es)
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500646 continue;
647
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400648 if (es->visual == &ec->compositor.rgb_visual) {
649 pixman_region32_union_rect(&total_damage,
650 &total_damage,
651 es->x, es->y,
652 es->width, es->height);
653 continue;
654 }
655
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500656 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500657 }
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500658 }
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400659
Kristian Høgsberg547cadf2011-04-12 22:23:30 -0400660 if (ec->overlay)
661 wlsc_surface_draw(ec->overlay, output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500662
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400663 if (ec->focus)
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200664 wl_list_for_each(eid, &ec->input_device_list, link) {
665 if (&eid->input_device != ec->input_device ||
666 !using_hardware_cursor)
667 wlsc_surface_draw(eid->sprite, output,
668 &total_damage);
669 }
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500670}
671
672static void
673repaint(void *data)
674{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500675 struct wlsc_compositor *ec = data;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500676 struct wlsc_output *output;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100677 int repainted_all_outputs = 1;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500678
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100679 wl_list_for_each(output, &ec->output_list, link) {
680 if (!output->repaint_needed)
681 continue;
682
683 if (!output->finished) {
684 repainted_all_outputs = 0;
685 continue;
686 }
687
688 wlsc_output_repaint(output);
689 output->finished = 0;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100690 output->repaint_needed = 0;
Kristian Høgsberg11e28282011-04-11 16:47:50 -0400691 output->present(output);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500692 }
693
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100694 if (repainted_all_outputs)
695 ec->repaint_on_timeout = 0;
696 else
697 wl_event_source_timer_update(ec->timer_source, 1);
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400698}
699
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400700void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400701wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400702{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100703 struct wlsc_output *output;
704
705 wl_list_for_each(output, &compositor->output_list, link)
706 output->repaint_needed = 1;
707
Kristian Høgsbergb0a167c2009-08-14 11:15:18 -0400708 if (compositor->repaint_on_timeout)
709 return;
710
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400711 wl_event_source_timer_update(compositor->timer_source, 1);
712 compositor->repaint_on_timeout = 1;
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400713}
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500714
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500715static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500716surface_destroy(struct wl_client *client,
717 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400718{
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500719 wl_resource_destroy(&surface->resource, client);
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400720}
721
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100722void
723wlsc_surface_assign_output(struct wlsc_surface *es)
724{
725 struct wlsc_compositor *ec = es->compositor;
726 struct wlsc_output *output;
727
728 struct wlsc_output *tmp = es->output;
729 es->output = NULL;
730
731 wl_list_for_each(output, &ec->output_list, link) {
732 if (output->x < es->x && es->x < output->x + output->width &&
733 output->y < es->y && es->y < output->y + output->height) {
734 if (output != tmp)
735 printf("assiging surface %p to output %p\n",
736 es, output);
737 es->output = output;
738 }
739 }
740
741 if (es->output == NULL) {
742 printf("no output found\n");
743 es->output = container_of(ec->output_list.next,
744 struct wlsc_output, link);
745 }
746}
747
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500748static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500749surface_attach(struct wl_client *client,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500750 struct wl_surface *surface, struct wl_buffer *buffer,
751 int32_t x, int32_t y)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400752{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500753 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400754
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500755 /* FIXME: This damages the entire old surface, but we should
756 * really just damage the part that's no longer covered by the
757 * surface. Anything covered by the new surface will be
758 * damaged by the client. */
759 wlsc_surface_damage(es);
760
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100761 wlsc_buffer_attach(buffer, surface);
762
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400763 es->buffer = buffer;
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500764 es->x += x;
765 es->y += y;
766 es->width = buffer->width;
767 es->height = buffer->height;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100768 if (x != 0 || y != 0)
769 wlsc_surface_assign_output(es);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500770 wlsc_surface_update_matrix(es);
Kristian Høgsbergf9212892008-10-11 18:40:23 -0400771}
772
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500773static void
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500774surface_map_toplevel(struct wl_client *client,
775 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400776{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500777 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100778 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400779
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500780 switch (es->map_type) {
781 case WLSC_SURFACE_MAP_UNMAPPED:
782 es->x = 10 + random() % 400;
783 es->y = 10 + random() % 400;
784 wlsc_surface_update_matrix(es);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100785 /* assign to first output */
786 es->output = container_of(ec->output_list.next,
787 struct wlsc_output, link);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500788 wl_list_insert(&es->compositor->surface_list, &es->link);
789 break;
790 case WLSC_SURFACE_MAP_TOPLEVEL:
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500791 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500792 case WLSC_SURFACE_MAP_FULLSCREEN:
793 es->fullscreen_output = NULL;
794 es->x = es->saved_x;
795 es->y = es->saved_y;
796 wlsc_surface_update_matrix(es);
797 break;
798 default:
799 break;
800 }
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500801
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500802 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500803 es->map_type = WLSC_SURFACE_MAP_TOPLEVEL;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400804}
805
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500806static void
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500807surface_map_transient(struct wl_client *client,
808 struct wl_surface *surface, struct wl_surface *parent,
809 int x, int y, uint32_t flags)
810{
811 struct wlsc_surface *es = (struct wlsc_surface *) surface;
812 struct wlsc_surface *pes = (struct wlsc_surface *) parent;
813
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500814 switch (es->map_type) {
815 case WLSC_SURFACE_MAP_UNMAPPED:
816 wl_list_insert(&es->compositor->surface_list, &es->link);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100817 /* assign to parents output */
818 es->output = pes->output;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500819 break;
820 case WLSC_SURFACE_MAP_FULLSCREEN:
821 es->fullscreen_output = NULL;
822 break;
823 default:
824 break;
825 }
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500826
827 es->x = pes->x + x;
828 es->y = pes->y + y;
829
830 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500831 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500832 es->map_type = WLSC_SURFACE_MAP_TRANSIENT;
833}
834
835static void
836surface_map_fullscreen(struct wl_client *client, struct wl_surface *surface)
837{
838 struct wlsc_surface *es = (struct wlsc_surface *) surface;
839 struct wlsc_output *output;
840
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100841 /* FIXME: Fullscreen on first output */
842 /* FIXME: Handle output going away */
843 output = container_of(es->compositor->output_list.next,
844 struct wlsc_output, link);
845
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500846 switch (es->map_type) {
847 case WLSC_SURFACE_MAP_UNMAPPED:
848 es->x = 10 + random() % 400;
849 es->y = 10 + random() % 400;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100850 /* assign to first output */
851 es->output = output;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500852 wl_list_insert(&es->compositor->surface_list, &es->link);
853 break;
854 case WLSC_SURFACE_MAP_FULLSCREEN:
855 return;
856 default:
857 break;
858 }
859
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500860 es->saved_x = es->x;
861 es->saved_y = es->y;
862 es->x = (output->width - es->width) / 2;
863 es->y = (output->height - es->height) / 2;
864 es->fullscreen_output = output;
865 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500866 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500867 es->map_type = WLSC_SURFACE_MAP_FULLSCREEN;
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500868}
869
870static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500871surface_damage(struct wl_client *client,
872 struct wl_surface *surface,
873 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500874{
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400875 struct wlsc_surface *es = (struct wlsc_surface *) surface;
876
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500877 wlsc_surface_damage_rectangle(es, x, y, width, height);
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500878}
879
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500880const static struct wl_surface_interface surface_interface = {
881 surface_destroy,
882 surface_attach,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500883 surface_map_toplevel,
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500884 surface_map_transient,
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500885 surface_map_fullscreen,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500886 surface_damage
887};
888
889static void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400890wlsc_input_device_attach(struct wlsc_input_device *device,
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200891 int x, int y, int width, int height)
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400892{
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500893 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400894
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400895 device->hotspot_x = x;
896 device->hotspot_y = y;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400897
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500898 device->sprite->x = device->input_device.x - device->hotspot_x;
899 device->sprite->y = device->input_device.y - device->hotspot_y;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200900 device->sprite->width = width;
901 device->sprite->height = height;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400902 wlsc_surface_update_matrix(device->sprite);
903
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500904 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400905}
906
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200907static void
908wlsc_input_device_attach_buffer(struct wlsc_input_device *device,
909 struct wl_buffer *buffer, int x, int y)
910{
911 wlsc_buffer_attach(buffer, &device->sprite->surface);
912 wlsc_input_device_attach(device, x, y, buffer->width, buffer->height);
913}
914
915static void
916wlsc_input_device_attach_sprite(struct wlsc_input_device *device,
917 struct wlsc_sprite *sprite, int x, int y)
918{
919 wlsc_sprite_attach(sprite, &device->sprite->surface);
920 wlsc_input_device_attach(device, x, y, sprite->width, sprite->height);
921}
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400922
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500923void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400924wlsc_input_device_set_pointer_image(struct wlsc_input_device *device,
925 enum wlsc_pointer_type type)
926{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500927 struct wlsc_compositor *compositor =
928 (struct wlsc_compositor *) device->input_device.compositor;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400929
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200930 wlsc_input_device_attach_sprite(device,
931 compositor->pointer_sprites[type],
932 pointer_images[type].hotspot_x,
933 pointer_images[type].hotspot_y);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400934}
935
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400936static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500937compositor_create_surface(struct wl_client *client,
938 struct wl_compositor *compositor, uint32_t id)
939{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500940 struct wlsc_compositor *ec = (struct wlsc_compositor *) compositor;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400941 struct wlsc_surface *surface;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500942
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500943 surface = wlsc_surface_create(ec, 0, 0, 0, 0);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400944 if (surface == NULL) {
Kristian Høgsberg13b8ae42010-09-02 20:55:16 -0400945 wl_client_post_no_memory(client);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500946 return;
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400947 }
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500948
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500949 surface->surface.resource.destroy = destroy_surface;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400950
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500951 surface->surface.resource.object.id = id;
952 surface->surface.resource.object.interface = &wl_surface_interface;
953 surface->surface.resource.object.implementation =
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400954 (void (**)(void)) &surface_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500955 surface->surface.client = client;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400956
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500957 wl_client_add_resource(client, &surface->surface.resource);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500958}
959
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500960const static struct wl_compositor_interface compositor_interface = {
961 compositor_create_surface,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500962};
963
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500964static void
965wlsc_surface_transform(struct wlsc_surface *surface,
966 int32_t x, int32_t y, int32_t *sx, int32_t *sy)
967{
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400968 struct wlsc_vector v = { { x, y, 0, 1 } };
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500969
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400970 wlsc_matrix_transform(&surface->matrix_inv, &v);
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400971 *sx = v.f[0] * surface->width;
972 *sy = v.f[1] * surface->height;
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500973}
974
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500975struct wlsc_surface *
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500976pick_surface(struct wl_input_device *device, int32_t *sx, int32_t *sy)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500977{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500978 struct wlsc_compositor *ec =
979 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500980 struct wlsc_surface *es;
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500981
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400982 wl_list_for_each(es, &ec->surface_list, link) {
983 wlsc_surface_transform(es, device->x, device->y, sx, sy);
984 if (0 <= *sx && *sx < es->width &&
985 0 <= *sy && *sy < es->height)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500986 return es;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400987 }
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500988
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500989 return NULL;
990}
991
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500992
993static void
994motion_grab_motion(struct wl_grab *grab,
995 uint32_t time, int32_t x, int32_t y)
996{
997 struct wlsc_input_device *device =
998 (struct wlsc_input_device *) grab->input_device;
999 struct wlsc_surface *es =
1000 (struct wlsc_surface *) device->input_device.pointer_focus;
1001 int32_t sx, sy;
1002
1003 wlsc_surface_transform(es, x, y, &sx, &sy);
1004 wl_client_post_event(es->surface.client,
1005 &device->input_device.object,
1006 WL_INPUT_DEVICE_MOTION,
1007 time, x, y, sx, sy);
1008}
1009
1010static void
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -05001011motion_grab_button(struct wl_grab *grab,
1012 uint32_t time, int32_t button, int32_t state)
1013{
1014 wl_client_post_event(grab->input_device->pointer_focus->client,
1015 &grab->input_device->object,
1016 WL_INPUT_DEVICE_BUTTON,
1017 time, button, state);
1018}
1019
1020static void
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001021motion_grab_end(struct wl_grab *grab, uint32_t time)
1022{
1023}
1024
1025static const struct wl_grab_interface motion_grab_interface = {
1026 motion_grab_motion,
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -05001027 motion_grab_button,
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001028 motion_grab_end
1029};
1030
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001031void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001032notify_motion(struct wl_input_device *device, uint32_t time, int x, int y)
Kristian Høgsberg715a0812008-12-10 10:42:04 -05001033{
Kristian Høgsberg8e438622009-01-26 23:07:00 -05001034 struct wlsc_surface *es;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001035 struct wlsc_compositor *ec =
1036 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001037 struct wlsc_output *output;
Kristian Høgsberg6d65d5f2010-12-07 13:30:18 -05001038 const struct wl_grab_interface *interface;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001039 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsbergfc9c28a2010-12-07 13:04:43 -05001040 int32_t sx, sy;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +01001041 int x_valid = 0, y_valid = 0;
1042 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 -05001043
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +01001044 wl_list_for_each(output, &ec->output_list, link) {
1045 if (output->x <= x && x <= output->x + output->width)
1046 x_valid = 1;
1047
1048 if (output->y <= y && y <= output->y + output->height)
1049 y_valid = 1;
1050
1051 /* FIXME: calculate this only on output addition/deletion */
1052 if (output->x < min_x)
1053 min_x = output->x;
1054 if (output->y < min_y)
1055 min_y = output->y;
1056
1057 if (output->x + output->width > max_x)
1058 max_x = output->x + output->width;
1059 if (output->y + output->height > max_y)
1060 max_y = output->y + output->height;
1061 }
1062
1063 if (!x_valid) {
1064 if (x < min_x)
1065 x = min_x;
1066 else if (x >= max_x)
1067 x = max_x;
1068 }
1069 if (!y_valid) {
1070 if (y < min_y)
1071 y = min_y;
1072 else if (y >= max_y)
1073 y = max_y;
1074 }
Ray Strode90e701d2008-12-18 23:05:43 -05001075
Kristian Høgsberge3ef3e52008-12-21 19:30:01 -05001076 device->x = x;
1077 device->y = y;
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001078
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001079 if (device->grab) {
1080 interface = device->grab->interface;
1081 interface->motion(device->grab, time, x, y);
1082 } else {
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04001083 es = pick_surface(device, &sx, &sy);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001084 wl_input_device_set_pointer_focus(device,
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001085 &es->surface,
Kristian Høgsberg26437072010-12-01 10:17:47 -05001086 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04001087 if (es)
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001088 wl_client_post_event(es->surface.client,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001089 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -04001090 WL_INPUT_DEVICE_MOTION,
1091 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04001092 }
Kristian Høgsberg715a0812008-12-10 10:42:04 -05001093
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001094 wlsc_surface_damage(wd->sprite);
1095
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001096 wd->sprite->x = device->x - wd->hotspot_x;
1097 wd->sprite->y = device->y - wd->hotspot_y;
1098 wlsc_surface_update_matrix(wd->sprite);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001099
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001100 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg715a0812008-12-10 10:42:04 -05001101}
1102
Kristian Høgsberg30021d72011-04-12 17:42:30 -04001103void
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001104wlsc_surface_activate(struct wlsc_surface *surface,
1105 struct wlsc_input_device *device, uint32_t time)
1106{
1107 wlsc_surface_raise(surface);
1108 if (device->selection)
1109 wlsc_selection_set_focus(device->selection,
1110 &surface->surface, time);
1111
1112 wl_input_device_set_keyboard_focus(&device->input_device,
1113 &surface->surface,
1114 time);
1115}
1116
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001117struct wlsc_binding {
1118 uint32_t key;
1119 uint32_t button;
1120 uint32_t modifier;
1121 wlsc_binding_handler_t handler;
1122 void *data;
1123 struct wl_list link;
1124};
1125
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001126void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001127notify_button(struct wl_input_device *device,
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001128 uint32_t time, int32_t button, int32_t state)
Kristian Høgsbergeac149a2008-12-10 00:24:18 -05001129{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001130 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001131 struct wlsc_compositor *compositor =
1132 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001133 struct wlsc_binding *b;
1134 struct wlsc_surface *surface =
1135 (struct wlsc_surface *) device->pointer_focus;
Kristian Høgsbergea081152010-12-07 08:59:51 -05001136
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -05001137 if (state && surface && device->grab == NULL) {
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001138 wlsc_surface_activate(surface, wd, time);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001139 wl_input_device_start_grab(device,
1140 &device->motion_grab,
1141 button, time);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001142 }
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -05001143
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001144 wl_list_for_each(b, &compositor->binding_list, link) {
1145 if (b->button == button &&
1146 b->modifier == wd->modifier_state && state) {
1147 b->handler(&wd->input_device,
1148 time, 0, button, state, b->data);
1149 break;
1150 }
Benjamin Franzke5a2218a2011-02-01 16:30:31 +01001151 }
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -05001152
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -05001153 if (device->grab)
1154 device->grab->interface->button(device->grab, time,
1155 button, state);
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -05001156
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001157 if (!state && device->grab && device->grab_button == button)
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001158 wl_input_device_end_grab(device, time);
Kristian Høgsbergeac149a2008-12-10 00:24:18 -05001159}
1160
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001161static void
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001162terminate_binding(struct wl_input_device *device, uint32_t time,
1163 uint32_t key, uint32_t button, uint32_t state, void *data)
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001164{
1165 struct wlsc_compositor *compositor = data;
1166
1167 wl_display_terminate(compositor->wl_display);
1168}
1169
1170struct wlsc_binding *
1171wlsc_compositor_add_binding(struct wlsc_compositor *compositor,
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001172 uint32_t key, uint32_t button, uint32_t modifier,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001173 wlsc_binding_handler_t handler, void *data)
1174{
1175 struct wlsc_binding *binding;
1176
1177 binding = malloc(sizeof *binding);
1178 if (binding == NULL)
1179 return NULL;
1180
1181 binding->key = key;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001182 binding->button = button;
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001183 binding->modifier = modifier;
1184 binding->handler = handler;
1185 binding->data = data;
1186 wl_list_insert(compositor->binding_list.prev, &binding->link);
1187
1188 return binding;
1189}
1190
1191void
1192wlsc_binding_destroy(struct wlsc_binding *binding)
1193{
1194 wl_list_remove(&binding->link);
1195 free(binding);
1196}
1197
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001198static void
1199update_modifier_state(struct wlsc_input_device *device,
1200 uint32_t key, uint32_t state)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -05001201{
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001202 uint32_t modifier;
Kristian Høgsbergab909ae2001-01-01 22:24:24 -05001203
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001204 switch (key) {
1205 case KEY_LEFTCTRL:
1206 case KEY_RIGHTCTRL:
1207 modifier = MODIFIER_CTRL;
1208 break;
1209
1210 case KEY_LEFTALT:
1211 case KEY_RIGHTALT:
1212 modifier = MODIFIER_ALT;
1213 break;
1214
Kristian Høgsberg5b75f1b2010-08-04 23:21:41 -04001215 case KEY_LEFTMETA:
1216 case KEY_RIGHTMETA:
1217 modifier = MODIFIER_SUPER;
1218 break;
1219
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001220 default:
1221 modifier = 0;
1222 break;
1223 }
1224
1225 if (state)
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001226 device->modifier_state |= modifier;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001227 else
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001228 device->modifier_state &= ~modifier;
1229}
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001230
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001231void
1232notify_key(struct wl_input_device *device,
1233 uint32_t time, uint32_t key, uint32_t state)
1234{
1235 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1236 struct wlsc_compositor *compositor =
1237 (struct wlsc_compositor *) device->compositor;
1238 uint32_t *k, *end;
1239 struct wlsc_binding *b;
1240
1241 wl_list_for_each(b, &compositor->binding_list, link) {
1242 if (b->key == key &&
1243 b->modifier == wd->modifier_state && state) {
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001244 b->handler(&wd->input_device,
1245 time, key, 0, state, b->data);
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001246 break;
1247 }
1248 }
1249
1250 update_modifier_state(wd, key, state);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001251 end = device->keys.data + device->keys.size;
1252 for (k = device->keys.data; k < end; k++) {
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001253 if (*k == key)
1254 *k = *--end;
1255 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001256 device->keys.size = (void *) end - device->keys.data;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001257 if (state) {
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001258 k = wl_array_add(&device->keys, sizeof *k);
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001259 *k = key;
1260 }
Ray Strodee96dcb82008-12-20 02:00:49 -05001261
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001262 if (device->keyboard_focus != NULL)
1263 wl_client_post_event(device->keyboard_focus->client,
1264 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -04001265 WL_INPUT_DEVICE_KEY, time, key, state);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001266}
1267
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001268void
1269notify_pointer_focus(struct wl_input_device *device,
1270 uint32_t time, struct wlsc_output *output,
1271 int32_t x, int32_t y)
1272{
1273 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1274 struct wlsc_compositor *compositor =
1275 (struct wlsc_compositor *) device->compositor;
1276 struct wlsc_surface *es;
1277 int32_t sx, sy;
1278
1279 if (output) {
1280 device->x = x;
1281 device->y = y;
1282 es = pick_surface(device, &sx, &sy);
1283 wl_input_device_set_pointer_focus(device,
1284 &es->surface,
1285 time, x, y, sx, sy);
1286
1287 compositor->focus = 1;
1288
1289 wd->sprite->x = device->x - wd->hotspot_x;
1290 wd->sprite->y = device->y - wd->hotspot_y;
1291 wlsc_surface_update_matrix(wd->sprite);
1292 } else {
1293 wl_input_device_set_pointer_focus(device, NULL,
1294 time, 0, 0, 0, 0);
1295 compositor->focus = 0;
1296 }
1297
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001298 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001299}
1300
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001301void
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001302notify_keyboard_focus(struct wl_input_device *device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001303 uint32_t time, struct wlsc_output *output,
1304 struct wl_array *keys)
1305{
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001306 struct wlsc_input_device *wd =
1307 (struct wlsc_input_device *) device;
1308 struct wlsc_compositor *compositor =
1309 (struct wlsc_compositor *) device->compositor;
1310 struct wlsc_surface *es;
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001311 uint32_t *k, *end;
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001312
1313 if (!wl_list_empty(&compositor->surface_list))
1314 es = container_of(compositor->surface_list.next,
1315 struct wlsc_surface, link);
1316 else
1317 es = NULL;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001318
1319 if (output) {
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001320 wl_array_copy(&wd->input_device.keys, keys);
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001321 wd->modifier_state = 0;
1322 end = device->keys.data + device->keys.size;
1323 for (k = device->keys.data; k < end; k++) {
1324 update_modifier_state(wd, *k, 1);
1325 }
1326
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001327 wl_input_device_set_keyboard_focus(&wd->input_device,
1328 &es->surface, time);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001329 } else {
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001330 wd->modifier_state = 0;
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001331 wl_input_device_set_keyboard_focus(&wd->input_device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001332 NULL, time);
1333 }
1334}
1335
1336
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001337static void
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001338input_device_attach(struct wl_client *client,
1339 struct wl_input_device *device_base,
1340 uint32_t time,
1341 struct wl_buffer *buffer, int32_t x, int32_t y)
1342{
1343 struct wlsc_input_device *device =
1344 (struct wlsc_input_device *) device_base;
1345
1346 if (time < device->input_device.pointer_focus_time)
1347 return;
1348 if (device->input_device.pointer_focus == NULL)
1349 return;
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001350 if (device->input_device.pointer_focus->client != client)
1351 return;
1352
1353 if (buffer == NULL) {
1354 wlsc_input_device_set_pointer_image(device,
1355 WLSC_POINTER_LEFT_PTR);
1356 return;
1357 }
1358
Benjamin Franzke431da9a2011-04-20 11:02:58 +02001359 wlsc_input_device_attach_buffer(device, buffer, x, y);
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001360}
1361
1362const static struct wl_input_device_interface input_device_interface = {
1363 input_device_attach,
1364};
1365
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001366void
1367wlsc_input_device_init(struct wlsc_input_device *device,
1368 struct wlsc_compositor *ec)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -05001369{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001370 wl_input_device_init(&device->input_device, &ec->compositor);
Kristian Høgsberg02ef1c12010-12-06 21:35:19 -05001371
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001372 device->input_device.object.interface = &wl_input_device_interface;
1373 device->input_device.object.implementation =
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001374 (void (**)(void)) &input_device_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001375 wl_display_add_object(ec->wl_display, &device->input_device.object);
1376 wl_display_add_global(ec->wl_display, &device->input_device.object, NULL);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -04001377
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -05001378 device->sprite = wlsc_surface_create(ec,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001379 device->input_device.x,
1380 device->input_device.y, 32, 32);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001381 device->hotspot_x = 16;
1382 device->hotspot_y = 16;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001383 device->modifier_state = 0;
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001384
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001385 device->input_device.motion_grab.interface = &motion_grab_interface;
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001386
Kristian Høgsbergc492b482008-12-12 12:00:02 -05001387 wl_list_insert(ec->input_device_list.prev, &device->link);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001388
1389 wlsc_input_device_set_pointer_image(device, WLSC_POINTER_LEFT_PTR);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001390}
1391
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001392static void
Kristian Høgsberg91342c62011-04-14 14:44:58 -04001393wlsc_output_post_geometry(struct wl_client *client,
1394 struct wl_object *global, uint32_t version)
Kristian Høgsbergbf9541f2008-11-25 12:10:09 -05001395{
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001396 struct wlsc_output *output =
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001397 container_of(global, struct wlsc_output, object);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001398
1399 wl_client_post_event(client, global,
1400 WL_OUTPUT_GEOMETRY,
Kristian Høgsbergf8fc08f2010-12-01 20:10:10 -05001401 output->x, output->y,
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001402 output->width, output->height);
1403}
1404
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001405static const char vertex_shader[] =
1406 "uniform mat4 proj;\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001407 "attribute vec2 position;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001408 "attribute vec2 texcoord;\n"
1409 "varying vec2 v_texcoord;\n"
1410 "void main()\n"
1411 "{\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001412 " gl_Position = proj * vec4(position, 0.0, 1.0);\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001413 " v_texcoord = texcoord;\n"
1414 "}\n";
1415
1416static const char fragment_shader[] =
Kristian Høgsbergdfce71d2010-12-07 20:19:10 -05001417 "precision mediump float;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001418 "varying vec2 v_texcoord;\n"
1419 "uniform sampler2D tex;\n"
1420 "void main()\n"
1421 "{\n"
1422 " gl_FragColor = texture2D(tex, v_texcoord)\n;"
1423 "}\n";
1424
Kristian Høgsberga9468212010-06-14 21:03:11 -04001425static int
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001426init_shaders(struct wlsc_compositor *ec)
1427{
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001428 GLuint v, f, program;
1429 const char *p;
1430 char msg[512];
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001431 GLint status;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001432
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001433 p = vertex_shader;
1434 v = glCreateShader(GL_VERTEX_SHADER);
1435 glShaderSource(v, 1, &p, NULL);
1436 glCompileShader(v);
1437 glGetShaderiv(v, GL_COMPILE_STATUS, &status);
1438 if (!status) {
1439 glGetShaderInfoLog(v, sizeof msg, NULL, msg);
1440 fprintf(stderr, "vertex shader info: %s\n", msg);
1441 return -1;
1442 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001443
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001444 p = fragment_shader;
1445 f = glCreateShader(GL_FRAGMENT_SHADER);
1446 glShaderSource(f, 1, &p, NULL);
1447 glCompileShader(f);
1448 glGetShaderiv(f, GL_COMPILE_STATUS, &status);
1449 if (!status) {
1450 glGetShaderInfoLog(f, sizeof msg, NULL, msg);
1451 fprintf(stderr, "fragment shader info: %s\n", msg);
1452 return -1;
1453 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001454
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001455 program = glCreateProgram();
1456 glAttachShader(program, v);
1457 glAttachShader(program, f);
1458 glBindAttribLocation(program, 0, "position");
1459 glBindAttribLocation(program, 1, "texcoord");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001460
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001461 glLinkProgram(program);
1462 glGetProgramiv(program, GL_LINK_STATUS, &status);
1463 if (!status) {
1464 glGetProgramInfoLog(program, sizeof msg, NULL, msg);
1465 fprintf(stderr, "link info: %s\n", msg);
1466 return -1;
1467 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001468
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001469 glUseProgram(program);
1470 ec->proj_uniform = glGetUniformLocation(program, "proj");
1471 ec->tex_uniform = glGetUniformLocation(program, "tex");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001472
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001473 return 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001474}
1475
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001476void
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001477wlsc_output_destroy(struct wlsc_output *output)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001478{
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001479 destroy_surface(&output->background->surface.resource, NULL);
1480}
1481
1482void
1483wlsc_output_move(struct wlsc_output *output, int x, int y)
1484{
1485 struct wlsc_compositor *c = output->compositor;
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001486 int flip;
1487
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001488 output->x = x;
1489 output->y = y;
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001490
Benjamin Franzke264b3f92011-03-16 13:48:42 +01001491 if (output->background) {
1492 output->background->x = x;
1493 output->background->y = y;
1494 wlsc_surface_update_matrix(output->background);
1495 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001496
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001497 pixman_region32_init(&output->previous_damage_region);
1498
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001499 wlsc_matrix_init(&output->matrix);
1500 wlsc_matrix_translate(&output->matrix,
1501 -output->x - output->width / 2.0,
1502 -output->y - output->height / 2.0, 0);
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001503
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001504 flip = (output->flags & WL_OUTPUT_FLIPPED) ? -1 : 1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001505 wlsc_matrix_scale(&output->matrix,
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001506 2.0 / output->width,
1507 flip * 2.0 / output->height, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001508
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001509 pixman_region32_union_rect(&c->damage_region,
1510 &c->damage_region,
1511 x, y, output->width, output->height);
1512}
1513
1514void
1515wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c,
1516 int x, int y, int width, int height, uint32_t flags)
1517{
1518 output->compositor = c;
1519 output->x = x;
1520 output->y = y;
1521 output->width = width;
1522 output->height = height;
1523
1524 output->background =
1525 background_create(output, option_background);
1526
1527 output->flags = flags;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001528 output->finished = 1;
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001529 wlsc_output_move(output, x, y);
1530
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001531 output->object.interface = &wl_output_interface;
1532 wl_display_add_object(c->wl_display, &output->object);
1533 wl_display_add_global(c->wl_display, &output->object,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001534 wlsc_output_post_geometry);
1535}
1536
Benjamin Franzke315b3dc2011-03-08 11:32:57 +01001537static void
1538shm_buffer_created(struct wl_buffer *buffer)
1539{
1540 struct wl_list *surfaces_attached_to;
1541
1542 surfaces_attached_to = malloc(sizeof *surfaces_attached_to);
1543 if (!surfaces_attached_to) {
1544 buffer->user_data = NULL;
1545 return;
1546 }
1547
1548 wl_list_init(surfaces_attached_to);
1549
1550 buffer->user_data = surfaces_attached_to;
1551}
1552
1553static void
1554shm_buffer_damaged(struct wl_buffer *buffer,
1555 int32_t x, int32_t y, int32_t width, int32_t height)
1556{
1557 struct wl_list *surfaces_attached_to = buffer->user_data;
1558 struct wlsc_surface *es;
1559
1560 wl_list_for_each(es, surfaces_attached_to, buffer_link) {
1561 glBindTexture(GL_TEXTURE_2D, es->texture);
1562 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT,
1563 buffer->width, buffer->height, 0,
1564 GL_BGRA_EXT, GL_UNSIGNED_BYTE,
1565 wl_shm_buffer_get_data(buffer));
1566 /* Hmm, should use glTexSubImage2D() here but GLES2 doesn't
1567 * support any unpack attributes except GL_UNPACK_ALIGNMENT. */
1568 }
1569}
1570
1571static void
1572shm_buffer_destroyed(struct wl_buffer *buffer)
1573{
1574 struct wl_list *surfaces_attached_to = buffer->user_data;
1575 struct wlsc_surface *es, *next;
1576
1577 wl_list_for_each_safe(es, next, surfaces_attached_to, buffer_link) {
1578 es->buffer = NULL;
1579 wl_list_remove(&es->buffer_link);
1580 }
1581
1582 free(surfaces_attached_to);
1583}
1584
1585const static struct wl_shm_callbacks shm_callbacks = {
1586 shm_buffer_created,
1587 shm_buffer_damaged,
1588 shm_buffer_destroyed
1589};
1590
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001591int
1592wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
1593{
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001594 struct wl_event_loop *loop;
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001595 const char *extensions;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001596
Kristian Høgsbergf9212892008-10-11 18:40:23 -04001597 ec->wl_display = display;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001598
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -05001599 wl_compositor_init(&ec->compositor, &compositor_interface, display);
Kristian Høgsbergee02ca62008-12-21 23:37:12 -05001600
Benjamin Franzke315b3dc2011-03-08 11:32:57 +01001601 ec->shm = wl_shm_init(display, &shm_callbacks);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +01001602 eglBindWaylandDisplayWL(ec->display, ec->wl_display);
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -04001603
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001604 wl_list_init(&ec->surface_list);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001605 wl_list_init(&ec->input_device_list);
1606 wl_list_init(&ec->output_list);
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001607 wl_list_init(&ec->binding_list);
1608
Kristian Høgsberg07937562011-04-12 17:25:42 -04001609 wlsc_shell_init(ec);
Kristian Høgsberg30021d72011-04-12 17:42:30 -04001610 wlsc_switcher_init(ec);
Kristian Høgsberg07937562011-04-12 17:25:42 -04001611
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001612 wlsc_compositor_add_binding(ec, KEY_BACKSPACE, 0,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001613 MODIFIER_CTRL | MODIFIER_ALT,
1614 terminate_binding, ec);
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001615
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001616 create_pointer_images(ec);
1617
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001618 screenshooter_create(ec);
1619
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001620 extensions = (const char *) glGetString(GL_EXTENSIONS);
1621 if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) {
1622 fprintf(stderr,
1623 "GL_EXT_texture_format_BGRA8888 not available\n");
1624 return -1;
1625 }
1626
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001627 glActiveTexture(GL_TEXTURE0);
Kristian Høgsberga9468212010-06-14 21:03:11 -04001628 if (init_shaders(ec) < 0)
1629 return -1;
Kristian Høgsberg8d7ca6b2008-11-09 00:22:51 -05001630
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001631 loop = wl_display_get_event_loop(ec->wl_display);
Kristian Høgsberg4a298902008-11-28 18:35:25 -05001632 ec->timer_source = wl_event_loop_add_timer(loop, repaint, ec);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001633 pixman_region32_init(&ec->damage_region);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -04001634 wlsc_compositor_schedule_repaint(ec);
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -04001635
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001636 return 0;
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001637}
1638
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001639static void on_term_signal(int signal_number, void *data)
1640{
1641 struct wlsc_compositor *ec = data;
1642
1643 wl_display_terminate(ec->wl_display);
1644}
1645
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001646int main(int argc, char *argv[])
1647{
1648 struct wl_display *display;
Kristian Høgsberg8e438622009-01-26 23:07:00 -05001649 struct wlsc_compositor *ec;
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001650 struct wl_event_loop *loop;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001651 GError *error = NULL;
1652 GOptionContext *context;
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001653 int width, height;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001654
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001655 g_type_init(); /* GdkPixbuf needs this, it seems. */
1656
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001657 context = g_option_context_new(NULL);
1658 g_option_context_add_main_entries(context, option_entries, "Wayland");
1659 if (!g_option_context_parse(context, &argc, &argv, &error)) {
1660 fprintf(stderr, "option parsing failed: %s\n", error->message);
1661 exit(EXIT_FAILURE);
1662 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001663 if (sscanf(option_geometry, "%dx%d", &width, &height) != 2) {
1664 fprintf(stderr, "invalid geometry option: %s \n",
1665 option_geometry);
1666 exit(EXIT_FAILURE);
1667 }
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001668
1669 display = wl_display_create();
1670
Kristian Høgsberga9410222011-01-14 17:22:35 -05001671 ec = NULL;
1672
1673#if BUILD_WAYLAND_COMPOSITOR
Benjamin Franzkeec2e6422010-11-27 19:04:12 +01001674 if (getenv("WAYLAND_DISPLAY"))
1675 ec = wayland_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001676#endif
1677
1678#if BUILD_X11_COMPOSITOR
1679 if (ec == NULL && getenv("DISPLAY"))
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001680 ec = x11_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001681#endif
1682
Benjamin Franzke5d007092011-04-04 00:30:25 +02001683#if BUILD_OPENWFD_COMPOSITOR
1684 if (ec == NULL && getenv("OPENWFD"))
1685 ec = wfd_compositor_create(display, option_connector);
1686#endif
1687
Kristian Høgsberga9410222011-01-14 17:22:35 -05001688#if BUILD_DRM_COMPOSITOR
1689 if (ec == NULL)
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001690 ec = drm_compositor_create(display, option_connector);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001691#endif
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001692
Kristian Høgsberg841883b2008-12-05 11:19:56 -05001693 if (ec == NULL) {
1694 fprintf(stderr, "failed to create compositor\n");
1695 exit(EXIT_FAILURE);
1696 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001697
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001698 if (wl_display_add_socket(display, option_socket_name)) {
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001699 fprintf(stderr, "failed to add socket: %m\n");
1700 exit(EXIT_FAILURE);
1701 }
1702
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001703 loop = wl_display_get_event_loop(ec->wl_display);
1704 wl_event_loop_add_signal(loop, SIGTERM, on_term_signal, ec);
1705 wl_event_loop_add_signal(loop, SIGINT, on_term_signal, ec);
1706
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001707 wl_display_run(display);
1708
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +01001709 eglUnbindWaylandDisplayWL(ec->display, display);
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001710 wl_display_destroy(display);
1711
Kristian Høgsbergcaa64422010-12-01 16:52:15 -05001712 ec->destroy(ec);
1713
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001714 return 0;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001715}