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