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