blob: ac308ff71675d6a513c7ab62221b1651722ae09c [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";
Kristian Høgsberge10a5d92011-04-22 14:01:18 -040045static int option_idle_time = 5;
Kristian Høgsberg61a82512010-10-26 11:26:44 -040046static int option_connector = 0;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050047
48static const GOptionEntry option_entries[] = {
49 { "background", 'b', 0, G_OPTION_ARG_STRING,
50 &option_background, "Background image" },
Kristian Høgsbergf5878fa2009-09-18 17:02:41 -040051 { "connector", 'c', 0, G_OPTION_ARG_INT,
52 &option_connector, "KMS connector" },
Kristian Høgsberg61a82512010-10-26 11:26:44 -040053 { "geometry", 'g', 0, G_OPTION_ARG_STRING,
54 &option_geometry, "Geometry" },
Benjamin Franzkeec2e6422010-11-27 19:04:12 +010055 { "socket", 's', 0, G_OPTION_ARG_STRING,
56 &option_socket_name, "Socket Name" },
Kristian Høgsberge10a5d92011-04-22 14:01:18 -040057 { "idle-time", 'i', 0, G_OPTION_ARG_INT,
58 &option_idle_time, "Screensaver idle time" },
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050059 { NULL }
60};
61
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050062static void
63wlsc_matrix_init(struct wlsc_matrix *matrix)
64{
65 static const struct wlsc_matrix identity = {
66 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 }
67 };
68
69 memcpy(matrix, &identity, sizeof identity);
70}
71
72static void
73wlsc_matrix_multiply(struct wlsc_matrix *m, const struct wlsc_matrix *n)
74{
75 struct wlsc_matrix tmp;
Kristian Høgsberg27803c62010-06-06 22:23:21 -040076 const GLfloat *row, *column;
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050077 div_t d;
78 int i, j;
79
80 for (i = 0; i < 16; i++) {
81 tmp.d[i] = 0;
82 d = div(i, 4);
83 row = m->d + d.quot * 4;
84 column = n->d + d.rem;
85 for (j = 0; j < 4; j++)
86 tmp.d[i] += row[j] * column[j * 4];
87 }
88 memcpy(m, &tmp, sizeof tmp);
89}
90
91static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -040092wlsc_matrix_translate(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050093{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -050094 struct wlsc_matrix translate = {
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050095 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, x, y, z, 1 }
96 };
97
98 wlsc_matrix_multiply(matrix, &translate);
99}
100
101static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400102wlsc_matrix_scale(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500103{
104 struct wlsc_matrix scale = {
105 { x, 0, 0, 0, 0, y, 0, 0, 0, 0, z, 0, 0, 0, 0, 1 }
106 };
107
108 wlsc_matrix_multiply(matrix, &scale);
109}
110
111static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400112wlsc_matrix_transform(struct wlsc_matrix *matrix, struct wlsc_vector *v)
113{
114 int i, j;
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400115 struct wlsc_vector t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400116
117 for (i = 0; i < 4; i++) {
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400118 t.f[i] = 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400119 for (j = 0; j < 4; j++)
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400120 t.f[i] += v->f[j] * matrix->d[i + j * 4];
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400121 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500122
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400123 *v = t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400124}
125
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200126struct wlsc_surface *
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400127wlsc_surface_create(struct wlsc_compositor *compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400128 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500129{
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400130 struct wlsc_surface *surface;
131
132 surface = malloc(sizeof *surface);
133 if (surface == NULL)
134 return NULL;
135
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500136 wl_list_init(&surface->surface.destroy_listener_list);
Kristian Høgsbergf6b14712011-01-06 15:32:14 -0500137 wl_list_init(&surface->link);
Benjamin Franzkebab41fb2011-03-07 18:04:59 +0100138 wl_list_init(&surface->buffer_link);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500139 surface->map_type = WLSC_SURFACE_MAP_UNMAPPED;
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500140
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500141 glGenTextures(1, &surface->texture);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400142 glBindTexture(GL_TEXTURE_2D, surface->texture);
143 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
144 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
145 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
146 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
147
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500148 surface->compositor = compositor;
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500149 surface->visual = NULL;
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200150 surface->image = EGL_NO_IMAGE_KHR;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200151 surface->saved_texture = 0;
Benjamin Franzkebab41fb2011-03-07 18:04:59 +0100152 surface->buffer = NULL;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400153 surface->x = x;
154 surface->y = y;
155 surface->width = width;
156 surface->height = height;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400157 wlsc_matrix_init(&surface->matrix);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400158 wlsc_matrix_scale(&surface->matrix, width, height, 1);
159 wlsc_matrix_translate(&surface->matrix, x, y, 0);
160
161 wlsc_matrix_init(&surface->matrix_inv);
162 wlsc_matrix_translate(&surface->matrix_inv, -x, -y, 0);
163 wlsc_matrix_scale(&surface->matrix_inv, 1.0 / width, 1.0 / height, 1);
Kristian Høgsberg1e4b86a2008-11-23 23:41:08 -0500164
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400165 return surface;
Kristian Høgsberg54879822008-11-23 17:07:32 -0500166}
167
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500168void
169wlsc_surface_damage_rectangle(struct wlsc_surface *surface,
170 int32_t x, int32_t y,
171 int32_t width, int32_t height)
172{
173 struct wlsc_compositor *compositor = surface->compositor;
174
175 pixman_region32_union_rect(&compositor->damage_region,
176 &compositor->damage_region,
177 surface->x + x, surface->y + y,
178 width, height);
179 wlsc_compositor_schedule_repaint(compositor);
180}
181
182void
183wlsc_surface_damage(struct wlsc_surface *surface)
184{
185 wlsc_surface_damage_rectangle(surface, 0, 0,
186 surface->width, surface->height);
187}
188
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500189uint32_t
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500190get_time(void)
191{
192 struct timeval tv;
193
194 gettimeofday(&tv, NULL);
195
196 return tv.tv_sec * 1000 + tv.tv_usec / 1000;
197}
198
Kristian Høgsberg54879822008-11-23 17:07:32 -0500199static void
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400200destroy_surface(struct wl_resource *resource, struct wl_client *client)
Kristian Høgsberg54879822008-11-23 17:07:32 -0500201{
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400202 struct wlsc_surface *surface =
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500203 container_of(resource, struct wlsc_surface, surface.resource);
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500204 struct wl_listener *l, *next;
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500205 uint32_t time;
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400206
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500207 wlsc_surface_damage(surface);
208
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400209 wl_list_remove(&surface->link);
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200210 if (surface->saved_texture == 0)
211 glDeleteTextures(1, &surface->texture);
212 else
213 glDeleteTextures(1, &surface->saved_texture);
214
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400215
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200216 if (surface->image != EGL_NO_IMAGE_KHR)
217 eglDestroyImageKHR(surface->compositor->display,
218 surface->image);
219
Benjamin Franzkebab41fb2011-03-07 18:04:59 +0100220 wl_list_remove(&surface->buffer_link);
221
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500222 time = get_time();
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500223 wl_list_for_each_safe(l, next,
224 &surface->surface.destroy_listener_list, link)
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500225 l->func(l, &surface->surface, time);
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400226
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400227 free(surface);
Kristian Høgsberg54879822008-11-23 17:07:32 -0500228}
229
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500230uint32_t *
231wlsc_load_image(const char *filename, int width, int height)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500232{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400233 GdkPixbuf *pixbuf;
234 GError *error = NULL;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500235 int stride, i, n_channels;
236 unsigned char *pixels, *end, *argb_pixels, *s, *d;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500237
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400238 pixbuf = gdk_pixbuf_new_from_file_at_scale(filename,
239 width, height,
240 FALSE, &error);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500241 if (error != NULL) {
242 fprintf(stderr, "failed to load image: %s\n", error->message);
243 g_error_free(error);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500244 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500245 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400246
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500247 stride = gdk_pixbuf_get_rowstride(pixbuf);
248 pixels = gdk_pixbuf_get_pixels(pixbuf);
249 n_channels = gdk_pixbuf_get_n_channels(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400250
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500251 argb_pixels = malloc (height * width * 4);
252 if (argb_pixels == NULL) {
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500253 g_object_unref(pixbuf);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500254 return NULL;
255 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400256
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500257 if (n_channels == 4) {
258 for (i = 0; i < height; i++) {
259 s = pixels + i * stride;
260 end = s + width * 4;
261 d = argb_pixels + i * width * 4;
262 while (s < end) {
263 unsigned int t;
264
265#define MULT(_d,c,a,t) \
266 do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0)
267
268 MULT(d[0], s[2], s[3], t);
269 MULT(d[1], s[1], s[3], t);
270 MULT(d[2], s[0], s[3], t);
271 d[3] = s[3];
272 s += 4;
273 d += 4;
274 }
275 }
276 } else if (n_channels == 3) {
277 for (i = 0; i < height; i++) {
278 s = pixels + i * stride;
279 end = s + width * 3;
280 d = argb_pixels + i * width * 4;
281 while (s < end) {
282 d[0] = s[2];
283 d[1] = s[1];
284 d[2] = s[0];
285 d[3] = 0xff;
286 s += 3;
287 d += 4;
288 }
289 }
290 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400291
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500292 g_object_unref(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400293
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500294 return (uint32_t *) argb_pixels;
295}
296
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100297static void
298wlsc_buffer_attach(struct wl_buffer *buffer, struct wl_surface *surface)
299{
300 struct wlsc_surface *es = (struct wlsc_surface *) surface;
301 struct wlsc_compositor *ec = es->compositor;
Benjamin Franzke315b3dc2011-03-08 11:32:57 +0100302 struct wl_list *surfaces_attached_to;
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100303
Benjamin Franzke315b3dc2011-03-08 11:32:57 +0100304 if (es->saved_texture != 0)
305 es->texture = es->saved_texture;
306
307 glBindTexture(GL_TEXTURE_2D, es->texture);
308
309 if (wl_buffer_is_shm(buffer)) {
310 /* Unbind any EGLImage texture that may be bound, so we don't
311 * overwrite it.*/
312 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT,
313 0, 0, 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, NULL);
314 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT,
315 buffer->width, buffer->height, 0,
316 GL_BGRA_EXT, GL_UNSIGNED_BYTE,
317 wl_shm_buffer_get_data(buffer));
318 es->visual = buffer->visual;
319
320 surfaces_attached_to = buffer->user_data;
321
322 if (es->buffer)
323 wl_list_remove(&es->buffer_link);
324 wl_list_insert(surfaces_attached_to, &es->buffer_link);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100325 } else {
Kristian Høgsbergdf2f1972011-04-21 23:48:13 -0400326 es->image = eglCreateImageKHR(ec->display, NULL,
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200327 EGL_WAYLAND_BUFFER_WL,
328 buffer, NULL);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100329
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200330 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, es->image);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100331 es->visual = buffer->visual;
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100332 }
333}
334
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200335static void
336wlsc_sprite_attach(struct wlsc_sprite *sprite, struct wl_surface *surface)
337{
338 struct wlsc_surface *es = (struct wlsc_surface *) surface;
339
340 es->image = sprite->image;
341 if (sprite->image != EGL_NO_IMAGE_KHR) {
342 glBindTexture(GL_TEXTURE_2D, es->texture);
343 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, es->image);
344 } else {
345 if (es->saved_texture == 0)
346 es->saved_texture = es->texture;
347 es->texture = sprite->texture;
348 }
349
350 es->visual = sprite->visual;
351}
352
353enum sprite_usage {
354 SPRITE_USE_CURSOR = (1 << 0),
355};
356
357static struct wlsc_sprite *
358create_sprite_from_png(struct wlsc_compositor *ec,
359 const char *filename, int width, int height,
360 uint32_t usage)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500361{
362 uint32_t *pixels;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200363 struct wlsc_sprite *sprite;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500364
365 pixels = wlsc_load_image(filename, width, height);
Tim Wiederhakeac5c5e72011-01-27 01:32:36 +0100366 if(pixels == NULL)
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200367 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500368
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200369 sprite = malloc(sizeof *sprite);
370 if (sprite == NULL) {
371 free(pixels);
372 return NULL;
373 }
374
375 sprite->visual = &ec->compositor.premultiplied_argb_visual;
376 sprite->width = width;
377 sprite->height = height;
378 sprite->image = EGL_NO_IMAGE_KHR;
379
380 if (usage & SPRITE_USE_CURSOR && ec->create_cursor_image != NULL)
381 sprite->image = ec->create_cursor_image(ec, width, height);
382
383 glGenTextures(1, &sprite->texture);
384 glBindTexture(GL_TEXTURE_2D, sprite->texture);
385 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
386 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
387 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
388 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
389
390 if (sprite->image != EGL_NO_IMAGE_KHR) {
391 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, sprite->image);
392 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height,
393 GL_BGRA_EXT, GL_UNSIGNED_BYTE, pixels);
394 } else {
395 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT, width, height, 0,
396 GL_BGRA_EXT, GL_UNSIGNED_BYTE, pixels);
397 }
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500398
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500399 free(pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500400
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200401 return sprite;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500402}
403
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400404static const struct {
405 const char *filename;
406 int hotspot_x, hotspot_y;
407} pointer_images[] = {
Kristian Høgsberg4219a402010-08-16 16:43:03 -0400408 { DATADIR "/wayland/bottom_left_corner.png", 6, 30 },
409 { DATADIR "/wayland/bottom_right_corner.png", 28, 28 },
410 { DATADIR "/wayland/bottom_side.png", 16, 20 },
411 { DATADIR "/wayland/grabbing.png", 20, 17 },
412 { DATADIR "/wayland/left_ptr.png", 10, 5 },
413 { DATADIR "/wayland/left_side.png", 10, 20 },
414 { DATADIR "/wayland/right_side.png", 30, 19 },
415 { DATADIR "/wayland/top_left_corner.png", 8, 8 },
416 { DATADIR "/wayland/top_right_corner.png", 26, 8 },
417 { DATADIR "/wayland/top_side.png", 18, 8 },
418 { DATADIR "/wayland/xterm.png", 15, 15 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400419};
420
421static void
422create_pointer_images(struct wlsc_compositor *ec)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500423{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400424 int i, count;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400425 const int width = 32, height = 32;
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400426
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400427 count = ARRAY_LENGTH(pointer_images);
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200428 ec->pointer_sprites = malloc(count * sizeof *ec->pointer_sprites);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400429 for (i = 0; i < count; i++) {
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200430 ec->pointer_sprites[i] =
431 create_sprite_from_png(ec,
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500432 pointer_images[i].filename,
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200433 width, height,
434 SPRITE_USE_CURSOR);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400435 }
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400436}
437
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500438static struct wlsc_surface *
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500439background_create(struct wlsc_output *output, const char *filename)
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500440{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500441 struct wlsc_surface *background;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200442 struct wlsc_sprite *sprite;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500443
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400444 background = wlsc_surface_create(output->compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400445 output->x, output->y,
446 output->width, output->height);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500447 if (background == NULL)
448 return NULL;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500449
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200450 sprite = create_sprite_from_png(output->compositor, filename,
451 output->width, output->height, 0);
452 if (sprite == NULL) {
Benjamin Franzked3b023e2011-01-15 12:34:49 +0100453 free(background);
454 return NULL;
455 }
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100456
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200457 wlsc_sprite_attach(sprite, &background->surface);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500458
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500459 return background;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500460}
461
462static void
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500463wlsc_surface_draw(struct wlsc_surface *es,
464 struct wlsc_output *output, pixman_region32_t *clip)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500465{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500466 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500467 GLfloat *v, inv_width, inv_height;
468 unsigned int *p;
469 pixman_region32_t repaint;
470 pixman_box32_t *rectangles;
471 int i, n;
472
473 pixman_region32_init_rect(&repaint,
474 es->x, es->y, es->width, es->height);
475 pixman_region32_intersect(&repaint, &repaint, clip);
476 if (!pixman_region32_not_empty(&repaint))
477 return;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500478
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500479 if (es->visual == &ec->compositor.argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500480 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
481 glEnable(GL_BLEND);
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500482 } else if (es->visual == &ec->compositor.premultiplied_argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500483 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
484 glEnable(GL_BLEND);
485 } else {
486 glDisable(GL_BLEND);
487 }
488
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500489 rectangles = pixman_region32_rectangles(&repaint, &n);
490 v = wl_array_add(&ec->vertices, n * 16 * sizeof *v);
491 p = wl_array_add(&ec->indices, n * 6 * sizeof *p);
492 inv_width = 1.0 / es->width;
493 inv_height = 1.0 / es->height;
494 for (i = 0; i < n; i++, v += 16, p += 6) {
495 v[ 0] = rectangles[i].x1;
496 v[ 1] = rectangles[i].y1;
497 v[ 2] = (GLfloat) (rectangles[i].x1 - es->x) * inv_width;
498 v[ 3] = (GLfloat) (rectangles[i].y1 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500499
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500500 v[ 4] = rectangles[i].x1;
501 v[ 5] = rectangles[i].y2;
502 v[ 6] = v[ 2];
503 v[ 7] = (GLfloat) (rectangles[i].y2 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500504
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500505 v[ 8] = rectangles[i].x2;
506 v[ 9] = rectangles[i].y1;
507 v[10] = (GLfloat) (rectangles[i].x2 - es->x) * inv_width;
508 v[11] = v[ 3];
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500509
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500510 v[12] = rectangles[i].x2;
511 v[13] = rectangles[i].y2;
512 v[14] = v[10];
513 v[15] = v[ 7];
514
515 p[0] = i * 4 + 0;
516 p[1] = i * 4 + 1;
517 p[2] = i * 4 + 2;
518 p[3] = i * 4 + 2;
519 p[4] = i * 4 + 1;
520 p[5] = i * 4 + 3;
521 }
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500522
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500523 glBindTexture(GL_TEXTURE_2D, es->texture);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500524 v = ec->vertices.data;
525 glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[0]);
526 glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[2]);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400527 glEnableVertexAttribArray(0);
528 glEnableVertexAttribArray(1);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500529 glDrawElements(GL_TRIANGLES, n * 6, GL_UNSIGNED_INT, ec->indices.data);
530
531 ec->vertices.size = 0;
532 ec->indices.size = 0;
533 pixman_region32_fini(&repaint);
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500534}
535
536static void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400537wlsc_surface_raise(struct wlsc_surface *surface)
538{
539 struct wlsc_compositor *compositor = surface->compositor;
540
541 wl_list_remove(&surface->link);
Kristian Høgsberg747638b2010-07-12 17:06:06 -0400542 wl_list_insert(&compositor->surface_list, &surface->link);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400543}
544
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500545void
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400546wlsc_surface_update_matrix(struct wlsc_surface *es)
547{
548 wlsc_matrix_init(&es->matrix);
549 wlsc_matrix_scale(&es->matrix, es->width, es->height, 1);
550 wlsc_matrix_translate(&es->matrix, es->x, es->y, 0);
551
552 wlsc_matrix_init(&es->matrix_inv);
553 wlsc_matrix_translate(&es->matrix_inv, -es->x, -es->y, 0);
554 wlsc_matrix_scale(&es->matrix_inv,
555 1.0 / es->width, 1.0 / es->height, 1);
556}
557
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400558void
Kristian Høgsberge10a5d92011-04-22 14:01:18 -0400559wlsc_compositor_damage_all(struct wlsc_compositor *compositor)
560{
561 struct wlsc_output *output;
562
563 wl_list_for_each(output, &compositor->output_list, link)
564 wlsc_output_damage(output);
565}
566
567void
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100568wlsc_output_finish_frame(struct wlsc_output *output, int msecs)
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400569{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100570 struct wlsc_compositor *compositor = output->compositor;
571 struct wlsc_surface *es;
572
573 wl_list_for_each(es, &compositor->surface_list, link) {
574 if (es->output == output) {
575 wl_display_post_frame(compositor->wl_display,
576 &es->surface, msecs);
577 }
578 }
579
580 output->finished = 1;
581
Kristian Høgsberg5d312db2009-09-12 16:57:02 -0400582 wl_event_source_timer_update(compositor->timer_source, 5);
Kristian Høgsbergf30c67e2011-02-06 12:58:44 -0500583 compositor->repaint_on_timeout = 1;
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400584}
585
Kristian Høgsberge10a5d92011-04-22 14:01:18 -0400586void
587wlsc_output_damage(struct wlsc_output *output)
588{
589 struct wlsc_compositor *compositor = output->compositor;
590
591 pixman_region32_union_rect(&compositor->damage_region,
592 &compositor->damage_region,
593 output->x, output->y,
594 output->width, output->height);
595 wlsc_compositor_schedule_repaint(compositor);
596}
597
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400598static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400599wlsc_output_repaint(struct wlsc_output *output)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400600{
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500601 struct wlsc_compositor *ec = output->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500602 struct wlsc_surface *es;
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -0500603 struct wlsc_input_device *eid;
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400604 pixman_region32_t new_damage, total_damage, repaint;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200605 int using_hardware_cursor = 1;
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500606
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100607 output->prepare_render(output);
608
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500609 glViewport(0, 0, output->width, output->height);
Kristian Høgsbergfdec2362001-01-01 22:23:51 -0500610
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -0400611 glUseProgram(ec->texture_shader.program);
612 glUniformMatrix4fv(ec->texture_shader.proj_uniform,
613 1, GL_FALSE, output->matrix.d);
614 glUniform1i(ec->texture_shader.tex_uniform, 0);
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500615
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500616 pixman_region32_init(&new_damage);
617 pixman_region32_init(&total_damage);
618 pixman_region32_intersect_rect(&new_damage,
619 &ec->damage_region,
620 output->x, output->y,
621 output->width, output->height);
622 pixman_region32_subtract(&ec->damage_region,
623 &ec->damage_region, &new_damage);
624 pixman_region32_union(&total_damage, &new_damage,
625 &output->previous_damage_region);
626 pixman_region32_copy(&output->previous_damage_region, &new_damage);
627
Kristian Høgsberge10a5d92011-04-22 14:01:18 -0400628 if (ec->state == WLSC_COMPOSITOR_SLEEPING) {
629 glClear(GL_COLOR_BUFFER_BIT);
630 return;
631 }
632
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200633 if (ec->focus)
634 if (output->set_hardware_cursor(output, ec->input_device) < 0)
635 using_hardware_cursor = 0;
636
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500637 es = container_of(ec->surface_list.next, struct wlsc_surface, link);
638 if (es->map_type == WLSC_SURFACE_MAP_FULLSCREEN &&
639 es->fullscreen_output == output) {
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200640 if (es->visual == &ec->compositor.rgb_visual &&
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200641 using_hardware_cursor) {
642 if (output->prepare_scanout_surface(output, es) == 0) {
643 /* We're drawing nothing now,
644 * draw the damaged regions later. */
645 pixman_region32_union(&ec->damage_region,
646 &ec->damage_region,
647 &total_damage);
648 return;
649 }
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200650 }
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200651
652 if (es->width < output->width ||
653 es->height < output->height)
654 glClear(GL_COLOR_BUFFER_BIT);
655 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500656 } else {
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400657 wl_list_for_each(es, &ec->surface_list, link) {
658 if (es->visual != &ec->compositor.rgb_visual)
659 continue;
660
661 pixman_region32_init_rect(&repaint,
662 es->x, es->y,
663 es->width, es->height);
664 wlsc_surface_draw(es, output, &total_damage);
665 pixman_region32_subtract(&total_damage,
666 &total_damage, &repaint);
667 }
668
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500669 if (output->background)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500670 wlsc_surface_draw(output->background,
671 output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500672 else
673 glClear(GL_COLOR_BUFFER_BIT);
674
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500675 wl_list_for_each_reverse(es, &ec->surface_list, link) {
Kristian Høgsberg547cadf2011-04-12 22:23:30 -0400676 if (ec->overlay == es)
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500677 continue;
678
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400679 if (es->visual == &ec->compositor.rgb_visual) {
680 pixman_region32_union_rect(&total_damage,
681 &total_damage,
682 es->x, es->y,
683 es->width, es->height);
684 continue;
685 }
686
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500687 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500688 }
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500689 }
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400690
Kristian Høgsberg547cadf2011-04-12 22:23:30 -0400691 if (ec->overlay)
692 wlsc_surface_draw(ec->overlay, output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500693
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400694 if (ec->focus)
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200695 wl_list_for_each(eid, &ec->input_device_list, link) {
696 if (&eid->input_device != ec->input_device ||
697 !using_hardware_cursor)
698 wlsc_surface_draw(eid->sprite, output,
699 &total_damage);
700 }
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500701}
702
Kristian Høgsbergb1868472011-04-22 12:27:57 -0400703static int
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500704repaint(void *data)
705{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500706 struct wlsc_compositor *ec = data;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500707 struct wlsc_output *output;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100708 int repainted_all_outputs = 1;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500709
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100710 wl_list_for_each(output, &ec->output_list, link) {
711 if (!output->repaint_needed)
712 continue;
713
714 if (!output->finished) {
715 repainted_all_outputs = 0;
716 continue;
717 }
718
719 wlsc_output_repaint(output);
720 output->finished = 0;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100721 output->repaint_needed = 0;
Kristian Høgsberg11e28282011-04-11 16:47:50 -0400722 output->present(output);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500723 }
724
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100725 if (repainted_all_outputs)
726 ec->repaint_on_timeout = 0;
727 else
728 wl_event_source_timer_update(ec->timer_source, 1);
Kristian Høgsbergb1868472011-04-22 12:27:57 -0400729
730 return 1;
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400731}
732
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400733void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400734wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400735{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100736 struct wlsc_output *output;
737
Kristian Høgsberge10a5d92011-04-22 14:01:18 -0400738 if (compositor->state == WLSC_COMPOSITOR_SLEEPING)
739 return;
740
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100741 wl_list_for_each(output, &compositor->output_list, link)
742 output->repaint_needed = 1;
743
Kristian Høgsbergb0a167c2009-08-14 11:15:18 -0400744 if (compositor->repaint_on_timeout)
745 return;
746
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400747 wl_event_source_timer_update(compositor->timer_source, 1);
748 compositor->repaint_on_timeout = 1;
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400749}
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500750
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500751static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500752surface_destroy(struct wl_client *client,
753 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400754{
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500755 wl_resource_destroy(&surface->resource, client);
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400756}
757
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100758void
759wlsc_surface_assign_output(struct wlsc_surface *es)
760{
761 struct wlsc_compositor *ec = es->compositor;
762 struct wlsc_output *output;
763
764 struct wlsc_output *tmp = es->output;
765 es->output = NULL;
766
767 wl_list_for_each(output, &ec->output_list, link) {
768 if (output->x < es->x && es->x < output->x + output->width &&
769 output->y < es->y && es->y < output->y + output->height) {
770 if (output != tmp)
771 printf("assiging surface %p to output %p\n",
772 es, output);
773 es->output = output;
774 }
775 }
776
777 if (es->output == NULL) {
778 printf("no output found\n");
779 es->output = container_of(ec->output_list.next,
780 struct wlsc_output, link);
781 }
782}
783
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500784static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500785surface_attach(struct wl_client *client,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500786 struct wl_surface *surface, struct wl_buffer *buffer,
787 int32_t x, int32_t y)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400788{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500789 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400790
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500791 /* FIXME: This damages the entire old surface, but we should
792 * really just damage the part that's no longer covered by the
793 * surface. Anything covered by the new surface will be
794 * damaged by the client. */
795 wlsc_surface_damage(es);
796
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100797 wlsc_buffer_attach(buffer, surface);
798
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400799 es->buffer = buffer;
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500800 es->x += x;
801 es->y += y;
802 es->width = buffer->width;
803 es->height = buffer->height;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100804 if (x != 0 || y != 0)
805 wlsc_surface_assign_output(es);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500806 wlsc_surface_update_matrix(es);
Kristian Høgsbergf9212892008-10-11 18:40:23 -0400807}
808
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500809static void
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500810surface_map_toplevel(struct wl_client *client,
811 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400812{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500813 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100814 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400815
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500816 switch (es->map_type) {
817 case WLSC_SURFACE_MAP_UNMAPPED:
818 es->x = 10 + random() % 400;
819 es->y = 10 + random() % 400;
820 wlsc_surface_update_matrix(es);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100821 /* assign to first output */
822 es->output = container_of(ec->output_list.next,
823 struct wlsc_output, link);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500824 wl_list_insert(&es->compositor->surface_list, &es->link);
825 break;
826 case WLSC_SURFACE_MAP_TOPLEVEL:
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500827 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500828 case WLSC_SURFACE_MAP_FULLSCREEN:
829 es->fullscreen_output = NULL;
830 es->x = es->saved_x;
831 es->y = es->saved_y;
832 wlsc_surface_update_matrix(es);
833 break;
834 default:
835 break;
836 }
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500837
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500838 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500839 es->map_type = WLSC_SURFACE_MAP_TOPLEVEL;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400840}
841
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500842static void
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500843surface_map_transient(struct wl_client *client,
844 struct wl_surface *surface, struct wl_surface *parent,
845 int x, int y, uint32_t flags)
846{
847 struct wlsc_surface *es = (struct wlsc_surface *) surface;
848 struct wlsc_surface *pes = (struct wlsc_surface *) parent;
849
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500850 switch (es->map_type) {
851 case WLSC_SURFACE_MAP_UNMAPPED:
852 wl_list_insert(&es->compositor->surface_list, &es->link);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100853 /* assign to parents output */
854 es->output = pes->output;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500855 break;
856 case WLSC_SURFACE_MAP_FULLSCREEN:
857 es->fullscreen_output = NULL;
858 break;
859 default:
860 break;
861 }
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500862
863 es->x = pes->x + x;
864 es->y = pes->y + y;
865
866 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500867 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500868 es->map_type = WLSC_SURFACE_MAP_TRANSIENT;
869}
870
871static void
872surface_map_fullscreen(struct wl_client *client, struct wl_surface *surface)
873{
874 struct wlsc_surface *es = (struct wlsc_surface *) surface;
875 struct wlsc_output *output;
876
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100877 /* FIXME: Fullscreen on first output */
878 /* FIXME: Handle output going away */
879 output = container_of(es->compositor->output_list.next,
880 struct wlsc_output, link);
881
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500882 switch (es->map_type) {
883 case WLSC_SURFACE_MAP_UNMAPPED:
884 es->x = 10 + random() % 400;
885 es->y = 10 + random() % 400;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100886 /* assign to first output */
887 es->output = output;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500888 wl_list_insert(&es->compositor->surface_list, &es->link);
889 break;
890 case WLSC_SURFACE_MAP_FULLSCREEN:
891 return;
892 default:
893 break;
894 }
895
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500896 es->saved_x = es->x;
897 es->saved_y = es->y;
898 es->x = (output->width - es->width) / 2;
899 es->y = (output->height - es->height) / 2;
900 es->fullscreen_output = output;
901 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500902 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500903 es->map_type = WLSC_SURFACE_MAP_FULLSCREEN;
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500904}
905
906static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500907surface_damage(struct wl_client *client,
908 struct wl_surface *surface,
909 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500910{
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400911 struct wlsc_surface *es = (struct wlsc_surface *) surface;
912
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500913 wlsc_surface_damage_rectangle(es, x, y, width, height);
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500914}
915
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500916const static struct wl_surface_interface surface_interface = {
917 surface_destroy,
918 surface_attach,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500919 surface_map_toplevel,
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500920 surface_map_transient,
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500921 surface_map_fullscreen,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500922 surface_damage
923};
924
925static void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400926wlsc_input_device_attach(struct wlsc_input_device *device,
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200927 int x, int y, int width, int height)
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400928{
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500929 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400930
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400931 device->hotspot_x = x;
932 device->hotspot_y = y;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400933
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500934 device->sprite->x = device->input_device.x - device->hotspot_x;
935 device->sprite->y = device->input_device.y - device->hotspot_y;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200936 device->sprite->width = width;
937 device->sprite->height = height;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400938 wlsc_surface_update_matrix(device->sprite);
939
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500940 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400941}
942
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200943static void
944wlsc_input_device_attach_buffer(struct wlsc_input_device *device,
945 struct wl_buffer *buffer, int x, int y)
946{
947 wlsc_buffer_attach(buffer, &device->sprite->surface);
948 wlsc_input_device_attach(device, x, y, buffer->width, buffer->height);
949}
950
951static void
952wlsc_input_device_attach_sprite(struct wlsc_input_device *device,
953 struct wlsc_sprite *sprite, int x, int y)
954{
955 wlsc_sprite_attach(sprite, &device->sprite->surface);
956 wlsc_input_device_attach(device, x, y, sprite->width, sprite->height);
957}
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400958
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500959void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400960wlsc_input_device_set_pointer_image(struct wlsc_input_device *device,
961 enum wlsc_pointer_type type)
962{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500963 struct wlsc_compositor *compositor =
964 (struct wlsc_compositor *) device->input_device.compositor;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400965
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200966 wlsc_input_device_attach_sprite(device,
967 compositor->pointer_sprites[type],
968 pointer_images[type].hotspot_x,
969 pointer_images[type].hotspot_y);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400970}
971
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400972static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500973compositor_create_surface(struct wl_client *client,
974 struct wl_compositor *compositor, uint32_t id)
975{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500976 struct wlsc_compositor *ec = (struct wlsc_compositor *) compositor;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400977 struct wlsc_surface *surface;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500978
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500979 surface = wlsc_surface_create(ec, 0, 0, 0, 0);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400980 if (surface == NULL) {
Kristian Høgsberg13b8ae42010-09-02 20:55:16 -0400981 wl_client_post_no_memory(client);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500982 return;
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400983 }
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500984
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500985 surface->surface.resource.destroy = destroy_surface;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400986
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500987 surface->surface.resource.object.id = id;
988 surface->surface.resource.object.interface = &wl_surface_interface;
989 surface->surface.resource.object.implementation =
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400990 (void (**)(void)) &surface_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500991 surface->surface.client = client;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400992
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500993 wl_client_add_resource(client, &surface->surface.resource);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500994}
995
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500996const static struct wl_compositor_interface compositor_interface = {
997 compositor_create_surface,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500998};
999
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -05001000static void
1001wlsc_surface_transform(struct wlsc_surface *surface,
1002 int32_t x, int32_t y, int32_t *sx, int32_t *sy)
1003{
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001004 struct wlsc_vector v = { { x, y, 0, 1 } };
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001005
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001006 wlsc_matrix_transform(&surface->matrix_inv, &v);
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -04001007 *sx = v.f[0] * surface->width;
1008 *sy = v.f[1] * surface->height;
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -05001009}
1010
Kristian Høgsberg4cca3492011-01-18 07:53:49 -05001011struct wlsc_surface *
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001012pick_surface(struct wl_input_device *device, int32_t *sx, int32_t *sy)
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001013{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001014 struct wlsc_compositor *ec =
1015 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -05001016 struct wlsc_surface *es;
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001017
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001018 wl_list_for_each(es, &ec->surface_list, link) {
1019 wlsc_surface_transform(es, device->x, device->y, sx, sy);
1020 if (0 <= *sx && *sx < es->width &&
1021 0 <= *sy && *sy < es->height)
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001022 return es;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001023 }
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001024
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001025 return NULL;
1026}
1027
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001028
1029static void
1030motion_grab_motion(struct wl_grab *grab,
1031 uint32_t time, int32_t x, int32_t y)
1032{
1033 struct wlsc_input_device *device =
1034 (struct wlsc_input_device *) grab->input_device;
1035 struct wlsc_surface *es =
1036 (struct wlsc_surface *) device->input_device.pointer_focus;
1037 int32_t sx, sy;
1038
1039 wlsc_surface_transform(es, x, y, &sx, &sy);
1040 wl_client_post_event(es->surface.client,
1041 &device->input_device.object,
1042 WL_INPUT_DEVICE_MOTION,
1043 time, x, y, sx, sy);
1044}
1045
1046static void
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -05001047motion_grab_button(struct wl_grab *grab,
1048 uint32_t time, int32_t button, int32_t state)
1049{
1050 wl_client_post_event(grab->input_device->pointer_focus->client,
1051 &grab->input_device->object,
1052 WL_INPUT_DEVICE_BUTTON,
1053 time, button, state);
1054}
1055
1056static void
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001057motion_grab_end(struct wl_grab *grab, uint32_t time)
1058{
1059}
1060
1061static const struct wl_grab_interface motion_grab_interface = {
1062 motion_grab_motion,
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -05001063 motion_grab_button,
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001064 motion_grab_end
1065};
1066
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001067void
Kristian Høgsberge10a5d92011-04-22 14:01:18 -04001068wlsc_compositor_wake(struct wlsc_compositor *compositor)
1069{
1070 if (compositor->idle_inhibit)
1071 return;
1072
1073 if (compositor->state == WLSC_COMPOSITOR_SLEEPING) {
1074 compositor->state = WLSC_COMPOSITOR_ACTIVE;
1075 wlsc_compositor_damage_all(compositor);
1076 }
1077
1078 wl_event_source_timer_update(compositor->idle_source,
1079 option_idle_time * 1000);
1080}
1081
1082static void
1083wlsc_compositor_idle_inhibit(struct wlsc_compositor *compositor)
1084{
1085 wlsc_compositor_wake(compositor);
1086 compositor->idle_inhibit++;
1087}
1088
1089static void
1090wlsc_compositor_idle_release(struct wlsc_compositor *compositor)
1091{
1092 compositor->idle_inhibit--;
1093 wlsc_compositor_wake(compositor);
1094}
1095
1096static int
1097idle_handler(void *data)
1098{
1099 struct wlsc_compositor *compositor = data;
1100
1101 if (compositor->idle_inhibit)
1102 return 1;
1103
1104 wlsc_compositor_damage_all(compositor);
1105 compositor->state = WLSC_COMPOSITOR_SLEEPING;
1106
1107 return 1;
1108}
1109
1110void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001111notify_motion(struct wl_input_device *device, uint32_t time, int x, int y)
Kristian Høgsberg715a0812008-12-10 10:42:04 -05001112{
Kristian Høgsberg8e438622009-01-26 23:07:00 -05001113 struct wlsc_surface *es;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001114 struct wlsc_compositor *ec =
1115 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001116 struct wlsc_output *output;
Kristian Høgsberg6d65d5f2010-12-07 13:30:18 -05001117 const struct wl_grab_interface *interface;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001118 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsbergfc9c28a2010-12-07 13:04:43 -05001119 int32_t sx, sy;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +01001120 int x_valid = 0, y_valid = 0;
1121 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 -05001122
Kristian Høgsberge10a5d92011-04-22 14:01:18 -04001123 wlsc_compositor_wake(ec);
1124
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +01001125 wl_list_for_each(output, &ec->output_list, link) {
1126 if (output->x <= x && x <= output->x + output->width)
1127 x_valid = 1;
1128
1129 if (output->y <= y && y <= output->y + output->height)
1130 y_valid = 1;
1131
1132 /* FIXME: calculate this only on output addition/deletion */
1133 if (output->x < min_x)
1134 min_x = output->x;
1135 if (output->y < min_y)
1136 min_y = output->y;
1137
1138 if (output->x + output->width > max_x)
1139 max_x = output->x + output->width;
1140 if (output->y + output->height > max_y)
1141 max_y = output->y + output->height;
1142 }
1143
1144 if (!x_valid) {
1145 if (x < min_x)
1146 x = min_x;
1147 else if (x >= max_x)
1148 x = max_x;
1149 }
1150 if (!y_valid) {
1151 if (y < min_y)
1152 y = min_y;
1153 else if (y >= max_y)
1154 y = max_y;
1155 }
Ray Strode90e701d2008-12-18 23:05:43 -05001156
Kristian Høgsberge3ef3e52008-12-21 19:30:01 -05001157 device->x = x;
1158 device->y = y;
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001159
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001160 if (device->grab) {
1161 interface = device->grab->interface;
1162 interface->motion(device->grab, time, x, y);
1163 } else {
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04001164 es = pick_surface(device, &sx, &sy);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001165 wl_input_device_set_pointer_focus(device,
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001166 &es->surface,
Kristian Høgsberg26437072010-12-01 10:17:47 -05001167 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04001168 if (es)
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001169 wl_client_post_event(es->surface.client,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001170 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -04001171 WL_INPUT_DEVICE_MOTION,
1172 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04001173 }
Kristian Høgsberg715a0812008-12-10 10:42:04 -05001174
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001175 wlsc_surface_damage(wd->sprite);
1176
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001177 wd->sprite->x = device->x - wd->hotspot_x;
1178 wd->sprite->y = device->y - wd->hotspot_y;
1179 wlsc_surface_update_matrix(wd->sprite);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001180
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001181 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg715a0812008-12-10 10:42:04 -05001182}
1183
Kristian Høgsberg30021d72011-04-12 17:42:30 -04001184void
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001185wlsc_surface_activate(struct wlsc_surface *surface,
1186 struct wlsc_input_device *device, uint32_t time)
1187{
1188 wlsc_surface_raise(surface);
1189 if (device->selection)
1190 wlsc_selection_set_focus(device->selection,
1191 &surface->surface, time);
1192
1193 wl_input_device_set_keyboard_focus(&device->input_device,
1194 &surface->surface,
1195 time);
1196}
1197
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001198struct wlsc_binding {
1199 uint32_t key;
1200 uint32_t button;
1201 uint32_t modifier;
1202 wlsc_binding_handler_t handler;
1203 void *data;
1204 struct wl_list link;
1205};
1206
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001207void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001208notify_button(struct wl_input_device *device,
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001209 uint32_t time, int32_t button, int32_t state)
Kristian Høgsbergeac149a2008-12-10 00:24:18 -05001210{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001211 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001212 struct wlsc_compositor *compositor =
1213 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001214 struct wlsc_binding *b;
1215 struct wlsc_surface *surface =
1216 (struct wlsc_surface *) device->pointer_focus;
Kristian Høgsbergea081152010-12-07 08:59:51 -05001217
Kristian Høgsberge10a5d92011-04-22 14:01:18 -04001218 if (state)
1219 wlsc_compositor_idle_inhibit(compositor);
1220 else
1221 wlsc_compositor_idle_release(compositor);
1222
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -05001223 if (state && surface && device->grab == NULL) {
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001224 wlsc_surface_activate(surface, wd, time);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001225 wl_input_device_start_grab(device,
1226 &device->motion_grab,
1227 button, time);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001228 }
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -05001229
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001230 wl_list_for_each(b, &compositor->binding_list, link) {
1231 if (b->button == button &&
1232 b->modifier == wd->modifier_state && state) {
1233 b->handler(&wd->input_device,
1234 time, 0, button, state, b->data);
1235 break;
1236 }
Benjamin Franzke5a2218a2011-02-01 16:30:31 +01001237 }
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -05001238
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -05001239 if (device->grab)
1240 device->grab->interface->button(device->grab, time,
1241 button, state);
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -05001242
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001243 if (!state && device->grab && device->grab_button == button)
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001244 wl_input_device_end_grab(device, time);
Kristian Høgsbergeac149a2008-12-10 00:24:18 -05001245}
1246
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001247static void
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001248terminate_binding(struct wl_input_device *device, uint32_t time,
1249 uint32_t key, uint32_t button, uint32_t state, void *data)
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001250{
1251 struct wlsc_compositor *compositor = data;
1252
Kristian Høgsberge10a5d92011-04-22 14:01:18 -04001253 if (state)
1254 wl_display_terminate(compositor->wl_display);
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001255}
1256
1257struct wlsc_binding *
1258wlsc_compositor_add_binding(struct wlsc_compositor *compositor,
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001259 uint32_t key, uint32_t button, uint32_t modifier,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001260 wlsc_binding_handler_t handler, void *data)
1261{
1262 struct wlsc_binding *binding;
1263
1264 binding = malloc(sizeof *binding);
1265 if (binding == NULL)
1266 return NULL;
1267
1268 binding->key = key;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001269 binding->button = button;
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001270 binding->modifier = modifier;
1271 binding->handler = handler;
1272 binding->data = data;
1273 wl_list_insert(compositor->binding_list.prev, &binding->link);
1274
1275 return binding;
1276}
1277
1278void
1279wlsc_binding_destroy(struct wlsc_binding *binding)
1280{
1281 wl_list_remove(&binding->link);
1282 free(binding);
1283}
1284
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001285static void
1286update_modifier_state(struct wlsc_input_device *device,
1287 uint32_t key, uint32_t state)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -05001288{
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001289 uint32_t modifier;
Kristian Høgsbergab909ae2001-01-01 22:24:24 -05001290
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001291 switch (key) {
1292 case KEY_LEFTCTRL:
1293 case KEY_RIGHTCTRL:
1294 modifier = MODIFIER_CTRL;
1295 break;
1296
1297 case KEY_LEFTALT:
1298 case KEY_RIGHTALT:
1299 modifier = MODIFIER_ALT;
1300 break;
1301
Kristian Høgsberg5b75f1b2010-08-04 23:21:41 -04001302 case KEY_LEFTMETA:
1303 case KEY_RIGHTMETA:
1304 modifier = MODIFIER_SUPER;
1305 break;
1306
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001307 default:
1308 modifier = 0;
1309 break;
1310 }
1311
1312 if (state)
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001313 device->modifier_state |= modifier;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001314 else
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001315 device->modifier_state &= ~modifier;
1316}
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001317
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001318void
1319notify_key(struct wl_input_device *device,
1320 uint32_t time, uint32_t key, uint32_t state)
1321{
1322 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1323 struct wlsc_compositor *compositor =
1324 (struct wlsc_compositor *) device->compositor;
1325 uint32_t *k, *end;
1326 struct wlsc_binding *b;
1327
Kristian Høgsberge10a5d92011-04-22 14:01:18 -04001328 if (state)
1329 wlsc_compositor_idle_inhibit(compositor);
1330 else
1331 wlsc_compositor_idle_release(compositor);
1332
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001333 wl_list_for_each(b, &compositor->binding_list, link) {
1334 if (b->key == key &&
Kristian Høgsberge10a5d92011-04-22 14:01:18 -04001335 b->modifier == wd->modifier_state) {
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001336 b->handler(&wd->input_device,
1337 time, key, 0, state, b->data);
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001338 break;
1339 }
1340 }
1341
1342 update_modifier_state(wd, key, state);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001343 end = device->keys.data + device->keys.size;
1344 for (k = device->keys.data; k < end; k++) {
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001345 if (*k == key)
1346 *k = *--end;
1347 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001348 device->keys.size = (void *) end - device->keys.data;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001349 if (state) {
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001350 k = wl_array_add(&device->keys, sizeof *k);
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001351 *k = key;
1352 }
Ray Strodee96dcb82008-12-20 02:00:49 -05001353
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001354 if (device->keyboard_focus != NULL)
1355 wl_client_post_event(device->keyboard_focus->client,
1356 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -04001357 WL_INPUT_DEVICE_KEY, time, key, state);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001358}
1359
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001360void
1361notify_pointer_focus(struct wl_input_device *device,
1362 uint32_t time, struct wlsc_output *output,
1363 int32_t x, int32_t y)
1364{
1365 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1366 struct wlsc_compositor *compositor =
1367 (struct wlsc_compositor *) device->compositor;
1368 struct wlsc_surface *es;
1369 int32_t sx, sy;
1370
1371 if (output) {
1372 device->x = x;
1373 device->y = y;
1374 es = pick_surface(device, &sx, &sy);
1375 wl_input_device_set_pointer_focus(device,
1376 &es->surface,
1377 time, x, y, sx, sy);
1378
1379 compositor->focus = 1;
1380
1381 wd->sprite->x = device->x - wd->hotspot_x;
1382 wd->sprite->y = device->y - wd->hotspot_y;
1383 wlsc_surface_update_matrix(wd->sprite);
1384 } else {
1385 wl_input_device_set_pointer_focus(device, NULL,
1386 time, 0, 0, 0, 0);
1387 compositor->focus = 0;
1388 }
1389
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001390 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001391}
1392
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001393void
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001394notify_keyboard_focus(struct wl_input_device *device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001395 uint32_t time, struct wlsc_output *output,
1396 struct wl_array *keys)
1397{
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001398 struct wlsc_input_device *wd =
1399 (struct wlsc_input_device *) device;
1400 struct wlsc_compositor *compositor =
1401 (struct wlsc_compositor *) device->compositor;
1402 struct wlsc_surface *es;
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001403 uint32_t *k, *end;
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001404
1405 if (!wl_list_empty(&compositor->surface_list))
1406 es = container_of(compositor->surface_list.next,
1407 struct wlsc_surface, link);
1408 else
1409 es = NULL;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001410
1411 if (output) {
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001412 wl_array_copy(&wd->input_device.keys, keys);
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001413 wd->modifier_state = 0;
1414 end = device->keys.data + device->keys.size;
1415 for (k = device->keys.data; k < end; k++) {
Kristian Høgsberge10a5d92011-04-22 14:01:18 -04001416 wlsc_compositor_idle_inhibit(compositor);
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001417 update_modifier_state(wd, *k, 1);
1418 }
1419
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001420 wl_input_device_set_keyboard_focus(&wd->input_device,
1421 &es->surface, time);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001422 } else {
Kristian Høgsberge10a5d92011-04-22 14:01:18 -04001423 end = device->keys.data + device->keys.size;
1424 for (k = device->keys.data; k < end; k++)
1425 wlsc_compositor_idle_release(compositor);
1426
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001427 wd->modifier_state = 0;
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001428 wl_input_device_set_keyboard_focus(&wd->input_device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001429 NULL, time);
1430 }
1431}
1432
1433
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001434static void
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001435input_device_attach(struct wl_client *client,
1436 struct wl_input_device *device_base,
1437 uint32_t time,
1438 struct wl_buffer *buffer, int32_t x, int32_t y)
1439{
1440 struct wlsc_input_device *device =
1441 (struct wlsc_input_device *) device_base;
1442
1443 if (time < device->input_device.pointer_focus_time)
1444 return;
1445 if (device->input_device.pointer_focus == NULL)
1446 return;
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001447 if (device->input_device.pointer_focus->client != client)
1448 return;
1449
1450 if (buffer == NULL) {
1451 wlsc_input_device_set_pointer_image(device,
1452 WLSC_POINTER_LEFT_PTR);
1453 return;
1454 }
1455
Benjamin Franzke431da9a2011-04-20 11:02:58 +02001456 wlsc_input_device_attach_buffer(device, buffer, x, y);
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001457}
1458
1459const static struct wl_input_device_interface input_device_interface = {
1460 input_device_attach,
1461};
1462
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001463void
1464wlsc_input_device_init(struct wlsc_input_device *device,
1465 struct wlsc_compositor *ec)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -05001466{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001467 wl_input_device_init(&device->input_device, &ec->compositor);
Kristian Høgsberg02ef1c12010-12-06 21:35:19 -05001468
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001469 device->input_device.object.interface = &wl_input_device_interface;
1470 device->input_device.object.implementation =
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001471 (void (**)(void)) &input_device_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001472 wl_display_add_object(ec->wl_display, &device->input_device.object);
1473 wl_display_add_global(ec->wl_display, &device->input_device.object, NULL);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -04001474
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -05001475 device->sprite = wlsc_surface_create(ec,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001476 device->input_device.x,
1477 device->input_device.y, 32, 32);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001478 device->hotspot_x = 16;
1479 device->hotspot_y = 16;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001480 device->modifier_state = 0;
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001481
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001482 device->input_device.motion_grab.interface = &motion_grab_interface;
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001483
Kristian Høgsbergc492b482008-12-12 12:00:02 -05001484 wl_list_insert(ec->input_device_list.prev, &device->link);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001485
1486 wlsc_input_device_set_pointer_image(device, WLSC_POINTER_LEFT_PTR);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001487}
1488
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001489static void
Kristian Høgsberg91342c62011-04-14 14:44:58 -04001490wlsc_output_post_geometry(struct wl_client *client,
1491 struct wl_object *global, uint32_t version)
Kristian Høgsbergbf9541f2008-11-25 12:10:09 -05001492{
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001493 struct wlsc_output *output =
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001494 container_of(global, struct wlsc_output, object);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001495
1496 wl_client_post_event(client, global,
1497 WL_OUTPUT_GEOMETRY,
Kristian Høgsbergf8fc08f2010-12-01 20:10:10 -05001498 output->x, output->y,
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001499 output->width, output->height);
1500}
1501
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001502static const char vertex_shader[] =
1503 "uniform mat4 proj;\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001504 "attribute vec2 position;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001505 "attribute vec2 texcoord;\n"
1506 "varying vec2 v_texcoord;\n"
1507 "void main()\n"
1508 "{\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001509 " gl_Position = proj * vec4(position, 0.0, 1.0);\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001510 " v_texcoord = texcoord;\n"
1511 "}\n";
1512
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001513static const char texture_fragment_shader[] =
Kristian Høgsbergdfce71d2010-12-07 20:19:10 -05001514 "precision mediump float;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001515 "varying vec2 v_texcoord;\n"
1516 "uniform sampler2D tex;\n"
1517 "void main()\n"
1518 "{\n"
1519 " gl_FragColor = texture2D(tex, v_texcoord)\n;"
1520 "}\n";
1521
Kristian Høgsberga9468212010-06-14 21:03:11 -04001522static int
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001523compile_shader(GLenum type, const char *source)
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001524{
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001525 GLuint s;
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001526 char msg[512];
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001527 GLint status;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001528
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001529 s = glCreateShader(type);
1530 glShaderSource(s, 1, &source, NULL);
1531 glCompileShader(s);
1532 glGetShaderiv(s, GL_COMPILE_STATUS, &status);
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001533 if (!status) {
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001534 glGetShaderInfoLog(s, sizeof msg, NULL, msg);
1535 fprintf(stderr, "shader info: %s\n", msg);
1536 return GL_NONE;
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001537 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001538
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001539 return s;
1540}
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001541
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001542static int
1543wlsc_shader_init(struct wlsc_shader *shader,
1544 const char *vertex_source, const char *fragment_source)
1545{
1546 char msg[512];
1547 GLint status;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001548
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001549 shader->vertex_shader =
1550 compile_shader(GL_VERTEX_SHADER, vertex_source);
1551 shader->fragment_shader =
1552 compile_shader(GL_FRAGMENT_SHADER, fragment_source);
1553
1554 shader->program = glCreateProgram();
1555 glAttachShader(shader->program, shader->vertex_shader);
1556 glAttachShader(shader->program, shader->fragment_shader);
1557 glBindAttribLocation(shader->program, 0, "position");
1558 glBindAttribLocation(shader->program, 1, "texcoord");
1559
1560 glLinkProgram(shader->program);
1561 glGetProgramiv(shader->program, GL_LINK_STATUS, &status);
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001562 if (!status) {
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001563 glGetProgramInfoLog(shader->program, sizeof msg, NULL, msg);
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001564 fprintf(stderr, "link info: %s\n", msg);
1565 return -1;
1566 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001567
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001568 shader->proj_uniform = glGetUniformLocation(shader->program, "proj");
1569 shader->tex_uniform = glGetUniformLocation(shader->program, "tex");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001570
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001571 return 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001572}
1573
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001574void
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001575wlsc_output_destroy(struct wlsc_output *output)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001576{
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001577 destroy_surface(&output->background->surface.resource, NULL);
1578}
1579
1580void
1581wlsc_output_move(struct wlsc_output *output, int x, int y)
1582{
1583 struct wlsc_compositor *c = output->compositor;
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001584 int flip;
1585
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001586 output->x = x;
1587 output->y = y;
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001588
Benjamin Franzke264b3f92011-03-16 13:48:42 +01001589 if (output->background) {
1590 output->background->x = x;
1591 output->background->y = y;
1592 wlsc_surface_update_matrix(output->background);
1593 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001594
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001595 pixman_region32_init(&output->previous_damage_region);
1596
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001597 wlsc_matrix_init(&output->matrix);
1598 wlsc_matrix_translate(&output->matrix,
1599 -output->x - output->width / 2.0,
1600 -output->y - output->height / 2.0, 0);
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001601
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001602 flip = (output->flags & WL_OUTPUT_FLIPPED) ? -1 : 1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001603 wlsc_matrix_scale(&output->matrix,
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001604 2.0 / output->width,
1605 flip * 2.0 / output->height, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001606
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001607 pixman_region32_union_rect(&c->damage_region,
1608 &c->damage_region,
1609 x, y, output->width, output->height);
1610}
1611
1612void
1613wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c,
1614 int x, int y, int width, int height, uint32_t flags)
1615{
1616 output->compositor = c;
1617 output->x = x;
1618 output->y = y;
1619 output->width = width;
1620 output->height = height;
1621
1622 output->background =
1623 background_create(output, option_background);
1624
1625 output->flags = flags;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001626 output->finished = 1;
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001627 wlsc_output_move(output, x, y);
1628
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001629 output->object.interface = &wl_output_interface;
1630 wl_display_add_object(c->wl_display, &output->object);
1631 wl_display_add_global(c->wl_display, &output->object,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001632 wlsc_output_post_geometry);
1633}
1634
Benjamin Franzke315b3dc2011-03-08 11:32:57 +01001635static void
1636shm_buffer_created(struct wl_buffer *buffer)
1637{
1638 struct wl_list *surfaces_attached_to;
1639
1640 surfaces_attached_to = malloc(sizeof *surfaces_attached_to);
1641 if (!surfaces_attached_to) {
1642 buffer->user_data = NULL;
1643 return;
1644 }
1645
1646 wl_list_init(surfaces_attached_to);
1647
1648 buffer->user_data = surfaces_attached_to;
1649}
1650
1651static void
1652shm_buffer_damaged(struct wl_buffer *buffer,
1653 int32_t x, int32_t y, int32_t width, int32_t height)
1654{
1655 struct wl_list *surfaces_attached_to = buffer->user_data;
1656 struct wlsc_surface *es;
1657
1658 wl_list_for_each(es, surfaces_attached_to, buffer_link) {
1659 glBindTexture(GL_TEXTURE_2D, es->texture);
1660 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT,
1661 buffer->width, buffer->height, 0,
1662 GL_BGRA_EXT, GL_UNSIGNED_BYTE,
1663 wl_shm_buffer_get_data(buffer));
1664 /* Hmm, should use glTexSubImage2D() here but GLES2 doesn't
1665 * support any unpack attributes except GL_UNPACK_ALIGNMENT. */
1666 }
1667}
1668
1669static void
1670shm_buffer_destroyed(struct wl_buffer *buffer)
1671{
1672 struct wl_list *surfaces_attached_to = buffer->user_data;
1673 struct wlsc_surface *es, *next;
1674
1675 wl_list_for_each_safe(es, next, surfaces_attached_to, buffer_link) {
1676 es->buffer = NULL;
1677 wl_list_remove(&es->buffer_link);
1678 }
1679
1680 free(surfaces_attached_to);
1681}
1682
1683const static struct wl_shm_callbacks shm_callbacks = {
1684 shm_buffer_created,
1685 shm_buffer_damaged,
1686 shm_buffer_destroyed
1687};
1688
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001689int
1690wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
1691{
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001692 struct wl_event_loop *loop;
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001693 const char *extensions;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001694
Kristian Høgsbergf9212892008-10-11 18:40:23 -04001695 ec->wl_display = display;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001696
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -05001697 wl_compositor_init(&ec->compositor, &compositor_interface, display);
Kristian Høgsbergee02ca62008-12-21 23:37:12 -05001698
Benjamin Franzke315b3dc2011-03-08 11:32:57 +01001699 ec->shm = wl_shm_init(display, &shm_callbacks);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +01001700 eglBindWaylandDisplayWL(ec->display, ec->wl_display);
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -04001701
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001702 wl_list_init(&ec->surface_list);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001703 wl_list_init(&ec->input_device_list);
1704 wl_list_init(&ec->output_list);
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001705 wl_list_init(&ec->binding_list);
1706
Kristian Høgsberg07937562011-04-12 17:25:42 -04001707 wlsc_shell_init(ec);
Kristian Høgsberg30021d72011-04-12 17:42:30 -04001708 wlsc_switcher_init(ec);
Kristian Høgsberg07937562011-04-12 17:25:42 -04001709
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001710 wlsc_compositor_add_binding(ec, KEY_BACKSPACE, 0,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001711 MODIFIER_CTRL | MODIFIER_ALT,
1712 terminate_binding, ec);
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001713
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001714 create_pointer_images(ec);
1715
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001716 screenshooter_create(ec);
1717
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001718 extensions = (const char *) glGetString(GL_EXTENSIONS);
1719 if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) {
1720 fprintf(stderr,
1721 "GL_EXT_texture_format_BGRA8888 not available\n");
1722 return -1;
1723 }
1724
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001725 glActiveTexture(GL_TEXTURE0);
Kristian Høgsberg7ffc4482011-04-22 14:23:51 -04001726
1727 if (wlsc_shader_init(&ec->texture_shader,
1728 vertex_shader, texture_fragment_shader) < 0)
Kristian Høgsberga9468212010-06-14 21:03:11 -04001729 return -1;
Kristian Høgsberg8d7ca6b2008-11-09 00:22:51 -05001730
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001731 loop = wl_display_get_event_loop(ec->wl_display);
Kristian Høgsberge10a5d92011-04-22 14:01:18 -04001732 ec->idle_source = wl_event_loop_add_timer(loop, idle_handler, ec);
1733 wl_event_source_timer_update(ec->idle_source, option_idle_time * 1000);
1734
Kristian Høgsberg4a298902008-11-28 18:35:25 -05001735 ec->timer_source = wl_event_loop_add_timer(loop, repaint, ec);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001736 pixman_region32_init(&ec->damage_region);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -04001737 wlsc_compositor_schedule_repaint(ec);
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -04001738
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001739 return 0;
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001740}
1741
Kristian Høgsbergb1868472011-04-22 12:27:57 -04001742static int on_term_signal(int signal_number, void *data)
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001743{
1744 struct wlsc_compositor *ec = data;
1745
1746 wl_display_terminate(ec->wl_display);
Kristian Høgsbergb1868472011-04-22 12:27:57 -04001747
1748 return 1;
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001749}
1750
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001751int main(int argc, char *argv[])
1752{
1753 struct wl_display *display;
Kristian Høgsberg8e438622009-01-26 23:07:00 -05001754 struct wlsc_compositor *ec;
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001755 struct wl_event_loop *loop;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001756 GError *error = NULL;
1757 GOptionContext *context;
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001758 int width, height;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001759
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001760 g_type_init(); /* GdkPixbuf needs this, it seems. */
1761
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001762 context = g_option_context_new(NULL);
1763 g_option_context_add_main_entries(context, option_entries, "Wayland");
1764 if (!g_option_context_parse(context, &argc, &argv, &error)) {
1765 fprintf(stderr, "option parsing failed: %s\n", error->message);
1766 exit(EXIT_FAILURE);
1767 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001768 if (sscanf(option_geometry, "%dx%d", &width, &height) != 2) {
1769 fprintf(stderr, "invalid geometry option: %s \n",
1770 option_geometry);
1771 exit(EXIT_FAILURE);
1772 }
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001773
1774 display = wl_display_create();
1775
Kristian Høgsberga9410222011-01-14 17:22:35 -05001776 ec = NULL;
1777
1778#if BUILD_WAYLAND_COMPOSITOR
Benjamin Franzkeec2e6422010-11-27 19:04:12 +01001779 if (getenv("WAYLAND_DISPLAY"))
1780 ec = wayland_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001781#endif
1782
1783#if BUILD_X11_COMPOSITOR
1784 if (ec == NULL && getenv("DISPLAY"))
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001785 ec = x11_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001786#endif
1787
Benjamin Franzke5d007092011-04-04 00:30:25 +02001788#if BUILD_OPENWFD_COMPOSITOR
1789 if (ec == NULL && getenv("OPENWFD"))
1790 ec = wfd_compositor_create(display, option_connector);
1791#endif
1792
Kristian Høgsberga9410222011-01-14 17:22:35 -05001793#if BUILD_DRM_COMPOSITOR
1794 if (ec == NULL)
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001795 ec = drm_compositor_create(display, option_connector);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001796#endif
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001797
Kristian Høgsberg841883b2008-12-05 11:19:56 -05001798 if (ec == NULL) {
1799 fprintf(stderr, "failed to create compositor\n");
1800 exit(EXIT_FAILURE);
1801 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001802
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001803 if (wl_display_add_socket(display, option_socket_name)) {
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001804 fprintf(stderr, "failed to add socket: %m\n");
1805 exit(EXIT_FAILURE);
1806 }
1807
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001808 loop = wl_display_get_event_loop(ec->wl_display);
1809 wl_event_loop_add_signal(loop, SIGTERM, on_term_signal, ec);
1810 wl_event_loop_add_signal(loop, SIGINT, on_term_signal, ec);
1811
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001812 wl_display_run(display);
1813
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +01001814 eglUnbindWaylandDisplayWL(ec->display, display);
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001815 wl_display_destroy(display);
1816
Kristian Høgsbergcaa64422010-12-01 16:52:15 -05001817 ec->destroy(ec);
1818
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001819 return 0;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001820}