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> |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 27 | #include <limits.h> |
Kristian Høgsberg | 8d7ca6b | 2008-11-09 00:22:51 -0500 | [diff] [blame] | 28 | #include <stdarg.h> |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 29 | #include <sys/ioctl.h> |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 30 | #include <fcntl.h> |
| 31 | #include <unistd.h> |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 32 | #include <gdk-pixbuf/gdk-pixbuf.h> |
Kristian Høgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 33 | #include <math.h> |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 34 | #include <linux/input.h> |
Kristian Høgsberg | 890bc05 | 2008-12-30 14:31:33 -0500 | [diff] [blame] | 35 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 36 | #include "wayland-server.h" |
Kristian Høgsberg | 8286302 | 2010-06-04 21:52:02 -0400 | [diff] [blame] | 37 | #include "compositor.h" |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 38 | |
Benjamin Franzke | ec2e642 | 2010-11-27 19:04:12 +0100 | [diff] [blame] | 39 | /* The plan here is to generate a random anonymous socket name and |
| 40 | * advertise that through a service on the session dbus. |
| 41 | */ |
Kristian Høgsberg | 2bb3ebe | 2010-12-01 15:36:20 -0500 | [diff] [blame] | 42 | static const char *option_socket_name = NULL; |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 43 | static const char *option_background = "background.jpg"; |
| 44 | static const char *option_geometry = "1024x640"; |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 45 | static int option_idle_time = 5; |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 46 | static int option_connector = 0; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 47 | |
| 48 | static const GOptionEntry option_entries[] = { |
| 49 | { "background", 'b', 0, G_OPTION_ARG_STRING, |
| 50 | &option_background, "Background image" }, |
Kristian Høgsberg | f5878fa | 2009-09-18 17:02:41 -0400 | [diff] [blame] | 51 | { "connector", 'c', 0, G_OPTION_ARG_INT, |
| 52 | &option_connector, "KMS connector" }, |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 53 | { "geometry", 'g', 0, G_OPTION_ARG_STRING, |
| 54 | &option_geometry, "Geometry" }, |
Benjamin Franzke | ec2e642 | 2010-11-27 19:04:12 +0100 | [diff] [blame] | 55 | { "socket", 's', 0, G_OPTION_ARG_STRING, |
| 56 | &option_socket_name, "Socket Name" }, |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 57 | { "idle-time", 'i', 0, G_OPTION_ARG_INT, |
| 58 | &option_idle_time, "Screensaver idle time" }, |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 59 | { NULL } |
| 60 | }; |
| 61 | |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 62 | static void |
| 63 | wlsc_matrix_init(struct wlsc_matrix *matrix) |
| 64 | { |
| 65 | static const struct wlsc_matrix identity = { |
| 66 | { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 } |
| 67 | }; |
| 68 | |
| 69 | memcpy(matrix, &identity, sizeof identity); |
| 70 | } |
| 71 | |
| 72 | static void |
| 73 | wlsc_matrix_multiply(struct wlsc_matrix *m, const struct wlsc_matrix *n) |
| 74 | { |
| 75 | struct wlsc_matrix tmp; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 76 | const GLfloat *row, *column; |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 77 | div_t d; |
| 78 | int i, j; |
| 79 | |
| 80 | for (i = 0; i < 16; i++) { |
| 81 | tmp.d[i] = 0; |
| 82 | d = div(i, 4); |
| 83 | row = m->d + d.quot * 4; |
| 84 | column = n->d + d.rem; |
| 85 | for (j = 0; j < 4; j++) |
| 86 | tmp.d[i] += row[j] * column[j * 4]; |
| 87 | } |
| 88 | memcpy(m, &tmp, sizeof tmp); |
| 89 | } |
| 90 | |
| 91 | static void |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 92 | 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] | 93 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 94 | struct wlsc_matrix translate = { |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 95 | { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, x, y, z, 1 } |
| 96 | }; |
| 97 | |
| 98 | wlsc_matrix_multiply(matrix, &translate); |
| 99 | } |
| 100 | |
| 101 | static void |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 102 | 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] | 103 | { |
| 104 | struct wlsc_matrix scale = { |
| 105 | { x, 0, 0, 0, 0, y, 0, 0, 0, 0, z, 0, 0, 0, 0, 1 } |
| 106 | }; |
| 107 | |
| 108 | wlsc_matrix_multiply(matrix, &scale); |
| 109 | } |
| 110 | |
| 111 | static void |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 112 | wlsc_matrix_transform(struct wlsc_matrix *matrix, struct wlsc_vector *v) |
| 113 | { |
| 114 | int i, j; |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 115 | struct wlsc_vector t; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 116 | |
| 117 | for (i = 0; i < 4; i++) { |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 118 | t.f[i] = 0; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 119 | for (j = 0; j < 4; j++) |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 120 | t.f[i] += v->f[j] * matrix->d[i + j * 4]; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 121 | } |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 122 | |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 123 | *v = t; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 124 | } |
| 125 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 126 | struct wlsc_surface * |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 127 | wlsc_surface_create(struct wlsc_compositor *compositor, |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 128 | 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] | 129 | { |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 130 | struct wlsc_surface *surface; |
| 131 | |
| 132 | surface = malloc(sizeof *surface); |
| 133 | if (surface == NULL) |
| 134 | return NULL; |
| 135 | |
Kristian Høgsberg | c551bd2 | 2010-12-06 16:43:16 -0500 | [diff] [blame] | 136 | wl_list_init(&surface->surface.destroy_listener_list); |
Kristian Høgsberg | f6b1471 | 2011-01-06 15:32:14 -0500 | [diff] [blame] | 137 | wl_list_init(&surface->link); |
Benjamin Franzke | bab41fb | 2011-03-07 18:04:59 +0100 | [diff] [blame] | 138 | wl_list_init(&surface->buffer_link); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 139 | surface->map_type = WLSC_SURFACE_MAP_UNMAPPED; |
Kristian Høgsberg | c551bd2 | 2010-12-06 16:43:16 -0500 | [diff] [blame] | 140 | |
Kristian Høgsberg | 1a208d5 | 2009-02-10 14:20:26 -0500 | [diff] [blame] | 141 | glGenTextures(1, &surface->texture); |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 142 | glBindTexture(GL_TEXTURE_2D, surface->texture); |
| 143 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
| 144 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); |
| 145 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
| 146 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); |
| 147 | |
Kristian Høgsberg | 1a208d5 | 2009-02-10 14:20:26 -0500 | [diff] [blame] | 148 | surface->compositor = compositor; |
Kristian Høgsberg | c5d6be9 | 2011-01-14 16:22:37 -0500 | [diff] [blame] | 149 | surface->visual = NULL; |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 150 | surface->image = EGL_NO_IMAGE_KHR; |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 151 | surface->saved_texture = 0; |
Benjamin Franzke | bab41fb | 2011-03-07 18:04:59 +0100 | [diff] [blame] | 152 | surface->buffer = NULL; |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 153 | surface->x = x; |
| 154 | surface->y = y; |
| 155 | surface->width = width; |
| 156 | surface->height = height; |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 157 | wlsc_matrix_init(&surface->matrix); |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 158 | wlsc_matrix_scale(&surface->matrix, width, height, 1); |
| 159 | wlsc_matrix_translate(&surface->matrix, x, y, 0); |
| 160 | |
| 161 | wlsc_matrix_init(&surface->matrix_inv); |
| 162 | wlsc_matrix_translate(&surface->matrix_inv, -x, -y, 0); |
| 163 | wlsc_matrix_scale(&surface->matrix_inv, 1.0 / width, 1.0 / height, 1); |
Kristian Høgsberg | 1e4b86a | 2008-11-23 23:41:08 -0500 | [diff] [blame] | 164 | |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 165 | return surface; |
Kristian Høgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 166 | } |
| 167 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 168 | void |
| 169 | wlsc_surface_damage_rectangle(struct wlsc_surface *surface, |
| 170 | int32_t x, int32_t y, |
| 171 | int32_t width, int32_t height) |
| 172 | { |
| 173 | struct wlsc_compositor *compositor = surface->compositor; |
| 174 | |
| 175 | pixman_region32_union_rect(&compositor->damage_region, |
| 176 | &compositor->damage_region, |
| 177 | surface->x + x, surface->y + y, |
| 178 | width, height); |
| 179 | wlsc_compositor_schedule_repaint(compositor); |
| 180 | } |
| 181 | |
| 182 | void |
| 183 | wlsc_surface_damage(struct wlsc_surface *surface) |
| 184 | { |
| 185 | wlsc_surface_damage_rectangle(surface, 0, 0, |
| 186 | surface->width, surface->height); |
| 187 | } |
| 188 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 189 | uint32_t |
Kristian Høgsberg | 7132a9a | 2010-12-06 21:41:10 -0500 | [diff] [blame] | 190 | get_time(void) |
| 191 | { |
| 192 | struct timeval tv; |
| 193 | |
| 194 | gettimeofday(&tv, NULL); |
| 195 | |
| 196 | return tv.tv_sec * 1000 + tv.tv_usec / 1000; |
| 197 | } |
| 198 | |
Kristian Høgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 199 | static void |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 200 | destroy_surface(struct wl_resource *resource, struct wl_client *client) |
Kristian Høgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 201 | { |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 202 | struct wlsc_surface *surface = |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 203 | container_of(resource, struct wlsc_surface, surface.resource); |
Kristian Høgsberg | c551bd2 | 2010-12-06 16:43:16 -0500 | [diff] [blame] | 204 | struct wl_listener *l, *next; |
Kristian Høgsberg | 4685fa3 | 2010-12-06 21:38:50 -0500 | [diff] [blame] | 205 | uint32_t time; |
Kristian Høgsberg | 4fa4873 | 2009-03-10 23:17:00 -0400 | [diff] [blame] | 206 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 207 | wlsc_surface_damage(surface); |
| 208 | |
Kristian Høgsberg | 3f8f39c | 2009-09-18 17:05:13 -0400 | [diff] [blame] | 209 | wl_list_remove(&surface->link); |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 210 | if (surface->saved_texture == 0) |
| 211 | glDeleteTextures(1, &surface->texture); |
| 212 | else |
| 213 | glDeleteTextures(1, &surface->saved_texture); |
| 214 | |
Kristian Høgsberg | 3f8f39c | 2009-09-18 17:05:13 -0400 | [diff] [blame] | 215 | |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 216 | if (surface->image != EGL_NO_IMAGE_KHR) |
| 217 | eglDestroyImageKHR(surface->compositor->display, |
| 218 | surface->image); |
| 219 | |
Benjamin Franzke | bab41fb | 2011-03-07 18:04:59 +0100 | [diff] [blame] | 220 | wl_list_remove(&surface->buffer_link); |
| 221 | |
Kristian Høgsberg | 7132a9a | 2010-12-06 21:41:10 -0500 | [diff] [blame] | 222 | time = get_time(); |
Kristian Høgsberg | c551bd2 | 2010-12-06 16:43:16 -0500 | [diff] [blame] | 223 | wl_list_for_each_safe(l, next, |
| 224 | &surface->surface.destroy_listener_list, link) |
Kristian Høgsberg | 4685fa3 | 2010-12-06 21:38:50 -0500 | [diff] [blame] | 225 | l->func(l, &surface->surface, time); |
Kristian Høgsberg | 4fa4873 | 2009-03-10 23:17:00 -0400 | [diff] [blame] | 226 | |
Kristian Høgsberg | 4fa4873 | 2009-03-10 23:17:00 -0400 | [diff] [blame] | 227 | free(surface); |
Kristian Høgsberg | 5487982 | 2008-11-23 17:07:32 -0500 | [diff] [blame] | 228 | } |
| 229 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 230 | uint32_t * |
| 231 | wlsc_load_image(const char *filename, int width, int height) |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 232 | { |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 233 | GdkPixbuf *pixbuf; |
| 234 | GError *error = NULL; |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 235 | int stride, i, n_channels; |
| 236 | unsigned char *pixels, *end, *argb_pixels, *s, *d; |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 237 | |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 238 | pixbuf = gdk_pixbuf_new_from_file_at_scale(filename, |
| 239 | width, height, |
| 240 | FALSE, &error); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 241 | if (error != NULL) { |
| 242 | fprintf(stderr, "failed to load image: %s\n", error->message); |
| 243 | g_error_free(error); |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 244 | return NULL; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 245 | } |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 246 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 247 | stride = gdk_pixbuf_get_rowstride(pixbuf); |
| 248 | pixels = gdk_pixbuf_get_pixels(pixbuf); |
| 249 | n_channels = gdk_pixbuf_get_n_channels(pixbuf); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 250 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 251 | argb_pixels = malloc (height * width * 4); |
| 252 | if (argb_pixels == NULL) { |
Darxus@chaosreigns.com | c4df99c | 2011-01-25 15:00:56 -0500 | [diff] [blame] | 253 | g_object_unref(pixbuf); |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 254 | return NULL; |
| 255 | } |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 256 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 257 | if (n_channels == 4) { |
| 258 | for (i = 0; i < height; i++) { |
| 259 | s = pixels + i * stride; |
| 260 | end = s + width * 4; |
| 261 | d = argb_pixels + i * width * 4; |
| 262 | while (s < end) { |
| 263 | unsigned int t; |
| 264 | |
| 265 | #define MULT(_d,c,a,t) \ |
| 266 | do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0) |
| 267 | |
| 268 | MULT(d[0], s[2], s[3], t); |
| 269 | MULT(d[1], s[1], s[3], t); |
| 270 | MULT(d[2], s[0], s[3], t); |
| 271 | d[3] = s[3]; |
| 272 | s += 4; |
| 273 | d += 4; |
| 274 | } |
| 275 | } |
| 276 | } else if (n_channels == 3) { |
| 277 | for (i = 0; i < height; i++) { |
| 278 | s = pixels + i * stride; |
| 279 | end = s + width * 3; |
| 280 | d = argb_pixels + i * width * 4; |
| 281 | while (s < end) { |
| 282 | d[0] = s[2]; |
| 283 | d[1] = s[1]; |
| 284 | d[2] = s[0]; |
| 285 | d[3] = 0xff; |
| 286 | s += 3; |
| 287 | d += 4; |
| 288 | } |
| 289 | } |
| 290 | } |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 291 | |
Darxus@chaosreigns.com | c4df99c | 2011-01-25 15:00:56 -0500 | [diff] [blame] | 292 | g_object_unref(pixbuf); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 293 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 294 | return (uint32_t *) argb_pixels; |
| 295 | } |
| 296 | |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 297 | static void |
| 298 | wlsc_buffer_attach(struct wl_buffer *buffer, struct wl_surface *surface) |
| 299 | { |
| 300 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
| 301 | struct wlsc_compositor *ec = es->compositor; |
Benjamin Franzke | 315b3dc | 2011-03-08 11:32:57 +0100 | [diff] [blame] | 302 | struct wl_list *surfaces_attached_to; |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 303 | |
Benjamin Franzke | 315b3dc | 2011-03-08 11:32:57 +0100 | [diff] [blame] | 304 | if (es->saved_texture != 0) |
| 305 | es->texture = es->saved_texture; |
| 306 | |
| 307 | glBindTexture(GL_TEXTURE_2D, es->texture); |
| 308 | |
| 309 | if (wl_buffer_is_shm(buffer)) { |
| 310 | /* Unbind any EGLImage texture that may be bound, so we don't |
| 311 | * overwrite it.*/ |
| 312 | glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT, |
| 313 | 0, 0, 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, NULL); |
| 314 | glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT, |
| 315 | buffer->width, buffer->height, 0, |
| 316 | GL_BGRA_EXT, GL_UNSIGNED_BYTE, |
| 317 | wl_shm_buffer_get_data(buffer)); |
| 318 | es->visual = buffer->visual; |
| 319 | |
| 320 | surfaces_attached_to = buffer->user_data; |
| 321 | |
| 322 | if (es->buffer) |
| 323 | wl_list_remove(&es->buffer_link); |
| 324 | wl_list_insert(surfaces_attached_to, &es->buffer_link); |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 325 | } else { |
Kristian Høgsberg | df2f197 | 2011-04-21 23:48:13 -0400 | [diff] [blame] | 326 | es->image = eglCreateImageKHR(ec->display, NULL, |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 327 | EGL_WAYLAND_BUFFER_WL, |
| 328 | buffer, NULL); |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 329 | |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 330 | glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, es->image); |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 331 | es->visual = buffer->visual; |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 332 | } |
| 333 | } |
| 334 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 335 | static void |
| 336 | wlsc_sprite_attach(struct wlsc_sprite *sprite, struct wl_surface *surface) |
| 337 | { |
| 338 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
| 339 | |
| 340 | es->image = sprite->image; |
| 341 | if (sprite->image != EGL_NO_IMAGE_KHR) { |
| 342 | glBindTexture(GL_TEXTURE_2D, es->texture); |
| 343 | glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, es->image); |
| 344 | } else { |
| 345 | if (es->saved_texture == 0) |
| 346 | es->saved_texture = es->texture; |
| 347 | es->texture = sprite->texture; |
| 348 | } |
| 349 | |
| 350 | es->visual = sprite->visual; |
| 351 | } |
| 352 | |
| 353 | enum sprite_usage { |
| 354 | SPRITE_USE_CURSOR = (1 << 0), |
| 355 | }; |
| 356 | |
| 357 | static struct wlsc_sprite * |
| 358 | create_sprite_from_png(struct wlsc_compositor *ec, |
| 359 | const char *filename, int width, int height, |
| 360 | uint32_t usage) |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 361 | { |
| 362 | uint32_t *pixels; |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 363 | struct wlsc_sprite *sprite; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 364 | |
| 365 | pixels = wlsc_load_image(filename, width, height); |
Tim Wiederhake | ac5c5e7 | 2011-01-27 01:32:36 +0100 | [diff] [blame] | 366 | if(pixels == NULL) |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 367 | return NULL; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 368 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 369 | sprite = malloc(sizeof *sprite); |
| 370 | if (sprite == NULL) { |
| 371 | free(pixels); |
| 372 | return NULL; |
| 373 | } |
| 374 | |
| 375 | sprite->visual = &ec->compositor.premultiplied_argb_visual; |
| 376 | sprite->width = width; |
| 377 | sprite->height = height; |
| 378 | sprite->image = EGL_NO_IMAGE_KHR; |
| 379 | |
| 380 | if (usage & SPRITE_USE_CURSOR && ec->create_cursor_image != NULL) |
| 381 | sprite->image = ec->create_cursor_image(ec, width, height); |
| 382 | |
| 383 | glGenTextures(1, &sprite->texture); |
| 384 | glBindTexture(GL_TEXTURE_2D, sprite->texture); |
| 385 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
| 386 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); |
| 387 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
| 388 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); |
| 389 | |
| 390 | if (sprite->image != EGL_NO_IMAGE_KHR) { |
| 391 | glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, sprite->image); |
| 392 | glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, |
| 393 | GL_BGRA_EXT, GL_UNSIGNED_BYTE, pixels); |
| 394 | } else { |
| 395 | glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT, width, height, 0, |
| 396 | GL_BGRA_EXT, GL_UNSIGNED_BYTE, pixels); |
| 397 | } |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 398 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 399 | free(pixels); |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 400 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 401 | return sprite; |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 402 | } |
| 403 | |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 404 | static const struct { |
| 405 | const char *filename; |
| 406 | int hotspot_x, hotspot_y; |
| 407 | } pointer_images[] = { |
Kristian Høgsberg | 4219a40 | 2010-08-16 16:43:03 -0400 | [diff] [blame] | 408 | { DATADIR "/wayland/bottom_left_corner.png", 6, 30 }, |
| 409 | { DATADIR "/wayland/bottom_right_corner.png", 28, 28 }, |
| 410 | { DATADIR "/wayland/bottom_side.png", 16, 20 }, |
| 411 | { DATADIR "/wayland/grabbing.png", 20, 17 }, |
| 412 | { DATADIR "/wayland/left_ptr.png", 10, 5 }, |
| 413 | { DATADIR "/wayland/left_side.png", 10, 20 }, |
| 414 | { DATADIR "/wayland/right_side.png", 30, 19 }, |
| 415 | { DATADIR "/wayland/top_left_corner.png", 8, 8 }, |
| 416 | { DATADIR "/wayland/top_right_corner.png", 26, 8 }, |
| 417 | { DATADIR "/wayland/top_side.png", 18, 8 }, |
| 418 | { DATADIR "/wayland/xterm.png", 15, 15 } |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 419 | }; |
| 420 | |
| 421 | static void |
| 422 | create_pointer_images(struct wlsc_compositor *ec) |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 423 | { |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 424 | int i, count; |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 425 | const int width = 32, height = 32; |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 426 | |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 427 | count = ARRAY_LENGTH(pointer_images); |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 428 | ec->pointer_sprites = malloc(count * sizeof *ec->pointer_sprites); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 429 | for (i = 0; i < count; i++) { |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 430 | ec->pointer_sprites[i] = |
| 431 | create_sprite_from_png(ec, |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 432 | pointer_images[i].filename, |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 433 | width, height, |
| 434 | SPRITE_USE_CURSOR); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 435 | } |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 436 | } |
| 437 | |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 438 | static struct wlsc_surface * |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 439 | background_create(struct wlsc_output *output, const char *filename) |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 440 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 441 | struct wlsc_surface *background; |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 442 | struct wlsc_sprite *sprite; |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 443 | |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 444 | background = wlsc_surface_create(output->compositor, |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 445 | output->x, output->y, |
| 446 | output->width, output->height); |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 447 | if (background == NULL) |
| 448 | return NULL; |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 449 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 450 | sprite = create_sprite_from_png(output->compositor, filename, |
| 451 | output->width, output->height, 0); |
| 452 | if (sprite == NULL) { |
Benjamin Franzke | d3b023e | 2011-01-15 12:34:49 +0100 | [diff] [blame] | 453 | free(background); |
| 454 | return NULL; |
| 455 | } |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 456 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 457 | wlsc_sprite_attach(sprite, &background->surface); |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 458 | |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 459 | return background; |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | static void |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 463 | wlsc_surface_draw(struct wlsc_surface *es, |
| 464 | struct wlsc_output *output, pixman_region32_t *clip) |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 465 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 466 | struct wlsc_compositor *ec = es->compositor; |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 467 | GLfloat *v, inv_width, inv_height; |
| 468 | unsigned int *p; |
| 469 | pixman_region32_t repaint; |
| 470 | pixman_box32_t *rectangles; |
| 471 | int i, n; |
| 472 | |
| 473 | pixman_region32_init_rect(&repaint, |
| 474 | es->x, es->y, es->width, es->height); |
| 475 | pixman_region32_intersect(&repaint, &repaint, clip); |
| 476 | if (!pixman_region32_not_empty(&repaint)) |
| 477 | return; |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 478 | |
Kristian Høgsberg | c5c510e | 2010-12-08 15:12:58 -0500 | [diff] [blame] | 479 | if (es->visual == &ec->compositor.argb_visual) { |
Kristian Høgsberg | de31d5c | 2008-12-18 17:55:33 -0500 | [diff] [blame] | 480 | glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); |
| 481 | glEnable(GL_BLEND); |
Kristian Høgsberg | c5c510e | 2010-12-08 15:12:58 -0500 | [diff] [blame] | 482 | } else if (es->visual == &ec->compositor.premultiplied_argb_visual) { |
Kristian Høgsberg | de31d5c | 2008-12-18 17:55:33 -0500 | [diff] [blame] | 483 | glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA); |
| 484 | glEnable(GL_BLEND); |
| 485 | } else { |
| 486 | glDisable(GL_BLEND); |
| 487 | } |
| 488 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 489 | rectangles = pixman_region32_rectangles(&repaint, &n); |
| 490 | v = wl_array_add(&ec->vertices, n * 16 * sizeof *v); |
| 491 | p = wl_array_add(&ec->indices, n * 6 * sizeof *p); |
| 492 | inv_width = 1.0 / es->width; |
| 493 | inv_height = 1.0 / es->height; |
| 494 | for (i = 0; i < n; i++, v += 16, p += 6) { |
| 495 | v[ 0] = rectangles[i].x1; |
| 496 | v[ 1] = rectangles[i].y1; |
| 497 | v[ 2] = (GLfloat) (rectangles[i].x1 - es->x) * inv_width; |
| 498 | v[ 3] = (GLfloat) (rectangles[i].y1 - es->y) * inv_height; |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 499 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 500 | v[ 4] = rectangles[i].x1; |
| 501 | v[ 5] = rectangles[i].y2; |
| 502 | v[ 6] = v[ 2]; |
| 503 | v[ 7] = (GLfloat) (rectangles[i].y2 - es->y) * inv_height; |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 504 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 505 | v[ 8] = rectangles[i].x2; |
| 506 | v[ 9] = rectangles[i].y1; |
| 507 | v[10] = (GLfloat) (rectangles[i].x2 - es->x) * inv_width; |
| 508 | v[11] = v[ 3]; |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 509 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 510 | v[12] = rectangles[i].x2; |
| 511 | v[13] = rectangles[i].y2; |
| 512 | v[14] = v[10]; |
| 513 | v[15] = v[ 7]; |
| 514 | |
| 515 | p[0] = i * 4 + 0; |
| 516 | p[1] = i * 4 + 1; |
| 517 | p[2] = i * 4 + 2; |
| 518 | p[3] = i * 4 + 2; |
| 519 | p[4] = i * 4 + 1; |
| 520 | p[5] = i * 4 + 3; |
| 521 | } |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 522 | |
Kristian Høgsberg | aa5b5be | 2008-11-21 21:31:54 -0500 | [diff] [blame] | 523 | glBindTexture(GL_TEXTURE_2D, es->texture); |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 524 | v = ec->vertices.data; |
| 525 | glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[0]); |
| 526 | glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[2]); |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 527 | glEnableVertexAttribArray(0); |
| 528 | glEnableVertexAttribArray(1); |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 529 | glDrawElements(GL_TRIANGLES, n * 6, GL_UNSIGNED_INT, ec->indices.data); |
| 530 | |
| 531 | ec->vertices.size = 0; |
| 532 | ec->indices.size = 0; |
| 533 | pixman_region32_fini(&repaint); |
Kristian Høgsberg | 4c9f2c9 | 2008-11-21 19:25:44 -0500 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | static void |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 537 | wlsc_surface_raise(struct wlsc_surface *surface) |
| 538 | { |
| 539 | struct wlsc_compositor *compositor = surface->compositor; |
| 540 | |
| 541 | wl_list_remove(&surface->link); |
Kristian Høgsberg | 747638b | 2010-07-12 17:06:06 -0400 | [diff] [blame] | 542 | wl_list_insert(&compositor->surface_list, &surface->link); |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 543 | } |
| 544 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 545 | void |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 546 | wlsc_surface_update_matrix(struct wlsc_surface *es) |
| 547 | { |
| 548 | wlsc_matrix_init(&es->matrix); |
| 549 | wlsc_matrix_scale(&es->matrix, es->width, es->height, 1); |
| 550 | wlsc_matrix_translate(&es->matrix, es->x, es->y, 0); |
| 551 | |
| 552 | wlsc_matrix_init(&es->matrix_inv); |
| 553 | wlsc_matrix_translate(&es->matrix_inv, -es->x, -es->y, 0); |
| 554 | wlsc_matrix_scale(&es->matrix_inv, |
| 555 | 1.0 / es->width, 1.0 / es->height, 1); |
| 556 | } |
| 557 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 558 | void |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 559 | wlsc_compositor_damage_all(struct wlsc_compositor *compositor) |
| 560 | { |
| 561 | struct wlsc_output *output; |
| 562 | |
| 563 | wl_list_for_each(output, &compositor->output_list, link) |
| 564 | wlsc_output_damage(output); |
| 565 | } |
| 566 | |
| 567 | void |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 568 | wlsc_output_finish_frame(struct wlsc_output *output, int msecs) |
Kristian Høgsberg | 01f941b | 2009-05-27 17:47:15 -0400 | [diff] [blame] | 569 | { |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 570 | struct wlsc_compositor *compositor = output->compositor; |
| 571 | struct wlsc_surface *es; |
| 572 | |
| 573 | wl_list_for_each(es, &compositor->surface_list, link) { |
| 574 | if (es->output == output) { |
| 575 | wl_display_post_frame(compositor->wl_display, |
| 576 | &es->surface, msecs); |
| 577 | } |
| 578 | } |
| 579 | |
| 580 | output->finished = 1; |
| 581 | |
Kristian Høgsberg | 5d312db | 2009-09-12 16:57:02 -0400 | [diff] [blame] | 582 | wl_event_source_timer_update(compositor->timer_source, 5); |
Kristian Høgsberg | f30c67e | 2011-02-06 12:58:44 -0500 | [diff] [blame] | 583 | compositor->repaint_on_timeout = 1; |
Kristian Høgsberg | 01f941b | 2009-05-27 17:47:15 -0400 | [diff] [blame] | 584 | } |
| 585 | |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 586 | void |
| 587 | wlsc_output_damage(struct wlsc_output *output) |
| 588 | { |
| 589 | struct wlsc_compositor *compositor = output->compositor; |
| 590 | |
| 591 | pixman_region32_union_rect(&compositor->damage_region, |
| 592 | &compositor->damage_region, |
| 593 | output->x, output->y, |
| 594 | output->width, output->height); |
| 595 | wlsc_compositor_schedule_repaint(compositor); |
| 596 | } |
| 597 | |
Kristian Høgsberg | 01f941b | 2009-05-27 17:47:15 -0400 | [diff] [blame] | 598 | static void |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 599 | wlsc_output_repaint(struct wlsc_output *output) |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 600 | { |
Kristian Høgsberg | 1a208d5 | 2009-02-10 14:20:26 -0500 | [diff] [blame] | 601 | struct wlsc_compositor *ec = output->compositor; |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 602 | struct wlsc_surface *es; |
Kristian Høgsberg | 82f6e8a | 2008-12-19 13:47:53 -0500 | [diff] [blame] | 603 | struct wlsc_input_device *eid; |
Kristian Høgsberg | cfc6d27 | 2011-04-11 13:34:24 -0400 | [diff] [blame] | 604 | pixman_region32_t new_damage, total_damage, repaint; |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 605 | int using_hardware_cursor = 1; |
Kristian Høgsberg | fbdbbdc | 2008-11-28 17:06:06 -0500 | [diff] [blame] | 606 | |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 607 | output->prepare_render(output); |
| 608 | |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 609 | glViewport(0, 0, output->width, output->height); |
Kristian Høgsberg | fdec236 | 2001-01-01 22:23:51 -0500 | [diff] [blame] | 610 | |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 611 | glUniformMatrix4fv(ec->proj_uniform, 1, GL_FALSE, output->matrix.d); |
| 612 | glUniform1i(ec->tex_uniform, 0); |
| 613 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 614 | pixman_region32_init(&new_damage); |
| 615 | pixman_region32_init(&total_damage); |
| 616 | pixman_region32_intersect_rect(&new_damage, |
| 617 | &ec->damage_region, |
| 618 | output->x, output->y, |
| 619 | output->width, output->height); |
| 620 | pixman_region32_subtract(&ec->damage_region, |
| 621 | &ec->damage_region, &new_damage); |
| 622 | pixman_region32_union(&total_damage, &new_damage, |
| 623 | &output->previous_damage_region); |
| 624 | pixman_region32_copy(&output->previous_damage_region, &new_damage); |
| 625 | |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 626 | if (ec->state == WLSC_COMPOSITOR_SLEEPING) { |
| 627 | glClear(GL_COLOR_BUFFER_BIT); |
| 628 | return; |
| 629 | } |
| 630 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 631 | if (ec->focus) |
| 632 | if (output->set_hardware_cursor(output, ec->input_device) < 0) |
| 633 | using_hardware_cursor = 0; |
| 634 | |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 635 | es = container_of(ec->surface_list.next, struct wlsc_surface, link); |
| 636 | if (es->map_type == WLSC_SURFACE_MAP_FULLSCREEN && |
| 637 | es->fullscreen_output == output) { |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 638 | if (es->visual == &ec->compositor.rgb_visual && |
Benjamin Franzke | 66aa235 | 2011-04-20 17:06:13 +0200 | [diff] [blame] | 639 | using_hardware_cursor) { |
| 640 | if (output->prepare_scanout_surface(output, es) == 0) { |
| 641 | /* We're drawing nothing now, |
| 642 | * draw the damaged regions later. */ |
| 643 | pixman_region32_union(&ec->damage_region, |
| 644 | &ec->damage_region, |
| 645 | &total_damage); |
| 646 | return; |
| 647 | } |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 648 | } |
Benjamin Franzke | 66aa235 | 2011-04-20 17:06:13 +0200 | [diff] [blame] | 649 | |
| 650 | if (es->width < output->width || |
| 651 | es->height < output->height) |
| 652 | glClear(GL_COLOR_BUFFER_BIT); |
| 653 | wlsc_surface_draw(es, output, &total_damage); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 654 | } else { |
Kristian Høgsberg | cfc6d27 | 2011-04-11 13:34:24 -0400 | [diff] [blame] | 655 | wl_list_for_each(es, &ec->surface_list, link) { |
| 656 | if (es->visual != &ec->compositor.rgb_visual) |
| 657 | continue; |
| 658 | |
| 659 | pixman_region32_init_rect(&repaint, |
| 660 | es->x, es->y, |
| 661 | es->width, es->height); |
| 662 | wlsc_surface_draw(es, output, &total_damage); |
| 663 | pixman_region32_subtract(&total_damage, |
| 664 | &total_damage, &repaint); |
| 665 | } |
| 666 | |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 667 | if (output->background) |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 668 | wlsc_surface_draw(output->background, |
| 669 | output, &total_damage); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 670 | else |
| 671 | glClear(GL_COLOR_BUFFER_BIT); |
| 672 | |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 673 | wl_list_for_each_reverse(es, &ec->surface_list, link) { |
Kristian Høgsberg | 547cadf | 2011-04-12 22:23:30 -0400 | [diff] [blame] | 674 | if (ec->overlay == es) |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 675 | continue; |
| 676 | |
Kristian Høgsberg | cfc6d27 | 2011-04-11 13:34:24 -0400 | [diff] [blame] | 677 | if (es->visual == &ec->compositor.rgb_visual) { |
| 678 | pixman_region32_union_rect(&total_damage, |
| 679 | &total_damage, |
| 680 | es->x, es->y, |
| 681 | es->width, es->height); |
| 682 | continue; |
| 683 | } |
| 684 | |
Kristian Høgsberg | 525e4c0 | 2011-02-14 10:39:54 -0500 | [diff] [blame] | 685 | wlsc_surface_draw(es, output, &total_damage); |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 686 | } |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 687 | } |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 688 | |
Kristian Høgsberg | 547cadf | 2011-04-12 22:23:30 -0400 | [diff] [blame] | 689 | if (ec->overlay) |
| 690 | wlsc_surface_draw(ec->overlay, output, &total_damage); |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 691 | |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 692 | if (ec->focus) |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 693 | wl_list_for_each(eid, &ec->input_device_list, link) { |
| 694 | if (&eid->input_device != ec->input_device || |
| 695 | !using_hardware_cursor) |
| 696 | wlsc_surface_draw(eid->sprite, output, |
| 697 | &total_damage); |
| 698 | } |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 699 | } |
| 700 | |
Kristian Høgsberg | b186847 | 2011-04-22 12:27:57 -0400 | [diff] [blame] | 701 | static int |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 702 | repaint(void *data) |
| 703 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 704 | struct wlsc_compositor *ec = data; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 705 | struct wlsc_output *output; |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 706 | int repainted_all_outputs = 1; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 707 | |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 708 | wl_list_for_each(output, &ec->output_list, link) { |
| 709 | if (!output->repaint_needed) |
| 710 | continue; |
| 711 | |
| 712 | if (!output->finished) { |
| 713 | repainted_all_outputs = 0; |
| 714 | continue; |
| 715 | } |
| 716 | |
| 717 | wlsc_output_repaint(output); |
| 718 | output->finished = 0; |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 719 | output->repaint_needed = 0; |
Kristian Høgsberg | 11e2828 | 2011-04-11 16:47:50 -0400 | [diff] [blame] | 720 | output->present(output); |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 721 | } |
| 722 | |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 723 | if (repainted_all_outputs) |
| 724 | ec->repaint_on_timeout = 0; |
| 725 | else |
| 726 | wl_event_source_timer_update(ec->timer_source, 1); |
Kristian Høgsberg | b186847 | 2011-04-22 12:27:57 -0400 | [diff] [blame] | 727 | |
| 728 | return 1; |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 729 | } |
| 730 | |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 731 | void |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 732 | wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor) |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 733 | { |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 734 | struct wlsc_output *output; |
| 735 | |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 736 | if (compositor->state == WLSC_COMPOSITOR_SLEEPING) |
| 737 | return; |
| 738 | |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 739 | wl_list_for_each(output, &compositor->output_list, link) |
| 740 | output->repaint_needed = 1; |
| 741 | |
Kristian Høgsberg | b0a167c | 2009-08-14 11:15:18 -0400 | [diff] [blame] | 742 | if (compositor->repaint_on_timeout) |
| 743 | return; |
| 744 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 745 | wl_event_source_timer_update(compositor->timer_source, 1); |
| 746 | compositor->repaint_on_timeout = 1; |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 747 | } |
Kristian Høgsberg | 5c8c328 | 2009-02-09 15:17:46 -0500 | [diff] [blame] | 748 | |
Kristian Høgsberg | 5503bf8 | 2008-11-06 10:38:17 -0500 | [diff] [blame] | 749 | static void |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 750 | surface_destroy(struct wl_client *client, |
| 751 | struct wl_surface *surface) |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 752 | { |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 753 | wl_resource_destroy(&surface->resource, client); |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 754 | } |
| 755 | |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 756 | void |
| 757 | wlsc_surface_assign_output(struct wlsc_surface *es) |
| 758 | { |
| 759 | struct wlsc_compositor *ec = es->compositor; |
| 760 | struct wlsc_output *output; |
| 761 | |
| 762 | struct wlsc_output *tmp = es->output; |
| 763 | es->output = NULL; |
| 764 | |
| 765 | wl_list_for_each(output, &ec->output_list, link) { |
| 766 | if (output->x < es->x && es->x < output->x + output->width && |
| 767 | output->y < es->y && es->y < output->y + output->height) { |
| 768 | if (output != tmp) |
| 769 | printf("assiging surface %p to output %p\n", |
| 770 | es, output); |
| 771 | es->output = output; |
| 772 | } |
| 773 | } |
| 774 | |
| 775 | if (es->output == NULL) { |
| 776 | printf("no output found\n"); |
| 777 | es->output = container_of(ec->output_list.next, |
| 778 | struct wlsc_output, link); |
| 779 | } |
| 780 | } |
| 781 | |
Kristian Høgsberg | 5503bf8 | 2008-11-06 10:38:17 -0500 | [diff] [blame] | 782 | static void |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 783 | surface_attach(struct wl_client *client, |
Kristian Høgsberg | 82da52b | 2010-12-17 09:53:12 -0500 | [diff] [blame] | 784 | struct wl_surface *surface, struct wl_buffer *buffer, |
| 785 | int32_t x, int32_t y) |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 786 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 787 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 788 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 789 | /* FIXME: This damages the entire old surface, but we should |
| 790 | * really just damage the part that's no longer covered by the |
| 791 | * surface. Anything covered by the new surface will be |
| 792 | * damaged by the client. */ |
| 793 | wlsc_surface_damage(es); |
| 794 | |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 795 | wlsc_buffer_attach(buffer, surface); |
| 796 | |
Kristian Høgsberg | 3d5bae0 | 2010-10-06 21:17:40 -0400 | [diff] [blame] | 797 | es->buffer = buffer; |
Kristian Høgsberg | 82da52b | 2010-12-17 09:53:12 -0500 | [diff] [blame] | 798 | es->x += x; |
| 799 | es->y += y; |
| 800 | es->width = buffer->width; |
| 801 | es->height = buffer->height; |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 802 | if (x != 0 || y != 0) |
| 803 | wlsc_surface_assign_output(es); |
Kristian Høgsberg | 82da52b | 2010-12-17 09:53:12 -0500 | [diff] [blame] | 804 | wlsc_surface_update_matrix(es); |
Kristian Høgsberg | f921289 | 2008-10-11 18:40:23 -0400 | [diff] [blame] | 805 | } |
| 806 | |
Kristian Høgsberg | 5503bf8 | 2008-11-06 10:38:17 -0500 | [diff] [blame] | 807 | static void |
Kristian Høgsberg | 82da52b | 2010-12-17 09:53:12 -0500 | [diff] [blame] | 808 | surface_map_toplevel(struct wl_client *client, |
| 809 | struct wl_surface *surface) |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 810 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 811 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 812 | struct wlsc_compositor *ec = es->compositor; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 813 | |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 814 | switch (es->map_type) { |
| 815 | case WLSC_SURFACE_MAP_UNMAPPED: |
| 816 | es->x = 10 + random() % 400; |
| 817 | es->y = 10 + random() % 400; |
| 818 | wlsc_surface_update_matrix(es); |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 819 | /* assign to first output */ |
| 820 | es->output = container_of(ec->output_list.next, |
| 821 | struct wlsc_output, link); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 822 | wl_list_insert(&es->compositor->surface_list, &es->link); |
| 823 | break; |
| 824 | case WLSC_SURFACE_MAP_TOPLEVEL: |
Kristian Høgsberg | 8f66a57 | 2011-01-07 08:38:56 -0500 | [diff] [blame] | 825 | return; |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 826 | case WLSC_SURFACE_MAP_FULLSCREEN: |
| 827 | es->fullscreen_output = NULL; |
| 828 | es->x = es->saved_x; |
| 829 | es->y = es->saved_y; |
| 830 | wlsc_surface_update_matrix(es); |
| 831 | break; |
| 832 | default: |
| 833 | break; |
| 834 | } |
Kristian Høgsberg | 8f66a57 | 2011-01-07 08:38:56 -0500 | [diff] [blame] | 835 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 836 | wlsc_surface_damage(es); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 837 | es->map_type = WLSC_SURFACE_MAP_TOPLEVEL; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 838 | } |
| 839 | |
Kristian Høgsberg | 7f77bd8 | 2008-11-07 08:39:37 -0500 | [diff] [blame] | 840 | static void |
Kristian Høgsberg | 8dc378f | 2011-01-21 18:02:24 -0500 | [diff] [blame] | 841 | surface_map_transient(struct wl_client *client, |
| 842 | struct wl_surface *surface, struct wl_surface *parent, |
| 843 | int x, int y, uint32_t flags) |
| 844 | { |
| 845 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
| 846 | struct wlsc_surface *pes = (struct wlsc_surface *) parent; |
| 847 | |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 848 | switch (es->map_type) { |
| 849 | case WLSC_SURFACE_MAP_UNMAPPED: |
| 850 | wl_list_insert(&es->compositor->surface_list, &es->link); |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 851 | /* assign to parents output */ |
| 852 | es->output = pes->output; |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 853 | break; |
| 854 | case WLSC_SURFACE_MAP_FULLSCREEN: |
| 855 | es->fullscreen_output = NULL; |
| 856 | break; |
| 857 | default: |
| 858 | break; |
| 859 | } |
Kristian Høgsberg | 8dc378f | 2011-01-21 18:02:24 -0500 | [diff] [blame] | 860 | |
| 861 | es->x = pes->x + x; |
| 862 | es->y = pes->y + y; |
| 863 | |
| 864 | wlsc_surface_update_matrix(es); |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 865 | wlsc_surface_damage(es); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 866 | es->map_type = WLSC_SURFACE_MAP_TRANSIENT; |
| 867 | } |
| 868 | |
| 869 | static void |
| 870 | surface_map_fullscreen(struct wl_client *client, struct wl_surface *surface) |
| 871 | { |
| 872 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
| 873 | struct wlsc_output *output; |
| 874 | |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 875 | /* FIXME: Fullscreen on first output */ |
| 876 | /* FIXME: Handle output going away */ |
| 877 | output = container_of(es->compositor->output_list.next, |
| 878 | struct wlsc_output, link); |
| 879 | |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 880 | switch (es->map_type) { |
| 881 | case WLSC_SURFACE_MAP_UNMAPPED: |
| 882 | es->x = 10 + random() % 400; |
| 883 | es->y = 10 + random() % 400; |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 884 | /* assign to first output */ |
| 885 | es->output = output; |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 886 | wl_list_insert(&es->compositor->surface_list, &es->link); |
| 887 | break; |
| 888 | case WLSC_SURFACE_MAP_FULLSCREEN: |
| 889 | return; |
| 890 | default: |
| 891 | break; |
| 892 | } |
| 893 | |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 894 | es->saved_x = es->x; |
| 895 | es->saved_y = es->y; |
| 896 | es->x = (output->width - es->width) / 2; |
| 897 | es->y = (output->height - es->height) / 2; |
| 898 | es->fullscreen_output = output; |
| 899 | wlsc_surface_update_matrix(es); |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 900 | wlsc_surface_damage(es); |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 901 | es->map_type = WLSC_SURFACE_MAP_FULLSCREEN; |
Kristian Høgsberg | 8dc378f | 2011-01-21 18:02:24 -0500 | [diff] [blame] | 902 | } |
| 903 | |
| 904 | static void |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 905 | surface_damage(struct wl_client *client, |
| 906 | struct wl_surface *surface, |
| 907 | 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] | 908 | { |
Kristian Høgsberg | 9d69f8e | 2010-09-03 14:46:38 -0400 | [diff] [blame] | 909 | struct wlsc_surface *es = (struct wlsc_surface *) surface; |
| 910 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 911 | wlsc_surface_damage_rectangle(es, x, y, width, height); |
Kristian Høgsberg | fbdbbdc | 2008-11-28 17:06:06 -0500 | [diff] [blame] | 912 | } |
| 913 | |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 914 | const static struct wl_surface_interface surface_interface = { |
| 915 | surface_destroy, |
| 916 | surface_attach, |
Kristian Høgsberg | 82da52b | 2010-12-17 09:53:12 -0500 | [diff] [blame] | 917 | surface_map_toplevel, |
Kristian Høgsberg | 8dc378f | 2011-01-21 18:02:24 -0500 | [diff] [blame] | 918 | surface_map_transient, |
Kristian Høgsberg | 0ce2457 | 2011-01-28 15:18:33 -0500 | [diff] [blame] | 919 | surface_map_fullscreen, |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 920 | surface_damage |
| 921 | }; |
| 922 | |
| 923 | static void |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 924 | wlsc_input_device_attach(struct wlsc_input_device *device, |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 925 | int x, int y, int width, int height) |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 926 | { |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 927 | wlsc_surface_damage(device->sprite); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 928 | |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 929 | device->hotspot_x = x; |
| 930 | device->hotspot_y = y; |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 931 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 932 | device->sprite->x = device->input_device.x - device->hotspot_x; |
| 933 | device->sprite->y = device->input_device.y - device->hotspot_y; |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 934 | device->sprite->width = width; |
| 935 | device->sprite->height = height; |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 936 | wlsc_surface_update_matrix(device->sprite); |
| 937 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 938 | wlsc_surface_damage(device->sprite); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 939 | } |
| 940 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 941 | static void |
| 942 | wlsc_input_device_attach_buffer(struct wlsc_input_device *device, |
| 943 | struct wl_buffer *buffer, int x, int y) |
| 944 | { |
| 945 | wlsc_buffer_attach(buffer, &device->sprite->surface); |
| 946 | wlsc_input_device_attach(device, x, y, buffer->width, buffer->height); |
| 947 | } |
| 948 | |
| 949 | static void |
| 950 | wlsc_input_device_attach_sprite(struct wlsc_input_device *device, |
| 951 | struct wlsc_sprite *sprite, int x, int y) |
| 952 | { |
| 953 | wlsc_sprite_attach(sprite, &device->sprite->surface); |
| 954 | wlsc_input_device_attach(device, x, y, sprite->width, sprite->height); |
| 955 | } |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 956 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 957 | void |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 958 | wlsc_input_device_set_pointer_image(struct wlsc_input_device *device, |
| 959 | enum wlsc_pointer_type type) |
| 960 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 961 | struct wlsc_compositor *compositor = |
| 962 | (struct wlsc_compositor *) device->input_device.compositor; |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 963 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 964 | wlsc_input_device_attach_sprite(device, |
| 965 | compositor->pointer_sprites[type], |
| 966 | pointer_images[type].hotspot_x, |
| 967 | pointer_images[type].hotspot_y); |
Kristian Høgsberg | eef08fb | 2010-08-17 21:23:10 -0400 | [diff] [blame] | 968 | } |
| 969 | |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 970 | static void |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 971 | compositor_create_surface(struct wl_client *client, |
| 972 | struct wl_compositor *compositor, uint32_t id) |
| 973 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 974 | struct wlsc_compositor *ec = (struct wlsc_compositor *) compositor; |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 975 | struct wlsc_surface *surface; |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 976 | |
Kristian Høgsberg | c5d6be9 | 2011-01-14 16:22:37 -0500 | [diff] [blame] | 977 | surface = wlsc_surface_create(ec, 0, 0, 0, 0); |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 978 | if (surface == NULL) { |
Kristian Høgsberg | 13b8ae4 | 2010-09-02 20:55:16 -0400 | [diff] [blame] | 979 | wl_client_post_no_memory(client); |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 980 | return; |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 981 | } |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 982 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 983 | surface->surface.resource.destroy = destroy_surface; |
Kristian Høgsberg | f66d0f4 | 2010-09-02 20:27:16 -0400 | [diff] [blame] | 984 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 985 | surface->surface.resource.object.id = id; |
| 986 | surface->surface.resource.object.interface = &wl_surface_interface; |
| 987 | surface->surface.resource.object.implementation = |
Kristian Høgsberg | f66d0f4 | 2010-09-02 20:27:16 -0400 | [diff] [blame] | 988 | (void (**)(void)) &surface_interface; |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 989 | surface->surface.client = client; |
Kristian Høgsberg | f66d0f4 | 2010-09-02 20:27:16 -0400 | [diff] [blame] | 990 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 991 | wl_client_add_resource(client, &surface->surface.resource); |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 992 | } |
| 993 | |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 994 | const static struct wl_compositor_interface compositor_interface = { |
| 995 | compositor_create_surface, |
Kristian Høgsberg | d2412e2 | 2008-12-15 20:35:24 -0500 | [diff] [blame] | 996 | }; |
| 997 | |
Kristian Høgsberg | 7b6907f | 2009-02-14 17:47:55 -0500 | [diff] [blame] | 998 | static void |
| 999 | wlsc_surface_transform(struct wlsc_surface *surface, |
| 1000 | int32_t x, int32_t y, int32_t *sx, int32_t *sy) |
| 1001 | { |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1002 | struct wlsc_vector v = { { x, y, 0, 1 } }; |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1003 | |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1004 | wlsc_matrix_transform(&surface->matrix_inv, &v); |
Kristian Høgsberg | 0b8646b | 2010-06-08 15:29:14 -0400 | [diff] [blame] | 1005 | *sx = v.f[0] * surface->width; |
| 1006 | *sy = v.f[1] * surface->height; |
Kristian Høgsberg | 7b6907f | 2009-02-14 17:47:55 -0500 | [diff] [blame] | 1007 | } |
| 1008 | |
Kristian Høgsberg | 4cca349 | 2011-01-18 07:53:49 -0500 | [diff] [blame] | 1009 | struct wlsc_surface * |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1010 | 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] | 1011 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1012 | struct wlsc_compositor *ec = |
| 1013 | (struct wlsc_compositor *) device->compositor; |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 1014 | struct wlsc_surface *es; |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 1015 | |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1016 | wl_list_for_each(es, &ec->surface_list, link) { |
| 1017 | wlsc_surface_transform(es, device->x, device->y, sx, sy); |
| 1018 | if (0 <= *sx && *sx < es->width && |
| 1019 | 0 <= *sy && *sy < es->height) |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 1020 | return es; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1021 | } |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 1022 | |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 1023 | return NULL; |
| 1024 | } |
| 1025 | |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 1026 | |
| 1027 | static void |
| 1028 | motion_grab_motion(struct wl_grab *grab, |
| 1029 | uint32_t time, int32_t x, int32_t y) |
| 1030 | { |
| 1031 | struct wlsc_input_device *device = |
| 1032 | (struct wlsc_input_device *) grab->input_device; |
| 1033 | struct wlsc_surface *es = |
| 1034 | (struct wlsc_surface *) device->input_device.pointer_focus; |
| 1035 | int32_t sx, sy; |
| 1036 | |
| 1037 | wlsc_surface_transform(es, x, y, &sx, &sy); |
| 1038 | wl_client_post_event(es->surface.client, |
| 1039 | &device->input_device.object, |
| 1040 | WL_INPUT_DEVICE_MOTION, |
| 1041 | time, x, y, sx, sy); |
| 1042 | } |
| 1043 | |
| 1044 | static void |
Kristian Høgsberg | b3fc757 | 2010-12-08 11:07:57 -0500 | [diff] [blame] | 1045 | motion_grab_button(struct wl_grab *grab, |
| 1046 | uint32_t time, int32_t button, int32_t state) |
| 1047 | { |
| 1048 | wl_client_post_event(grab->input_device->pointer_focus->client, |
| 1049 | &grab->input_device->object, |
| 1050 | WL_INPUT_DEVICE_BUTTON, |
| 1051 | time, button, state); |
| 1052 | } |
| 1053 | |
| 1054 | static void |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 1055 | motion_grab_end(struct wl_grab *grab, uint32_t time) |
| 1056 | { |
| 1057 | } |
| 1058 | |
| 1059 | static const struct wl_grab_interface motion_grab_interface = { |
| 1060 | motion_grab_motion, |
Kristian Høgsberg | b3fc757 | 2010-12-08 11:07:57 -0500 | [diff] [blame] | 1061 | motion_grab_button, |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 1062 | motion_grab_end |
| 1063 | }; |
| 1064 | |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 1065 | void |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 1066 | wlsc_compositor_wake(struct wlsc_compositor *compositor) |
| 1067 | { |
| 1068 | if (compositor->idle_inhibit) |
| 1069 | return; |
| 1070 | |
| 1071 | if (compositor->state == WLSC_COMPOSITOR_SLEEPING) { |
| 1072 | compositor->state = WLSC_COMPOSITOR_ACTIVE; |
| 1073 | wlsc_compositor_damage_all(compositor); |
| 1074 | } |
| 1075 | |
| 1076 | wl_event_source_timer_update(compositor->idle_source, |
| 1077 | option_idle_time * 1000); |
| 1078 | } |
| 1079 | |
| 1080 | static void |
| 1081 | wlsc_compositor_idle_inhibit(struct wlsc_compositor *compositor) |
| 1082 | { |
| 1083 | wlsc_compositor_wake(compositor); |
| 1084 | compositor->idle_inhibit++; |
| 1085 | } |
| 1086 | |
| 1087 | static void |
| 1088 | wlsc_compositor_idle_release(struct wlsc_compositor *compositor) |
| 1089 | { |
| 1090 | compositor->idle_inhibit--; |
| 1091 | wlsc_compositor_wake(compositor); |
| 1092 | } |
| 1093 | |
| 1094 | static int |
| 1095 | idle_handler(void *data) |
| 1096 | { |
| 1097 | struct wlsc_compositor *compositor = data; |
| 1098 | |
| 1099 | if (compositor->idle_inhibit) |
| 1100 | return 1; |
| 1101 | |
| 1102 | wlsc_compositor_damage_all(compositor); |
| 1103 | compositor->state = WLSC_COMPOSITOR_SLEEPING; |
| 1104 | |
| 1105 | return 1; |
| 1106 | } |
| 1107 | |
| 1108 | void |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1109 | 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] | 1110 | { |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 1111 | struct wlsc_surface *es; |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1112 | struct wlsc_compositor *ec = |
| 1113 | (struct wlsc_compositor *) device->compositor; |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1114 | struct wlsc_output *output; |
Kristian Høgsberg | 6d65d5f | 2010-12-07 13:30:18 -0500 | [diff] [blame] | 1115 | const struct wl_grab_interface *interface; |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1116 | struct wlsc_input_device *wd = (struct wlsc_input_device *) device; |
Kristian Høgsberg | fc9c28a | 2010-12-07 13:04:43 -0500 | [diff] [blame] | 1117 | int32_t sx, sy; |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 1118 | int x_valid = 0, y_valid = 0; |
| 1119 | int min_x = INT_MAX, min_y = INT_MAX, max_x = INT_MIN, max_y = INT_MIN; |
Kristian Høgsberg | 715a081 | 2008-12-10 10:42:04 -0500 | [diff] [blame] | 1120 | |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 1121 | wlsc_compositor_wake(ec); |
| 1122 | |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 1123 | wl_list_for_each(output, &ec->output_list, link) { |
| 1124 | if (output->x <= x && x <= output->x + output->width) |
| 1125 | x_valid = 1; |
| 1126 | |
| 1127 | if (output->y <= y && y <= output->y + output->height) |
| 1128 | y_valid = 1; |
| 1129 | |
| 1130 | /* FIXME: calculate this only on output addition/deletion */ |
| 1131 | if (output->x < min_x) |
| 1132 | min_x = output->x; |
| 1133 | if (output->y < min_y) |
| 1134 | min_y = output->y; |
| 1135 | |
| 1136 | if (output->x + output->width > max_x) |
| 1137 | max_x = output->x + output->width; |
| 1138 | if (output->y + output->height > max_y) |
| 1139 | max_y = output->y + output->height; |
| 1140 | } |
| 1141 | |
| 1142 | if (!x_valid) { |
| 1143 | if (x < min_x) |
| 1144 | x = min_x; |
| 1145 | else if (x >= max_x) |
| 1146 | x = max_x; |
| 1147 | } |
| 1148 | if (!y_valid) { |
| 1149 | if (y < min_y) |
| 1150 | y = min_y; |
| 1151 | else if (y >= max_y) |
| 1152 | y = max_y; |
| 1153 | } |
Ray Strode | 90e701d | 2008-12-18 23:05:43 -0500 | [diff] [blame] | 1154 | |
Kristian Høgsberg | e3ef3e5 | 2008-12-21 19:30:01 -0500 | [diff] [blame] | 1155 | device->x = x; |
| 1156 | device->y = y; |
Kristian Høgsberg | db6c2f3 | 2009-02-22 21:51:24 -0500 | [diff] [blame] | 1157 | |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 1158 | if (device->grab) { |
| 1159 | interface = device->grab->interface; |
| 1160 | interface->motion(device->grab, time, x, y); |
| 1161 | } else { |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 1162 | es = pick_surface(device, &sx, &sy); |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1163 | wl_input_device_set_pointer_focus(device, |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1164 | &es->surface, |
Kristian Høgsberg | 2643707 | 2010-12-01 10:17:47 -0500 | [diff] [blame] | 1165 | time, x, y, sx, sy); |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 1166 | if (es) |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1167 | wl_client_post_event(es->surface.client, |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1168 | &device->object, |
Kristian Høgsberg | 50038e4 | 2010-09-07 21:08:59 -0400 | [diff] [blame] | 1169 | WL_INPUT_DEVICE_MOTION, |
| 1170 | time, x, y, sx, sy); |
Kristian Høgsberg | 83fc061 | 2010-08-04 22:44:55 -0400 | [diff] [blame] | 1171 | } |
Kristian Høgsberg | 715a081 | 2008-12-10 10:42:04 -0500 | [diff] [blame] | 1172 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 1173 | wlsc_surface_damage(wd->sprite); |
| 1174 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1175 | wd->sprite->x = device->x - wd->hotspot_x; |
| 1176 | wd->sprite->y = device->y - wd->hotspot_y; |
| 1177 | wlsc_surface_update_matrix(wd->sprite); |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 1178 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 1179 | wlsc_surface_damage(wd->sprite); |
Kristian Høgsberg | 715a081 | 2008-12-10 10:42:04 -0500 | [diff] [blame] | 1180 | } |
| 1181 | |
Kristian Høgsberg | 30021d7 | 2011-04-12 17:42:30 -0400 | [diff] [blame] | 1182 | void |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 1183 | wlsc_surface_activate(struct wlsc_surface *surface, |
| 1184 | struct wlsc_input_device *device, uint32_t time) |
| 1185 | { |
| 1186 | wlsc_surface_raise(surface); |
| 1187 | if (device->selection) |
| 1188 | wlsc_selection_set_focus(device->selection, |
| 1189 | &surface->surface, time); |
| 1190 | |
| 1191 | wl_input_device_set_keyboard_focus(&device->input_device, |
| 1192 | &surface->surface, |
| 1193 | time); |
| 1194 | } |
| 1195 | |
Kristian Høgsberg | a8ec863 | 2011-04-12 17:22:49 -0400 | [diff] [blame] | 1196 | struct wlsc_binding { |
| 1197 | uint32_t key; |
| 1198 | uint32_t button; |
| 1199 | uint32_t modifier; |
| 1200 | wlsc_binding_handler_t handler; |
| 1201 | void *data; |
| 1202 | struct wl_list link; |
| 1203 | }; |
| 1204 | |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 1205 | void |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1206 | notify_button(struct wl_input_device *device, |
Kristian Høgsberg | 808fd41 | 2010-07-20 17:06:19 -0400 | [diff] [blame] | 1207 | uint32_t time, int32_t button, int32_t state) |
Kristian Høgsberg | eac149a | 2008-12-10 00:24:18 -0500 | [diff] [blame] | 1208 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1209 | struct wlsc_input_device *wd = (struct wlsc_input_device *) device; |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1210 | struct wlsc_compositor *compositor = |
| 1211 | (struct wlsc_compositor *) device->compositor; |
Kristian Høgsberg | a8ec863 | 2011-04-12 17:22:49 -0400 | [diff] [blame] | 1212 | struct wlsc_binding *b; |
| 1213 | struct wlsc_surface *surface = |
| 1214 | (struct wlsc_surface *) device->pointer_focus; |
Kristian Høgsberg | ea08115 | 2010-12-07 08:59:51 -0500 | [diff] [blame] | 1215 | |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 1216 | if (state) |
| 1217 | wlsc_compositor_idle_inhibit(compositor); |
| 1218 | else |
| 1219 | wlsc_compositor_idle_release(compositor); |
| 1220 | |
Kristian Høgsberg | dd4046a | 2011-01-21 17:00:09 -0500 | [diff] [blame] | 1221 | if (state && surface && device->grab == NULL) { |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 1222 | wlsc_surface_activate(surface, wd, time); |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1223 | wl_input_device_start_grab(device, |
| 1224 | &device->motion_grab, |
| 1225 | button, time); |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 1226 | } |
Kristian Høgsberg | dff2e3c | 2010-12-07 09:02:09 -0500 | [diff] [blame] | 1227 | |
Kristian Høgsberg | a8ec863 | 2011-04-12 17:22:49 -0400 | [diff] [blame] | 1228 | wl_list_for_each(b, &compositor->binding_list, link) { |
| 1229 | if (b->button == button && |
| 1230 | b->modifier == wd->modifier_state && state) { |
| 1231 | b->handler(&wd->input_device, |
| 1232 | time, 0, button, state, b->data); |
| 1233 | break; |
| 1234 | } |
Benjamin Franzke | 5a2218a | 2011-02-01 16:30:31 +0100 | [diff] [blame] | 1235 | } |
Kristian Høgsberg | b3fc757 | 2010-12-08 11:07:57 -0500 | [diff] [blame] | 1236 | |
Kristian Høgsberg | dd4046a | 2011-01-21 17:00:09 -0500 | [diff] [blame] | 1237 | if (device->grab) |
| 1238 | device->grab->interface->button(device->grab, time, |
| 1239 | button, state); |
Kristian Høgsberg | dff2e3c | 2010-12-07 09:02:09 -0500 | [diff] [blame] | 1240 | |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 1241 | if (!state && device->grab && device->grab_button == button) |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1242 | wl_input_device_end_grab(device, time); |
Kristian Høgsberg | eac149a | 2008-12-10 00:24:18 -0500 | [diff] [blame] | 1243 | } |
| 1244 | |
Kristian Høgsberg | c9824dd | 2011-02-06 16:54:59 -0500 | [diff] [blame] | 1245 | static void |
Kristian Høgsberg | a8ec863 | 2011-04-12 17:22:49 -0400 | [diff] [blame] | 1246 | terminate_binding(struct wl_input_device *device, uint32_t time, |
| 1247 | uint32_t key, uint32_t button, uint32_t state, void *data) |
Kristian Høgsberg | 3555d09 | 2011-04-11 13:58:13 -0400 | [diff] [blame] | 1248 | { |
| 1249 | struct wlsc_compositor *compositor = data; |
| 1250 | |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 1251 | if (state) |
| 1252 | wl_display_terminate(compositor->wl_display); |
Kristian Høgsberg | 3555d09 | 2011-04-11 13:58:13 -0400 | [diff] [blame] | 1253 | } |
| 1254 | |
| 1255 | struct wlsc_binding * |
| 1256 | wlsc_compositor_add_binding(struct wlsc_compositor *compositor, |
Kristian Høgsberg | a8ec863 | 2011-04-12 17:22:49 -0400 | [diff] [blame] | 1257 | uint32_t key, uint32_t button, uint32_t modifier, |
Kristian Høgsberg | 3555d09 | 2011-04-11 13:58:13 -0400 | [diff] [blame] | 1258 | wlsc_binding_handler_t handler, void *data) |
| 1259 | { |
| 1260 | struct wlsc_binding *binding; |
| 1261 | |
| 1262 | binding = malloc(sizeof *binding); |
| 1263 | if (binding == NULL) |
| 1264 | return NULL; |
| 1265 | |
| 1266 | binding->key = key; |
Kristian Høgsberg | a8ec863 | 2011-04-12 17:22:49 -0400 | [diff] [blame] | 1267 | binding->button = button; |
Kristian Høgsberg | 3555d09 | 2011-04-11 13:58:13 -0400 | [diff] [blame] | 1268 | binding->modifier = modifier; |
| 1269 | binding->handler = handler; |
| 1270 | binding->data = data; |
| 1271 | wl_list_insert(compositor->binding_list.prev, &binding->link); |
| 1272 | |
| 1273 | return binding; |
| 1274 | } |
| 1275 | |
| 1276 | void |
| 1277 | wlsc_binding_destroy(struct wlsc_binding *binding) |
| 1278 | { |
| 1279 | wl_list_remove(&binding->link); |
| 1280 | free(binding); |
| 1281 | } |
| 1282 | |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1283 | static void |
| 1284 | update_modifier_state(struct wlsc_input_device *device, |
| 1285 | uint32_t key, uint32_t state) |
Kristian Høgsberg | cddc0ad | 2008-11-24 00:31:49 -0500 | [diff] [blame] | 1286 | { |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1287 | uint32_t modifier; |
Kristian Høgsberg | ab909ae | 2001-01-01 22:24:24 -0500 | [diff] [blame] | 1288 | |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1289 | switch (key) { |
| 1290 | case KEY_LEFTCTRL: |
| 1291 | case KEY_RIGHTCTRL: |
| 1292 | modifier = MODIFIER_CTRL; |
| 1293 | break; |
| 1294 | |
| 1295 | case KEY_LEFTALT: |
| 1296 | case KEY_RIGHTALT: |
| 1297 | modifier = MODIFIER_ALT; |
| 1298 | break; |
| 1299 | |
Kristian Høgsberg | 5b75f1b | 2010-08-04 23:21:41 -0400 | [diff] [blame] | 1300 | case KEY_LEFTMETA: |
| 1301 | case KEY_RIGHTMETA: |
| 1302 | modifier = MODIFIER_SUPER; |
| 1303 | break; |
| 1304 | |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1305 | default: |
| 1306 | modifier = 0; |
| 1307 | break; |
| 1308 | } |
| 1309 | |
| 1310 | if (state) |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1311 | device->modifier_state |= modifier; |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1312 | else |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1313 | device->modifier_state &= ~modifier; |
| 1314 | } |
Kristian Høgsberg | 2cbedd1 | 2009-09-18 17:29:49 -0400 | [diff] [blame] | 1315 | |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1316 | void |
| 1317 | notify_key(struct wl_input_device *device, |
| 1318 | uint32_t time, uint32_t key, uint32_t state) |
| 1319 | { |
| 1320 | struct wlsc_input_device *wd = (struct wlsc_input_device *) device; |
| 1321 | struct wlsc_compositor *compositor = |
| 1322 | (struct wlsc_compositor *) device->compositor; |
| 1323 | uint32_t *k, *end; |
| 1324 | struct wlsc_binding *b; |
| 1325 | |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 1326 | if (state) |
| 1327 | wlsc_compositor_idle_inhibit(compositor); |
| 1328 | else |
| 1329 | wlsc_compositor_idle_release(compositor); |
| 1330 | |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1331 | wl_list_for_each(b, &compositor->binding_list, link) { |
| 1332 | if (b->key == key && |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 1333 | b->modifier == wd->modifier_state) { |
Kristian Høgsberg | a8ec863 | 2011-04-12 17:22:49 -0400 | [diff] [blame] | 1334 | b->handler(&wd->input_device, |
| 1335 | time, key, 0, state, b->data); |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1336 | break; |
| 1337 | } |
| 1338 | } |
| 1339 | |
| 1340 | update_modifier_state(wd, key, state); |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1341 | end = device->keys.data + device->keys.size; |
| 1342 | for (k = device->keys.data; k < end; k++) { |
Kristian Høgsberg | 3c38fa0 | 2009-02-23 22:30:29 -0500 | [diff] [blame] | 1343 | if (*k == key) |
| 1344 | *k = *--end; |
| 1345 | } |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1346 | device->keys.size = (void *) end - device->keys.data; |
Kristian Høgsberg | 3c38fa0 | 2009-02-23 22:30:29 -0500 | [diff] [blame] | 1347 | if (state) { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1348 | k = wl_array_add(&device->keys, sizeof *k); |
Kristian Høgsberg | 3c38fa0 | 2009-02-23 22:30:29 -0500 | [diff] [blame] | 1349 | *k = key; |
| 1350 | } |
Ray Strode | e96dcb8 | 2008-12-20 02:00:49 -0500 | [diff] [blame] | 1351 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1352 | if (device->keyboard_focus != NULL) |
| 1353 | wl_client_post_event(device->keyboard_focus->client, |
| 1354 | &device->object, |
Kristian Høgsberg | 50038e4 | 2010-09-07 21:08:59 -0400 | [diff] [blame] | 1355 | WL_INPUT_DEVICE_KEY, time, key, state); |
Kristian Høgsberg | 808fd41 | 2010-07-20 17:06:19 -0400 | [diff] [blame] | 1356 | } |
| 1357 | |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 1358 | void |
| 1359 | notify_pointer_focus(struct wl_input_device *device, |
| 1360 | uint32_t time, struct wlsc_output *output, |
| 1361 | int32_t x, int32_t y) |
| 1362 | { |
| 1363 | struct wlsc_input_device *wd = (struct wlsc_input_device *) device; |
| 1364 | struct wlsc_compositor *compositor = |
| 1365 | (struct wlsc_compositor *) device->compositor; |
| 1366 | struct wlsc_surface *es; |
| 1367 | int32_t sx, sy; |
| 1368 | |
| 1369 | if (output) { |
| 1370 | device->x = x; |
| 1371 | device->y = y; |
| 1372 | es = pick_surface(device, &sx, &sy); |
| 1373 | wl_input_device_set_pointer_focus(device, |
| 1374 | &es->surface, |
| 1375 | time, x, y, sx, sy); |
| 1376 | |
| 1377 | compositor->focus = 1; |
| 1378 | |
| 1379 | wd->sprite->x = device->x - wd->hotspot_x; |
| 1380 | wd->sprite->y = device->y - wd->hotspot_y; |
| 1381 | wlsc_surface_update_matrix(wd->sprite); |
| 1382 | } else { |
| 1383 | wl_input_device_set_pointer_focus(device, NULL, |
| 1384 | time, 0, 0, 0, 0); |
| 1385 | compositor->focus = 0; |
| 1386 | } |
| 1387 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 1388 | wlsc_surface_damage(wd->sprite); |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 1389 | } |
| 1390 | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1391 | void |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1392 | notify_keyboard_focus(struct wl_input_device *device, |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1393 | uint32_t time, struct wlsc_output *output, |
| 1394 | struct wl_array *keys) |
| 1395 | { |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1396 | struct wlsc_input_device *wd = |
| 1397 | (struct wlsc_input_device *) device; |
| 1398 | struct wlsc_compositor *compositor = |
| 1399 | (struct wlsc_compositor *) device->compositor; |
| 1400 | struct wlsc_surface *es; |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1401 | uint32_t *k, *end; |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1402 | |
| 1403 | if (!wl_list_empty(&compositor->surface_list)) |
| 1404 | es = container_of(compositor->surface_list.next, |
| 1405 | struct wlsc_surface, link); |
| 1406 | else |
| 1407 | es = NULL; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1408 | |
| 1409 | if (output) { |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1410 | wl_array_copy(&wd->input_device.keys, keys); |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1411 | wd->modifier_state = 0; |
| 1412 | end = device->keys.data + device->keys.size; |
| 1413 | for (k = device->keys.data; k < end; k++) { |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 1414 | wlsc_compositor_idle_inhibit(compositor); |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1415 | update_modifier_state(wd, *k, 1); |
| 1416 | } |
| 1417 | |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1418 | wl_input_device_set_keyboard_focus(&wd->input_device, |
| 1419 | &es->surface, time); |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1420 | } else { |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 1421 | end = device->keys.data + device->keys.size; |
| 1422 | for (k = device->keys.data; k < end; k++) |
| 1423 | wlsc_compositor_idle_release(compositor); |
| 1424 | |
Kristian Høgsberg | f512d07 | 2011-04-12 17:16:00 -0400 | [diff] [blame] | 1425 | wd->modifier_state = 0; |
Kristian Høgsberg | f992b2f | 2011-01-28 15:53:07 -0500 | [diff] [blame] | 1426 | wl_input_device_set_keyboard_focus(&wd->input_device, |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 1427 | NULL, time); |
| 1428 | } |
| 1429 | } |
| 1430 | |
| 1431 | |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 1432 | static void |
Kristian Høgsberg | ab1862d | 2010-12-09 11:29:40 -0500 | [diff] [blame] | 1433 | input_device_attach(struct wl_client *client, |
| 1434 | struct wl_input_device *device_base, |
| 1435 | uint32_t time, |
| 1436 | struct wl_buffer *buffer, int32_t x, int32_t y) |
| 1437 | { |
| 1438 | struct wlsc_input_device *device = |
| 1439 | (struct wlsc_input_device *) device_base; |
| 1440 | |
| 1441 | if (time < device->input_device.pointer_focus_time) |
| 1442 | return; |
| 1443 | if (device->input_device.pointer_focus == NULL) |
| 1444 | return; |
Kristian Høgsberg | ab1862d | 2010-12-09 11:29:40 -0500 | [diff] [blame] | 1445 | if (device->input_device.pointer_focus->client != client) |
| 1446 | return; |
| 1447 | |
| 1448 | if (buffer == NULL) { |
| 1449 | wlsc_input_device_set_pointer_image(device, |
| 1450 | WLSC_POINTER_LEFT_PTR); |
| 1451 | return; |
| 1452 | } |
| 1453 | |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 1454 | wlsc_input_device_attach_buffer(device, buffer, x, y); |
Kristian Høgsberg | ab1862d | 2010-12-09 11:29:40 -0500 | [diff] [blame] | 1455 | } |
| 1456 | |
| 1457 | const static struct wl_input_device_interface input_device_interface = { |
| 1458 | input_device_attach, |
| 1459 | }; |
| 1460 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1461 | void |
| 1462 | wlsc_input_device_init(struct wlsc_input_device *device, |
| 1463 | struct wlsc_compositor *ec) |
Kristian Høgsberg | cddc0ad | 2008-11-24 00:31:49 -0500 | [diff] [blame] | 1464 | { |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1465 | wl_input_device_init(&device->input_device, &ec->compositor); |
Kristian Høgsberg | 02ef1c1 | 2010-12-06 21:35:19 -0500 | [diff] [blame] | 1466 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1467 | device->input_device.object.interface = &wl_input_device_interface; |
| 1468 | device->input_device.object.implementation = |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 1469 | (void (**)(void)) &input_device_interface; |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1470 | wl_display_add_object(ec->wl_display, &device->input_device.object); |
| 1471 | 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] | 1472 | |
Kristian Høgsberg | c5d6be9 | 2011-01-14 16:22:37 -0500 | [diff] [blame] | 1473 | device->sprite = wlsc_surface_create(ec, |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1474 | device->input_device.x, |
| 1475 | device->input_device.y, 32, 32); |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 1476 | device->hotspot_x = 16; |
| 1477 | device->hotspot_y = 16; |
Kristian Høgsberg | a8ec863 | 2011-04-12 17:22:49 -0400 | [diff] [blame] | 1478 | device->modifier_state = 0; |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 1479 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 1480 | device->input_device.motion_grab.interface = &motion_grab_interface; |
Kristian Høgsberg | 8321e69 | 2010-12-07 17:06:15 -0500 | [diff] [blame] | 1481 | |
Kristian Høgsberg | c492b48 | 2008-12-12 12:00:02 -0500 | [diff] [blame] | 1482 | wl_list_insert(ec->input_device_list.prev, &device->link); |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 1483 | |
| 1484 | wlsc_input_device_set_pointer_image(device, WLSC_POINTER_LEFT_PTR); |
Kristian Høgsberg | 5ee1a60 | 2008-12-11 23:18:45 -0500 | [diff] [blame] | 1485 | } |
| 1486 | |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1487 | static void |
Kristian Høgsberg | 91342c6 | 2011-04-14 14:44:58 -0400 | [diff] [blame] | 1488 | wlsc_output_post_geometry(struct wl_client *client, |
| 1489 | struct wl_object *global, uint32_t version) |
Kristian Høgsberg | bf9541f | 2008-11-25 12:10:09 -0500 | [diff] [blame] | 1490 | { |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1491 | struct wlsc_output *output = |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1492 | container_of(global, struct wlsc_output, object); |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1493 | |
| 1494 | wl_client_post_event(client, global, |
| 1495 | WL_OUTPUT_GEOMETRY, |
Kristian Høgsberg | f8fc08f | 2010-12-01 20:10:10 -0500 | [diff] [blame] | 1496 | output->x, output->y, |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1497 | output->width, output->height); |
| 1498 | } |
| 1499 | |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1500 | static const char vertex_shader[] = |
| 1501 | "uniform mat4 proj;\n" |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 1502 | "attribute vec2 position;\n" |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1503 | "attribute vec2 texcoord;\n" |
| 1504 | "varying vec2 v_texcoord;\n" |
| 1505 | "void main()\n" |
| 1506 | "{\n" |
Kristian Høgsberg | fa4e2a7 | 2011-02-13 13:44:55 -0500 | [diff] [blame] | 1507 | " gl_Position = proj * vec4(position, 0.0, 1.0);\n" |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1508 | " v_texcoord = texcoord;\n" |
| 1509 | "}\n"; |
| 1510 | |
| 1511 | static const char fragment_shader[] = |
Kristian Høgsberg | dfce71d | 2010-12-07 20:19:10 -0500 | [diff] [blame] | 1512 | "precision mediump float;\n" |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1513 | "varying vec2 v_texcoord;\n" |
| 1514 | "uniform sampler2D tex;\n" |
| 1515 | "void main()\n" |
| 1516 | "{\n" |
| 1517 | " gl_FragColor = texture2D(tex, v_texcoord)\n;" |
| 1518 | "}\n"; |
| 1519 | |
Kristian Høgsberg | a946821 | 2010-06-14 21:03:11 -0400 | [diff] [blame] | 1520 | static int |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1521 | init_shaders(struct wlsc_compositor *ec) |
| 1522 | { |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1523 | GLuint v, f, program; |
| 1524 | const char *p; |
| 1525 | char msg[512]; |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1526 | GLint status; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1527 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1528 | p = vertex_shader; |
| 1529 | v = glCreateShader(GL_VERTEX_SHADER); |
| 1530 | glShaderSource(v, 1, &p, NULL); |
| 1531 | glCompileShader(v); |
| 1532 | glGetShaderiv(v, GL_COMPILE_STATUS, &status); |
| 1533 | if (!status) { |
| 1534 | glGetShaderInfoLog(v, sizeof msg, NULL, msg); |
| 1535 | fprintf(stderr, "vertex shader info: %s\n", msg); |
| 1536 | return -1; |
| 1537 | } |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1538 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1539 | p = fragment_shader; |
| 1540 | f = glCreateShader(GL_FRAGMENT_SHADER); |
| 1541 | glShaderSource(f, 1, &p, NULL); |
| 1542 | glCompileShader(f); |
| 1543 | glGetShaderiv(f, GL_COMPILE_STATUS, &status); |
| 1544 | if (!status) { |
| 1545 | glGetShaderInfoLog(f, sizeof msg, NULL, msg); |
| 1546 | fprintf(stderr, "fragment shader info: %s\n", msg); |
| 1547 | return -1; |
| 1548 | } |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1549 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1550 | program = glCreateProgram(); |
| 1551 | glAttachShader(program, v); |
| 1552 | glAttachShader(program, f); |
| 1553 | glBindAttribLocation(program, 0, "position"); |
| 1554 | glBindAttribLocation(program, 1, "texcoord"); |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1555 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1556 | glLinkProgram(program); |
| 1557 | glGetProgramiv(program, GL_LINK_STATUS, &status); |
| 1558 | if (!status) { |
| 1559 | glGetProgramInfoLog(program, sizeof msg, NULL, msg); |
| 1560 | fprintf(stderr, "link info: %s\n", msg); |
| 1561 | return -1; |
| 1562 | } |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1563 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1564 | glUseProgram(program); |
| 1565 | ec->proj_uniform = glGetUniformLocation(program, "proj"); |
| 1566 | ec->tex_uniform = glGetUniformLocation(program, "tex"); |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1567 | |
Kristian Høgsberg | 67a21bd | 2010-06-25 18:58:24 -0400 | [diff] [blame] | 1568 | return 0; |
Kristian Høgsberg | 27803c6 | 2010-06-06 22:23:21 -0400 | [diff] [blame] | 1569 | } |
| 1570 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1571 | void |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1572 | wlsc_output_destroy(struct wlsc_output *output) |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 1573 | { |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1574 | destroy_surface(&output->background->surface.resource, NULL); |
| 1575 | } |
| 1576 | |
| 1577 | void |
| 1578 | wlsc_output_move(struct wlsc_output *output, int x, int y) |
| 1579 | { |
| 1580 | struct wlsc_compositor *c = output->compositor; |
Benjamin Franzke | 1b765ff | 2011-02-18 16:51:37 +0100 | [diff] [blame] | 1581 | int flip; |
| 1582 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1583 | output->x = x; |
| 1584 | output->y = y; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1585 | |
Benjamin Franzke | 264b3f9 | 2011-03-16 13:48:42 +0100 | [diff] [blame] | 1586 | if (output->background) { |
| 1587 | output->background->x = x; |
| 1588 | output->background->y = y; |
| 1589 | wlsc_surface_update_matrix(output->background); |
| 1590 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1591 | |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 1592 | pixman_region32_init(&output->previous_damage_region); |
| 1593 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1594 | wlsc_matrix_init(&output->matrix); |
| 1595 | wlsc_matrix_translate(&output->matrix, |
| 1596 | -output->x - output->width / 2.0, |
| 1597 | -output->y - output->height / 2.0, 0); |
Benjamin Franzke | 1b765ff | 2011-02-18 16:51:37 +0100 | [diff] [blame] | 1598 | |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1599 | flip = (output->flags & WL_OUTPUT_FLIPPED) ? -1 : 1; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1600 | wlsc_matrix_scale(&output->matrix, |
Benjamin Franzke | 1b765ff | 2011-02-18 16:51:37 +0100 | [diff] [blame] | 1601 | 2.0 / output->width, |
| 1602 | flip * 2.0 / output->height, 1); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1603 | |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1604 | pixman_region32_union_rect(&c->damage_region, |
| 1605 | &c->damage_region, |
| 1606 | x, y, output->width, output->height); |
| 1607 | } |
| 1608 | |
| 1609 | void |
| 1610 | wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c, |
| 1611 | int x, int y, int width, int height, uint32_t flags) |
| 1612 | { |
| 1613 | output->compositor = c; |
| 1614 | output->x = x; |
| 1615 | output->y = y; |
| 1616 | output->width = width; |
| 1617 | output->height = height; |
| 1618 | |
| 1619 | output->background = |
| 1620 | background_create(output, option_background); |
| 1621 | |
| 1622 | output->flags = flags; |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 1623 | output->finished = 1; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1624 | wlsc_output_move(output, x, y); |
| 1625 | |
Kristian Høgsberg | b313b02 | 2010-12-01 17:07:41 -0500 | [diff] [blame] | 1626 | output->object.interface = &wl_output_interface; |
| 1627 | wl_display_add_object(c->wl_display, &output->object); |
| 1628 | wl_display_add_global(c->wl_display, &output->object, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1629 | wlsc_output_post_geometry); |
| 1630 | } |
| 1631 | |
Benjamin Franzke | 315b3dc | 2011-03-08 11:32:57 +0100 | [diff] [blame] | 1632 | static void |
| 1633 | shm_buffer_created(struct wl_buffer *buffer) |
| 1634 | { |
| 1635 | struct wl_list *surfaces_attached_to; |
| 1636 | |
| 1637 | surfaces_attached_to = malloc(sizeof *surfaces_attached_to); |
| 1638 | if (!surfaces_attached_to) { |
| 1639 | buffer->user_data = NULL; |
| 1640 | return; |
| 1641 | } |
| 1642 | |
| 1643 | wl_list_init(surfaces_attached_to); |
| 1644 | |
| 1645 | buffer->user_data = surfaces_attached_to; |
| 1646 | } |
| 1647 | |
| 1648 | static void |
| 1649 | shm_buffer_damaged(struct wl_buffer *buffer, |
| 1650 | int32_t x, int32_t y, int32_t width, int32_t height) |
| 1651 | { |
| 1652 | struct wl_list *surfaces_attached_to = buffer->user_data; |
| 1653 | struct wlsc_surface *es; |
| 1654 | |
| 1655 | wl_list_for_each(es, surfaces_attached_to, buffer_link) { |
| 1656 | glBindTexture(GL_TEXTURE_2D, es->texture); |
| 1657 | glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT, |
| 1658 | buffer->width, buffer->height, 0, |
| 1659 | GL_BGRA_EXT, GL_UNSIGNED_BYTE, |
| 1660 | wl_shm_buffer_get_data(buffer)); |
| 1661 | /* Hmm, should use glTexSubImage2D() here but GLES2 doesn't |
| 1662 | * support any unpack attributes except GL_UNPACK_ALIGNMENT. */ |
| 1663 | } |
| 1664 | } |
| 1665 | |
| 1666 | static void |
| 1667 | shm_buffer_destroyed(struct wl_buffer *buffer) |
| 1668 | { |
| 1669 | struct wl_list *surfaces_attached_to = buffer->user_data; |
| 1670 | struct wlsc_surface *es, *next; |
| 1671 | |
| 1672 | wl_list_for_each_safe(es, next, surfaces_attached_to, buffer_link) { |
| 1673 | es->buffer = NULL; |
| 1674 | wl_list_remove(&es->buffer_link); |
| 1675 | } |
| 1676 | |
| 1677 | free(surfaces_attached_to); |
| 1678 | } |
| 1679 | |
| 1680 | const static struct wl_shm_callbacks shm_callbacks = { |
| 1681 | shm_buffer_created, |
| 1682 | shm_buffer_damaged, |
| 1683 | shm_buffer_destroyed |
| 1684 | }; |
| 1685 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1686 | int |
| 1687 | wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display) |
| 1688 | { |
Kristian Høgsberg | fbdbbdc | 2008-11-28 17:06:06 -0500 | [diff] [blame] | 1689 | struct wl_event_loop *loop; |
Kristian Høgsberg | d711d0c | 2011-01-14 17:28:21 -0500 | [diff] [blame] | 1690 | const char *extensions; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 1691 | |
Kristian Høgsberg | f921289 | 2008-10-11 18:40:23 -0400 | [diff] [blame] | 1692 | ec->wl_display = display; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 1693 | |
Kristian Høgsberg | c5c510e | 2010-12-08 15:12:58 -0500 | [diff] [blame] | 1694 | wl_compositor_init(&ec->compositor, &compositor_interface, display); |
Kristian Høgsberg | ee02ca6 | 2008-12-21 23:37:12 -0500 | [diff] [blame] | 1695 | |
Benjamin Franzke | 315b3dc | 2011-03-08 11:32:57 +0100 | [diff] [blame] | 1696 | ec->shm = wl_shm_init(display, &shm_callbacks); |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 1697 | eglBindWaylandDisplayWL(ec->display, ec->wl_display); |
Kristian Høgsberg | 3d5bae0 | 2010-10-06 21:17:40 -0400 | [diff] [blame] | 1698 | |
Kristian Høgsberg | 201a904 | 2008-12-10 00:40:50 -0500 | [diff] [blame] | 1699 | wl_list_init(&ec->surface_list); |
Kristian Høgsberg | 81ce09a | 2008-12-31 16:18:42 -0500 | [diff] [blame] | 1700 | wl_list_init(&ec->input_device_list); |
| 1701 | wl_list_init(&ec->output_list); |
Kristian Høgsberg | 3555d09 | 2011-04-11 13:58:13 -0400 | [diff] [blame] | 1702 | wl_list_init(&ec->binding_list); |
| 1703 | |
Kristian Høgsberg | 0793756 | 2011-04-12 17:25:42 -0400 | [diff] [blame] | 1704 | wlsc_shell_init(ec); |
Kristian Høgsberg | 30021d7 | 2011-04-12 17:42:30 -0400 | [diff] [blame] | 1705 | wlsc_switcher_init(ec); |
Kristian Høgsberg | 0793756 | 2011-04-12 17:25:42 -0400 | [diff] [blame] | 1706 | |
Kristian Høgsberg | a8ec863 | 2011-04-12 17:22:49 -0400 | [diff] [blame] | 1707 | wlsc_compositor_add_binding(ec, KEY_BACKSPACE, 0, |
Kristian Høgsberg | 3555d09 | 2011-04-11 13:58:13 -0400 | [diff] [blame] | 1708 | MODIFIER_CTRL | MODIFIER_ALT, |
| 1709 | terminate_binding, ec); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1710 | |
Kristian Høgsberg | 1db21f1 | 2010-08-16 16:08:12 -0400 | [diff] [blame] | 1711 | create_pointer_images(ec); |
| 1712 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1713 | screenshooter_create(ec); |
| 1714 | |
Kristian Høgsberg | d711d0c | 2011-01-14 17:28:21 -0500 | [diff] [blame] | 1715 | extensions = (const char *) glGetString(GL_EXTENSIONS); |
| 1716 | if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) { |
| 1717 | fprintf(stderr, |
| 1718 | "GL_EXT_texture_format_BGRA8888 not available\n"); |
| 1719 | return -1; |
| 1720 | } |
| 1721 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1722 | glActiveTexture(GL_TEXTURE0); |
Kristian Høgsberg | a946821 | 2010-06-14 21:03:11 -0400 | [diff] [blame] | 1723 | if (init_shaders(ec) < 0) |
| 1724 | return -1; |
Kristian Høgsberg | 8d7ca6b | 2008-11-09 00:22:51 -0500 | [diff] [blame] | 1725 | |
Kristian Høgsberg | fbdbbdc | 2008-11-28 17:06:06 -0500 | [diff] [blame] | 1726 | loop = wl_display_get_event_loop(ec->wl_display); |
Kristian Høgsberg | e10a5d9 | 2011-04-22 14:01:18 -0400 | [diff] [blame^] | 1727 | ec->idle_source = wl_event_loop_add_timer(loop, idle_handler, ec); |
| 1728 | wl_event_source_timer_update(ec->idle_source, option_idle_time * 1000); |
| 1729 | |
Kristian Høgsberg | 4a29890 | 2008-11-28 18:35:25 -0500 | [diff] [blame] | 1730 | ec->timer_source = wl_event_loop_add_timer(loop, repaint, ec); |
Kristian Høgsberg | 31bd6c7 | 2011-02-13 13:00:51 -0500 | [diff] [blame] | 1731 | pixman_region32_init(&ec->damage_region); |
Kristian Høgsberg | 8da19ac | 2009-03-17 16:12:51 -0400 | [diff] [blame] | 1732 | wlsc_compositor_schedule_repaint(ec); |
Kristian Høgsberg | ef7a9ca | 2008-10-11 21:21:39 -0400 | [diff] [blame] | 1733 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1734 | return 0; |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1735 | } |
| 1736 | |
Kristian Høgsberg | b186847 | 2011-04-22 12:27:57 -0400 | [diff] [blame] | 1737 | static int on_term_signal(int signal_number, void *data) |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 1738 | { |
| 1739 | struct wlsc_compositor *ec = data; |
| 1740 | |
| 1741 | wl_display_terminate(ec->wl_display); |
Kristian Høgsberg | b186847 | 2011-04-22 12:27:57 -0400 | [diff] [blame] | 1742 | |
| 1743 | return 1; |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 1744 | } |
| 1745 | |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1746 | int main(int argc, char *argv[]) |
| 1747 | { |
| 1748 | struct wl_display *display; |
Kristian Høgsberg | 8e43862 | 2009-01-26 23:07:00 -0500 | [diff] [blame] | 1749 | struct wlsc_compositor *ec; |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 1750 | struct wl_event_loop *loop; |
Kristian Høgsberg | d653126 | 2008-12-12 11:06:18 -0500 | [diff] [blame] | 1751 | GError *error = NULL; |
| 1752 | GOptionContext *context; |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1753 | int width, height; |
Kristian Høgsberg | d653126 | 2008-12-12 11:06:18 -0500 | [diff] [blame] | 1754 | |
Kristian Høgsberg | 77fb167 | 2010-08-16 10:38:29 -0400 | [diff] [blame] | 1755 | g_type_init(); /* GdkPixbuf needs this, it seems. */ |
| 1756 | |
Kristian Høgsberg | d653126 | 2008-12-12 11:06:18 -0500 | [diff] [blame] | 1757 | context = g_option_context_new(NULL); |
| 1758 | g_option_context_add_main_entries(context, option_entries, "Wayland"); |
| 1759 | if (!g_option_context_parse(context, &argc, &argv, &error)) { |
| 1760 | fprintf(stderr, "option parsing failed: %s\n", error->message); |
| 1761 | exit(EXIT_FAILURE); |
| 1762 | } |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1763 | if (sscanf(option_geometry, "%dx%d", &width, &height) != 2) { |
| 1764 | fprintf(stderr, "invalid geometry option: %s \n", |
| 1765 | option_geometry); |
| 1766 | exit(EXIT_FAILURE); |
| 1767 | } |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1768 | |
| 1769 | display = wl_display_create(); |
| 1770 | |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 1771 | ec = NULL; |
| 1772 | |
| 1773 | #if BUILD_WAYLAND_COMPOSITOR |
Benjamin Franzke | ec2e642 | 2010-11-27 19:04:12 +0100 | [diff] [blame] | 1774 | if (getenv("WAYLAND_DISPLAY")) |
| 1775 | ec = wayland_compositor_create(display, width, height); |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 1776 | #endif |
| 1777 | |
| 1778 | #if BUILD_X11_COMPOSITOR |
| 1779 | if (ec == NULL && getenv("DISPLAY")) |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1780 | ec = x11_compositor_create(display, width, height); |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 1781 | #endif |
| 1782 | |
Benjamin Franzke | 5d00709 | 2011-04-04 00:30:25 +0200 | [diff] [blame] | 1783 | #if BUILD_OPENWFD_COMPOSITOR |
| 1784 | if (ec == NULL && getenv("OPENWFD")) |
| 1785 | ec = wfd_compositor_create(display, option_connector); |
| 1786 | #endif |
| 1787 | |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 1788 | #if BUILD_DRM_COMPOSITOR |
| 1789 | if (ec == NULL) |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1790 | ec = drm_compositor_create(display, option_connector); |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 1791 | #endif |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1792 | |
Kristian Høgsberg | 841883b | 2008-12-05 11:19:56 -0500 | [diff] [blame] | 1793 | if (ec == NULL) { |
| 1794 | fprintf(stderr, "failed to create compositor\n"); |
| 1795 | exit(EXIT_FAILURE); |
| 1796 | } |
Kristian Høgsberg | 61a8251 | 2010-10-26 11:26:44 -0400 | [diff] [blame] | 1797 | |
Kristian Høgsberg | 2bb3ebe | 2010-12-01 15:36:20 -0500 | [diff] [blame] | 1798 | if (wl_display_add_socket(display, option_socket_name)) { |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1799 | fprintf(stderr, "failed to add socket: %m\n"); |
| 1800 | exit(EXIT_FAILURE); |
| 1801 | } |
| 1802 | |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 1803 | loop = wl_display_get_event_loop(ec->wl_display); |
| 1804 | wl_event_loop_add_signal(loop, SIGTERM, on_term_signal, ec); |
| 1805 | wl_event_loop_add_signal(loop, SIGINT, on_term_signal, ec); |
| 1806 | |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1807 | wl_display_run(display); |
| 1808 | |
Benjamin Franzke | faa0a9d | 2011-02-21 16:24:53 +0100 | [diff] [blame] | 1809 | eglUnbindWaylandDisplayWL(ec->display, display); |
Kristian Høgsberg | 2bb3ebe | 2010-12-01 15:36:20 -0500 | [diff] [blame] | 1810 | wl_display_destroy(display); |
| 1811 | |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 1812 | ec->destroy(ec); |
| 1813 | |
Kristian Høgsberg | 122912c | 2008-12-05 11:13:50 -0500 | [diff] [blame] | 1814 | return 0; |
Kristian Høgsberg | 16eb675 | 2008-10-08 22:51:32 -0400 | [diff] [blame] | 1815 | } |