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