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