blob: afff961c5aeb2597c53c45be7e0de91d98cc8c73 [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>
Kristian Høgsberg8d7ca6b2008-11-09 00:22:51 -050027#include <stdarg.h>
Kristian Høgsberg16eb6752008-10-08 22:51:32 -040028#include <sys/ioctl.h>
Kristian Høgsberg16eb6752008-10-08 22:51:32 -040029#include <fcntl.h>
30#include <unistd.h>
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -050031#include <gdk-pixbuf/gdk-pixbuf.h>
Kristian Høgsberg54879822008-11-23 17:07:32 -050032#include <math.h>
Kristian Høgsbergfc783d42010-06-11 12:56:24 -040033#include <linux/input.h>
Kristian Høgsberg890bc052008-12-30 14:31:33 -050034
Kristian Høgsberg4cca3492011-01-18 07:53:49 -050035#include "wayland-server.h"
Kristian Høgsberg82863022010-06-04 21:52:02 -040036#include "compositor.h"
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -050037
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -050038struct wlsc_switcher {
39 struct wlsc_compositor *compositor;
40 struct wlsc_surface *current;
41 struct wl_listener listener;
42};
43
Benjamin Franzkeec2e6422010-11-27 19:04:12 +010044/* The plan here is to generate a random anonymous socket name and
45 * advertise that through a service on the session dbus.
46 */
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -050047static const char *option_socket_name = NULL;
Kristian Høgsberg61a82512010-10-26 11:26:44 -040048static const char *option_background = "background.jpg";
49static const char *option_geometry = "1024x640";
50static int option_connector = 0;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050051
52static const GOptionEntry option_entries[] = {
53 { "background", 'b', 0, G_OPTION_ARG_STRING,
54 &option_background, "Background image" },
Kristian Høgsbergf5878fa2009-09-18 17:02:41 -040055 { "connector", 'c', 0, G_OPTION_ARG_INT,
56 &option_connector, "KMS connector" },
Kristian Høgsberg61a82512010-10-26 11:26:44 -040057 { "geometry", 'g', 0, G_OPTION_ARG_STRING,
58 &option_geometry, "Geometry" },
Benjamin Franzkeec2e6422010-11-27 19:04:12 +010059 { "socket", 's', 0, G_OPTION_ARG_STRING,
60 &option_socket_name, "Socket Name" },
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050061 { NULL }
62};
63
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050064static void
65wlsc_matrix_init(struct wlsc_matrix *matrix)
66{
67 static const struct wlsc_matrix identity = {
68 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 }
69 };
70
71 memcpy(matrix, &identity, sizeof identity);
72}
73
74static void
75wlsc_matrix_multiply(struct wlsc_matrix *m, const struct wlsc_matrix *n)
76{
77 struct wlsc_matrix tmp;
Kristian Høgsberg27803c62010-06-06 22:23:21 -040078 const GLfloat *row, *column;
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050079 div_t d;
80 int i, j;
81
82 for (i = 0; i < 16; i++) {
83 tmp.d[i] = 0;
84 d = div(i, 4);
85 row = m->d + d.quot * 4;
86 column = n->d + d.rem;
87 for (j = 0; j < 4; j++)
88 tmp.d[i] += row[j] * column[j * 4];
89 }
90 memcpy(m, &tmp, sizeof tmp);
91}
92
93static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -040094wlsc_matrix_translate(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050095{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -050096 struct wlsc_matrix translate = {
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050097 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, x, y, z, 1 }
98 };
99
100 wlsc_matrix_multiply(matrix, &translate);
101}
102
103static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400104wlsc_matrix_scale(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500105{
106 struct wlsc_matrix scale = {
107 { x, 0, 0, 0, 0, y, 0, 0, 0, 0, z, 0, 0, 0, 0, 1 }
108 };
109
110 wlsc_matrix_multiply(matrix, &scale);
111}
112
113static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400114wlsc_matrix_transform(struct wlsc_matrix *matrix, struct wlsc_vector *v)
115{
116 int i, j;
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400117 struct wlsc_vector t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400118
119 for (i = 0; i < 4; i++) {
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400120 t.f[i] = 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400121 for (j = 0; j < 4; j++)
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400122 t.f[i] += v->f[j] * matrix->d[i + j * 4];
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400123 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500124
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400125 *v = t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400126}
127
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400128static struct wlsc_surface *
129wlsc_surface_create(struct wlsc_compositor *compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400130 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500131{
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400132 struct wlsc_surface *surface;
133
134 surface = malloc(sizeof *surface);
135 if (surface == NULL)
136 return NULL;
137
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500138 wl_list_init(&surface->surface.destroy_listener_list);
Kristian Høgsbergf6b14712011-01-06 15:32:14 -0500139 wl_list_init(&surface->link);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500140 surface->map_type = WLSC_SURFACE_MAP_UNMAPPED;
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500141
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500142 glGenTextures(1, &surface->texture);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400143 glBindTexture(GL_TEXTURE_2D, surface->texture);
144 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
145 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
146 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
147 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
148
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500149 surface->compositor = compositor;
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500150 surface->visual = NULL;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400151 surface->x = x;
152 surface->y = y;
153 surface->width = width;
154 surface->height = height;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400155 wlsc_matrix_init(&surface->matrix);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400156 wlsc_matrix_scale(&surface->matrix, width, height, 1);
157 wlsc_matrix_translate(&surface->matrix, x, y, 0);
158
159 wlsc_matrix_init(&surface->matrix_inv);
160 wlsc_matrix_translate(&surface->matrix_inv, -x, -y, 0);
161 wlsc_matrix_scale(&surface->matrix_inv, 1.0 / width, 1.0 / height, 1);
Kristian Høgsberg1e4b86a2008-11-23 23:41:08 -0500162
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400163 return surface;
Kristian Høgsberg54879822008-11-23 17:07:32 -0500164}
165
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500166void
167wlsc_surface_damage_rectangle(struct wlsc_surface *surface,
168 int32_t x, int32_t y,
169 int32_t width, int32_t height)
170{
171 struct wlsc_compositor *compositor = surface->compositor;
172
173 pixman_region32_union_rect(&compositor->damage_region,
174 &compositor->damage_region,
175 surface->x + x, surface->y + y,
176 width, height);
177 wlsc_compositor_schedule_repaint(compositor);
178}
179
180void
181wlsc_surface_damage(struct wlsc_surface *surface)
182{
183 wlsc_surface_damage_rectangle(surface, 0, 0,
184 surface->width, surface->height);
185}
186
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500187uint32_t
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500188get_time(void)
189{
190 struct timeval tv;
191
192 gettimeofday(&tv, NULL);
193
194 return tv.tv_sec * 1000 + tv.tv_usec / 1000;
195}
196
Kristian Høgsberg54879822008-11-23 17:07:32 -0500197static void
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400198destroy_surface(struct wl_resource *resource, struct wl_client *client)
Kristian Høgsberg54879822008-11-23 17:07:32 -0500199{
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400200 struct wlsc_surface *surface =
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500201 container_of(resource, struct wlsc_surface, surface.resource);
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500202 struct wl_listener *l, *next;
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500203 uint32_t time;
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400204
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500205 wlsc_surface_damage(surface);
206
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400207 wl_list_remove(&surface->link);
208 glDeleteTextures(1, &surface->texture);
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400209
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500210 time = get_time();
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500211 wl_list_for_each_safe(l, next,
212 &surface->surface.destroy_listener_list, link)
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500213 l->func(l, &surface->surface, time);
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400214
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400215 free(surface);
Kristian Høgsberg54879822008-11-23 17:07:32 -0500216}
217
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500218uint32_t *
219wlsc_load_image(const char *filename, int width, int height)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500220{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400221 GdkPixbuf *pixbuf;
222 GError *error = NULL;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500223 int stride, i, n_channels;
224 unsigned char *pixels, *end, *argb_pixels, *s, *d;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500225
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400226 pixbuf = gdk_pixbuf_new_from_file_at_scale(filename,
227 width, height,
228 FALSE, &error);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500229 if (error != NULL) {
230 fprintf(stderr, "failed to load image: %s\n", error->message);
231 g_error_free(error);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500232 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500233 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400234
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500235 stride = gdk_pixbuf_get_rowstride(pixbuf);
236 pixels = gdk_pixbuf_get_pixels(pixbuf);
237 n_channels = gdk_pixbuf_get_n_channels(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400238
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500239 argb_pixels = malloc (height * width * 4);
240 if (argb_pixels == NULL) {
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500241 g_object_unref(pixbuf);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500242 return NULL;
243 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400244
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500245 if (n_channels == 4) {
246 for (i = 0; i < height; i++) {
247 s = pixels + i * stride;
248 end = s + width * 4;
249 d = argb_pixels + i * width * 4;
250 while (s < end) {
251 unsigned int t;
252
253#define MULT(_d,c,a,t) \
254 do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0)
255
256 MULT(d[0], s[2], s[3], t);
257 MULT(d[1], s[1], s[3], t);
258 MULT(d[2], s[0], s[3], t);
259 d[3] = s[3];
260 s += 4;
261 d += 4;
262 }
263 }
264 } else if (n_channels == 3) {
265 for (i = 0; i < height; i++) {
266 s = pixels + i * stride;
267 end = s + width * 3;
268 d = argb_pixels + i * width * 4;
269 while (s < end) {
270 d[0] = s[2];
271 d[1] = s[1];
272 d[2] = s[0];
273 d[3] = 0xff;
274 s += 3;
275 d += 4;
276 }
277 }
278 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400279
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500280 g_object_unref(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400281
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500282 return (uint32_t *) argb_pixels;
283}
284
285static struct wl_buffer *
286create_buffer_from_png(struct wlsc_compositor *ec,
287 const char *filename, int width, int height)
288{
289 uint32_t *pixels;
290 struct wl_buffer *buffer;
291
292 pixels = wlsc_load_image(filename, width, height);
Tim Wiederhakeac5c5e72011-01-27 01:32:36 +0100293 if(pixels == NULL)
294 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500295
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500296 buffer = ec->create_buffer(ec, width, height,
297 &ec->compositor.premultiplied_argb_visual,
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500298 pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500299
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500300 free(pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500301
302 return buffer;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500303}
304
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400305static const struct {
306 const char *filename;
307 int hotspot_x, hotspot_y;
308} pointer_images[] = {
Kristian Høgsberg4219a402010-08-16 16:43:03 -0400309 { DATADIR "/wayland/bottom_left_corner.png", 6, 30 },
310 { DATADIR "/wayland/bottom_right_corner.png", 28, 28 },
311 { DATADIR "/wayland/bottom_side.png", 16, 20 },
312 { DATADIR "/wayland/grabbing.png", 20, 17 },
313 { DATADIR "/wayland/left_ptr.png", 10, 5 },
314 { DATADIR "/wayland/left_side.png", 10, 20 },
315 { DATADIR "/wayland/right_side.png", 30, 19 },
316 { DATADIR "/wayland/top_left_corner.png", 8, 8 },
317 { DATADIR "/wayland/top_right_corner.png", 26, 8 },
318 { DATADIR "/wayland/top_side.png", 18, 8 },
319 { DATADIR "/wayland/xterm.png", 15, 15 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400320};
321
322static void
323create_pointer_images(struct wlsc_compositor *ec)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500324{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400325 int i, count;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400326 const int width = 32, height = 32;
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400327
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400328 count = ARRAY_LENGTH(pointer_images);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400329 ec->pointer_buffers = malloc(count * sizeof *ec->pointer_buffers);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400330 for (i = 0; i < count; i++) {
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400331 ec->pointer_buffers[i] =
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500332 create_buffer_from_png(ec,
333 pointer_images[i].filename,
334 width, height);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400335 }
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400336}
337
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500338static struct wlsc_surface *
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500339background_create(struct wlsc_output *output, const char *filename)
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500340{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500341 struct wlsc_surface *background;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500342 struct wl_buffer *buffer;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500343
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400344 background = wlsc_surface_create(output->compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400345 output->x, output->y,
346 output->width, output->height);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500347 if (background == NULL)
348 return NULL;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500349
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500350 buffer = create_buffer_from_png(output->compositor,
351 filename,
352 output->width, output->height);
Benjamin Franzked3b023e2011-01-15 12:34:49 +0100353 if (buffer == NULL) {
354 free(background);
355 return NULL;
356 }
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500357 buffer->attach(buffer, &background->surface);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500358
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500359 return background;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500360}
361
362static void
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500363wlsc_surface_draw(struct wlsc_surface *es,
364 struct wlsc_output *output, pixman_region32_t *clip)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500365{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500366 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500367 GLfloat *v, inv_width, inv_height;
368 unsigned int *p;
369 pixman_region32_t repaint;
370 pixman_box32_t *rectangles;
371 int i, n;
372
373 pixman_region32_init_rect(&repaint,
374 es->x, es->y, es->width, es->height);
375 pixman_region32_intersect(&repaint, &repaint, clip);
376 if (!pixman_region32_not_empty(&repaint))
377 return;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500378
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500379 if (es->visual == &ec->compositor.argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500380 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
381 glEnable(GL_BLEND);
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500382 } else if (es->visual == &ec->compositor.premultiplied_argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500383 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
384 glEnable(GL_BLEND);
385 } else {
386 glDisable(GL_BLEND);
387 }
388
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500389 rectangles = pixman_region32_rectangles(&repaint, &n);
390 v = wl_array_add(&ec->vertices, n * 16 * sizeof *v);
391 p = wl_array_add(&ec->indices, n * 6 * sizeof *p);
392 inv_width = 1.0 / es->width;
393 inv_height = 1.0 / es->height;
394 for (i = 0; i < n; i++, v += 16, p += 6) {
395 v[ 0] = rectangles[i].x1;
396 v[ 1] = rectangles[i].y1;
397 v[ 2] = (GLfloat) (rectangles[i].x1 - es->x) * inv_width;
398 v[ 3] = (GLfloat) (rectangles[i].y1 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500399
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500400 v[ 4] = rectangles[i].x1;
401 v[ 5] = rectangles[i].y2;
402 v[ 6] = v[ 2];
403 v[ 7] = (GLfloat) (rectangles[i].y2 - es->y) * inv_height;
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500404
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500405 v[ 8] = rectangles[i].x2;
406 v[ 9] = rectangles[i].y1;
407 v[10] = (GLfloat) (rectangles[i].x2 - es->x) * inv_width;
408 v[11] = v[ 3];
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500409
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500410 v[12] = rectangles[i].x2;
411 v[13] = rectangles[i].y2;
412 v[14] = v[10];
413 v[15] = v[ 7];
414
415 p[0] = i * 4 + 0;
416 p[1] = i * 4 + 1;
417 p[2] = i * 4 + 2;
418 p[3] = i * 4 + 2;
419 p[4] = i * 4 + 1;
420 p[5] = i * 4 + 3;
421 }
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500422
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500423 glBindTexture(GL_TEXTURE_2D, es->texture);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500424 v = ec->vertices.data;
425 glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[0]);
426 glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[2]);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400427 glEnableVertexAttribArray(0);
428 glEnableVertexAttribArray(1);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500429 glDrawElements(GL_TRIANGLES, n * 6, GL_UNSIGNED_INT, ec->indices.data);
430
431 ec->vertices.size = 0;
432 ec->indices.size = 0;
433 pixman_region32_fini(&repaint);
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500434}
435
436static void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400437wlsc_surface_raise(struct wlsc_surface *surface)
438{
439 struct wlsc_compositor *compositor = surface->compositor;
440
441 wl_list_remove(&surface->link);
Kristian Høgsberg747638b2010-07-12 17:06:06 -0400442 wl_list_insert(&compositor->surface_list, &surface->link);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400443}
444
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500445void
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400446wlsc_surface_update_matrix(struct wlsc_surface *es)
447{
448 wlsc_matrix_init(&es->matrix);
449 wlsc_matrix_scale(&es->matrix, es->width, es->height, 1);
450 wlsc_matrix_translate(&es->matrix, es->x, es->y, 0);
451
452 wlsc_matrix_init(&es->matrix_inv);
453 wlsc_matrix_translate(&es->matrix_inv, -es->x, -es->y, 0);
454 wlsc_matrix_scale(&es->matrix_inv,
455 1.0 / es->width, 1.0 / es->height, 1);
456}
457
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400458void
459wlsc_compositor_finish_frame(struct wlsc_compositor *compositor, int msecs)
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400460{
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400461 wl_display_post_frame(compositor->wl_display, msecs);
Kristian Høgsberg5d312db2009-09-12 16:57:02 -0400462 wl_event_source_timer_update(compositor->timer_source, 5);
Kristian Høgsbergf30c67e2011-02-06 12:58:44 -0500463 compositor->repaint_on_timeout = 1;
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400464}
465
466static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400467wlsc_output_repaint(struct wlsc_output *output)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400468{
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500469 struct wlsc_compositor *ec = output->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500470 struct wlsc_surface *es;
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -0500471 struct wlsc_input_device *eid;
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500472 pixman_region32_t new_damage, total_damage;
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500473
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500474 glViewport(0, 0, output->width, output->height);
Kristian Høgsbergfdec2362001-01-01 22:23:51 -0500475
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -0500476 glUniformMatrix4fv(ec->proj_uniform, 1, GL_FALSE, output->matrix.d);
477 glUniform1i(ec->tex_uniform, 0);
478
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500479 pixman_region32_init(&new_damage);
480 pixman_region32_init(&total_damage);
481 pixman_region32_intersect_rect(&new_damage,
482 &ec->damage_region,
483 output->x, output->y,
484 output->width, output->height);
485 pixman_region32_subtract(&ec->damage_region,
486 &ec->damage_region, &new_damage);
487 pixman_region32_union(&total_damage, &new_damage,
488 &output->previous_damage_region);
489 pixman_region32_copy(&output->previous_damage_region, &new_damage);
490
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500491 es = container_of(ec->surface_list.next, struct wlsc_surface, link);
492 if (es->map_type == WLSC_SURFACE_MAP_FULLSCREEN &&
493 es->fullscreen_output == output) {
494 if (es->width < output->width || es->height < output->height)
495 glClear(GL_COLOR_BUFFER_BIT);
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500496 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500497 } else {
498 if (output->background)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500499 wlsc_surface_draw(output->background,
500 output, &total_damage);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500501 else
502 glClear(GL_COLOR_BUFFER_BIT);
503
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500504 wl_list_for_each_reverse(es, &ec->surface_list, link) {
505 if (ec->switcher &&
506 ec->switcher->current == es)
507 continue;
508
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500509 wlsc_surface_draw(es, output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500510 }
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500511 }
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400512
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500513 if (ec->switcher)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500514 wlsc_surface_draw(ec->switcher->current,
515 output, &total_damage);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500516
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400517 if (ec->focus)
518 wl_list_for_each(eid, &ec->input_device_list, link)
Kristian Høgsberg525e4c02011-02-14 10:39:54 -0500519 wlsc_surface_draw(eid->sprite, output, &total_damage);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500520}
521
522static void
523repaint(void *data)
524{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500525 struct wlsc_compositor *ec = data;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500526 struct wlsc_output *output;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500527
528 if (!ec->repaint_needed) {
529 ec->repaint_on_timeout = 0;
530 return;
531 }
532
Kristian Høgsberga5db5892010-02-26 10:28:44 -0500533 wl_list_for_each(output, &ec->output_list, link)
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400534 wlsc_output_repaint(output);
535
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400536 ec->present(ec);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500537
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500538 ec->repaint_needed = 0;
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400539}
540
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400541void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400542wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400543{
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400544 compositor->repaint_needed = 1;
Kristian Høgsbergb0a167c2009-08-14 11:15:18 -0400545 if (compositor->repaint_on_timeout)
546 return;
547
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400548 wl_event_source_timer_update(compositor->timer_source, 1);
549 compositor->repaint_on_timeout = 1;
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400550}
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500551
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500552static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500553surface_destroy(struct wl_client *client,
554 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400555{
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500556 wl_resource_destroy(&surface->resource, client);
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400557}
558
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500559static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500560surface_attach(struct wl_client *client,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500561 struct wl_surface *surface, struct wl_buffer *buffer,
562 int32_t x, int32_t y)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400563{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500564 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400565
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500566 /* FIXME: This damages the entire old surface, but we should
567 * really just damage the part that's no longer covered by the
568 * surface. Anything covered by the new surface will be
569 * damaged by the client. */
570 wlsc_surface_damage(es);
571
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400572 buffer->attach(buffer, surface);
573 es->buffer = buffer;
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500574 es->x += x;
575 es->y += y;
576 es->width = buffer->width;
577 es->height = buffer->height;
578 wlsc_surface_update_matrix(es);
Kristian Høgsbergf9212892008-10-11 18:40:23 -0400579}
580
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500581static void
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500582surface_map_toplevel(struct wl_client *client,
583 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400584{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500585 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400586
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500587 switch (es->map_type) {
588 case WLSC_SURFACE_MAP_UNMAPPED:
589 es->x = 10 + random() % 400;
590 es->y = 10 + random() % 400;
591 wlsc_surface_update_matrix(es);
592 wl_list_insert(&es->compositor->surface_list, &es->link);
593 break;
594 case WLSC_SURFACE_MAP_TOPLEVEL:
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500595 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500596 case WLSC_SURFACE_MAP_FULLSCREEN:
597 es->fullscreen_output = NULL;
598 es->x = es->saved_x;
599 es->y = es->saved_y;
600 wlsc_surface_update_matrix(es);
601 break;
602 default:
603 break;
604 }
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500605
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500606 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500607 es->map_type = WLSC_SURFACE_MAP_TOPLEVEL;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400608}
609
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500610static void
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500611surface_map_transient(struct wl_client *client,
612 struct wl_surface *surface, struct wl_surface *parent,
613 int x, int y, uint32_t flags)
614{
615 struct wlsc_surface *es = (struct wlsc_surface *) surface;
616 struct wlsc_surface *pes = (struct wlsc_surface *) parent;
617
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500618 switch (es->map_type) {
619 case WLSC_SURFACE_MAP_UNMAPPED:
620 wl_list_insert(&es->compositor->surface_list, &es->link);
621 break;
622 case WLSC_SURFACE_MAP_FULLSCREEN:
623 es->fullscreen_output = NULL;
624 break;
625 default:
626 break;
627 }
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500628
629 es->x = pes->x + x;
630 es->y = pes->y + y;
631
632 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500633 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500634 es->map_type = WLSC_SURFACE_MAP_TRANSIENT;
635}
636
637static void
638surface_map_fullscreen(struct wl_client *client, struct wl_surface *surface)
639{
640 struct wlsc_surface *es = (struct wlsc_surface *) surface;
641 struct wlsc_output *output;
642
643 switch (es->map_type) {
644 case WLSC_SURFACE_MAP_UNMAPPED:
645 es->x = 10 + random() % 400;
646 es->y = 10 + random() % 400;
647 wl_list_insert(&es->compositor->surface_list, &es->link);
648 break;
649 case WLSC_SURFACE_MAP_FULLSCREEN:
650 return;
651 default:
652 break;
653 }
654
655 /* FIXME: Fullscreen on first output */
656 /* FIXME: Handle output going away */
657 output = container_of(es->compositor->output_list.next,
658 struct wlsc_output, link);
659
660 es->saved_x = es->x;
661 es->saved_y = es->y;
662 es->x = (output->width - es->width) / 2;
663 es->y = (output->height - es->height) / 2;
664 es->fullscreen_output = output;
665 wlsc_surface_update_matrix(es);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500666 wlsc_surface_damage(es);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500667 es->map_type = WLSC_SURFACE_MAP_FULLSCREEN;
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500668}
669
670static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500671surface_damage(struct wl_client *client,
672 struct wl_surface *surface,
673 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500674{
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400675 struct wlsc_surface *es = (struct wlsc_surface *) surface;
676
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400677 es->buffer->damage(es->buffer, surface, x, y, width, height);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500678
679 wlsc_surface_damage_rectangle(es, x, y, width, height);
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500680}
681
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500682const static struct wl_surface_interface surface_interface = {
683 surface_destroy,
684 surface_attach,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500685 surface_map_toplevel,
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500686 surface_map_transient,
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500687 surface_map_fullscreen,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500688 surface_damage
689};
690
691static void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400692wlsc_input_device_attach(struct wlsc_input_device *device,
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400693 struct wl_buffer *buffer, int x, int y)
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400694{
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500695 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400696
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500697 buffer->attach(buffer, &device->sprite->surface);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400698 device->hotspot_x = x;
699 device->hotspot_y = y;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400700
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500701 device->sprite->x = device->input_device.x - device->hotspot_x;
702 device->sprite->y = device->input_device.y - device->hotspot_y;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400703 device->sprite->width = buffer->width;
704 device->sprite->height = buffer->height;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400705 wlsc_surface_update_matrix(device->sprite);
706
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500707 wlsc_surface_damage(device->sprite);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400708}
709
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400710
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500711void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400712wlsc_input_device_set_pointer_image(struct wlsc_input_device *device,
713 enum wlsc_pointer_type type)
714{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500715 struct wlsc_compositor *compositor =
716 (struct wlsc_compositor *) device->input_device.compositor;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400717
718 wlsc_input_device_attach(device,
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500719 compositor->pointer_buffers[type],
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400720 pointer_images[type].hotspot_x,
721 pointer_images[type].hotspot_y);
722}
723
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400724static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500725compositor_create_surface(struct wl_client *client,
726 struct wl_compositor *compositor, uint32_t id)
727{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500728 struct wlsc_compositor *ec = (struct wlsc_compositor *) compositor;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400729 struct wlsc_surface *surface;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500730
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500731 surface = wlsc_surface_create(ec, 0, 0, 0, 0);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400732 if (surface == NULL) {
Kristian Høgsberg13b8ae42010-09-02 20:55:16 -0400733 wl_client_post_no_memory(client);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500734 return;
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400735 }
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500736
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500737 surface->surface.resource.destroy = destroy_surface;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400738
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500739 surface->surface.resource.object.id = id;
740 surface->surface.resource.object.interface = &wl_surface_interface;
741 surface->surface.resource.object.implementation =
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400742 (void (**)(void)) &surface_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500743 surface->surface.client = client;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400744
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500745 wl_client_add_resource(client, &surface->surface.resource);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500746}
747
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500748const static struct wl_compositor_interface compositor_interface = {
749 compositor_create_surface,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500750};
751
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500752static void
753wlsc_surface_transform(struct wlsc_surface *surface,
754 int32_t x, int32_t y, int32_t *sx, int32_t *sy)
755{
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400756 struct wlsc_vector v = { { x, y, 0, 1 } };
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500757
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400758 wlsc_matrix_transform(&surface->matrix_inv, &v);
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400759 *sx = v.f[0] * surface->width;
760 *sy = v.f[1] * surface->height;
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500761}
762
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500763struct wlsc_surface *
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500764pick_surface(struct wl_input_device *device, int32_t *sx, int32_t *sy)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500765{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500766 struct wlsc_compositor *ec =
767 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500768 struct wlsc_surface *es;
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500769
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400770 wl_list_for_each(es, &ec->surface_list, link) {
771 wlsc_surface_transform(es, device->x, device->y, sx, sy);
772 if (0 <= *sx && *sx < es->width &&
773 0 <= *sy && *sy < es->height)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500774 return es;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400775 }
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500776
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500777 return NULL;
778}
779
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500780
781static void
782motion_grab_motion(struct wl_grab *grab,
783 uint32_t time, int32_t x, int32_t y)
784{
785 struct wlsc_input_device *device =
786 (struct wlsc_input_device *) grab->input_device;
787 struct wlsc_surface *es =
788 (struct wlsc_surface *) device->input_device.pointer_focus;
789 int32_t sx, sy;
790
791 wlsc_surface_transform(es, x, y, &sx, &sy);
792 wl_client_post_event(es->surface.client,
793 &device->input_device.object,
794 WL_INPUT_DEVICE_MOTION,
795 time, x, y, sx, sy);
796}
797
798static void
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500799motion_grab_button(struct wl_grab *grab,
800 uint32_t time, int32_t button, int32_t state)
801{
802 wl_client_post_event(grab->input_device->pointer_focus->client,
803 &grab->input_device->object,
804 WL_INPUT_DEVICE_BUTTON,
805 time, button, state);
806}
807
808static void
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500809motion_grab_end(struct wl_grab *grab, uint32_t time)
810{
811}
812
813static const struct wl_grab_interface motion_grab_interface = {
814 motion_grab_motion,
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500815 motion_grab_button,
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500816 motion_grab_end
817};
818
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500819void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500820notify_motion(struct wl_input_device *device, uint32_t time, int x, int y)
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500821{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500822 struct wlsc_surface *es;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500823 struct wlsc_compositor *ec =
824 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500825 struct wlsc_output *output;
Kristian Høgsberg6d65d5f2010-12-07 13:30:18 -0500826 const struct wl_grab_interface *interface;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500827 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsbergfc9c28a2010-12-07 13:04:43 -0500828 int32_t sx, sy;
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500829
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500830 /* FIXME: We need some multi head love here. */
831 output = container_of(ec->output_list.next, struct wlsc_output, link);
832 if (x < output->x)
Ray Strode90e701d2008-12-18 23:05:43 -0500833 x = 0;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500834 if (y < output->y)
Ray Strode90e701d2008-12-18 23:05:43 -0500835 y = 0;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500836 if (x >= output->x + output->width)
837 x = output->x + output->width - 1;
838 if (y >= output->y + output->height)
839 y = output->y + output->height - 1;
Ray Strode90e701d2008-12-18 23:05:43 -0500840
Kristian Høgsberge3ef3e52008-12-21 19:30:01 -0500841 device->x = x;
842 device->y = y;
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -0500843
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500844 if (device->grab) {
845 interface = device->grab->interface;
846 interface->motion(device->grab, time, x, y);
847 } else {
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400848 es = pick_surface(device, &sx, &sy);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500849 wl_input_device_set_pointer_focus(device,
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500850 &es->surface,
Kristian Høgsberg26437072010-12-01 10:17:47 -0500851 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400852 if (es)
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500853 wl_client_post_event(es->surface.client,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500854 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -0400855 WL_INPUT_DEVICE_MOTION,
856 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400857 }
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500858
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500859 wlsc_surface_damage(wd->sprite);
860
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500861 wd->sprite->x = device->x - wd->hotspot_x;
862 wd->sprite->y = device->y - wd->hotspot_y;
863 wlsc_surface_update_matrix(wd->sprite);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500864
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500865 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500866}
867
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500868static void
869wlsc_surface_activate(struct wlsc_surface *surface,
870 struct wlsc_input_device *device, uint32_t time)
871{
872 wlsc_surface_raise(surface);
873 if (device->selection)
874 wlsc_selection_set_focus(device->selection,
875 &surface->surface, time);
876
877 wl_input_device_set_keyboard_focus(&device->input_device,
878 &surface->surface,
879 time);
880}
881
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500882void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500883notify_button(struct wl_input_device *device,
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400884 uint32_t time, int32_t button, int32_t state)
Kristian Høgsbergeac149a2008-12-10 00:24:18 -0500885{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500886 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400887 struct wlsc_surface *surface;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500888 struct wlsc_compositor *compositor =
889 (struct wlsc_compositor *) device->compositor;
Kristian Høgsbergeac149a2008-12-10 00:24:18 -0500890
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500891 surface = (struct wlsc_surface *) device->pointer_focus;
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100892 uint32_t edges = 0;
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500893 int32_t x, y;
Kristian Høgsbergea081152010-12-07 08:59:51 -0500894
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -0500895 if (state && surface && device->grab == NULL) {
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500896 wlsc_surface_activate(surface, wd, time);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500897 wl_input_device_start_grab(device,
898 &device->motion_grab,
899 button, time);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500900 }
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500901
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -0500902 if (state && surface && button == BTN_LEFT &&
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500903 (wd->modifier_state & MODIFIER_SUPER))
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500904 shell_move(NULL,
905 (struct wl_shell *) &compositor->shell,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500906 &surface->surface, device, time);
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -0500907 else if (state && surface && button == BTN_MIDDLE &&
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100908 (wd->modifier_state & MODIFIER_SUPER)) {
909
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500910 x = device->grab_x - surface->x;
911 y = device->grab_y - surface->y;
912
913 if (x < surface->width / 3)
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100914 edges |= WL_SHELL_RESIZE_LEFT;
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500915 else if (x < 2 * surface->width / 3)
916 edges |= 0;
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100917 else
918 edges |= WL_SHELL_RESIZE_RIGHT;
919
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500920 if (y < surface->height / 3)
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100921 edges |= WL_SHELL_RESIZE_TOP;
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500922 else if (y < 2 * surface->height / 3)
923 edges |= 0;
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100924 else
925 edges |= WL_SHELL_RESIZE_BOTTOM;
926
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500927 shell_resize(NULL,
928 (struct wl_shell *) &compositor->shell,
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100929 &surface->surface, device, time, edges);
930 }
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500931
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -0500932 if (device->grab)
933 device->grab->interface->button(device->grab, time,
934 button, state);
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500935
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500936 if (!state && device->grab && device->grab_button == button)
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500937 wl_input_device_end_grab(device, time);
Kristian Høgsbergeac149a2008-12-10 00:24:18 -0500938}
939
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500940static void
941wlsc_switcher_next(struct wlsc_switcher *switcher)
942{
943 struct wl_list *l;
944
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500945 wlsc_surface_damage(switcher->current);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500946 l = switcher->current->link.next;
947 if (l == &switcher->compositor->surface_list)
948 l = switcher->compositor->surface_list.next;
949 switcher->current = container_of(l, struct wlsc_surface, link);
950 wl_list_remove(&switcher->listener.link);
951 wl_list_insert(switcher->current->surface.destroy_listener_list.prev,
952 &switcher->listener.link);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -0500953 wlsc_surface_damage(switcher->current);
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -0500954}
955
956static void
957switcher_handle_surface_destroy(struct wl_listener *listener,
958 struct wl_surface *surface, uint32_t time)
959{
960 struct wlsc_switcher *switcher =
961 container_of(listener, struct wlsc_switcher, listener);
962
963 wlsc_switcher_next(switcher);
964}
965
966static struct wlsc_switcher *
967wlsc_switcher_create(struct wlsc_compositor *compositor)
968{
969 struct wlsc_switcher *switcher;
970
971 switcher = malloc(sizeof *switcher);
972 switcher->compositor = compositor;
973 switcher->current = container_of(compositor->surface_list.next,
974 struct wlsc_surface, link);
975 switcher->listener.func = switcher_handle_surface_destroy;
976 wl_list_init(&switcher->listener.link);
977
978 return switcher;
979}
980
981static void
982wlsc_switcher_destroy(struct wlsc_switcher *switcher)
983{
984 wl_list_remove(&switcher->listener.link);
985 free(switcher);
986}
987
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500988void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500989notify_key(struct wl_input_device *device,
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400990 uint32_t time, uint32_t key, uint32_t state)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -0500991{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500992 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
993 struct wlsc_compositor *compositor =
994 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -0500995 uint32_t *k, *end;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -0400996 uint32_t modifier;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -0500997
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500998 switch (key | wd->modifier_state) {
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -0400999 case KEY_BACKSPACE | MODIFIER_CTRL | MODIFIER_ALT:
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001000 wl_display_terminate(compositor->wl_display);
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -05001001 return;
Kristian Høgsbergc9824dd2011-02-06 16:54:59 -05001002
1003 case KEY_TAB | MODIFIER_SUPER:
1004 if (!state)
1005 return;
1006 if (wl_list_empty(&compositor->surface_list))
1007 return;
1008 if (compositor->switcher == NULL)
1009 compositor->switcher = wlsc_switcher_create(compositor);
1010
1011 wlsc_switcher_next(compositor->switcher);
1012 return;
1013
1014 case KEY_LEFTMETA | MODIFIER_SUPER:
1015 case KEY_RIGHTMETA | MODIFIER_SUPER:
1016 if (compositor->switcher && !state) {
1017 wlsc_surface_activate(compositor->switcher->current,
1018 wd, time);
1019 wlsc_switcher_destroy(compositor->switcher);
1020 compositor->switcher = NULL;
1021 }
1022 break;
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -05001023 }
Kristian Høgsbergab909ae2001-01-01 22:24:24 -05001024
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001025 switch (key) {
1026 case KEY_LEFTCTRL:
1027 case KEY_RIGHTCTRL:
1028 modifier = MODIFIER_CTRL;
1029 break;
1030
1031 case KEY_LEFTALT:
1032 case KEY_RIGHTALT:
1033 modifier = MODIFIER_ALT;
1034 break;
1035
Kristian Høgsberg5b75f1b2010-08-04 23:21:41 -04001036 case KEY_LEFTMETA:
1037 case KEY_RIGHTMETA:
1038 modifier = MODIFIER_SUPER;
1039 break;
1040
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001041 default:
1042 modifier = 0;
1043 break;
1044 }
1045
1046 if (state)
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001047 wd->modifier_state |= modifier;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001048 else
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001049 wd->modifier_state &= ~modifier;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -04001050
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001051 end = device->keys.data + device->keys.size;
1052 for (k = device->keys.data; k < end; k++) {
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001053 if (*k == key)
1054 *k = *--end;
1055 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001056 device->keys.size = (void *) end - device->keys.data;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001057 if (state) {
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001058 k = wl_array_add(&device->keys, sizeof *k);
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -05001059 *k = key;
1060 }
Ray Strodee96dcb82008-12-20 02:00:49 -05001061
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001062 if (device->keyboard_focus != NULL)
1063 wl_client_post_event(device->keyboard_focus->client,
1064 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -04001065 WL_INPUT_DEVICE_KEY, time, key, state);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001066}
1067
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001068void
1069notify_pointer_focus(struct wl_input_device *device,
1070 uint32_t time, struct wlsc_output *output,
1071 int32_t x, int32_t y)
1072{
1073 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1074 struct wlsc_compositor *compositor =
1075 (struct wlsc_compositor *) device->compositor;
1076 struct wlsc_surface *es;
1077 int32_t sx, sy;
1078
1079 if (output) {
1080 device->x = x;
1081 device->y = y;
1082 es = pick_surface(device, &sx, &sy);
1083 wl_input_device_set_pointer_focus(device,
1084 &es->surface,
1085 time, x, y, sx, sy);
1086
1087 compositor->focus = 1;
1088
1089 wd->sprite->x = device->x - wd->hotspot_x;
1090 wd->sprite->y = device->y - wd->hotspot_y;
1091 wlsc_surface_update_matrix(wd->sprite);
1092 } else {
1093 wl_input_device_set_pointer_focus(device, NULL,
1094 time, 0, 0, 0, 0);
1095 compositor->focus = 0;
1096 }
1097
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001098 wlsc_surface_damage(wd->sprite);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -05001099}
1100
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001101void
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001102notify_keyboard_focus(struct wl_input_device *device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001103 uint32_t time, struct wlsc_output *output,
1104 struct wl_array *keys)
1105{
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001106 struct wlsc_input_device *wd =
1107 (struct wlsc_input_device *) device;
1108 struct wlsc_compositor *compositor =
1109 (struct wlsc_compositor *) device->compositor;
1110 struct wlsc_surface *es;
1111
1112 if (!wl_list_empty(&compositor->surface_list))
1113 es = container_of(compositor->surface_list.next,
1114 struct wlsc_surface, link);
1115 else
1116 es = NULL;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001117
1118 if (output) {
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001119 wl_array_copy(&wd->input_device.keys, keys);
1120 wl_input_device_set_keyboard_focus(&wd->input_device,
1121 &es->surface, time);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001122 } else {
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -05001123 wl_input_device_set_keyboard_focus(&wd->input_device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001124 NULL, time);
1125 }
1126}
1127
1128
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001129static void
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001130input_device_attach(struct wl_client *client,
1131 struct wl_input_device *device_base,
1132 uint32_t time,
1133 struct wl_buffer *buffer, int32_t x, int32_t y)
1134{
1135 struct wlsc_input_device *device =
1136 (struct wlsc_input_device *) device_base;
1137
1138 if (time < device->input_device.pointer_focus_time)
1139 return;
1140 if (device->input_device.pointer_focus == NULL)
1141 return;
Kristian Høgsbergab1862d2010-12-09 11:29:40 -05001142 if (device->input_device.pointer_focus->client != client)
1143 return;
1144
1145 if (buffer == NULL) {
1146 wlsc_input_device_set_pointer_image(device,
1147 WLSC_POINTER_LEFT_PTR);
1148 return;
1149 }
1150
1151 wlsc_input_device_attach(device, buffer, x, y);
1152}
1153
1154const static struct wl_input_device_interface input_device_interface = {
1155 input_device_attach,
1156};
1157
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001158void
1159wlsc_input_device_init(struct wlsc_input_device *device,
1160 struct wlsc_compositor *ec)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -05001161{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001162 wl_input_device_init(&device->input_device, &ec->compositor);
Kristian Høgsberg02ef1c12010-12-06 21:35:19 -05001163
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001164 device->input_device.object.interface = &wl_input_device_interface;
1165 device->input_device.object.implementation =
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001166 (void (**)(void)) &input_device_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001167 wl_display_add_object(ec->wl_display, &device->input_device.object);
1168 wl_display_add_global(ec->wl_display, &device->input_device.object, NULL);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -04001169
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -05001170 device->sprite = wlsc_surface_create(ec,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001171 device->input_device.x,
1172 device->input_device.y, 32, 32);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001173 device->hotspot_x = 16;
1174 device->hotspot_y = 16;
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001175
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -05001176 device->input_device.motion_grab.interface = &motion_grab_interface;
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001177
Kristian Høgsbergc492b482008-12-12 12:00:02 -05001178 wl_list_insert(ec->input_device_list.prev, &device->link);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001179
1180 wlsc_input_device_set_pointer_image(device, WLSC_POINTER_LEFT_PTR);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001181}
1182
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001183static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001184wlsc_output_post_geometry(struct wl_client *client, struct wl_object *global)
Kristian Høgsbergbf9541f2008-11-25 12:10:09 -05001185{
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001186 struct wlsc_output *output =
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001187 container_of(global, struct wlsc_output, object);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001188
1189 wl_client_post_event(client, global,
1190 WL_OUTPUT_GEOMETRY,
Kristian Høgsbergf8fc08f2010-12-01 20:10:10 -05001191 output->x, output->y,
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001192 output->width, output->height);
1193}
1194
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001195static const char vertex_shader[] =
1196 "uniform mat4 proj;\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001197 "attribute vec2 position;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001198 "attribute vec2 texcoord;\n"
1199 "varying vec2 v_texcoord;\n"
1200 "void main()\n"
1201 "{\n"
Kristian Høgsbergfa4e2a72011-02-13 13:44:55 -05001202 " gl_Position = proj * vec4(position, 0.0, 1.0);\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001203 " v_texcoord = texcoord;\n"
1204 "}\n";
1205
1206static const char fragment_shader[] =
Kristian Høgsbergdfce71d2010-12-07 20:19:10 -05001207 "precision mediump float;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001208 "varying vec2 v_texcoord;\n"
1209 "uniform sampler2D tex;\n"
1210 "void main()\n"
1211 "{\n"
1212 " gl_FragColor = texture2D(tex, v_texcoord)\n;"
1213 "}\n";
1214
Kristian Høgsberga9468212010-06-14 21:03:11 -04001215static int
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001216init_shaders(struct wlsc_compositor *ec)
1217{
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001218 GLuint v, f, program;
1219 const char *p;
1220 char msg[512];
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001221 GLint status;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001222
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001223 p = vertex_shader;
1224 v = glCreateShader(GL_VERTEX_SHADER);
1225 glShaderSource(v, 1, &p, NULL);
1226 glCompileShader(v);
1227 glGetShaderiv(v, GL_COMPILE_STATUS, &status);
1228 if (!status) {
1229 glGetShaderInfoLog(v, sizeof msg, NULL, msg);
1230 fprintf(stderr, "vertex shader info: %s\n", msg);
1231 return -1;
1232 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001233
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001234 p = fragment_shader;
1235 f = glCreateShader(GL_FRAGMENT_SHADER);
1236 glShaderSource(f, 1, &p, NULL);
1237 glCompileShader(f);
1238 glGetShaderiv(f, GL_COMPILE_STATUS, &status);
1239 if (!status) {
1240 glGetShaderInfoLog(f, sizeof msg, NULL, msg);
1241 fprintf(stderr, "fragment shader info: %s\n", msg);
1242 return -1;
1243 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001244
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001245 program = glCreateProgram();
1246 glAttachShader(program, v);
1247 glAttachShader(program, f);
1248 glBindAttribLocation(program, 0, "position");
1249 glBindAttribLocation(program, 1, "texcoord");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001250
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001251 glLinkProgram(program);
1252 glGetProgramiv(program, GL_LINK_STATUS, &status);
1253 if (!status) {
1254 glGetProgramInfoLog(program, sizeof msg, NULL, msg);
1255 fprintf(stderr, "link info: %s\n", msg);
1256 return -1;
1257 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001258
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001259 glUseProgram(program);
1260 ec->proj_uniform = glGetUniformLocation(program, "proj");
1261 ec->tex_uniform = glGetUniformLocation(program, "tex");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001262
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001263 return 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001264}
1265
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001266void
1267wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c,
1268 int x, int y, int width, int height)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001269{
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001270 output->compositor = c;
1271 output->x = x;
1272 output->y = y;
1273 output->width = width;
1274 output->height = height;
1275
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001276 pixman_region32_init(&output->previous_damage_region);
1277
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001278 output->background =
1279 background_create(output, option_background);
1280
1281 wlsc_matrix_init(&output->matrix);
1282 wlsc_matrix_translate(&output->matrix,
1283 -output->x - output->width / 2.0,
1284 -output->y - output->height / 2.0, 0);
1285 wlsc_matrix_scale(&output->matrix,
1286 2.0 / output->width, 2.0 / output->height, 1);
1287
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001288 output->object.interface = &wl_output_interface;
1289 wl_display_add_object(c->wl_display, &output->object);
1290 wl_display_add_global(c->wl_display, &output->object,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001291 wlsc_output_post_geometry);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001292
1293 pixman_region32_union_rect(&c->damage_region,
1294 &c->damage_region,
1295 x, y, width, height);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001296}
1297
1298int
1299wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
1300{
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001301 struct wl_event_loop *loop;
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001302 const char *extensions;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001303
Kristian Høgsbergf9212892008-10-11 18:40:23 -04001304 ec->wl_display = display;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001305
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -05001306 wl_compositor_init(&ec->compositor, &compositor_interface, display);
Kristian Høgsbergee02ca62008-12-21 23:37:12 -05001307
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -04001308 wlsc_shm_init(ec);
1309
Kristian Høgsberg4cca3492011-01-18 07:53:49 -05001310 wlsc_shell_init(ec);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04001311
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001312 wl_list_init(&ec->surface_list);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001313 wl_list_init(&ec->input_device_list);
1314 wl_list_init(&ec->output_list);
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001315
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001316 create_pointer_images(ec);
1317
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001318 screenshooter_create(ec);
1319
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001320 extensions = (const char *) glGetString(GL_EXTENSIONS);
1321 if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) {
1322 fprintf(stderr,
1323 "GL_EXT_texture_format_BGRA8888 not available\n");
1324 return -1;
1325 }
1326
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001327 glGenFramebuffers(1, &ec->fbo);
1328 glBindFramebuffer(GL_FRAMEBUFFER, ec->fbo);
1329 glActiveTexture(GL_TEXTURE0);
Kristian Høgsberga9468212010-06-14 21:03:11 -04001330 if (init_shaders(ec) < 0)
1331 return -1;
Kristian Høgsberg8d7ca6b2008-11-09 00:22:51 -05001332
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001333 loop = wl_display_get_event_loop(ec->wl_display);
Kristian Høgsberg4a298902008-11-28 18:35:25 -05001334 ec->timer_source = wl_event_loop_add_timer(loop, repaint, ec);
Kristian Høgsberg31bd6c72011-02-13 13:00:51 -05001335 pixman_region32_init(&ec->damage_region);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -04001336 wlsc_compositor_schedule_repaint(ec);
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -04001337
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001338 return 0;
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001339}
1340
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001341static void on_term_signal(int signal_number, void *data)
1342{
1343 struct wlsc_compositor *ec = data;
1344
1345 wl_display_terminate(ec->wl_display);
1346}
1347
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001348int main(int argc, char *argv[])
1349{
1350 struct wl_display *display;
Kristian Høgsberg8e438622009-01-26 23:07:00 -05001351 struct wlsc_compositor *ec;
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001352 struct wl_event_loop *loop;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001353 GError *error = NULL;
1354 GOptionContext *context;
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001355 int width, height;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001356
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001357 g_type_init(); /* GdkPixbuf needs this, it seems. */
1358
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001359 context = g_option_context_new(NULL);
1360 g_option_context_add_main_entries(context, option_entries, "Wayland");
1361 if (!g_option_context_parse(context, &argc, &argv, &error)) {
1362 fprintf(stderr, "option parsing failed: %s\n", error->message);
1363 exit(EXIT_FAILURE);
1364 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001365 if (sscanf(option_geometry, "%dx%d", &width, &height) != 2) {
1366 fprintf(stderr, "invalid geometry option: %s \n",
1367 option_geometry);
1368 exit(EXIT_FAILURE);
1369 }
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001370
1371 display = wl_display_create();
1372
Kristian Høgsberga9410222011-01-14 17:22:35 -05001373 ec = NULL;
1374
1375#if BUILD_WAYLAND_COMPOSITOR
Benjamin Franzkeec2e6422010-11-27 19:04:12 +01001376 if (getenv("WAYLAND_DISPLAY"))
1377 ec = wayland_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001378#endif
1379
1380#if BUILD_X11_COMPOSITOR
1381 if (ec == NULL && getenv("DISPLAY"))
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001382 ec = x11_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001383#endif
1384
1385#if BUILD_DRM_COMPOSITOR
1386 if (ec == NULL)
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001387 ec = drm_compositor_create(display, option_connector);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001388#endif
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001389
Kristian Høgsberg841883b2008-12-05 11:19:56 -05001390 if (ec == NULL) {
1391 fprintf(stderr, "failed to create compositor\n");
1392 exit(EXIT_FAILURE);
1393 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001394
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001395 if (wl_display_add_socket(display, option_socket_name)) {
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001396 fprintf(stderr, "failed to add socket: %m\n");
1397 exit(EXIT_FAILURE);
1398 }
1399
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001400 loop = wl_display_get_event_loop(ec->wl_display);
1401 wl_event_loop_add_signal(loop, SIGTERM, on_term_signal, ec);
1402 wl_event_loop_add_signal(loop, SIGINT, on_term_signal, ec);
1403
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001404 wl_display_run(display);
1405
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001406 wl_display_destroy(display);
1407
Kristian Høgsbergcaa64422010-12-01 16:52:15 -05001408 ec->destroy(ec);
1409
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001410 return 0;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001411}