Kristian Høgsberg | ffd710e | 2008-12-02 15:15:01 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2008 Kristian Høgsberg |
| 3 | * |
Kristian Høgsberg | 82f6e8a | 2008-12-19 13:47:53 -0500 | [diff] [blame] | 4 | * 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øgsberg | ffd710e | 2008-12-02 15:15:01 -0500 | [diff] [blame] | 8 | * |
Kristian Høgsberg | 82f6e8a | 2008-12-19 13:47:53 -0500 | [diff] [blame] | 9 | * 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øgsberg | ffd710e | 2008-12-02 15:15:01 -0500 | [diff] [blame] | 17 | */ |
| 18 | |
Kristian Høgsberg | 06bc264 | 2010-12-01 09:50:16 -0500 | [diff] [blame] | 19 | #define _GNU_SOURCE |
| 20 | |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 21 | #include "config.h" |
| 22 | |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 23 | #include <stdio.h> |
| 24 | #include <string.h> |
| 25 | #include <stdlib.h> |
| 26 | #include <stdint.h> |
Kristian Høgsberg | 8d7ca6b | 2008-11-09 00:22:51 -0500 | [diff] [blame] | 27 | #include <stdarg.h> |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 28 | #include <sys/ioctl.h> |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 29 | #include <fcntl.h> |
| 30 | #include <unistd.h> |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 31 | #include <gdk-pixbuf/gdk-pixbuf.h> |
Kristian Høgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 32 | #include <math.h> |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 33 | #include <linux/input.h> |
Kristian Høgsberg | 890bc05 | 2008-12-30 14:31:33 -0500 | [diff] [blame] | 34 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 35 | #include "wayland-server.h" |
Kristian Høgsberg | 8286302 | 2010-06-04 21:52:02 -0400 | [diff] [blame] | 36 | #include "compositor.h" |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 37 | |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 38 | struct wlsc_switcher { |
| 39 | struct wlsc_compositor *compositor; |
| 40 | struct wlsc_surface *current; |
| 41 | struct wl_listener listener; |
| 42 | }; |
| 43 | |
Benjamin Franzke | ec2e642 | 2010-11-27 19:04:12 +0100 | [diff] [blame] | 44 | /* 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øgsberg | 2bb3ebe | 2010-12-01 15:36:20 -0500 | [diff] [blame] | 47 | static const char *option_socket_name = NULL; |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 48 | static const char *option_background = "background.jpg"; |
| 49 | static const char *option_geometry = "1024x640"; |
| 50 | static int option_connector = 0; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 51 | |
| 52 | static const GOptionEntry option_entries[] = { |
| 53 | { "background", 'b', 0, G_OPTION_ARG_STRING, |
| 54 | &option_background, "Background image" }, |
Kristian Høgsberg | f5878fa | 2009-09-18 17:02:41 -0400 | [diff] [blame] | 55 | { "connector", 'c', 0, G_OPTION_ARG_INT, |
| 56 | &option_connector, "KMS connector" }, |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 57 | { "geometry", 'g', 0, G_OPTION_ARG_STRING, |
| 58 | &option_geometry, "Geometry" }, |
Benjamin Franzke | ec2e642 | 2010-11-27 19:04:12 +0100 | [diff] [blame] | 59 | { "socket", 's', 0, G_OPTION_ARG_STRING, |
| 60 | &option_socket_name, "Socket Name" }, |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 61 | { NULL } |
| 62 | }; |
| 63 | |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 64 | static void |
| 65 | wlsc_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 | |
| 74 | static void |
| 75 | wlsc_matrix_multiply(struct wlsc_matrix *m, const struct wlsc_matrix *n) |
| 76 | { |
| 77 | struct wlsc_matrix tmp; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 78 | const GLfloat *row, *column; |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 79 | 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 | |
| 93 | static void |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 94 | wlsc_matrix_translate(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z) |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 95 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 96 | struct wlsc_matrix translate = { |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 97 | { 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 | |
| 103 | static void |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 104 | wlsc_matrix_scale(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z) |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 105 | { |
| 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 | |
| 113 | static void |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 114 | wlsc_matrix_transform(struct wlsc_matrix *matrix, struct wlsc_vector *v) |
| 115 | { |
| 116 | int i, j; |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 117 | struct wlsc_vector t; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 118 | |
| 119 | for (i = 0; i < 4; i++) { |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 120 | t.f[i] = 0; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 121 | for (j = 0; j < 4; j++) |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 122 | t.f[i] += v->f[j] * matrix->d[i + j * 4]; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 123 | } |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 124 | |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 125 | *v = t; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 126 | } |
| 127 | |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 128 | static struct wlsc_surface * |
| 129 | wlsc_surface_create(struct wlsc_compositor *compositor, |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 130 | int32_t x, int32_t y, int32_t width, int32_t height) |
Kristian Høgsberg | 1a208d5 | 2009-02-10 14:20:26 -0500 | [diff] [blame] | 131 | { |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 132 | struct wlsc_surface *surface; |
| 133 | |
| 134 | surface = malloc(sizeof *surface); |
| 135 | if (surface == NULL) |
| 136 | return NULL; |
| 137 | |
Kristian Høgsberg | c551bd2 | 2010-12-06 16:43:16 -0500 | [diff] [blame] | 138 | wl_list_init(&surface->surface.destroy_listener_list); |
Kristian Høgsberg | f6b1471 | 2011-01-06 15:32:14 -0500 | [diff] [blame] | 139 | wl_list_init(&surface->link); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 140 | surface->map_type = WLSC_SURFACE_MAP_UNMAPPED; |
Kristian Høgsberg | c551bd2 | 2010-12-06 16:43:16 -0500 | [diff] [blame] | 141 | |
Kristian Høgsberg | 1a208d5 | 2009-02-10 14:20:26 -0500 | [diff] [blame] | 142 | glGenTextures(1, &surface->texture); |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 143 | 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øgsberg | 1a208d5 | 2009-02-10 14:20:26 -0500 | [diff] [blame] | 149 | surface->compositor = compositor; |
Kristian Høgsberg | c5d6be9 | 2011-01-14 16:22:37 -0500 | [diff] [blame] | 150 | surface->visual = NULL; |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 151 | surface->x = x; |
| 152 | surface->y = y; |
| 153 | surface->width = width; |
| 154 | surface->height = height; |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 155 | wlsc_matrix_init(&surface->matrix); |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 156 | 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øgsberg | 1e4b86a | 2008-11-23 23:41:08 -0500 | [diff] [blame] | 162 | |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 163 | return surface; |
Kristian Høgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 164 | } |
| 165 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 166 | void |
| 167 | wlsc_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 | |
| 180 | void |
| 181 | wlsc_surface_damage(struct wlsc_surface *surface) |
| 182 | { |
| 183 | wlsc_surface_damage_rectangle(surface, 0, 0, |
| 184 | surface->width, surface->height); |
| 185 | } |
| 186 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 187 | uint32_t |
Kristian Høgsberg | 7132a9a | 2010-12-06 21:41:10 -0500 | [diff] [blame] | 188 | get_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øgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 197 | static void |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 198 | destroy_surface(struct wl_resource *resource, struct wl_client *client) |
Kristian Høgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 199 | { |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 200 | struct wlsc_surface *surface = |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 201 | container_of(resource, struct wlsc_surface, surface.resource); |
Kristian Høgsberg | c551bd2 | 2010-12-06 16:43:16 -0500 | [diff] [blame] | 202 | struct wl_listener *l, *next; |
Kristian Høgsberg | 4685fa3 | 2010-12-06 21:38:50 -0500 | [diff] [blame] | 203 | uint32_t time; |
Kristian Høgsberg | 4fa4873 | 2009-03-10 23:17:00 -0400 | [diff] [blame] | 204 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 205 | wlsc_surface_damage(surface); |
| 206 | |
Kristian Høgsberg | 3f8f39c | 2009-09-18 17:05:13 -0400 | [diff] [blame] | 207 | wl_list_remove(&surface->link); |
| 208 | glDeleteTextures(1, &surface->texture); |
Kristian Høgsberg | 3f8f39c | 2009-09-18 17:05:13 -0400 | [diff] [blame] | 209 | |
Kristian Høgsberg | 7132a9a | 2010-12-06 21:41:10 -0500 | [diff] [blame] | 210 | time = get_time(); |
Kristian Høgsberg | c551bd2 | 2010-12-06 16:43:16 -0500 | [diff] [blame] | 211 | wl_list_for_each_safe(l, next, |
| 212 | &surface->surface.destroy_listener_list, link) |
Kristian Høgsberg | 4685fa3 | 2010-12-06 21:38:50 -0500 | [diff] [blame] | 213 | l->func(l, &surface->surface, time); |
Kristian Høgsberg | 4fa4873 | 2009-03-10 23:17:00 -0400 | [diff] [blame] | 214 | |
Kristian Høgsberg | 4fa4873 | 2009-03-10 23:17:00 -0400 | [diff] [blame] | 215 | free(surface); |
Kristian Høgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 216 | } |
| 217 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 218 | uint32_t * |
| 219 | wlsc_load_image(const char *filename, int width, int height) |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 220 | { |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 221 | GdkPixbuf *pixbuf; |
| 222 | GError *error = NULL; |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 223 | int stride, i, n_channels; |
| 224 | unsigned char *pixels, *end, *argb_pixels, *s, *d; |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 225 | |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 226 | pixbuf = gdk_pixbuf_new_from_file_at_scale(filename, |
| 227 | width, height, |
| 228 | FALSE, &error); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 229 | if (error != NULL) { |
| 230 | fprintf(stderr, "failed to load image: %s\n", error->message); |
| 231 | g_error_free(error); |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 232 | return NULL; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 233 | } |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 234 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 235 | stride = gdk_pixbuf_get_rowstride(pixbuf); |
| 236 | pixels = gdk_pixbuf_get_pixels(pixbuf); |
| 237 | n_channels = gdk_pixbuf_get_n_channels(pixbuf); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 238 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 239 | argb_pixels = malloc (height * width * 4); |
| 240 | if (argb_pixels == NULL) { |
Darxus@chaosreigns.com | c4df99c | 2011-01-25 15:00:56 -0500 | [diff] [blame] | 241 | g_object_unref(pixbuf); |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 242 | return NULL; |
| 243 | } |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 244 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 245 | 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øgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 279 | |
Darxus@chaosreigns.com | c4df99c | 2011-01-25 15:00:56 -0500 | [diff] [blame] | 280 | g_object_unref(pixbuf); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 281 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 282 | return (uint32_t *) argb_pixels; |
| 283 | } |
| 284 | |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame^] | 285 | static void |
| 286 | wlsc_buffer_attach(struct wl_buffer *buffer, struct wl_surface *surface) |
| 287 | { |
| 288 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
| 289 | struct wlsc_compositor *ec = es->compositor; |
| 290 | EGLImageKHR *image; |
| 291 | |
| 292 | if (buffer->attach) { |
| 293 | buffer->attach(buffer, surface); |
| 294 | } else { |
| 295 | image = eglCreateImageKHR(ec->display, ec->context, |
| 296 | EGL_WAYLAND_BUFFER_WL, |
| 297 | buffer, NULL); |
| 298 | |
| 299 | glBindTexture(GL_TEXTURE_2D, es->texture); |
| 300 | glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, image); |
| 301 | es->visual = buffer->visual; |
| 302 | eglDestroyImageKHR(ec->display, image); |
| 303 | } |
| 304 | } |
| 305 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 306 | static struct wl_buffer * |
| 307 | create_buffer_from_png(struct wlsc_compositor *ec, |
| 308 | const char *filename, int width, int height) |
| 309 | { |
| 310 | uint32_t *pixels; |
| 311 | struct wl_buffer *buffer; |
| 312 | |
| 313 | pixels = wlsc_load_image(filename, width, height); |
Tim Wiederhake | ac5c5e7 | 2011-01-27 01:32:36 +0100 | [diff] [blame] | 314 | if(pixels == NULL) |
| 315 | return NULL; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 316 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 317 | buffer = ec->create_buffer(ec, width, height, |
| 318 | &ec->compositor.premultiplied_argb_visual, |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 319 | pixels); |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 320 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 321 | free(pixels); |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 322 | |
| 323 | return buffer; |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 324 | } |
| 325 | |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 326 | static const struct { |
| 327 | const char *filename; |
| 328 | int hotspot_x, hotspot_y; |
| 329 | } pointer_images[] = { |
Kristian Høgsberg | 4219a40 | 2010-08-16 16:43:03 -0400 | [diff] [blame] | 330 | { DATADIR "/wayland/bottom_left_corner.png", 6, 30 }, |
| 331 | { DATADIR "/wayland/bottom_right_corner.png", 28, 28 }, |
| 332 | { DATADIR "/wayland/bottom_side.png", 16, 20 }, |
| 333 | { DATADIR "/wayland/grabbing.png", 20, 17 }, |
| 334 | { DATADIR "/wayland/left_ptr.png", 10, 5 }, |
| 335 | { DATADIR "/wayland/left_side.png", 10, 20 }, |
| 336 | { DATADIR "/wayland/right_side.png", 30, 19 }, |
| 337 | { DATADIR "/wayland/top_left_corner.png", 8, 8 }, |
| 338 | { DATADIR "/wayland/top_right_corner.png", 26, 8 }, |
| 339 | { DATADIR "/wayland/top_side.png", 18, 8 }, |
| 340 | { DATADIR "/wayland/xterm.png", 15, 15 } |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 341 | }; |
| 342 | |
| 343 | static void |
| 344 | create_pointer_images(struct wlsc_compositor *ec) |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 345 | { |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 346 | int i, count; |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 347 | const int width = 32, height = 32; |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 348 | |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 349 | count = ARRAY_LENGTH(pointer_images); |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 350 | ec->pointer_buffers = malloc(count * sizeof *ec->pointer_buffers); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 351 | for (i = 0; i < count; i++) { |
Kristian Høgsberg | 3d5bae0 | 2010-10-06 21:17:40 -0400 | [diff] [blame] | 352 | ec->pointer_buffers[i] = |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 353 | create_buffer_from_png(ec, |
| 354 | pointer_images[i].filename, |
| 355 | width, height); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 356 | } |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 357 | } |
| 358 | |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 359 | static struct wlsc_surface * |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 360 | background_create(struct wlsc_output *output, const char *filename) |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 361 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 362 | struct wlsc_surface *background; |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 363 | struct wl_buffer *buffer; |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 364 | |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 365 | background = wlsc_surface_create(output->compositor, |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 366 | output->x, output->y, |
| 367 | output->width, output->height); |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 368 | if (background == NULL) |
| 369 | return NULL; |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 370 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 371 | buffer = create_buffer_from_png(output->compositor, |
| 372 | filename, |
| 373 | output->width, output->height); |
Benjamin Franzke | d3b023e | 2011-01-15 12:34:49 +0100 | [diff] [blame] | 374 | if (buffer == NULL) { |
| 375 | free(background); |
| 376 | return NULL; |
| 377 | } |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame^] | 378 | |
| 379 | wlsc_buffer_attach(buffer, &background->surface); |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 380 | |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 381 | return background; |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | static void |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 385 | wlsc_surface_draw(struct wlsc_surface *es, |
| 386 | struct wlsc_output *output, pixman_region32_t *clip) |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 387 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 388 | struct wlsc_compositor *ec = es->compositor; |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 389 | GLfloat *v, inv_width, inv_height; |
| 390 | unsigned int *p; |
| 391 | pixman_region32_t repaint; |
| 392 | pixman_box32_t *rectangles; |
| 393 | int i, n; |
| 394 | |
| 395 | pixman_region32_init_rect(&repaint, |
| 396 | es->x, es->y, es->width, es->height); |
| 397 | pixman_region32_intersect(&repaint, &repaint, clip); |
| 398 | if (!pixman_region32_not_empty(&repaint)) |
| 399 | return; |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 400 | |
Kristian Høgsberg | c5c510e | 2010-12-08 15:12:58 -0500 | [diff] [blame] | 401 | if (es->visual == &ec->compositor.argb_visual) { |
Kristian Høgsberg | de31d5c | 2008-12-18 17:55:33 -0500 | [diff] [blame] | 402 | glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); |
| 403 | glEnable(GL_BLEND); |
Kristian Høgsberg | c5c510e | 2010-12-08 15:12:58 -0500 | [diff] [blame] | 404 | } else if (es->visual == &ec->compositor.premultiplied_argb_visual) { |
Kristian Høgsberg | de31d5c | 2008-12-18 17:55:33 -0500 | [diff] [blame] | 405 | glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA); |
| 406 | glEnable(GL_BLEND); |
| 407 | } else { |
| 408 | glDisable(GL_BLEND); |
| 409 | } |
| 410 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 411 | rectangles = pixman_region32_rectangles(&repaint, &n); |
| 412 | v = wl_array_add(&ec->vertices, n * 16 * sizeof *v); |
| 413 | p = wl_array_add(&ec->indices, n * 6 * sizeof *p); |
| 414 | inv_width = 1.0 / es->width; |
| 415 | inv_height = 1.0 / es->height; |
| 416 | for (i = 0; i < n; i++, v += 16, p += 6) { |
| 417 | v[ 0] = rectangles[i].x1; |
| 418 | v[ 1] = rectangles[i].y1; |
| 419 | v[ 2] = (GLfloat) (rectangles[i].x1 - es->x) * inv_width; |
| 420 | v[ 3] = (GLfloat) (rectangles[i].y1 - es->y) * inv_height; |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 421 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 422 | v[ 4] = rectangles[i].x1; |
| 423 | v[ 5] = rectangles[i].y2; |
| 424 | v[ 6] = v[ 2]; |
| 425 | v[ 7] = (GLfloat) (rectangles[i].y2 - es->y) * inv_height; |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 426 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 427 | v[ 8] = rectangles[i].x2; |
| 428 | v[ 9] = rectangles[i].y1; |
| 429 | v[10] = (GLfloat) (rectangles[i].x2 - es->x) * inv_width; |
| 430 | v[11] = v[ 3]; |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 431 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 432 | v[12] = rectangles[i].x2; |
| 433 | v[13] = rectangles[i].y2; |
| 434 | v[14] = v[10]; |
| 435 | v[15] = v[ 7]; |
| 436 | |
| 437 | p[0] = i * 4 + 0; |
| 438 | p[1] = i * 4 + 1; |
| 439 | p[2] = i * 4 + 2; |
| 440 | p[3] = i * 4 + 2; |
| 441 | p[4] = i * 4 + 1; |
| 442 | p[5] = i * 4 + 3; |
| 443 | } |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 444 | |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 445 | glBindTexture(GL_TEXTURE_2D, es->texture); |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 446 | v = ec->vertices.data; |
| 447 | glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[0]); |
| 448 | glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[2]); |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 449 | glEnableVertexAttribArray(0); |
| 450 | glEnableVertexAttribArray(1); |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 451 | glDrawElements(GL_TRIANGLES, n * 6, GL_UNSIGNED_INT, ec->indices.data); |
| 452 | |
| 453 | ec->vertices.size = 0; |
| 454 | ec->indices.size = 0; |
| 455 | pixman_region32_fini(&repaint); |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | static void |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 459 | wlsc_surface_raise(struct wlsc_surface *surface) |
| 460 | { |
| 461 | struct wlsc_compositor *compositor = surface->compositor; |
| 462 | |
| 463 | wl_list_remove(&surface->link); |
Kristian Høgsberg | 747638b | 2010-07-12 17:06:06 -0400 | [diff] [blame] | 464 | wl_list_insert(&compositor->surface_list, &surface->link); |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 465 | } |
| 466 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 467 | void |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 468 | wlsc_surface_update_matrix(struct wlsc_surface *es) |
| 469 | { |
| 470 | wlsc_matrix_init(&es->matrix); |
| 471 | wlsc_matrix_scale(&es->matrix, es->width, es->height, 1); |
| 472 | wlsc_matrix_translate(&es->matrix, es->x, es->y, 0); |
| 473 | |
| 474 | wlsc_matrix_init(&es->matrix_inv); |
| 475 | wlsc_matrix_translate(&es->matrix_inv, -es->x, -es->y, 0); |
| 476 | wlsc_matrix_scale(&es->matrix_inv, |
| 477 | 1.0 / es->width, 1.0 / es->height, 1); |
| 478 | } |
| 479 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 480 | void |
| 481 | wlsc_compositor_finish_frame(struct wlsc_compositor *compositor, int msecs) |
Kristian Høgsberg | 01f941b | 2009-05-27 17:47:15 -0400 | [diff] [blame] | 482 | { |
Kristian Høgsberg | 9d69f8e | 2010-09-03 14:46:38 -0400 | [diff] [blame] | 483 | wl_display_post_frame(compositor->wl_display, msecs); |
Kristian Høgsberg | 5d312db | 2009-09-12 16:57:02 -0400 | [diff] [blame] | 484 | wl_event_source_timer_update(compositor->timer_source, 5); |
Kristian Høgsberg | f30c67e | 2011-02-06 12:58:44 -0500 | [diff] [blame] | 485 | compositor->repaint_on_timeout = 1; |
Kristian Høgsberg | 01f941b | 2009-05-27 17:47:15 -0400 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | static void |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 489 | wlsc_output_repaint(struct wlsc_output *output) |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 490 | { |
Kristian Høgsberg | 1a208d5 | 2009-02-10 14:20:26 -0500 | [diff] [blame] | 491 | struct wlsc_compositor *ec = output->compositor; |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 492 | struct wlsc_surface *es; |
Kristian Høgsberg | 82f6e8a | 2008-12-19 13:47:53 -0500 | [diff] [blame] | 493 | struct wlsc_input_device *eid; |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 494 | pixman_region32_t new_damage, total_damage; |
Kristian Høgsberg | fbdbbdc | 2008-11-28 17:06:06 -0500 | [diff] [blame] | 495 | |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 496 | glViewport(0, 0, output->width, output->height); |
Kristian Høgsberg | fdec236 | 2001-01-01 22:23:51 -0500 | [diff] [blame] | 497 | |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 498 | glUniformMatrix4fv(ec->proj_uniform, 1, GL_FALSE, output->matrix.d); |
| 499 | glUniform1i(ec->tex_uniform, 0); |
| 500 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 501 | pixman_region32_init(&new_damage); |
| 502 | pixman_region32_init(&total_damage); |
| 503 | pixman_region32_intersect_rect(&new_damage, |
| 504 | &ec->damage_region, |
| 505 | output->x, output->y, |
| 506 | output->width, output->height); |
| 507 | pixman_region32_subtract(&ec->damage_region, |
| 508 | &ec->damage_region, &new_damage); |
| 509 | pixman_region32_union(&total_damage, &new_damage, |
| 510 | &output->previous_damage_region); |
| 511 | pixman_region32_copy(&output->previous_damage_region, &new_damage); |
| 512 | |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 513 | es = container_of(ec->surface_list.next, struct wlsc_surface, link); |
| 514 | if (es->map_type == WLSC_SURFACE_MAP_FULLSCREEN && |
| 515 | es->fullscreen_output == output) { |
| 516 | if (es->width < output->width || es->height < output->height) |
| 517 | glClear(GL_COLOR_BUFFER_BIT); |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 518 | wlsc_surface_draw(es, output, &total_damage); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 519 | } else { |
| 520 | if (output->background) |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 521 | wlsc_surface_draw(output->background, |
| 522 | output, &total_damage); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 523 | else |
| 524 | glClear(GL_COLOR_BUFFER_BIT); |
| 525 | |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 526 | wl_list_for_each_reverse(es, &ec->surface_list, link) { |
| 527 | if (ec->switcher && |
| 528 | ec->switcher->current == es) |
| 529 | continue; |
| 530 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 531 | wlsc_surface_draw(es, output, &total_damage); |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 532 | } |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 533 | } |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 534 | |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 535 | if (ec->switcher) |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 536 | wlsc_surface_draw(ec->switcher->current, |
| 537 | output, &total_damage); |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 538 | |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 539 | if (ec->focus) |
| 540 | wl_list_for_each(eid, &ec->input_device_list, link) |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 541 | wlsc_surface_draw(eid->sprite, output, &total_damage); |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | static void |
| 545 | repaint(void *data) |
| 546 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 547 | struct wlsc_compositor *ec = data; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 548 | struct wlsc_output *output; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 549 | |
| 550 | if (!ec->repaint_needed) { |
| 551 | ec->repaint_on_timeout = 0; |
| 552 | return; |
| 553 | } |
| 554 | |
Kristian Høgsberg | a5db589 | 2010-02-26 10:28:44 -0500 | [diff] [blame] | 555 | wl_list_for_each(output, &ec->output_list, link) |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 556 | wlsc_output_repaint(output); |
| 557 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 558 | ec->present(ec); |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 559 | |
Kristian Høgsberg | fbdbbdc | 2008-11-28 17:06:06 -0500 | [diff] [blame] | 560 | ec->repaint_needed = 0; |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 561 | } |
| 562 | |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 563 | void |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 564 | wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor) |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 565 | { |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 566 | compositor->repaint_needed = 1; |
Kristian Høgsberg | b0a167c | 2009-08-14 11:15:18 -0400 | [diff] [blame] | 567 | if (compositor->repaint_on_timeout) |
| 568 | return; |
| 569 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 570 | wl_event_source_timer_update(compositor->timer_source, 1); |
| 571 | compositor->repaint_on_timeout = 1; |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 572 | } |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 573 | |
Kristian Høgsberg | 5503bf8 | 2008-11-06 10:38:17 -0500 | [diff] [blame] | 574 | static void |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 575 | surface_destroy(struct wl_client *client, |
| 576 | struct wl_surface *surface) |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 577 | { |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 578 | wl_resource_destroy(&surface->resource, client); |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 579 | } |
| 580 | |
Kristian Høgsberg | 5503bf8 | 2008-11-06 10:38:17 -0500 | [diff] [blame] | 581 | static void |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 582 | surface_attach(struct wl_client *client, |
Kristian Høgsberg | 82da52b | 2010-12-17 09:53:12 -0500 | [diff] [blame] | 583 | struct wl_surface *surface, struct wl_buffer *buffer, |
| 584 | int32_t x, int32_t y) |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 585 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 586 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 587 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 588 | /* FIXME: This damages the entire old surface, but we should |
| 589 | * really just damage the part that's no longer covered by the |
| 590 | * surface. Anything covered by the new surface will be |
| 591 | * damaged by the client. */ |
| 592 | wlsc_surface_damage(es); |
| 593 | |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame^] | 594 | wlsc_buffer_attach(buffer, surface); |
| 595 | |
Kristian Høgsberg | 3d5bae0 | 2010-10-06 21:17:40 -0400 | [diff] [blame] | 596 | es->buffer = buffer; |
Kristian Høgsberg | 82da52b | 2010-12-17 09:53:12 -0500 | [diff] [blame] | 597 | es->x += x; |
| 598 | es->y += y; |
| 599 | es->width = buffer->width; |
| 600 | es->height = buffer->height; |
| 601 | wlsc_surface_update_matrix(es); |
Kristian Høgsberg | f921289 | 2008-10-11 18:40:23 -0400 | [diff] [blame] | 602 | } |
| 603 | |
Kristian Høgsberg | 5503bf8 | 2008-11-06 10:38:17 -0500 | [diff] [blame] | 604 | static void |
Kristian Høgsberg | 82da52b | 2010-12-17 09:53:12 -0500 | [diff] [blame] | 605 | surface_map_toplevel(struct wl_client *client, |
| 606 | struct wl_surface *surface) |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 607 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 608 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 609 | |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 610 | switch (es->map_type) { |
| 611 | case WLSC_SURFACE_MAP_UNMAPPED: |
| 612 | es->x = 10 + random() % 400; |
| 613 | es->y = 10 + random() % 400; |
| 614 | wlsc_surface_update_matrix(es); |
| 615 | wl_list_insert(&es->compositor->surface_list, &es->link); |
| 616 | break; |
| 617 | case WLSC_SURFACE_MAP_TOPLEVEL: |
Kristian Høgsberg | 8f66a57 | 2011-01-07 08:38:56 -0500 | [diff] [blame] | 618 | return; |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 619 | case WLSC_SURFACE_MAP_FULLSCREEN: |
| 620 | es->fullscreen_output = NULL; |
| 621 | es->x = es->saved_x; |
| 622 | es->y = es->saved_y; |
| 623 | wlsc_surface_update_matrix(es); |
| 624 | break; |
| 625 | default: |
| 626 | break; |
| 627 | } |
Kristian Høgsberg | 8f66a57 | 2011-01-07 08:38:56 -0500 | [diff] [blame] | 628 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 629 | wlsc_surface_damage(es); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 630 | es->map_type = WLSC_SURFACE_MAP_TOPLEVEL; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 631 | } |
| 632 | |
Kristian Høgsberg | 7f77bd8 | 2008-11-07 08:39:37 -0500 | [diff] [blame] | 633 | static void |
Kristian Høgsberg | 8dc378f | 2011-01-21 18:02:24 -0500 | [diff] [blame] | 634 | surface_map_transient(struct wl_client *client, |
| 635 | struct wl_surface *surface, struct wl_surface *parent, |
| 636 | int x, int y, uint32_t flags) |
| 637 | { |
| 638 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
| 639 | struct wlsc_surface *pes = (struct wlsc_surface *) parent; |
| 640 | |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 641 | switch (es->map_type) { |
| 642 | case WLSC_SURFACE_MAP_UNMAPPED: |
| 643 | wl_list_insert(&es->compositor->surface_list, &es->link); |
| 644 | break; |
| 645 | case WLSC_SURFACE_MAP_FULLSCREEN: |
| 646 | es->fullscreen_output = NULL; |
| 647 | break; |
| 648 | default: |
| 649 | break; |
| 650 | } |
Kristian Høgsberg | 8dc378f | 2011-01-21 18:02:24 -0500 | [diff] [blame] | 651 | |
| 652 | es->x = pes->x + x; |
| 653 | es->y = pes->y + y; |
| 654 | |
| 655 | wlsc_surface_update_matrix(es); |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 656 | wlsc_surface_damage(es); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 657 | es->map_type = WLSC_SURFACE_MAP_TRANSIENT; |
| 658 | } |
| 659 | |
| 660 | static void |
| 661 | surface_map_fullscreen(struct wl_client *client, struct wl_surface *surface) |
| 662 | { |
| 663 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
| 664 | struct wlsc_output *output; |
| 665 | |
| 666 | switch (es->map_type) { |
| 667 | case WLSC_SURFACE_MAP_UNMAPPED: |
| 668 | es->x = 10 + random() % 400; |
| 669 | es->y = 10 + random() % 400; |
| 670 | wl_list_insert(&es->compositor->surface_list, &es->link); |
| 671 | break; |
| 672 | case WLSC_SURFACE_MAP_FULLSCREEN: |
| 673 | return; |
| 674 | default: |
| 675 | break; |
| 676 | } |
| 677 | |
| 678 | /* FIXME: Fullscreen on first output */ |
| 679 | /* FIXME: Handle output going away */ |
| 680 | output = container_of(es->compositor->output_list.next, |
| 681 | struct wlsc_output, link); |
| 682 | |
| 683 | es->saved_x = es->x; |
| 684 | es->saved_y = es->y; |
| 685 | es->x = (output->width - es->width) / 2; |
| 686 | es->y = (output->height - es->height) / 2; |
| 687 | es->fullscreen_output = output; |
| 688 | wlsc_surface_update_matrix(es); |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 689 | wlsc_surface_damage(es); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 690 | es->map_type = WLSC_SURFACE_MAP_FULLSCREEN; |
Kristian Høgsberg | 8dc378f | 2011-01-21 18:02:24 -0500 | [diff] [blame] | 691 | } |
| 692 | |
| 693 | static void |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 694 | surface_damage(struct wl_client *client, |
| 695 | struct wl_surface *surface, |
| 696 | int32_t x, int32_t y, int32_t width, int32_t height) |
Kristian Høgsberg | 7f77bd8 | 2008-11-07 08:39:37 -0500 | [diff] [blame] | 697 | { |
Kristian Høgsberg | 9d69f8e | 2010-09-03 14:46:38 -0400 | [diff] [blame] | 698 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
| 699 | |
Kristian Høgsberg | 3d5bae0 | 2010-10-06 21:17:40 -0400 | [diff] [blame] | 700 | es->buffer->damage(es->buffer, surface, x, y, width, height); |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 701 | |
| 702 | wlsc_surface_damage_rectangle(es, x, y, width, height); |
Kristian Høgsberg | fbdbbdc | 2008-11-28 17:06:06 -0500 | [diff] [blame] | 703 | } |
| 704 | |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 705 | const static struct wl_surface_interface surface_interface = { |
| 706 | surface_destroy, |
| 707 | surface_attach, |
Kristian Høgsberg | 82da52b | 2010-12-17 09:53:12 -0500 | [diff] [blame] | 708 | surface_map_toplevel, |
Kristian Høgsberg | 8dc378f | 2011-01-21 18:02:24 -0500 | [diff] [blame] | 709 | surface_map_transient, |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 710 | surface_map_fullscreen, |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 711 | surface_damage |
| 712 | }; |
| 713 | |
| 714 | static void |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 715 | wlsc_input_device_attach(struct wlsc_input_device *device, |
Kristian Høgsberg | 3d5bae0 | 2010-10-06 21:17:40 -0400 | [diff] [blame] | 716 | struct wl_buffer *buffer, int x, int y) |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 717 | { |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 718 | wlsc_surface_damage(device->sprite); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 719 | |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame^] | 720 | wlsc_buffer_attach(buffer, &device->sprite->surface); |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 721 | device->hotspot_x = x; |
| 722 | device->hotspot_y = y; |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 723 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 724 | device->sprite->x = device->input_device.x - device->hotspot_x; |
| 725 | device->sprite->y = device->input_device.y - device->hotspot_y; |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 726 | device->sprite->width = buffer->width; |
| 727 | device->sprite->height = buffer->height; |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 728 | wlsc_surface_update_matrix(device->sprite); |
| 729 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 730 | wlsc_surface_damage(device->sprite); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 731 | } |
| 732 | |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 733 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 734 | void |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 735 | wlsc_input_device_set_pointer_image(struct wlsc_input_device *device, |
| 736 | enum wlsc_pointer_type type) |
| 737 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 738 | struct wlsc_compositor *compositor = |
| 739 | (struct wlsc_compositor *) device->input_device.compositor; |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 740 | |
| 741 | wlsc_input_device_attach(device, |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 742 | compositor->pointer_buffers[type], |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 743 | pointer_images[type].hotspot_x, |
| 744 | pointer_images[type].hotspot_y); |
| 745 | } |
| 746 | |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 747 | static void |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 748 | compositor_create_surface(struct wl_client *client, |
| 749 | struct wl_compositor *compositor, uint32_t id) |
| 750 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 751 | struct wlsc_compositor *ec = (struct wlsc_compositor *) compositor; |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 752 | struct wlsc_surface *surface; |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 753 | |
Kristian Høgsberg | c5d6be9 | 2011-01-14 16:22:37 -0500 | [diff] [blame] | 754 | surface = wlsc_surface_create(ec, 0, 0, 0, 0); |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 755 | if (surface == NULL) { |
Kristian Høgsberg | 13b8ae4 | 2010-09-02 20:55:16 -0400 | [diff] [blame] | 756 | wl_client_post_no_memory(client); |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 757 | return; |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 758 | } |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 759 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 760 | surface->surface.resource.destroy = destroy_surface; |
Kristian Høgsberg | f66d0f4 | 2010-09-02 20:27:16 -0400 | [diff] [blame] | 761 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 762 | surface->surface.resource.object.id = id; |
| 763 | surface->surface.resource.object.interface = &wl_surface_interface; |
| 764 | surface->surface.resource.object.implementation = |
Kristian Høgsberg | f66d0f4 | 2010-09-02 20:27:16 -0400 | [diff] [blame] | 765 | (void (**)(void)) &surface_interface; |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 766 | surface->surface.client = client; |
Kristian Høgsberg | f66d0f4 | 2010-09-02 20:27:16 -0400 | [diff] [blame] | 767 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 768 | wl_client_add_resource(client, &surface->surface.resource); |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 769 | } |
| 770 | |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 771 | const static struct wl_compositor_interface compositor_interface = { |
| 772 | compositor_create_surface, |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 773 | }; |
| 774 | |
Kristian Høgsberg | 7b6907f | 2009-02-14 17:47:55 -0500 | [diff] [blame] | 775 | static void |
| 776 | wlsc_surface_transform(struct wlsc_surface *surface, |
| 777 | int32_t x, int32_t y, int32_t *sx, int32_t *sy) |
| 778 | { |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 779 | struct wlsc_vector v = { { x, y, 0, 1 } }; |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 780 | |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 781 | wlsc_matrix_transform(&surface->matrix_inv, &v); |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 782 | *sx = v.f[0] * surface->width; |
| 783 | *sy = v.f[1] * surface->height; |
Kristian Høgsberg | 7b6907f | 2009-02-14 17:47:55 -0500 | [diff] [blame] | 784 | } |
| 785 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 786 | struct wlsc_surface * |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 787 | pick_surface(struct wl_input_device *device, int32_t *sx, int32_t *sy) |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 788 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 789 | struct wlsc_compositor *ec = |
| 790 | (struct wlsc_compositor *) device->compositor; |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 791 | struct wlsc_surface *es; |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 792 | |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 793 | wl_list_for_each(es, &ec->surface_list, link) { |
| 794 | wlsc_surface_transform(es, device->x, device->y, sx, sy); |
| 795 | if (0 <= *sx && *sx < es->width && |
| 796 | 0 <= *sy && *sy < es->height) |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 797 | return es; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 798 | } |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 799 | |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 800 | return NULL; |
| 801 | } |
| 802 | |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 803 | |
| 804 | static void |
| 805 | motion_grab_motion(struct wl_grab *grab, |
| 806 | uint32_t time, int32_t x, int32_t y) |
| 807 | { |
| 808 | struct wlsc_input_device *device = |
| 809 | (struct wlsc_input_device *) grab->input_device; |
| 810 | struct wlsc_surface *es = |
| 811 | (struct wlsc_surface *) device->input_device.pointer_focus; |
| 812 | int32_t sx, sy; |
| 813 | |
| 814 | wlsc_surface_transform(es, x, y, &sx, &sy); |
| 815 | wl_client_post_event(es->surface.client, |
| 816 | &device->input_device.object, |
| 817 | WL_INPUT_DEVICE_MOTION, |
| 818 | time, x, y, sx, sy); |
| 819 | } |
| 820 | |
| 821 | static void |
Kristian Høgsberg | b3fc757 | 2010-12-08 11:07:57 -0500 | [diff] [blame] | 822 | motion_grab_button(struct wl_grab *grab, |
| 823 | uint32_t time, int32_t button, int32_t state) |
| 824 | { |
| 825 | wl_client_post_event(grab->input_device->pointer_focus->client, |
| 826 | &grab->input_device->object, |
| 827 | WL_INPUT_DEVICE_BUTTON, |
| 828 | time, button, state); |
| 829 | } |
| 830 | |
| 831 | static void |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 832 | motion_grab_end(struct wl_grab *grab, uint32_t time) |
| 833 | { |
| 834 | } |
| 835 | |
| 836 | static const struct wl_grab_interface motion_grab_interface = { |
| 837 | motion_grab_motion, |
Kristian Høgsberg | b3fc757 | 2010-12-08 11:07:57 -0500 | [diff] [blame] | 838 | motion_grab_button, |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 839 | motion_grab_end |
| 840 | }; |
| 841 | |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 842 | void |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 843 | notify_motion(struct wl_input_device *device, uint32_t time, int x, int y) |
Kristian Høgsberg | 715a081 | 2008-12-10 10:42:04 -0500 | [diff] [blame] | 844 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 845 | struct wlsc_surface *es; |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 846 | struct wlsc_compositor *ec = |
| 847 | (struct wlsc_compositor *) device->compositor; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 848 | struct wlsc_output *output; |
Kristian Høgsberg | 6d65d5f | 2010-12-07 13:30:18 -0500 | [diff] [blame] | 849 | const struct wl_grab_interface *interface; |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 850 | struct wlsc_input_device *wd = (struct wlsc_input_device *) device; |
Kristian Høgsberg | fc9c28a | 2010-12-07 13:04:43 -0500 | [diff] [blame] | 851 | int32_t sx, sy; |
Kristian Høgsberg | 715a081 | 2008-12-10 10:42:04 -0500 | [diff] [blame] | 852 | |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 853 | /* FIXME: We need some multi head love here. */ |
| 854 | output = container_of(ec->output_list.next, struct wlsc_output, link); |
| 855 | if (x < output->x) |
Ray Strode | 90e701d | 2008-12-18 23:05:43 -0500 | [diff] [blame] | 856 | x = 0; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 857 | if (y < output->y) |
Ray Strode | 90e701d | 2008-12-18 23:05:43 -0500 | [diff] [blame] | 858 | y = 0; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 859 | if (x >= output->x + output->width) |
| 860 | x = output->x + output->width - 1; |
| 861 | if (y >= output->y + output->height) |
| 862 | y = output->y + output->height - 1; |
Ray Strode | 90e701d | 2008-12-18 23:05:43 -0500 | [diff] [blame] | 863 | |
Kristian Høgsberg | e3ef3e5 | 2008-12-21 19:30:01 -0500 | [diff] [blame] | 864 | device->x = x; |
| 865 | device->y = y; |
Kristian Høgsberg | db6c2f3 | 2009-02-22 21:51:24 -0500 | [diff] [blame] | 866 | |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 867 | if (device->grab) { |
| 868 | interface = device->grab->interface; |
| 869 | interface->motion(device->grab, time, x, y); |
| 870 | } else { |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 871 | es = pick_surface(device, &sx, &sy); |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 872 | wl_input_device_set_pointer_focus(device, |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 873 | &es->surface, |
Kristian Høgsberg | 2643707 | 2010-12-01 10:17:47 -0500 | [diff] [blame] | 874 | time, x, y, sx, sy); |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 875 | if (es) |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 876 | wl_client_post_event(es->surface.client, |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 877 | &device->object, |
Kristian Høgsberg | 50038e4 | 2010-09-07 21:08:59 -0400 | [diff] [blame] | 878 | WL_INPUT_DEVICE_MOTION, |
| 879 | time, x, y, sx, sy); |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 880 | } |
Kristian Høgsberg | 715a081 | 2008-12-10 10:42:04 -0500 | [diff] [blame] | 881 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 882 | wlsc_surface_damage(wd->sprite); |
| 883 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 884 | wd->sprite->x = device->x - wd->hotspot_x; |
| 885 | wd->sprite->y = device->y - wd->hotspot_y; |
| 886 | wlsc_surface_update_matrix(wd->sprite); |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 887 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 888 | wlsc_surface_damage(wd->sprite); |
Kristian Høgsberg | 715a081 | 2008-12-10 10:42:04 -0500 | [diff] [blame] | 889 | } |
| 890 | |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 891 | static void |
| 892 | wlsc_surface_activate(struct wlsc_surface *surface, |
| 893 | struct wlsc_input_device *device, uint32_t time) |
| 894 | { |
| 895 | wlsc_surface_raise(surface); |
| 896 | if (device->selection) |
| 897 | wlsc_selection_set_focus(device->selection, |
| 898 | &surface->surface, time); |
| 899 | |
| 900 | wl_input_device_set_keyboard_focus(&device->input_device, |
| 901 | &surface->surface, |
| 902 | time); |
| 903 | } |
| 904 | |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 905 | void |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 906 | notify_button(struct wl_input_device *device, |
Kristian Høgsberg | 808fd41 | 2010-07-20 17:06:19 -0400 | [diff] [blame] | 907 | uint32_t time, int32_t button, int32_t state) |
Kristian Høgsberg | eac149a | 2008-12-10 00:24:18 -0500 | [diff] [blame] | 908 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 909 | struct wlsc_input_device *wd = (struct wlsc_input_device *) device; |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 910 | struct wlsc_surface *surface; |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 911 | struct wlsc_compositor *compositor = |
| 912 | (struct wlsc_compositor *) device->compositor; |
Kristian Høgsberg | eac149a | 2008-12-10 00:24:18 -0500 | [diff] [blame] | 913 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 914 | surface = (struct wlsc_surface *) device->pointer_focus; |
Benjamin Franzke | 5a2218a | 2011-02-01 16:30:31 +0100 | [diff] [blame] | 915 | uint32_t edges = 0; |
Kristian Høgsberg | 181f52e | 2011-02-01 20:28:32 -0500 | [diff] [blame] | 916 | int32_t x, y; |
Kristian Høgsberg | ea08115 | 2010-12-07 08:59:51 -0500 | [diff] [blame] | 917 | |
Kristian Høgsberg | dd4046a | 2011-01-21 17:00:09 -0500 | [diff] [blame] | 918 | if (state && surface && device->grab == NULL) { |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 919 | wlsc_surface_activate(surface, wd, time); |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 920 | wl_input_device_start_grab(device, |
| 921 | &device->motion_grab, |
| 922 | button, time); |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 923 | } |
Kristian Høgsberg | dff2e3c | 2010-12-07 09:02:09 -0500 | [diff] [blame] | 924 | |
Kristian Høgsberg | dd4046a | 2011-01-21 17:00:09 -0500 | [diff] [blame] | 925 | if (state && surface && button == BTN_LEFT && |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 926 | (wd->modifier_state & MODIFIER_SUPER)) |
Kristian Høgsberg | dff2e3c | 2010-12-07 09:02:09 -0500 | [diff] [blame] | 927 | shell_move(NULL, |
| 928 | (struct wl_shell *) &compositor->shell, |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 929 | &surface->surface, device, time); |
Kristian Høgsberg | dd4046a | 2011-01-21 17:00:09 -0500 | [diff] [blame] | 930 | else if (state && surface && button == BTN_MIDDLE && |
Benjamin Franzke | 5a2218a | 2011-02-01 16:30:31 +0100 | [diff] [blame] | 931 | (wd->modifier_state & MODIFIER_SUPER)) { |
| 932 | |
Kristian Høgsberg | 181f52e | 2011-02-01 20:28:32 -0500 | [diff] [blame] | 933 | x = device->grab_x - surface->x; |
| 934 | y = device->grab_y - surface->y; |
| 935 | |
| 936 | if (x < surface->width / 3) |
Benjamin Franzke | 5a2218a | 2011-02-01 16:30:31 +0100 | [diff] [blame] | 937 | edges |= WL_SHELL_RESIZE_LEFT; |
Kristian Høgsberg | 181f52e | 2011-02-01 20:28:32 -0500 | [diff] [blame] | 938 | else if (x < 2 * surface->width / 3) |
| 939 | edges |= 0; |
Benjamin Franzke | 5a2218a | 2011-02-01 16:30:31 +0100 | [diff] [blame] | 940 | else |
| 941 | edges |= WL_SHELL_RESIZE_RIGHT; |
| 942 | |
Kristian Høgsberg | 181f52e | 2011-02-01 20:28:32 -0500 | [diff] [blame] | 943 | if (y < surface->height / 3) |
Benjamin Franzke | 5a2218a | 2011-02-01 16:30:31 +0100 | [diff] [blame] | 944 | edges |= WL_SHELL_RESIZE_TOP; |
Kristian Høgsberg | 181f52e | 2011-02-01 20:28:32 -0500 | [diff] [blame] | 945 | else if (y < 2 * surface->height / 3) |
| 946 | edges |= 0; |
Benjamin Franzke | 5a2218a | 2011-02-01 16:30:31 +0100 | [diff] [blame] | 947 | else |
| 948 | edges |= WL_SHELL_RESIZE_BOTTOM; |
| 949 | |
Kristian Høgsberg | dff2e3c | 2010-12-07 09:02:09 -0500 | [diff] [blame] | 950 | shell_resize(NULL, |
| 951 | (struct wl_shell *) &compositor->shell, |
Benjamin Franzke | 5a2218a | 2011-02-01 16:30:31 +0100 | [diff] [blame] | 952 | &surface->surface, device, time, edges); |
| 953 | } |
Kristian Høgsberg | b3fc757 | 2010-12-08 11:07:57 -0500 | [diff] [blame] | 954 | |
Kristian Høgsberg | dd4046a | 2011-01-21 17:00:09 -0500 | [diff] [blame] | 955 | if (device->grab) |
| 956 | device->grab->interface->button(device->grab, time, |
| 957 | button, state); |
Kristian Høgsberg | dff2e3c | 2010-12-07 09:02:09 -0500 | [diff] [blame] | 958 | |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 959 | if (!state && device->grab && device->grab_button == button) |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 960 | wl_input_device_end_grab(device, time); |
Kristian Høgsberg | eac149a | 2008-12-10 00:24:18 -0500 | [diff] [blame] | 961 | } |
| 962 | |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 963 | static void |
| 964 | wlsc_switcher_next(struct wlsc_switcher *switcher) |
| 965 | { |
| 966 | struct wl_list *l; |
| 967 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 968 | wlsc_surface_damage(switcher->current); |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 969 | l = switcher->current->link.next; |
| 970 | if (l == &switcher->compositor->surface_list) |
| 971 | l = switcher->compositor->surface_list.next; |
| 972 | switcher->current = container_of(l, struct wlsc_surface, link); |
| 973 | wl_list_remove(&switcher->listener.link); |
| 974 | wl_list_insert(switcher->current->surface.destroy_listener_list.prev, |
| 975 | &switcher->listener.link); |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 976 | wlsc_surface_damage(switcher->current); |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | static void |
| 980 | switcher_handle_surface_destroy(struct wl_listener *listener, |
| 981 | struct wl_surface *surface, uint32_t time) |
| 982 | { |
| 983 | struct wlsc_switcher *switcher = |
| 984 | container_of(listener, struct wlsc_switcher, listener); |
| 985 | |
| 986 | wlsc_switcher_next(switcher); |
| 987 | } |
| 988 | |
| 989 | static struct wlsc_switcher * |
| 990 | wlsc_switcher_create(struct wlsc_compositor *compositor) |
| 991 | { |
| 992 | struct wlsc_switcher *switcher; |
| 993 | |
| 994 | switcher = malloc(sizeof *switcher); |
| 995 | switcher->compositor = compositor; |
| 996 | switcher->current = container_of(compositor->surface_list.next, |
| 997 | struct wlsc_surface, link); |
| 998 | switcher->listener.func = switcher_handle_surface_destroy; |
| 999 | wl_list_init(&switcher->listener.link); |
| 1000 | |
| 1001 | return switcher; |
| 1002 | } |
| 1003 | |
| 1004 | static void |
| 1005 | wlsc_switcher_destroy(struct wlsc_switcher *switcher) |
| 1006 | { |
| 1007 | wl_list_remove(&switcher->listener.link); |
| 1008 | free(switcher); |
| 1009 | } |
| 1010 | |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 1011 | void |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1012 | notify_key(struct wl_input_device *device, |
Kristian Høgsberg | 808fd41 | 2010-07-20 17:06:19 -0400 | [diff] [blame] | 1013 | uint32_t time, uint32_t key, uint32_t state) |
Kristian Høgsberg | cddc0ad | 2008-11-24 00:31:49 -0500 | [diff] [blame] | 1014 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1015 | struct wlsc_input_device *wd = (struct wlsc_input_device *) device; |
| 1016 | struct wlsc_compositor *compositor = |
| 1017 | (struct wlsc_compositor *) device->compositor; |
Kristian Høgsberg | 3c38fa0 | 2009-02-23 22:30:29 -0500 | [diff] [blame] | 1018 | uint32_t *k, *end; |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1019 | uint32_t modifier; |
Kristian Høgsberg | 3c38fa0 | 2009-02-23 22:30:29 -0500 | [diff] [blame] | 1020 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1021 | switch (key | wd->modifier_state) { |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1022 | case KEY_BACKSPACE | MODIFIER_CTRL | MODIFIER_ALT: |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1023 | wl_display_terminate(compositor->wl_display); |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 1024 | return; |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 1025 | |
| 1026 | case KEY_TAB | MODIFIER_SUPER: |
| 1027 | if (!state) |
| 1028 | return; |
| 1029 | if (wl_list_empty(&compositor->surface_list)) |
| 1030 | return; |
| 1031 | if (compositor->switcher == NULL) |
| 1032 | compositor->switcher = wlsc_switcher_create(compositor); |
| 1033 | |
| 1034 | wlsc_switcher_next(compositor->switcher); |
| 1035 | return; |
| 1036 | |
| 1037 | case KEY_LEFTMETA | MODIFIER_SUPER: |
| 1038 | case KEY_RIGHTMETA | MODIFIER_SUPER: |
| 1039 | if (compositor->switcher && !state) { |
| 1040 | wlsc_surface_activate(compositor->switcher->current, |
| 1041 | wd, time); |
| 1042 | wlsc_switcher_destroy(compositor->switcher); |
| 1043 | compositor->switcher = NULL; |
| 1044 | } |
| 1045 | break; |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 1046 | } |
Kristian Høgsberg | ab909ae | 2001-01-01 22:24:24 -0500 | [diff] [blame] | 1047 | |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1048 | switch (key) { |
| 1049 | case KEY_LEFTCTRL: |
| 1050 | case KEY_RIGHTCTRL: |
| 1051 | modifier = MODIFIER_CTRL; |
| 1052 | break; |
| 1053 | |
| 1054 | case KEY_LEFTALT: |
| 1055 | case KEY_RIGHTALT: |
| 1056 | modifier = MODIFIER_ALT; |
| 1057 | break; |
| 1058 | |
Kristian Høgsberg | 5b75f1b | 2010-08-04 23:21:41 -0400 | [diff] [blame] | 1059 | case KEY_LEFTMETA: |
| 1060 | case KEY_RIGHTMETA: |
| 1061 | modifier = MODIFIER_SUPER; |
| 1062 | break; |
| 1063 | |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1064 | default: |
| 1065 | modifier = 0; |
| 1066 | break; |
| 1067 | } |
| 1068 | |
| 1069 | if (state) |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1070 | wd->modifier_state |= modifier; |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1071 | else |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1072 | wd->modifier_state &= ~modifier; |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1073 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1074 | end = device->keys.data + device->keys.size; |
| 1075 | for (k = device->keys.data; k < end; k++) { |
Kristian Høgsberg | 3c38fa0 | 2009-02-23 22:30:29 -0500 | [diff] [blame] | 1076 | if (*k == key) |
| 1077 | *k = *--end; |
| 1078 | } |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1079 | device->keys.size = (void *) end - device->keys.data; |
Kristian Høgsberg | 3c38fa0 | 2009-02-23 22:30:29 -0500 | [diff] [blame] | 1080 | if (state) { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1081 | k = wl_array_add(&device->keys, sizeof *k); |
Kristian Høgsberg | 3c38fa0 | 2009-02-23 22:30:29 -0500 | [diff] [blame] | 1082 | *k = key; |
| 1083 | } |
Ray Strode | e96dcb8 | 2008-12-20 02:00:49 -0500 | [diff] [blame] | 1084 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1085 | if (device->keyboard_focus != NULL) |
| 1086 | wl_client_post_event(device->keyboard_focus->client, |
| 1087 | &device->object, |
Kristian Høgsberg | 50038e4 | 2010-09-07 21:08:59 -0400 | [diff] [blame] | 1088 | WL_INPUT_DEVICE_KEY, time, key, state); |
Kristian Høgsberg | 808fd41 | 2010-07-20 17:06:19 -0400 | [diff] [blame] | 1089 | } |
| 1090 | |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 1091 | void |
| 1092 | notify_pointer_focus(struct wl_input_device *device, |
| 1093 | uint32_t time, struct wlsc_output *output, |
| 1094 | int32_t x, int32_t y) |
| 1095 | { |
| 1096 | struct wlsc_input_device *wd = (struct wlsc_input_device *) device; |
| 1097 | struct wlsc_compositor *compositor = |
| 1098 | (struct wlsc_compositor *) device->compositor; |
| 1099 | struct wlsc_surface *es; |
| 1100 | int32_t sx, sy; |
| 1101 | |
| 1102 | if (output) { |
| 1103 | device->x = x; |
| 1104 | device->y = y; |
| 1105 | es = pick_surface(device, &sx, &sy); |
| 1106 | wl_input_device_set_pointer_focus(device, |
| 1107 | &es->surface, |
| 1108 | time, x, y, sx, sy); |
| 1109 | |
| 1110 | compositor->focus = 1; |
| 1111 | |
| 1112 | wd->sprite->x = device->x - wd->hotspot_x; |
| 1113 | wd->sprite->y = device->y - wd->hotspot_y; |
| 1114 | wlsc_surface_update_matrix(wd->sprite); |
| 1115 | } else { |
| 1116 | wl_input_device_set_pointer_focus(device, NULL, |
| 1117 | time, 0, 0, 0, 0); |
| 1118 | compositor->focus = 0; |
| 1119 | } |
| 1120 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 1121 | wlsc_surface_damage(wd->sprite); |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 1122 | } |
| 1123 | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1124 | void |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1125 | notify_keyboard_focus(struct wl_input_device *device, |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1126 | uint32_t time, struct wlsc_output *output, |
| 1127 | struct wl_array *keys) |
| 1128 | { |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1129 | struct wlsc_input_device *wd = |
| 1130 | (struct wlsc_input_device *) device; |
| 1131 | struct wlsc_compositor *compositor = |
| 1132 | (struct wlsc_compositor *) device->compositor; |
| 1133 | struct wlsc_surface *es; |
| 1134 | |
| 1135 | if (!wl_list_empty(&compositor->surface_list)) |
| 1136 | es = container_of(compositor->surface_list.next, |
| 1137 | struct wlsc_surface, link); |
| 1138 | else |
| 1139 | es = NULL; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1140 | |
| 1141 | if (output) { |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1142 | wl_array_copy(&wd->input_device.keys, keys); |
| 1143 | wl_input_device_set_keyboard_focus(&wd->input_device, |
| 1144 | &es->surface, time); |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1145 | } else { |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1146 | wl_input_device_set_keyboard_focus(&wd->input_device, |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1147 | NULL, time); |
| 1148 | } |
| 1149 | } |
| 1150 | |
| 1151 | |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 1152 | static void |
Kristian Høgsberg | ab1862d | 2010-12-09 11:29:40 -0500 | [diff] [blame] | 1153 | input_device_attach(struct wl_client *client, |
| 1154 | struct wl_input_device *device_base, |
| 1155 | uint32_t time, |
| 1156 | struct wl_buffer *buffer, int32_t x, int32_t y) |
| 1157 | { |
| 1158 | struct wlsc_input_device *device = |
| 1159 | (struct wlsc_input_device *) device_base; |
| 1160 | |
| 1161 | if (time < device->input_device.pointer_focus_time) |
| 1162 | return; |
| 1163 | if (device->input_device.pointer_focus == NULL) |
| 1164 | return; |
Kristian Høgsberg | ab1862d | 2010-12-09 11:29:40 -0500 | [diff] [blame] | 1165 | if (device->input_device.pointer_focus->client != client) |
| 1166 | return; |
| 1167 | |
| 1168 | if (buffer == NULL) { |
| 1169 | wlsc_input_device_set_pointer_image(device, |
| 1170 | WLSC_POINTER_LEFT_PTR); |
| 1171 | return; |
| 1172 | } |
| 1173 | |
| 1174 | wlsc_input_device_attach(device, buffer, x, y); |
| 1175 | } |
| 1176 | |
| 1177 | const static struct wl_input_device_interface input_device_interface = { |
| 1178 | input_device_attach, |
| 1179 | }; |
| 1180 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1181 | void |
| 1182 | wlsc_input_device_init(struct wlsc_input_device *device, |
| 1183 | struct wlsc_compositor *ec) |
Kristian Høgsberg | cddc0ad | 2008-11-24 00:31:49 -0500 | [diff] [blame] | 1184 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1185 | wl_input_device_init(&device->input_device, &ec->compositor); |
Kristian Høgsberg | 02ef1c1 | 2010-12-06 21:35:19 -0500 | [diff] [blame] | 1186 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1187 | device->input_device.object.interface = &wl_input_device_interface; |
| 1188 | device->input_device.object.implementation = |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 1189 | (void (**)(void)) &input_device_interface; |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1190 | wl_display_add_object(ec->wl_display, &device->input_device.object); |
| 1191 | wl_display_add_global(ec->wl_display, &device->input_device.object, NULL); |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 1192 | |
Kristian Høgsberg | c5d6be9 | 2011-01-14 16:22:37 -0500 | [diff] [blame] | 1193 | device->sprite = wlsc_surface_create(ec, |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1194 | device->input_device.x, |
| 1195 | device->input_device.y, 32, 32); |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 1196 | device->hotspot_x = 16; |
| 1197 | device->hotspot_y = 16; |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 1198 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1199 | device->input_device.motion_grab.interface = &motion_grab_interface; |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 1200 | |
Kristian Høgsberg | c492b48 | 2008-12-12 12:00:02 -0500 | [diff] [blame] | 1201 | wl_list_insert(ec->input_device_list.prev, &device->link); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 1202 | |
| 1203 | wlsc_input_device_set_pointer_image(device, WLSC_POINTER_LEFT_PTR); |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 1204 | } |
| 1205 | |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1206 | static void |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1207 | wlsc_output_post_geometry(struct wl_client *client, struct wl_object *global) |
Kristian Høgsberg | bf9541f | 2008-11-25 12:10:09 -0500 | [diff] [blame] | 1208 | { |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1209 | struct wlsc_output *output = |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1210 | container_of(global, struct wlsc_output, object); |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1211 | |
| 1212 | wl_client_post_event(client, global, |
| 1213 | WL_OUTPUT_GEOMETRY, |
Kristian Høgsberg | f8fc08f | 2010-12-01 20:10:10 -0500 | [diff] [blame] | 1214 | output->x, output->y, |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1215 | output->width, output->height); |
| 1216 | } |
| 1217 | |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1218 | static const char vertex_shader[] = |
| 1219 | "uniform mat4 proj;\n" |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 1220 | "attribute vec2 position;\n" |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1221 | "attribute vec2 texcoord;\n" |
| 1222 | "varying vec2 v_texcoord;\n" |
| 1223 | "void main()\n" |
| 1224 | "{\n" |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 1225 | " gl_Position = proj * vec4(position, 0.0, 1.0);\n" |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1226 | " v_texcoord = texcoord;\n" |
| 1227 | "}\n"; |
| 1228 | |
| 1229 | static const char fragment_shader[] = |
Kristian Høgsberg | dfce71d | 2010-12-07 20:19:10 -0500 | [diff] [blame] | 1230 | "precision mediump float;\n" |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1231 | "varying vec2 v_texcoord;\n" |
| 1232 | "uniform sampler2D tex;\n" |
| 1233 | "void main()\n" |
| 1234 | "{\n" |
| 1235 | " gl_FragColor = texture2D(tex, v_texcoord)\n;" |
| 1236 | "}\n"; |
| 1237 | |
Kristian Høgsberg | a946821 | 2010-06-14 21:03:11 -0400 | [diff] [blame] | 1238 | static int |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1239 | init_shaders(struct wlsc_compositor *ec) |
| 1240 | { |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1241 | GLuint v, f, program; |
| 1242 | const char *p; |
| 1243 | char msg[512]; |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1244 | GLint status; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1245 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1246 | p = vertex_shader; |
| 1247 | v = glCreateShader(GL_VERTEX_SHADER); |
| 1248 | glShaderSource(v, 1, &p, NULL); |
| 1249 | glCompileShader(v); |
| 1250 | glGetShaderiv(v, GL_COMPILE_STATUS, &status); |
| 1251 | if (!status) { |
| 1252 | glGetShaderInfoLog(v, sizeof msg, NULL, msg); |
| 1253 | fprintf(stderr, "vertex shader info: %s\n", msg); |
| 1254 | return -1; |
| 1255 | } |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1256 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1257 | p = fragment_shader; |
| 1258 | f = glCreateShader(GL_FRAGMENT_SHADER); |
| 1259 | glShaderSource(f, 1, &p, NULL); |
| 1260 | glCompileShader(f); |
| 1261 | glGetShaderiv(f, GL_COMPILE_STATUS, &status); |
| 1262 | if (!status) { |
| 1263 | glGetShaderInfoLog(f, sizeof msg, NULL, msg); |
| 1264 | fprintf(stderr, "fragment shader info: %s\n", msg); |
| 1265 | return -1; |
| 1266 | } |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1267 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1268 | program = glCreateProgram(); |
| 1269 | glAttachShader(program, v); |
| 1270 | glAttachShader(program, f); |
| 1271 | glBindAttribLocation(program, 0, "position"); |
| 1272 | glBindAttribLocation(program, 1, "texcoord"); |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1273 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1274 | glLinkProgram(program); |
| 1275 | glGetProgramiv(program, GL_LINK_STATUS, &status); |
| 1276 | if (!status) { |
| 1277 | glGetProgramInfoLog(program, sizeof msg, NULL, msg); |
| 1278 | fprintf(stderr, "link info: %s\n", msg); |
| 1279 | return -1; |
| 1280 | } |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1281 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1282 | glUseProgram(program); |
| 1283 | ec->proj_uniform = glGetUniformLocation(program, "proj"); |
| 1284 | ec->tex_uniform = glGetUniformLocation(program, "tex"); |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1285 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1286 | return 0; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1287 | } |
| 1288 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1289 | void |
| 1290 | wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c, |
| 1291 | int x, int y, int width, int height) |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 1292 | { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1293 | output->compositor = c; |
| 1294 | output->x = x; |
| 1295 | output->y = y; |
| 1296 | output->width = width; |
| 1297 | output->height = height; |
| 1298 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 1299 | pixman_region32_init(&output->previous_damage_region); |
| 1300 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1301 | output->background = |
| 1302 | background_create(output, option_background); |
| 1303 | |
| 1304 | wlsc_matrix_init(&output->matrix); |
| 1305 | wlsc_matrix_translate(&output->matrix, |
| 1306 | -output->x - output->width / 2.0, |
| 1307 | -output->y - output->height / 2.0, 0); |
| 1308 | wlsc_matrix_scale(&output->matrix, |
| 1309 | 2.0 / output->width, 2.0 / output->height, 1); |
| 1310 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1311 | output->object.interface = &wl_output_interface; |
| 1312 | wl_display_add_object(c->wl_display, &output->object); |
| 1313 | wl_display_add_global(c->wl_display, &output->object, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1314 | wlsc_output_post_geometry); |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 1315 | |
| 1316 | pixman_region32_union_rect(&c->damage_region, |
| 1317 | &c->damage_region, |
| 1318 | x, y, width, height); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1319 | } |
| 1320 | |
| 1321 | int |
| 1322 | wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display) |
| 1323 | { |
Kristian Høgsberg | fbdbbdc | 2008-11-28 17:06:06 -0500 | [diff] [blame] | 1324 | struct wl_event_loop *loop; |
Kristian Høgsberg | d711d0c | 2011-01-14 17:28:21 -0500 | [diff] [blame] | 1325 | const char *extensions; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 1326 | |
Kristian Høgsberg | f921289 | 2008-10-11 18:40:23 -0400 | [diff] [blame] | 1327 | ec->wl_display = display; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 1328 | |
Kristian Høgsberg | c5c510e | 2010-12-08 15:12:58 -0500 | [diff] [blame] | 1329 | wl_compositor_init(&ec->compositor, &compositor_interface, display); |
Kristian Høgsberg | ee02ca6 | 2008-12-21 23:37:12 -0500 | [diff] [blame] | 1330 | |
Kristian Høgsberg | 3d5bae0 | 2010-10-06 21:17:40 -0400 | [diff] [blame] | 1331 | wlsc_shm_init(ec); |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame^] | 1332 | eglBindWaylandDisplayWL(ec->display, ec->wl_display); |
Kristian Høgsberg | 3d5bae0 | 2010-10-06 21:17:40 -0400 | [diff] [blame] | 1333 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 1334 | wlsc_shell_init(ec); |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 1335 | |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 1336 | wl_list_init(&ec->surface_list); |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1337 | wl_list_init(&ec->input_device_list); |
| 1338 | wl_list_init(&ec->output_list); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1339 | |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 1340 | create_pointer_images(ec); |
| 1341 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1342 | screenshooter_create(ec); |
| 1343 | |
Kristian Høgsberg | d711d0c | 2011-01-14 17:28:21 -0500 | [diff] [blame] | 1344 | extensions = (const char *) glGetString(GL_EXTENSIONS); |
| 1345 | if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) { |
| 1346 | fprintf(stderr, |
| 1347 | "GL_EXT_texture_format_BGRA8888 not available\n"); |
| 1348 | return -1; |
| 1349 | } |
| 1350 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1351 | glGenFramebuffers(1, &ec->fbo); |
| 1352 | glBindFramebuffer(GL_FRAMEBUFFER, ec->fbo); |
| 1353 | glActiveTexture(GL_TEXTURE0); |
Kristian Høgsberg | a946821 | 2010-06-14 21:03:11 -0400 | [diff] [blame] | 1354 | if (init_shaders(ec) < 0) |
| 1355 | return -1; |
Kristian Høgsberg | 8d7ca6b | 2008-11-09 00:22:51 -0500 | [diff] [blame] | 1356 | |
Kristian Høgsberg | fbdbbdc | 2008-11-28 17:06:06 -0500 | [diff] [blame] | 1357 | loop = wl_display_get_event_loop(ec->wl_display); |
Kristian Høgsberg | 4a29890 | 2008-11-28 18:35:25 -0500 | [diff] [blame] | 1358 | ec->timer_source = wl_event_loop_add_timer(loop, repaint, ec); |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 1359 | pixman_region32_init(&ec->damage_region); |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 1360 | wlsc_compositor_schedule_repaint(ec); |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 1361 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1362 | return 0; |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1363 | } |
| 1364 | |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 1365 | static void on_term_signal(int signal_number, void *data) |
| 1366 | { |
| 1367 | struct wlsc_compositor *ec = data; |
| 1368 | |
| 1369 | wl_display_terminate(ec->wl_display); |
| 1370 | } |
| 1371 | |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1372 | int main(int argc, char *argv[]) |
| 1373 | { |
| 1374 | struct wl_display *display; |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 1375 | struct wlsc_compositor *ec; |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 1376 | struct wl_event_loop *loop; |
Kristian Høgsberg | d653126 | 2008-12-12 11:06:18 -0500 | [diff] [blame] | 1377 | GError *error = NULL; |
| 1378 | GOptionContext *context; |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1379 | int width, height; |
Kristian Høgsberg | d653126 | 2008-12-12 11:06:18 -0500 | [diff] [blame] | 1380 | |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 1381 | g_type_init(); /* GdkPixbuf needs this, it seems. */ |
| 1382 | |
Kristian Høgsberg | d653126 | 2008-12-12 11:06:18 -0500 | [diff] [blame] | 1383 | context = g_option_context_new(NULL); |
| 1384 | g_option_context_add_main_entries(context, option_entries, "Wayland"); |
| 1385 | if (!g_option_context_parse(context, &argc, &argv, &error)) { |
| 1386 | fprintf(stderr, "option parsing failed: %s\n", error->message); |
| 1387 | exit(EXIT_FAILURE); |
| 1388 | } |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1389 | if (sscanf(option_geometry, "%dx%d", &width, &height) != 2) { |
| 1390 | fprintf(stderr, "invalid geometry option: %s \n", |
| 1391 | option_geometry); |
| 1392 | exit(EXIT_FAILURE); |
| 1393 | } |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1394 | |
| 1395 | display = wl_display_create(); |
| 1396 | |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 1397 | ec = NULL; |
| 1398 | |
| 1399 | #if BUILD_WAYLAND_COMPOSITOR |
Benjamin Franzke | ec2e642 | 2010-11-27 19:04:12 +0100 | [diff] [blame] | 1400 | if (getenv("WAYLAND_DISPLAY")) |
| 1401 | ec = wayland_compositor_create(display, width, height); |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 1402 | #endif |
| 1403 | |
| 1404 | #if BUILD_X11_COMPOSITOR |
| 1405 | if (ec == NULL && getenv("DISPLAY")) |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1406 | ec = x11_compositor_create(display, width, height); |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 1407 | #endif |
| 1408 | |
| 1409 | #if BUILD_DRM_COMPOSITOR |
| 1410 | if (ec == NULL) |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1411 | ec = drm_compositor_create(display, option_connector); |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 1412 | #endif |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1413 | |
Kristian Høgsberg | 841883b | 2008-12-05 11:19:56 -0500 | [diff] [blame] | 1414 | if (ec == NULL) { |
| 1415 | fprintf(stderr, "failed to create compositor\n"); |
| 1416 | exit(EXIT_FAILURE); |
| 1417 | } |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1418 | |
Kristian Høgsberg | 2bb3ebe | 2010-12-01 15:36:20 -0500 | [diff] [blame] | 1419 | if (wl_display_add_socket(display, option_socket_name)) { |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1420 | fprintf(stderr, "failed to add socket: %m\n"); |
| 1421 | exit(EXIT_FAILURE); |
| 1422 | } |
| 1423 | |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 1424 | loop = wl_display_get_event_loop(ec->wl_display); |
| 1425 | wl_event_loop_add_signal(loop, SIGTERM, on_term_signal, ec); |
| 1426 | wl_event_loop_add_signal(loop, SIGINT, on_term_signal, ec); |
| 1427 | |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1428 | wl_display_run(display); |
| 1429 | |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame^] | 1430 | eglUnbindWaylandDisplayWL(ec->display, display); |
Kristian Høgsberg | 2bb3ebe | 2010-12-01 15:36:20 -0500 | [diff] [blame] | 1431 | wl_display_destroy(display); |
| 1432 | |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 1433 | ec->destroy(ec); |
| 1434 | |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1435 | return 0; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 1436 | } |