blob: c361be6db55f198db3dccbf595ed459fc94d7df5 [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
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400123static struct wlsc_surface *
124wlsc_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);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500135 surface->map_type = WLSC_SURFACE_MAP_UNMAPPED;
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500136
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500137 glGenTextures(1, &surface->texture);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400138 glBindTexture(GL_TEXTURE_2D, surface->texture);
139 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
140 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
141 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
142 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
143
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500144 surface->compositor = compositor;
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500145 surface->visual = NULL;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400146 surface->x = x;
147 surface->y = y;
148 surface->width = width;
149 surface->height = height;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400150 wlsc_matrix_init(&surface->matrix);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400151 wlsc_matrix_scale(&surface->matrix, width, height, 1);
152 wlsc_matrix_translate(&surface->matrix, x, y, 0);
153
154 wlsc_matrix_init(&surface->matrix_inv);
155 wlsc_matrix_translate(&surface->matrix_inv, -x, -y, 0);
156 wlsc_matrix_scale(&surface->matrix_inv, 1.0 / width, 1.0 / height, 1);
Kristian Høgsberg1e4b86a2008-11-23 23:41:08 -0500157
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400158 return surface;
Kristian Høgsberg54879822008-11-23 17:07:32 -0500159}
160
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500161void
162wlsc_surface_damage_rectangle(struct wlsc_surface *surface,
163 int32_t x, int32_t y,
164 int32_t width, int32_t height)
165{
166 struct wlsc_compositor *compositor = surface->compositor;
167
168 pixman_region32_union_rect(&compositor->damage_region,
169 &compositor->damage_region,
170 surface->x + x, surface->y + y,
171 width, height);
172 wlsc_compositor_schedule_repaint(compositor);
173}
174
175void
176wlsc_surface_damage(struct wlsc_surface *surface)
177{
178 wlsc_surface_damage_rectangle(surface, 0, 0,
179 surface->width, surface->height);
180}
181
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500182uint32_t
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500183get_time(void)
184{
185 struct timeval tv;
186
187 gettimeofday(&tv, NULL);
188
189 return tv.tv_sec * 1000 + tv.tv_usec / 1000;
190}
191
Kristian Høgsberg54879822008-11-23 17:07:32 -0500192static void
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400193destroy_surface(struct wl_resource *resource, struct wl_client *client)
Kristian Høgsberg54879822008-11-23 17:07:32 -0500194{
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400195 struct wlsc_surface *surface =
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500196 container_of(resource, struct wlsc_surface, surface.resource);
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500197 struct wl_listener *l, *next;
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500198 uint32_t time;
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400199
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500200 wlsc_surface_damage(surface);
201
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400202 wl_list_remove(&surface->link);
203 glDeleteTextures(1, &surface->texture);
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400204
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500205 time = get_time();
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500206 wl_list_for_each_safe(l, next,
207 &surface->surface.destroy_listener_list, link)
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500208 l->func(l, &surface->surface, time);
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400209
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400210 free(surface);
Kristian Høgsberg54879822008-11-23 17:07:32 -0500211}
212
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500213uint32_t *
214wlsc_load_image(const char *filename, int width, int height)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500215{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400216 GdkPixbuf *pixbuf;
217 GError *error = NULL;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500218 int stride, i, n_channels;
219 unsigned char *pixels, *end, *argb_pixels, *s, *d;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500220
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400221 pixbuf = gdk_pixbuf_new_from_file_at_scale(filename,
222 width, height,
223 FALSE, &error);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500224 if (error != NULL) {
225 fprintf(stderr, "failed to load image: %s\n", error->message);
226 g_error_free(error);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500227 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500228 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400229
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500230 stride = gdk_pixbuf_get_rowstride(pixbuf);
231 pixels = gdk_pixbuf_get_pixels(pixbuf);
232 n_channels = gdk_pixbuf_get_n_channels(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400233
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500234 argb_pixels = malloc (height * width * 4);
235 if (argb_pixels == NULL) {
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500236 g_object_unref(pixbuf);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500237 return NULL;
238 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400239
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500240 if (n_channels == 4) {
241 for (i = 0; i < height; i++) {
242 s = pixels + i * stride;
243 end = s + width * 4;
244 d = argb_pixels + i * width * 4;
245 while (s < end) {
246 unsigned int t;
247
248#define MULT(_d,c,a,t) \
249 do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0)
250
251 MULT(d[0], s[2], s[3], t);
252 MULT(d[1], s[1], s[3], t);
253 MULT(d[2], s[0], s[3], t);
254 d[3] = s[3];
255 s += 4;
256 d += 4;
257 }
258 }
259 } else if (n_channels == 3) {
260 for (i = 0; i < height; i++) {
261 s = pixels + i * stride;
262 end = s + width * 3;
263 d = argb_pixels + i * width * 4;
264 while (s < end) {
265 d[0] = s[2];
266 d[1] = s[1];
267 d[2] = s[0];
268 d[3] = 0xff;
269 s += 3;
270 d += 4;
271 }
272 }
273 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400274
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500275 g_object_unref(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400276
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500277 return (uint32_t *) argb_pixels;
278}
279
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100280static void
281wlsc_buffer_attach(struct wl_buffer *buffer, struct wl_surface *surface)
282{
283 struct wlsc_surface *es = (struct wlsc_surface *) surface;
284 struct wlsc_compositor *ec = es->compositor;
285 EGLImageKHR *image;
286
287 if (buffer->attach) {
288 buffer->attach(buffer, surface);
289 } else {
290 image = eglCreateImageKHR(ec->display, ec->context,
291 EGL_WAYLAND_BUFFER_WL,
292 buffer, NULL);
293
294 glBindTexture(GL_TEXTURE_2D, es->texture);
295 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, image);
296 es->visual = buffer->visual;
297 eglDestroyImageKHR(ec->display, image);
298 }
299}
300
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500301static struct wl_buffer *
302create_buffer_from_png(struct wlsc_compositor *ec,
303 const char *filename, int width, int height)
304{
305 uint32_t *pixels;
306 struct wl_buffer *buffer;
307
308 pixels = wlsc_load_image(filename, width, height);
Tim Wiederhakeac5c5e72011-01-27 01:32:36 +0100309 if(pixels == NULL)
310 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500311
Benjamin Franzkec649a922011-03-02 11:56:04 +0100312 buffer = ec->create_buffer(ec, width, height, width * 4,
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500313 &ec->compositor.premultiplied_argb_visual,
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500314 pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500315
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500316 free(pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500317
318 return buffer;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500319}
320
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400321static const struct {
322 const char *filename;
323 int hotspot_x, hotspot_y;
324} pointer_images[] = {
Kristian Høgsberg4219a402010-08-16 16:43:03 -0400325 { DATADIR "/wayland/bottom_left_corner.png", 6, 30 },
326 { DATADIR "/wayland/bottom_right_corner.png", 28, 28 },
327 { DATADIR "/wayland/bottom_side.png", 16, 20 },
328 { DATADIR "/wayland/grabbing.png", 20, 17 },
329 { DATADIR "/wayland/left_ptr.png", 10, 5 },
330 { DATADIR "/wayland/left_side.png", 10, 20 },
331 { DATADIR "/wayland/right_side.png", 30, 19 },
332 { DATADIR "/wayland/top_left_corner.png", 8, 8 },
333 { DATADIR "/wayland/top_right_corner.png", 26, 8 },
334 { DATADIR "/wayland/top_side.png", 18, 8 },
335 { DATADIR "/wayland/xterm.png", 15, 15 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400336};
337
338static void
339create_pointer_images(struct wlsc_compositor *ec)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500340{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400341 int i, count;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400342 const int width = 32, height = 32;
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400343
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400344 count = ARRAY_LENGTH(pointer_images);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400345 ec->pointer_buffers = malloc(count * sizeof *ec->pointer_buffers);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400346 for (i = 0; i < count; i++) {
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400347 ec->pointer_buffers[i] =
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500348 create_buffer_from_png(ec,
349 pointer_images[i].filename,
350 width, height);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400351 }
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400352}
353
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500354static struct wlsc_surface *
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500355background_create(struct wlsc_output *output, const char *filename)
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500356{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500357 struct wlsc_surface *background;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500358 struct wl_buffer *buffer;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500359
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400360 background = wlsc_surface_create(output->compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400361 output->x, output->y,
362 output->width, output->height);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500363 if (background == NULL)
364 return NULL;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500365
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500366 buffer = create_buffer_from_png(output->compositor,
367 filename,
368 output->width, output->height);
Benjamin Franzked3b023e2011-01-15 12:34:49 +0100369 if (buffer == NULL) {
370 free(background);
371 return NULL;
372 }
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100373
374 wlsc_buffer_attach(buffer, &background->surface);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500375
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500376 return background;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500377}
378
379static void
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500380wlsc_surface_draw(struct wlsc_surface *es,
381 struct wlsc_output *output, pixman_region32_t *clip)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500382{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500383 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500384 GLfloat *v, inv_width, inv_height;
385 unsigned int *p;
386 pixman_region32_t repaint;
387 pixman_box32_t *rectangles;
388 int i, n;
389
390 pixman_region32_init_rect(&repaint,
391 es->x, es->y, es->width, es->height);
392 pixman_region32_intersect(&repaint, &repaint, clip);
393 if (!pixman_region32_not_empty(&repaint))
394 return;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500395
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500396 if (es->visual == &ec->compositor.argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500397 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
398 glEnable(GL_BLEND);
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500399 } else if (es->visual == &ec->compositor.premultiplied_argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500400 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
401 glEnable(GL_BLEND);
402 } else {
403 glDisable(GL_BLEND);
404 }
405
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500406 rectangles = pixman_region32_rectangles(&repaint, &n);
407 v = wl_array_add(&ec->vertices, n * 16 * sizeof *v);
408 p = wl_array_add(&ec->indices, n * 6 * sizeof *p);
409 inv_width = 1.0 / es->width;
410 inv_height = 1.0 / es->height;
411 for (i = 0; i < n; i++, v += 16, p += 6) {
412 v[ 0] = rectangles[i].x1;
413 v[ 1] = rectangles[i].y1;
414 v[ 2] = (GLfloat) (rectangles[i].x1 - es->x) * inv_width;
415 v[ 3] = (GLfloat) (rectangles[i].y1 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500416
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500417 v[ 4] = rectangles[i].x1;
418 v[ 5] = rectangles[i].y2;
419 v[ 6] = v[ 2];
420 v[ 7] = (GLfloat) (rectangles[i].y2 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500421
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500422 v[ 8] = rectangles[i].x2;
423 v[ 9] = rectangles[i].y1;
424 v[10] = (GLfloat) (rectangles[i].x2 - es->x) * inv_width;
425 v[11] = v[ 3];
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500426
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500427 v[12] = rectangles[i].x2;
428 v[13] = rectangles[i].y2;
429 v[14] = v[10];
430 v[15] = v[ 7];
431
432 p[0] = i * 4 + 0;
433 p[1] = i * 4 + 1;
434 p[2] = i * 4 + 2;
435 p[3] = i * 4 + 2;
436 p[4] = i * 4 + 1;
437 p[5] = i * 4 + 3;
438 }
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500439
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500440 glBindTexture(GL_TEXTURE_2D, es->texture);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500441 v = ec->vertices.data;
442 glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[0]);
443 glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[2]);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400444 glEnableVertexAttribArray(0);
445 glEnableVertexAttribArray(1);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500446 glDrawElements(GL_TRIANGLES, n * 6, GL_UNSIGNED_INT, ec->indices.data);
447
448 ec->vertices.size = 0;
449 ec->indices.size = 0;
450 pixman_region32_fini(&repaint);
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500451}
452
453static void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400454wlsc_surface_raise(struct wlsc_surface *surface)
455{
456 struct wlsc_compositor *compositor = surface->compositor;
457
458 wl_list_remove(&surface->link);
Kristian Høgsberg747638b2010-07-12 17:06:06 -0400459 wl_list_insert(&compositor->surface_list, &surface->link);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400460}
461
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500462void
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400463wlsc_surface_update_matrix(struct wlsc_surface *es)
464{
465 wlsc_matrix_init(&es->matrix);
466 wlsc_matrix_scale(&es->matrix, es->width, es->height, 1);
467 wlsc_matrix_translate(&es->matrix, es->x, es->y, 0);
468
469 wlsc_matrix_init(&es->matrix_inv);
470 wlsc_matrix_translate(&es->matrix_inv, -es->x, -es->y, 0);
471 wlsc_matrix_scale(&es->matrix_inv,
472 1.0 / es->width, 1.0 / es->height, 1);
473}
474
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400475void
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100476wlsc_output_finish_frame(struct wlsc_output *output, int msecs)
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400477{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100478 struct wlsc_compositor *compositor = output->compositor;
479 struct wlsc_surface *es;
480
481 wl_list_for_each(es, &compositor->surface_list, link) {
482 if (es->output == output) {
483 wl_display_post_frame(compositor->wl_display,
484 &es->surface, msecs);
485 }
486 }
487
488 output->finished = 1;
489
Kristian Høgsberg5d312db2009-09-12 16:57:02 -0400490 wl_event_source_timer_update(compositor->timer_source, 5);
Kristian Høgsbergf30c67e2011-02-06 12:58:44 -0500491 compositor->repaint_on_timeout = 1;
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400492}
493
494static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400495wlsc_output_repaint(struct wlsc_output *output)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400496{
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500497 struct wlsc_compositor *ec = output->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500498 struct wlsc_surface *es;
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -0500499 struct wlsc_input_device *eid;
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400500 pixman_region32_t new_damage, total_damage, repaint;
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500501
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100502 output->prepare_render(output);
503
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500504 glViewport(0, 0, output->width, output->height);
Kristian Høgsbergfdec2362001-01-01 22:23:51 -0500505
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500506 glUniformMatrix4fv(ec->proj_uniform, 1, GL_FALSE, output->matrix.d);
507 glUniform1i(ec->tex_uniform, 0);
508
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500509 pixman_region32_init(&new_damage);
510 pixman_region32_init(&total_damage);
511 pixman_region32_intersect_rect(&new_damage,
512 &ec->damage_region,
513 output->x, output->y,
514 output->width, output->height);
515 pixman_region32_subtract(&ec->damage_region,
516 &ec->damage_region, &new_damage);
517 pixman_region32_union(&total_damage, &new_damage,
518 &output->previous_damage_region);
519 pixman_region32_copy(&output->previous_damage_region, &new_damage);
520
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500521 es = container_of(ec->surface_list.next, struct wlsc_surface, link);
522 if (es->map_type == WLSC_SURFACE_MAP_FULLSCREEN &&
523 es->fullscreen_output == output) {
524 if (es->width < output->width || es->height < output->height)
525 glClear(GL_COLOR_BUFFER_BIT);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500526 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500527 } else {
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400528 wl_list_for_each(es, &ec->surface_list, link) {
529 if (es->visual != &ec->compositor.rgb_visual)
530 continue;
531
532 pixman_region32_init_rect(&repaint,
533 es->x, es->y,
534 es->width, es->height);
535 wlsc_surface_draw(es, output, &total_damage);
536 pixman_region32_subtract(&total_damage,
537 &total_damage, &repaint);
538 }
539
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500540 if (output->background)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500541 wlsc_surface_draw(output->background,
542 output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500543 else
544 glClear(GL_COLOR_BUFFER_BIT);
545
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500546 wl_list_for_each_reverse(es, &ec->surface_list, link) {
547 if (ec->switcher &&
548 ec->switcher->current == es)
549 continue;
550
Kristian Høgsbergcfc6d272011-04-11 13:34:24 -0400551 if (es->visual == &ec->compositor.rgb_visual) {
552 pixman_region32_union_rect(&total_damage,
553 &total_damage,
554 es->x, es->y,
555 es->width, es->height);
556 continue;
557 }
558
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500559 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500560 }
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500561 }
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400562
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500563 if (ec->switcher)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500564 wlsc_surface_draw(ec->switcher->current,
565 output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500566
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400567 if (ec->focus)
568 wl_list_for_each(eid, &ec->input_device_list, link)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500569 wlsc_surface_draw(eid->sprite, output, &total_damage);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500570}
571
572static void
573repaint(void *data)
574{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500575 struct wlsc_compositor *ec = data;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500576 struct wlsc_output *output;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100577 int repainted_all_outputs = 1;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500578
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100579 wl_list_for_each(output, &ec->output_list, link) {
580 if (!output->repaint_needed)
581 continue;
582
583 if (!output->finished) {
584 repainted_all_outputs = 0;
585 continue;
586 }
587
588 wlsc_output_repaint(output);
589 output->finished = 0;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100590 output->repaint_needed = 0;
Kristian Høgsberg11e28282011-04-11 16:47:50 -0400591 output->present(output);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500592 }
593
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100594 if (repainted_all_outputs)
595 ec->repaint_on_timeout = 0;
596 else
597 wl_event_source_timer_update(ec->timer_source, 1);
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400598}
599
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400600void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400601wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400602{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100603 struct wlsc_output *output;
604
605 wl_list_for_each(output, &compositor->output_list, link)
606 output->repaint_needed = 1;
607
Kristian Høgsbergb0a167c2009-08-14 11:15:18 -0400608 if (compositor->repaint_on_timeout)
609 return;
610
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400611 wl_event_source_timer_update(compositor->timer_source, 1);
612 compositor->repaint_on_timeout = 1;
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400613}
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500614
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500615static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500616surface_destroy(struct wl_client *client,
617 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400618{
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500619 wl_resource_destroy(&surface->resource, client);
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400620}
621
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100622void
623wlsc_surface_assign_output(struct wlsc_surface *es)
624{
625 struct wlsc_compositor *ec = es->compositor;
626 struct wlsc_output *output;
627
628 struct wlsc_output *tmp = es->output;
629 es->output = NULL;
630
631 wl_list_for_each(output, &ec->output_list, link) {
632 if (output->x < es->x && es->x < output->x + output->width &&
633 output->y < es->y && es->y < output->y + output->height) {
634 if (output != tmp)
635 printf("assiging surface %p to output %p\n",
636 es, output);
637 es->output = output;
638 }
639 }
640
641 if (es->output == NULL) {
642 printf("no output found\n");
643 es->output = container_of(ec->output_list.next,
644 struct wlsc_output, link);
645 }
646}
647
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500648static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500649surface_attach(struct wl_client *client,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500650 struct wl_surface *surface, struct wl_buffer *buffer,
651 int32_t x, int32_t y)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400652{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500653 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400654
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500655 /* FIXME: This damages the entire old surface, but we should
656 * really just damage the part that's no longer covered by the
657 * surface. Anything covered by the new surface will be
658 * damaged by the client. */
659 wlsc_surface_damage(es);
660
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100661 wlsc_buffer_attach(buffer, surface);
662
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400663 es->buffer = buffer;
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500664 es->x += x;
665 es->y += y;
666 es->width = buffer->width;
667 es->height = buffer->height;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100668 if (x != 0 || y != 0)
669 wlsc_surface_assign_output(es);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500670 wlsc_surface_update_matrix(es);
Kristian Høgsbergf9212892008-10-11 18:40:23 -0400671}
672
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500673static void
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500674surface_map_toplevel(struct wl_client *client,
675 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400676{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500677 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100678 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400679
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500680 switch (es->map_type) {
681 case WLSC_SURFACE_MAP_UNMAPPED:
682 es->x = 10 + random() % 400;
683 es->y = 10 + random() % 400;
684 wlsc_surface_update_matrix(es);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100685 /* assign to first output */
686 es->output = container_of(ec->output_list.next,
687 struct wlsc_output, link);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500688 wl_list_insert(&es->compositor->surface_list, &es->link);
689 break;
690 case WLSC_SURFACE_MAP_TOPLEVEL:
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500691 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500692 case WLSC_SURFACE_MAP_FULLSCREEN:
693 es->fullscreen_output = NULL;
694 es->x = es->saved_x;
695 es->y = es->saved_y;
696 wlsc_surface_update_matrix(es);
697 break;
698 default:
699 break;
700 }
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500701
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500702 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500703 es->map_type = WLSC_SURFACE_MAP_TOPLEVEL;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400704}
705
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500706static void
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500707surface_map_transient(struct wl_client *client,
708 struct wl_surface *surface, struct wl_surface *parent,
709 int x, int y, uint32_t flags)
710{
711 struct wlsc_surface *es = (struct wlsc_surface *) surface;
712 struct wlsc_surface *pes = (struct wlsc_surface *) parent;
713
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500714 switch (es->map_type) {
715 case WLSC_SURFACE_MAP_UNMAPPED:
716 wl_list_insert(&es->compositor->surface_list, &es->link);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100717 /* assign to parents output */
718 es->output = pes->output;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500719 break;
720 case WLSC_SURFACE_MAP_FULLSCREEN:
721 es->fullscreen_output = NULL;
722 break;
723 default:
724 break;
725 }
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500726
727 es->x = pes->x + x;
728 es->y = pes->y + y;
729
730 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500731 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500732 es->map_type = WLSC_SURFACE_MAP_TRANSIENT;
733}
734
735static void
736surface_map_fullscreen(struct wl_client *client, struct wl_surface *surface)
737{
738 struct wlsc_surface *es = (struct wlsc_surface *) surface;
739 struct wlsc_output *output;
740
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100741 /* FIXME: Fullscreen on first output */
742 /* FIXME: Handle output going away */
743 output = container_of(es->compositor->output_list.next,
744 struct wlsc_output, link);
745
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500746 switch (es->map_type) {
747 case WLSC_SURFACE_MAP_UNMAPPED:
748 es->x = 10 + random() % 400;
749 es->y = 10 + random() % 400;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100750 /* assign to first output */
751 es->output = output;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500752 wl_list_insert(&es->compositor->surface_list, &es->link);
753 break;
754 case WLSC_SURFACE_MAP_FULLSCREEN:
755 return;
756 default:
757 break;
758 }
759
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500760 es->saved_x = es->x;
761 es->saved_y = es->y;
762 es->x = (output->width - es->width) / 2;
763 es->y = (output->height - es->height) / 2;
764 es->fullscreen_output = output;
765 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500766 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500767 es->map_type = WLSC_SURFACE_MAP_FULLSCREEN;
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500768}
769
770static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500771surface_damage(struct wl_client *client,
772 struct wl_surface *surface,
773 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500774{
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400775 struct wlsc_surface *es = (struct wlsc_surface *) surface;
776
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400777 es->buffer->damage(es->buffer, surface, x, y, width, height);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500778
779 wlsc_surface_damage_rectangle(es, x, y, width, height);
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500780}
781
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500782const static struct wl_surface_interface surface_interface = {
783 surface_destroy,
784 surface_attach,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500785 surface_map_toplevel,
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500786 surface_map_transient,
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500787 surface_map_fullscreen,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500788 surface_damage
789};
790
791static void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400792wlsc_input_device_attach(struct wlsc_input_device *device,
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400793 struct wl_buffer *buffer, int x, int y)
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400794{
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500795 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400796
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +0100797 wlsc_buffer_attach(buffer, &device->sprite->surface);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400798 device->hotspot_x = x;
799 device->hotspot_y = y;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400800
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500801 device->sprite->x = device->input_device.x - device->hotspot_x;
802 device->sprite->y = device->input_device.y - device->hotspot_y;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400803 device->sprite->width = buffer->width;
804 device->sprite->height = buffer->height;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400805 wlsc_surface_update_matrix(device->sprite);
806
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500807 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400808}
809
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400810
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500811void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400812wlsc_input_device_set_pointer_image(struct wlsc_input_device *device,
813 enum wlsc_pointer_type type)
814{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500815 struct wlsc_compositor *compositor =
816 (struct wlsc_compositor *) device->input_device.compositor;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400817
818 wlsc_input_device_attach(device,
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500819 compositor->pointer_buffers[type],
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400820 pointer_images[type].hotspot_x,
821 pointer_images[type].hotspot_y);
822}
823
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400824static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500825compositor_create_surface(struct wl_client *client,
826 struct wl_compositor *compositor, uint32_t id)
827{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500828 struct wlsc_compositor *ec = (struct wlsc_compositor *) compositor;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400829 struct wlsc_surface *surface;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500830
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500831 surface = wlsc_surface_create(ec, 0, 0, 0, 0);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400832 if (surface == NULL) {
Kristian Høgsberg13b8ae42010-09-02 20:55:16 -0400833 wl_client_post_no_memory(client);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500834 return;
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400835 }
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500836
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500837 surface->surface.resource.destroy = destroy_surface;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400838
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500839 surface->surface.resource.object.id = id;
840 surface->surface.resource.object.interface = &wl_surface_interface;
841 surface->surface.resource.object.implementation =
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400842 (void (**)(void)) &surface_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500843 surface->surface.client = client;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400844
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500845 wl_client_add_resource(client, &surface->surface.resource);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500846}
847
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500848const static struct wl_compositor_interface compositor_interface = {
849 compositor_create_surface,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500850};
851
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500852static void
853wlsc_surface_transform(struct wlsc_surface *surface,
854 int32_t x, int32_t y, int32_t *sx, int32_t *sy)
855{
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400856 struct wlsc_vector v = { { x, y, 0, 1 } };
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500857
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400858 wlsc_matrix_transform(&surface->matrix_inv, &v);
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400859 *sx = v.f[0] * surface->width;
860 *sy = v.f[1] * surface->height;
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500861}
862
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500863struct wlsc_surface *
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500864pick_surface(struct wl_input_device *device, int32_t *sx, int32_t *sy)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500865{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500866 struct wlsc_compositor *ec =
867 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500868 struct wlsc_surface *es;
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500869
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400870 wl_list_for_each(es, &ec->surface_list, link) {
871 wlsc_surface_transform(es, device->x, device->y, sx, sy);
872 if (0 <= *sx && *sx < es->width &&
873 0 <= *sy && *sy < es->height)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500874 return es;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400875 }
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500876
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500877 return NULL;
878}
879
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500880
881static void
882motion_grab_motion(struct wl_grab *grab,
883 uint32_t time, int32_t x, int32_t y)
884{
885 struct wlsc_input_device *device =
886 (struct wlsc_input_device *) grab->input_device;
887 struct wlsc_surface *es =
888 (struct wlsc_surface *) device->input_device.pointer_focus;
889 int32_t sx, sy;
890
891 wlsc_surface_transform(es, x, y, &sx, &sy);
892 wl_client_post_event(es->surface.client,
893 &device->input_device.object,
894 WL_INPUT_DEVICE_MOTION,
895 time, x, y, sx, sy);
896}
897
898static void
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500899motion_grab_button(struct wl_grab *grab,
900 uint32_t time, int32_t button, int32_t state)
901{
902 wl_client_post_event(grab->input_device->pointer_focus->client,
903 &grab->input_device->object,
904 WL_INPUT_DEVICE_BUTTON,
905 time, button, state);
906}
907
908static void
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500909motion_grab_end(struct wl_grab *grab, uint32_t time)
910{
911}
912
913static const struct wl_grab_interface motion_grab_interface = {
914 motion_grab_motion,
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500915 motion_grab_button,
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500916 motion_grab_end
917};
918
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500919void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500920notify_motion(struct wl_input_device *device, uint32_t time, int x, int y)
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500921{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500922 struct wlsc_surface *es;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500923 struct wlsc_compositor *ec =
924 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500925 struct wlsc_output *output;
Kristian Høgsberg6d65d5f2010-12-07 13:30:18 -0500926 const struct wl_grab_interface *interface;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500927 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsbergfc9c28a2010-12-07 13:04:43 -0500928 int32_t sx, sy;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100929 int x_valid = 0, y_valid = 0;
930 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 -0500931
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100932 wl_list_for_each(output, &ec->output_list, link) {
933 if (output->x <= x && x <= output->x + output->width)
934 x_valid = 1;
935
936 if (output->y <= y && y <= output->y + output->height)
937 y_valid = 1;
938
939 /* FIXME: calculate this only on output addition/deletion */
940 if (output->x < min_x)
941 min_x = output->x;
942 if (output->y < min_y)
943 min_y = output->y;
944
945 if (output->x + output->width > max_x)
946 max_x = output->x + output->width;
947 if (output->y + output->height > max_y)
948 max_y = output->y + output->height;
949 }
950
951 if (!x_valid) {
952 if (x < min_x)
953 x = min_x;
954 else if (x >= max_x)
955 x = max_x;
956 }
957 if (!y_valid) {
958 if (y < min_y)
959 y = min_y;
960 else if (y >= max_y)
961 y = max_y;
962 }
Ray Strode90e701d2008-12-18 23:05:43 -0500963
Kristian Høgsberge3ef3e52008-12-21 19:30:01 -0500964 device->x = x;
965 device->y = y;
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -0500966
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500967 if (device->grab) {
968 interface = device->grab->interface;
969 interface->motion(device->grab, time, x, y);
970 } else {
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400971 es = pick_surface(device, &sx, &sy);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500972 wl_input_device_set_pointer_focus(device,
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500973 &es->surface,
Kristian Høgsberg26437072010-12-01 10:17:47 -0500974 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400975 if (es)
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500976 wl_client_post_event(es->surface.client,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500977 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -0400978 WL_INPUT_DEVICE_MOTION,
979 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400980 }
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500981
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500982 wlsc_surface_damage(wd->sprite);
983
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500984 wd->sprite->x = device->x - wd->hotspot_x;
985 wd->sprite->y = device->y - wd->hotspot_y;
986 wlsc_surface_update_matrix(wd->sprite);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500987
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500988 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500989}
990
Kristian Høgsberg30021d72011-04-12 17:42:30 -0400991void
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500992wlsc_surface_activate(struct wlsc_surface *surface,
993 struct wlsc_input_device *device, uint32_t time)
994{
995 wlsc_surface_raise(surface);
996 if (device->selection)
997 wlsc_selection_set_focus(device->selection,
998 &surface->surface, time);
999
1000 wl_input_device_set_keyboard_focus(&device->input_device,
1001 &surface->surface,
1002 time);
1003}
1004
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001005struct wlsc_binding {
1006 uint32_t key;
1007 uint32_t button;
1008 uint32_t modifier;
1009 wlsc_binding_handler_t handler;
1010 void *data;
1011 struct wl_list link;
1012};
1013
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001014void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001015notify_button(struct wl_input_device *device,
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001016 uint32_t time, int32_t button, int32_t state)
Kristian Høgsbergeac149a2008-12-10 00:24:18 -05001017{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001018 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001019 struct wlsc_compositor *compositor =
1020 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001021 struct wlsc_binding *b;
1022 struct wlsc_surface *surface =
1023 (struct wlsc_surface *) device->pointer_focus;
Kristian Høgsbergea081152010-12-07 08:59:51 -05001024
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -05001025 if (state && surface && device->grab == NULL) {
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001026 wlsc_surface_activate(surface, wd, time);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001027 wl_input_device_start_grab(device,
1028 &device->motion_grab,
1029 button, time);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001030 }
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -05001031
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001032 wl_list_for_each(b, &compositor->binding_list, link) {
1033 if (b->button == button &&
1034 b->modifier == wd->modifier_state && state) {
1035 b->handler(&wd->input_device,
1036 time, 0, button, state, b->data);
1037 break;
1038 }
Benjamin Franzke5a2218a2011-02-01 16:30:31 +01001039 }
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -05001040
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -05001041 if (device->grab)
1042 device->grab->interface->button(device->grab, time,
1043 button, state);
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -05001044
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001045 if (!state && device->grab && device->grab_button == button)
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001046 wl_input_device_end_grab(device, time);
Kristian Høgsbergeac149a2008-12-10 00:24:18 -05001047}
1048
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001049static void
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001050terminate_binding(struct wl_input_device *device, uint32_t time,
1051 uint32_t key, uint32_t button, uint32_t state, void *data)
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001052{
1053 struct wlsc_compositor *compositor = data;
1054
1055 wl_display_terminate(compositor->wl_display);
1056}
1057
1058struct wlsc_binding *
1059wlsc_compositor_add_binding(struct wlsc_compositor *compositor,
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001060 uint32_t key, uint32_t button, uint32_t modifier,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001061 wlsc_binding_handler_t handler, void *data)
1062{
1063 struct wlsc_binding *binding;
1064
1065 binding = malloc(sizeof *binding);
1066 if (binding == NULL)
1067 return NULL;
1068
1069 binding->key = key;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001070 binding->button = button;
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001071 binding->modifier = modifier;
1072 binding->handler = handler;
1073 binding->data = data;
1074 wl_list_insert(compositor->binding_list.prev, &binding->link);
1075
1076 return binding;
1077}
1078
1079void
1080wlsc_binding_destroy(struct wlsc_binding *binding)
1081{
1082 wl_list_remove(&binding->link);
1083 free(binding);
1084}
1085
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001086static void
1087update_modifier_state(struct wlsc_input_device *device,
1088 uint32_t key, uint32_t state)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -05001089{
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001090 uint32_t modifier;
Kristian Høgsbergab909ae2001-01-01 22:24:24 -05001091
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001092 switch (key) {
1093 case KEY_LEFTCTRL:
1094 case KEY_RIGHTCTRL:
1095 modifier = MODIFIER_CTRL;
1096 break;
1097
1098 case KEY_LEFTALT:
1099 case KEY_RIGHTALT:
1100 modifier = MODIFIER_ALT;
1101 break;
1102
Kristian Høgsberg5b75f1b2010-08-04 23:21:41 -04001103 case KEY_LEFTMETA:
1104 case KEY_RIGHTMETA:
1105 modifier = MODIFIER_SUPER;
1106 break;
1107
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001108 default:
1109 modifier = 0;
1110 break;
1111 }
1112
1113 if (state)
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001114 device->modifier_state |= modifier;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001115 else
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001116 device->modifier_state &= ~modifier;
1117}
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001118
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001119void
1120notify_key(struct wl_input_device *device,
1121 uint32_t time, uint32_t key, uint32_t state)
1122{
1123 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1124 struct wlsc_compositor *compositor =
1125 (struct wlsc_compositor *) device->compositor;
1126 uint32_t *k, *end;
1127 struct wlsc_binding *b;
1128
1129 wl_list_for_each(b, &compositor->binding_list, link) {
1130 if (b->key == key &&
1131 b->modifier == wd->modifier_state && state) {
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001132 b->handler(&wd->input_device,
1133 time, key, 0, state, b->data);
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001134 break;
1135 }
1136 }
1137
1138 update_modifier_state(wd, key, state);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001139 end = device->keys.data + device->keys.size;
1140 for (k = device->keys.data; k < end; k++) {
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001141 if (*k == key)
1142 *k = *--end;
1143 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001144 device->keys.size = (void *) end - device->keys.data;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001145 if (state) {
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001146 k = wl_array_add(&device->keys, sizeof *k);
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001147 *k = key;
1148 }
Ray Strodee96dcb82008-12-20 02:00:49 -05001149
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001150 if (device->keyboard_focus != NULL)
1151 wl_client_post_event(device->keyboard_focus->client,
1152 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -04001153 WL_INPUT_DEVICE_KEY, time, key, state);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001154}
1155
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001156void
1157notify_pointer_focus(struct wl_input_device *device,
1158 uint32_t time, struct wlsc_output *output,
1159 int32_t x, int32_t y)
1160{
1161 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1162 struct wlsc_compositor *compositor =
1163 (struct wlsc_compositor *) device->compositor;
1164 struct wlsc_surface *es;
1165 int32_t sx, sy;
1166
1167 if (output) {
1168 device->x = x;
1169 device->y = y;
1170 es = pick_surface(device, &sx, &sy);
1171 wl_input_device_set_pointer_focus(device,
1172 &es->surface,
1173 time, x, y, sx, sy);
1174
1175 compositor->focus = 1;
1176
1177 wd->sprite->x = device->x - wd->hotspot_x;
1178 wd->sprite->y = device->y - wd->hotspot_y;
1179 wlsc_surface_update_matrix(wd->sprite);
1180 } else {
1181 wl_input_device_set_pointer_focus(device, NULL,
1182 time, 0, 0, 0, 0);
1183 compositor->focus = 0;
1184 }
1185
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001186 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001187}
1188
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001189void
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001190notify_keyboard_focus(struct wl_input_device *device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001191 uint32_t time, struct wlsc_output *output,
1192 struct wl_array *keys)
1193{
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001194 struct wlsc_input_device *wd =
1195 (struct wlsc_input_device *) device;
1196 struct wlsc_compositor *compositor =
1197 (struct wlsc_compositor *) device->compositor;
1198 struct wlsc_surface *es;
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001199 uint32_t *k, *end;
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001200
1201 if (!wl_list_empty(&compositor->surface_list))
1202 es = container_of(compositor->surface_list.next,
1203 struct wlsc_surface, link);
1204 else
1205 es = NULL;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001206
1207 if (output) {
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001208 wl_array_copy(&wd->input_device.keys, keys);
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001209 wd->modifier_state = 0;
1210 end = device->keys.data + device->keys.size;
1211 for (k = device->keys.data; k < end; k++) {
1212 update_modifier_state(wd, *k, 1);
1213 }
1214
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001215 wl_input_device_set_keyboard_focus(&wd->input_device,
1216 &es->surface, time);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001217 } else {
Kristian Høgsbergf512d072011-04-12 17:16:00 -04001218 wd->modifier_state = 0;
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001219 wl_input_device_set_keyboard_focus(&wd->input_device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001220 NULL, time);
1221 }
1222}
1223
1224
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001225static void
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001226input_device_attach(struct wl_client *client,
1227 struct wl_input_device *device_base,
1228 uint32_t time,
1229 struct wl_buffer *buffer, int32_t x, int32_t y)
1230{
1231 struct wlsc_input_device *device =
1232 (struct wlsc_input_device *) device_base;
1233
1234 if (time < device->input_device.pointer_focus_time)
1235 return;
1236 if (device->input_device.pointer_focus == NULL)
1237 return;
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001238 if (device->input_device.pointer_focus->client != client)
1239 return;
1240
1241 if (buffer == NULL) {
1242 wlsc_input_device_set_pointer_image(device,
1243 WLSC_POINTER_LEFT_PTR);
1244 return;
1245 }
1246
1247 wlsc_input_device_attach(device, buffer, x, y);
1248}
1249
1250const static struct wl_input_device_interface input_device_interface = {
1251 input_device_attach,
1252};
1253
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001254void
1255wlsc_input_device_init(struct wlsc_input_device *device,
1256 struct wlsc_compositor *ec)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -05001257{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001258 wl_input_device_init(&device->input_device, &ec->compositor);
Kristian Høgsberg02ef1c12010-12-06 21:35:19 -05001259
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001260 device->input_device.object.interface = &wl_input_device_interface;
1261 device->input_device.object.implementation =
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001262 (void (**)(void)) &input_device_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001263 wl_display_add_object(ec->wl_display, &device->input_device.object);
1264 wl_display_add_global(ec->wl_display, &device->input_device.object, NULL);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -04001265
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -05001266 device->sprite = wlsc_surface_create(ec,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001267 device->input_device.x,
1268 device->input_device.y, 32, 32);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001269 device->hotspot_x = 16;
1270 device->hotspot_y = 16;
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001271 device->modifier_state = 0;
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001272
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001273 device->input_device.motion_grab.interface = &motion_grab_interface;
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001274
Kristian Høgsbergc492b482008-12-12 12:00:02 -05001275 wl_list_insert(ec->input_device_list.prev, &device->link);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001276
1277 wlsc_input_device_set_pointer_image(device, WLSC_POINTER_LEFT_PTR);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001278}
1279
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001280static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001281wlsc_output_post_geometry(struct wl_client *client, struct wl_object *global)
Kristian Høgsbergbf9541f2008-11-25 12:10:09 -05001282{
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001283 struct wlsc_output *output =
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001284 container_of(global, struct wlsc_output, object);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001285
1286 wl_client_post_event(client, global,
1287 WL_OUTPUT_GEOMETRY,
Kristian Høgsbergf8fc08f2010-12-01 20:10:10 -05001288 output->x, output->y,
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001289 output->width, output->height);
1290}
1291
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001292static const char vertex_shader[] =
1293 "uniform mat4 proj;\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001294 "attribute vec2 position;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001295 "attribute vec2 texcoord;\n"
1296 "varying vec2 v_texcoord;\n"
1297 "void main()\n"
1298 "{\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001299 " gl_Position = proj * vec4(position, 0.0, 1.0);\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001300 " v_texcoord = texcoord;\n"
1301 "}\n";
1302
1303static const char fragment_shader[] =
Kristian Høgsbergdfce71d2010-12-07 20:19:10 -05001304 "precision mediump float;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001305 "varying vec2 v_texcoord;\n"
1306 "uniform sampler2D tex;\n"
1307 "void main()\n"
1308 "{\n"
1309 " gl_FragColor = texture2D(tex, v_texcoord)\n;"
1310 "}\n";
1311
Kristian Høgsberga9468212010-06-14 21:03:11 -04001312static int
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001313init_shaders(struct wlsc_compositor *ec)
1314{
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001315 GLuint v, f, program;
1316 const char *p;
1317 char msg[512];
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001318 GLint status;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001319
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001320 p = vertex_shader;
1321 v = glCreateShader(GL_VERTEX_SHADER);
1322 glShaderSource(v, 1, &p, NULL);
1323 glCompileShader(v);
1324 glGetShaderiv(v, GL_COMPILE_STATUS, &status);
1325 if (!status) {
1326 glGetShaderInfoLog(v, sizeof msg, NULL, msg);
1327 fprintf(stderr, "vertex shader info: %s\n", msg);
1328 return -1;
1329 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001330
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001331 p = fragment_shader;
1332 f = glCreateShader(GL_FRAGMENT_SHADER);
1333 glShaderSource(f, 1, &p, NULL);
1334 glCompileShader(f);
1335 glGetShaderiv(f, GL_COMPILE_STATUS, &status);
1336 if (!status) {
1337 glGetShaderInfoLog(f, sizeof msg, NULL, msg);
1338 fprintf(stderr, "fragment shader info: %s\n", msg);
1339 return -1;
1340 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001341
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001342 program = glCreateProgram();
1343 glAttachShader(program, v);
1344 glAttachShader(program, f);
1345 glBindAttribLocation(program, 0, "position");
1346 glBindAttribLocation(program, 1, "texcoord");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001347
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001348 glLinkProgram(program);
1349 glGetProgramiv(program, GL_LINK_STATUS, &status);
1350 if (!status) {
1351 glGetProgramInfoLog(program, sizeof msg, NULL, msg);
1352 fprintf(stderr, "link info: %s\n", msg);
1353 return -1;
1354 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001355
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001356 glUseProgram(program);
1357 ec->proj_uniform = glGetUniformLocation(program, "proj");
1358 ec->tex_uniform = glGetUniformLocation(program, "tex");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001359
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001360 return 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001361}
1362
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001363void
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001364wlsc_output_destroy(struct wlsc_output *output)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001365{
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001366 destroy_surface(&output->background->surface.resource, NULL);
1367}
1368
1369void
1370wlsc_output_move(struct wlsc_output *output, int x, int y)
1371{
1372 struct wlsc_compositor *c = output->compositor;
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001373 int flip;
1374
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001375 output->x = x;
1376 output->y = y;
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001377
Benjamin Franzke264b3f92011-03-16 13:48:42 +01001378 if (output->background) {
1379 output->background->x = x;
1380 output->background->y = y;
1381 wlsc_surface_update_matrix(output->background);
1382 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001383
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001384 pixman_region32_init(&output->previous_damage_region);
1385
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001386 wlsc_matrix_init(&output->matrix);
1387 wlsc_matrix_translate(&output->matrix,
1388 -output->x - output->width / 2.0,
1389 -output->y - output->height / 2.0, 0);
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001390
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001391 flip = (output->flags & WL_OUTPUT_FLIPPED) ? -1 : 1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001392 wlsc_matrix_scale(&output->matrix,
Benjamin Franzke1b765ff2011-02-18 16:51:37 +01001393 2.0 / output->width,
1394 flip * 2.0 / output->height, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001395
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001396 pixman_region32_union_rect(&c->damage_region,
1397 &c->damage_region,
1398 x, y, output->width, output->height);
1399}
1400
1401void
1402wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c,
1403 int x, int y, int width, int height, uint32_t flags)
1404{
1405 output->compositor = c;
1406 output->x = x;
1407 output->y = y;
1408 output->width = width;
1409 output->height = height;
1410
1411 output->background =
1412 background_create(output, option_background);
1413
1414 output->flags = flags;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001415 output->finished = 1;
Benjamin Franzke9c26ff32011-03-15 15:08:41 +01001416 wlsc_output_move(output, x, y);
1417
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001418 output->object.interface = &wl_output_interface;
1419 wl_display_add_object(c->wl_display, &output->object);
1420 wl_display_add_global(c->wl_display, &output->object,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001421 wlsc_output_post_geometry);
1422}
1423
1424int
1425wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
1426{
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001427 struct wl_event_loop *loop;
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001428 const char *extensions;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001429
Kristian Høgsbergf9212892008-10-11 18:40:23 -04001430 ec->wl_display = display;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001431
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -05001432 wl_compositor_init(&ec->compositor, &compositor_interface, display);
Kristian Høgsbergee02ca62008-12-21 23:37:12 -05001433
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -04001434 wlsc_shm_init(ec);
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +01001435 eglBindWaylandDisplayWL(ec->display, ec->wl_display);
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -04001436
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001437 wl_list_init(&ec->surface_list);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001438 wl_list_init(&ec->input_device_list);
1439 wl_list_init(&ec->output_list);
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001440 wl_list_init(&ec->binding_list);
1441
Kristian Høgsberg07937562011-04-12 17:25:42 -04001442 wlsc_shell_init(ec);
Kristian Høgsberg30021d72011-04-12 17:42:30 -04001443 wlsc_switcher_init(ec);
Kristian Høgsberg07937562011-04-12 17:25:42 -04001444
Kristian Høgsberga8ec8632011-04-12 17:22:49 -04001445 wlsc_compositor_add_binding(ec, KEY_BACKSPACE, 0,
Kristian Høgsberg3555d092011-04-11 13:58:13 -04001446 MODIFIER_CTRL | MODIFIER_ALT,
1447 terminate_binding, ec);
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001448
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001449 create_pointer_images(ec);
1450
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001451 screenshooter_create(ec);
1452
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001453 extensions = (const char *) glGetString(GL_EXTENSIONS);
1454 if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) {
1455 fprintf(stderr,
1456 "GL_EXT_texture_format_BGRA8888 not available\n");
1457 return -1;
1458 }
1459
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001460 glActiveTexture(GL_TEXTURE0);
Kristian Høgsberga9468212010-06-14 21:03:11 -04001461 if (init_shaders(ec) < 0)
1462 return -1;
Kristian Høgsberg8d7ca6b2008-11-09 00:22:51 -05001463
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001464 loop = wl_display_get_event_loop(ec->wl_display);
Kristian Høgsberg4a298902008-11-28 18:35:25 -05001465 ec->timer_source = wl_event_loop_add_timer(loop, repaint, ec);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001466 pixman_region32_init(&ec->damage_region);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -04001467 wlsc_compositor_schedule_repaint(ec);
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -04001468
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001469 return 0;
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001470}
1471
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001472static void on_term_signal(int signal_number, void *data)
1473{
1474 struct wlsc_compositor *ec = data;
1475
1476 wl_display_terminate(ec->wl_display);
1477}
1478
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001479int main(int argc, char *argv[])
1480{
1481 struct wl_display *display;
Kristian Høgsberg8e438622009-01-26 23:07:00 -05001482 struct wlsc_compositor *ec;
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001483 struct wl_event_loop *loop;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001484 GError *error = NULL;
1485 GOptionContext *context;
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001486 int width, height;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001487
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001488 g_type_init(); /* GdkPixbuf needs this, it seems. */
1489
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001490 context = g_option_context_new(NULL);
1491 g_option_context_add_main_entries(context, option_entries, "Wayland");
1492 if (!g_option_context_parse(context, &argc, &argv, &error)) {
1493 fprintf(stderr, "option parsing failed: %s\n", error->message);
1494 exit(EXIT_FAILURE);
1495 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001496 if (sscanf(option_geometry, "%dx%d", &width, &height) != 2) {
1497 fprintf(stderr, "invalid geometry option: %s \n",
1498 option_geometry);
1499 exit(EXIT_FAILURE);
1500 }
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001501
1502 display = wl_display_create();
1503
Kristian Høgsberga9410222011-01-14 17:22:35 -05001504 ec = NULL;
1505
1506#if BUILD_WAYLAND_COMPOSITOR
Benjamin Franzkeec2e6422010-11-27 19:04:12 +01001507 if (getenv("WAYLAND_DISPLAY"))
1508 ec = wayland_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001509#endif
1510
1511#if BUILD_X11_COMPOSITOR
1512 if (ec == NULL && getenv("DISPLAY"))
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001513 ec = x11_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001514#endif
1515
1516#if BUILD_DRM_COMPOSITOR
1517 if (ec == NULL)
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001518 ec = drm_compositor_create(display, option_connector);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001519#endif
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001520
Kristian Høgsberg841883b2008-12-05 11:19:56 -05001521 if (ec == NULL) {
1522 fprintf(stderr, "failed to create compositor\n");
1523 exit(EXIT_FAILURE);
1524 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001525
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001526 if (wl_display_add_socket(display, option_socket_name)) {
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001527 fprintf(stderr, "failed to add socket: %m\n");
1528 exit(EXIT_FAILURE);
1529 }
1530
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001531 loop = wl_display_get_event_loop(ec->wl_display);
1532 wl_event_loop_add_signal(loop, SIGTERM, on_term_signal, ec);
1533 wl_event_loop_add_signal(loop, SIGINT, on_term_signal, ec);
1534
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001535 wl_display_run(display);
1536
Benjamin Franzkefaa0a9d2011-02-21 16:24:53 +01001537 eglUnbindWaylandDisplayWL(ec->display, display);
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001538 wl_display_destroy(display);
1539
Kristian Høgsbergcaa64422010-12-01 16:52:15 -05001540 ec->destroy(ec);
1541
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001542 return 0;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001543}