blob: f016d93555defb6b5d14ffc9c009b5bf1af7f113 [file] [log] [blame]
Kristian Høgsbergffd710e2008-12-02 15:15:01 -05001/*
2 * Copyright © 2008 Kristian Høgsberg
3 *
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -05004 * 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øgsbergffd710e2008-12-02 15:15:01 -05008 *
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -05009 * 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øgsbergffd710e2008-12-02 15:15:01 -050017 */
18
Kristian Høgsberg06bc2642010-12-01 09:50:16 -050019#define _GNU_SOURCE
20
Kristian Høgsberga9410222011-01-14 17:22:35 -050021#include "config.h"
22
Kristian Høgsberg16eb6752008-10-08 22:51:32 -040023#include <stdio.h>
24#include <string.h>
25#include <stdlib.h>
26#include <stdint.h>
Kristian Høgsberg8d7ca6b2008-11-09 00:22:51 -050027#include <stdarg.h>
Kristian Høgsberg16eb6752008-10-08 22:51:32 -040028#include <sys/ioctl.h>
Kristian Høgsberg16eb6752008-10-08 22:51:32 -040029#include <fcntl.h>
30#include <unistd.h>
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -050031#include <gdk-pixbuf/gdk-pixbuf.h>
Kristian Høgsberg54879822008-11-23 17:07:32 -050032#include <math.h>
Kristian Høgsbergfc783d42010-06-11 12:56:24 -040033#include <linux/input.h>
Kristian Høgsberg890bc052008-12-30 14:31:33 -050034
Kristian Høgsberg4cca3492011-01-18 07:53:49 -050035#include "wayland-server.h"
Kristian Høgsberg82863022010-06-04 21:52:02 -040036#include "compositor.h"
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -050037
Benjamin Franzkeec2e6422010-11-27 19:04:12 +010038/* The plan here is to generate a random anonymous socket name and
39 * advertise that through a service on the session dbus.
40 */
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -050041static const char *option_socket_name = NULL;
Kristian Høgsberg61a82512010-10-26 11:26:44 -040042static const char *option_background = "background.jpg";
43static const char *option_geometry = "1024x640";
44static int option_connector = 0;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050045
46static const GOptionEntry option_entries[] = {
47 { "background", 'b', 0, G_OPTION_ARG_STRING,
48 &option_background, "Background image" },
Kristian Høgsbergf5878fa2009-09-18 17:02:41 -040049 { "connector", 'c', 0, G_OPTION_ARG_INT,
50 &option_connector, "KMS connector" },
Kristian Høgsberg61a82512010-10-26 11:26:44 -040051 { "geometry", 'g', 0, G_OPTION_ARG_STRING,
52 &option_geometry, "Geometry" },
Benjamin Franzkeec2e6422010-11-27 19:04:12 +010053 { "socket", 's', 0, G_OPTION_ARG_STRING,
54 &option_socket_name, "Socket Name" },
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -050055 { NULL }
56};
57
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050058static void
59wlsc_matrix_init(struct wlsc_matrix *matrix)
60{
61 static const struct wlsc_matrix identity = {
62 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 }
63 };
64
65 memcpy(matrix, &identity, sizeof identity);
66}
67
68static void
69wlsc_matrix_multiply(struct wlsc_matrix *m, const struct wlsc_matrix *n)
70{
71 struct wlsc_matrix tmp;
Kristian Høgsberg27803c62010-06-06 22:23:21 -040072 const GLfloat *row, *column;
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050073 div_t d;
74 int i, j;
75
76 for (i = 0; i < 16; i++) {
77 tmp.d[i] = 0;
78 d = div(i, 4);
79 row = m->d + d.quot * 4;
80 column = n->d + d.rem;
81 for (j = 0; j < 4; j++)
82 tmp.d[i] += row[j] * column[j * 4];
83 }
84 memcpy(m, &tmp, sizeof tmp);
85}
86
87static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -040088wlsc_matrix_translate(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050089{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -050090 struct wlsc_matrix translate = {
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050091 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, x, y, z, 1 }
92 };
93
94 wlsc_matrix_multiply(matrix, &translate);
95}
96
97static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -040098wlsc_matrix_scale(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -050099{
100 struct wlsc_matrix scale = {
101 { x, 0, 0, 0, 0, y, 0, 0, 0, 0, z, 0, 0, 0, 0, 1 }
102 };
103
104 wlsc_matrix_multiply(matrix, &scale);
105}
106
107static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400108wlsc_matrix_transform(struct wlsc_matrix *matrix, struct wlsc_vector *v)
109{
110 int i, j;
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400111 struct wlsc_vector t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400112
113 for (i = 0; i < 4; i++) {
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400114 t.f[i] = 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400115 for (j = 0; j < 4; j++)
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400116 t.f[i] += v->f[j] * matrix->d[i + j * 4];
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400117 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500118
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400119 *v = t;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400120}
121
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400122static struct wlsc_surface *
123wlsc_surface_create(struct wlsc_compositor *compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400124 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500125{
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400126 struct wlsc_surface *surface;
127
128 surface = malloc(sizeof *surface);
129 if (surface == NULL)
130 return NULL;
131
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500132 wl_list_init(&surface->surface.destroy_listener_list);
Kristian Høgsbergf6b14712011-01-06 15:32:14 -0500133 wl_list_init(&surface->link);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500134 surface->map_type = WLSC_SURFACE_MAP_UNMAPPED;
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500135
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500136 glGenTextures(1, &surface->texture);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400137 glBindTexture(GL_TEXTURE_2D, surface->texture);
138 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
139 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
140 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
141 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
142
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500143 surface->compositor = compositor;
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500144 surface->visual = NULL;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400145 surface->x = x;
146 surface->y = y;
147 surface->width = width;
148 surface->height = height;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400149 wlsc_matrix_init(&surface->matrix);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400150 wlsc_matrix_scale(&surface->matrix, width, height, 1);
151 wlsc_matrix_translate(&surface->matrix, x, y, 0);
152
153 wlsc_matrix_init(&surface->matrix_inv);
154 wlsc_matrix_translate(&surface->matrix_inv, -x, -y, 0);
155 wlsc_matrix_scale(&surface->matrix_inv, 1.0 / width, 1.0 / height, 1);
Kristian Høgsberg1e4b86a2008-11-23 23:41:08 -0500156
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400157 return surface;
Kristian Høgsberg54879822008-11-23 17:07:32 -0500158}
159
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500160uint32_t
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500161get_time(void)
162{
163 struct timeval tv;
164
165 gettimeofday(&tv, NULL);
166
167 return tv.tv_sec * 1000 + tv.tv_usec / 1000;
168}
169
Kristian Høgsberg54879822008-11-23 17:07:32 -0500170static void
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400171destroy_surface(struct wl_resource *resource, struct wl_client *client)
Kristian Høgsberg54879822008-11-23 17:07:32 -0500172{
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400173 struct wlsc_surface *surface =
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500174 container_of(resource, struct wlsc_surface, surface.resource);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400175 struct wlsc_compositor *compositor = surface->compositor;
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500176 struct wl_listener *l, *next;
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500177 uint32_t time;
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400178
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400179 wl_list_remove(&surface->link);
180 glDeleteTextures(1, &surface->texture);
Kristian Høgsberg3f8f39c2009-09-18 17:05:13 -0400181
Kristian Høgsberg7132a9a2010-12-06 21:41:10 -0500182 time = get_time();
Kristian Høgsbergc551bd22010-12-06 16:43:16 -0500183 wl_list_for_each_safe(l, next,
184 &surface->surface.destroy_listener_list, link)
Kristian Høgsberg4685fa32010-12-06 21:38:50 -0500185 l->func(l, &surface->surface, time);
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400186
Kristian Høgsberg4fa48732009-03-10 23:17:00 -0400187 free(surface);
Kristian Høgsberg117d5132010-08-11 08:56:47 -0400188
189 wlsc_compositor_schedule_repaint(compositor);
Kristian Høgsberg54879822008-11-23 17:07:32 -0500190}
191
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500192uint32_t *
193wlsc_load_image(const char *filename, int width, int height)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500194{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400195 GdkPixbuf *pixbuf;
196 GError *error = NULL;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500197 int stride, i, n_channels;
198 unsigned char *pixels, *end, *argb_pixels, *s, *d;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500199
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400200 pixbuf = gdk_pixbuf_new_from_file_at_scale(filename,
201 width, height,
202 FALSE, &error);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500203 if (error != NULL) {
204 fprintf(stderr, "failed to load image: %s\n", error->message);
205 g_error_free(error);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500206 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500207 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400208
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500209 stride = gdk_pixbuf_get_rowstride(pixbuf);
210 pixels = gdk_pixbuf_get_pixels(pixbuf);
211 n_channels = gdk_pixbuf_get_n_channels(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400212
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500213 argb_pixels = malloc (height * width * 4);
214 if (argb_pixels == NULL) {
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500215 g_object_unref(pixbuf);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500216 return NULL;
217 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400218
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500219 if (n_channels == 4) {
220 for (i = 0; i < height; i++) {
221 s = pixels + i * stride;
222 end = s + width * 4;
223 d = argb_pixels + i * width * 4;
224 while (s < end) {
225 unsigned int t;
226
227#define MULT(_d,c,a,t) \
228 do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0)
229
230 MULT(d[0], s[2], s[3], t);
231 MULT(d[1], s[1], s[3], t);
232 MULT(d[2], s[0], s[3], t);
233 d[3] = s[3];
234 s += 4;
235 d += 4;
236 }
237 }
238 } else if (n_channels == 3) {
239 for (i = 0; i < height; i++) {
240 s = pixels + i * stride;
241 end = s + width * 3;
242 d = argb_pixels + i * width * 4;
243 while (s < end) {
244 d[0] = s[2];
245 d[1] = s[1];
246 d[2] = s[0];
247 d[3] = 0xff;
248 s += 3;
249 d += 4;
250 }
251 }
252 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400253
Darxus@chaosreigns.comc4df99c2011-01-25 15:00:56 -0500254 g_object_unref(pixbuf);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400255
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500256 return (uint32_t *) argb_pixels;
257}
258
259static struct wl_buffer *
260create_buffer_from_png(struct wlsc_compositor *ec,
261 const char *filename, int width, int height)
262{
263 uint32_t *pixels;
264 struct wl_buffer *buffer;
265
266 pixels = wlsc_load_image(filename, width, height);
Tim Wiederhakeac5c5e72011-01-27 01:32:36 +0100267 if(pixels == NULL)
268 return NULL;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500269
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500270 buffer = ec->create_buffer(ec, width, height,
271 &ec->compositor.premultiplied_argb_visual,
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500272 pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500273
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500274 free(pixels);
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500275
276 return buffer;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500277}
278
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400279static const struct {
280 const char *filename;
281 int hotspot_x, hotspot_y;
282} pointer_images[] = {
Kristian Høgsberg4219a402010-08-16 16:43:03 -0400283 { DATADIR "/wayland/bottom_left_corner.png", 6, 30 },
284 { DATADIR "/wayland/bottom_right_corner.png", 28, 28 },
285 { DATADIR "/wayland/bottom_side.png", 16, 20 },
286 { DATADIR "/wayland/grabbing.png", 20, 17 },
287 { DATADIR "/wayland/left_ptr.png", 10, 5 },
288 { DATADIR "/wayland/left_side.png", 10, 20 },
289 { DATADIR "/wayland/right_side.png", 30, 19 },
290 { DATADIR "/wayland/top_left_corner.png", 8, 8 },
291 { DATADIR "/wayland/top_right_corner.png", 26, 8 },
292 { DATADIR "/wayland/top_side.png", 18, 8 },
293 { DATADIR "/wayland/xterm.png", 15, 15 }
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400294};
295
296static void
297create_pointer_images(struct wlsc_compositor *ec)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500298{
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400299 int i, count;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400300 const int width = 32, height = 32;
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400301
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400302 count = ARRAY_LENGTH(pointer_images);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400303 ec->pointer_buffers = malloc(count * sizeof *ec->pointer_buffers);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400304 for (i = 0; i < count; i++) {
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400305 ec->pointer_buffers[i] =
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500306 create_buffer_from_png(ec,
307 pointer_images[i].filename,
308 width, height);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400309 }
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400310}
311
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500312static struct wlsc_surface *
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500313background_create(struct wlsc_output *output, const char *filename)
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500314{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500315 struct wlsc_surface *background;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500316 struct wl_buffer *buffer;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500317
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400318 background = wlsc_surface_create(output->compositor,
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400319 output->x, output->y,
320 output->width, output->height);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500321 if (background == NULL)
322 return NULL;
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500323
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500324 buffer = create_buffer_from_png(output->compositor,
325 filename,
326 output->width, output->height);
Benjamin Franzked3b023e2011-01-15 12:34:49 +0100327 if (buffer == NULL) {
328 free(background);
329 return NULL;
330 }
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500331 buffer->attach(buffer, &background->surface);
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500332
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500333 return background;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500334}
335
336static void
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400337wlsc_surface_draw(struct wlsc_surface *es, struct wlsc_output *output)
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500338{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500339 struct wlsc_compositor *ec = es->compositor;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400340 struct wlsc_matrix tmp;
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500341
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400342 tmp = es->matrix;
343 wlsc_matrix_multiply(&tmp, &output->matrix);
344 glUniformMatrix4fv(ec->proj_uniform, 1, GL_FALSE, tmp.d);
345 glUniform1i(ec->tex_uniform, 0);
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500346
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500347 if (es->visual == &ec->compositor.argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500348 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
349 glEnable(GL_BLEND);
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -0500350 } else if (es->visual == &ec->compositor.premultiplied_argb_visual) {
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500351 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
352 glEnable(GL_BLEND);
353 } else {
354 glDisable(GL_BLEND);
355 }
356
Kristian Høgsbergaa5b5be2008-11-21 21:31:54 -0500357 glBindTexture(GL_TEXTURE_2D, es->texture);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400358 glBindBuffer(GL_ARRAY_BUFFER, ec->vbo);
359 glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE,
360 5 * sizeof(GLfloat), NULL);
361 glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE,
362 5 * sizeof(GLfloat), (GLfloat *) 0 + 3);
363 glEnableVertexAttribArray(0);
364 glEnableVertexAttribArray(1);
365 glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
Kristian Høgsberg4c9f2c92008-11-21 19:25:44 -0500366}
367
368static void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400369wlsc_surface_raise(struct wlsc_surface *surface)
370{
371 struct wlsc_compositor *compositor = surface->compositor;
372
373 wl_list_remove(&surface->link);
Kristian Høgsberg747638b2010-07-12 17:06:06 -0400374 wl_list_insert(&compositor->surface_list, &surface->link);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400375}
376
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500377void
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400378wlsc_surface_update_matrix(struct wlsc_surface *es)
379{
380 wlsc_matrix_init(&es->matrix);
381 wlsc_matrix_scale(&es->matrix, es->width, es->height, 1);
382 wlsc_matrix_translate(&es->matrix, es->x, es->y, 0);
383
384 wlsc_matrix_init(&es->matrix_inv);
385 wlsc_matrix_translate(&es->matrix_inv, -es->x, -es->y, 0);
386 wlsc_matrix_scale(&es->matrix_inv,
387 1.0 / es->width, 1.0 / es->height, 1);
388}
389
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400390void
391wlsc_compositor_finish_frame(struct wlsc_compositor *compositor, int msecs)
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400392{
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400393 wl_display_post_frame(compositor->wl_display, msecs);
Kristian Høgsberg5d312db2009-09-12 16:57:02 -0400394 wl_event_source_timer_update(compositor->timer_source, 5);
Kristian Høgsbergf30c67e2011-02-06 12:58:44 -0500395 compositor->repaint_on_timeout = 1;
Kristian Høgsberg01f941b2009-05-27 17:47:15 -0400396}
397
398static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400399wlsc_output_repaint(struct wlsc_output *output)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400400{
Kristian Høgsberg1a208d52009-02-10 14:20:26 -0500401 struct wlsc_compositor *ec = output->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500402 struct wlsc_surface *es;
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -0500403 struct wlsc_input_device *eid;
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500404
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500405 glViewport(0, 0, output->width, output->height);
Kristian Høgsbergfdec2362001-01-01 22:23:51 -0500406
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500407 es = container_of(ec->surface_list.next, struct wlsc_surface, link);
408 if (es->map_type == WLSC_SURFACE_MAP_FULLSCREEN &&
409 es->fullscreen_output == output) {
410 if (es->width < output->width || es->height < output->height)
411 glClear(GL_COLOR_BUFFER_BIT);
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400412 wlsc_surface_draw(es, output);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500413 } else {
414 if (output->background)
415 wlsc_surface_draw(output->background, output);
416 else
417 glClear(GL_COLOR_BUFFER_BIT);
418
419 wl_list_for_each_reverse(es, &ec->surface_list, link)
420 wlsc_surface_draw(es, output);
421 }
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400422
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400423 if (ec->focus)
424 wl_list_for_each(eid, &ec->input_device_list, link)
425 wlsc_surface_draw(eid->sprite, output);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500426}
427
428static void
429repaint(void *data)
430{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500431 struct wlsc_compositor *ec = data;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500432 struct wlsc_output *output;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500433
434 if (!ec->repaint_needed) {
435 ec->repaint_on_timeout = 0;
436 return;
437 }
438
Kristian Høgsberga5db5892010-02-26 10:28:44 -0500439 wl_list_for_each(output, &ec->output_list, link)
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400440 wlsc_output_repaint(output);
441
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400442 ec->present(ec);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500443
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500444 ec->repaint_needed = 0;
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400445}
446
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400447void
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400448wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor)
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400449{
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400450 compositor->repaint_needed = 1;
Kristian Høgsbergb0a167c2009-08-14 11:15:18 -0400451 if (compositor->repaint_on_timeout)
452 return;
453
Kristian Høgsbergfc783d42010-06-11 12:56:24 -0400454 wl_event_source_timer_update(compositor->timer_source, 1);
455 compositor->repaint_on_timeout = 1;
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -0400456}
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500457
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500458static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500459surface_destroy(struct wl_client *client,
460 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400461{
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500462 wl_resource_destroy(&surface->resource, client);
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400463}
464
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500465static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500466surface_attach(struct wl_client *client,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500467 struct wl_surface *surface, struct wl_buffer *buffer,
468 int32_t x, int32_t y)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400469{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500470 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400471
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400472 buffer->attach(buffer, surface);
473 es->buffer = buffer;
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500474 es->x += x;
475 es->y += y;
476 es->width = buffer->width;
477 es->height = buffer->height;
478 wlsc_surface_update_matrix(es);
Kristian Høgsbergf9212892008-10-11 18:40:23 -0400479}
480
Kristian Høgsberg5503bf82008-11-06 10:38:17 -0500481static void
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500482surface_map_toplevel(struct wl_client *client,
483 struct wl_surface *surface)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400484{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500485 struct wlsc_surface *es = (struct wlsc_surface *) surface;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400486
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500487 switch (es->map_type) {
488 case WLSC_SURFACE_MAP_UNMAPPED:
489 es->x = 10 + random() % 400;
490 es->y = 10 + random() % 400;
491 wlsc_surface_update_matrix(es);
492 wl_list_insert(&es->compositor->surface_list, &es->link);
493 break;
494 case WLSC_SURFACE_MAP_TOPLEVEL:
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500495 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500496 case WLSC_SURFACE_MAP_FULLSCREEN:
497 es->fullscreen_output = NULL;
498 es->x = es->saved_x;
499 es->y = es->saved_y;
500 wlsc_surface_update_matrix(es);
501 break;
502 default:
503 break;
504 }
Kristian Høgsberg8f66a572011-01-07 08:38:56 -0500505
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400506 wlsc_compositor_schedule_repaint(es->compositor);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500507 es->map_type = WLSC_SURFACE_MAP_TOPLEVEL;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -0400508}
509
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500510static void
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500511surface_map_transient(struct wl_client *client,
512 struct wl_surface *surface, struct wl_surface *parent,
513 int x, int y, uint32_t flags)
514{
515 struct wlsc_surface *es = (struct wlsc_surface *) surface;
516 struct wlsc_surface *pes = (struct wlsc_surface *) parent;
517
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500518 switch (es->map_type) {
519 case WLSC_SURFACE_MAP_UNMAPPED:
520 wl_list_insert(&es->compositor->surface_list, &es->link);
521 break;
522 case WLSC_SURFACE_MAP_FULLSCREEN:
523 es->fullscreen_output = NULL;
524 break;
525 default:
526 break;
527 }
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500528
529 es->x = pes->x + x;
530 es->y = pes->y + y;
531
532 wlsc_surface_update_matrix(es);
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500533 wlsc_compositor_schedule_repaint(es->compositor);
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500534 es->map_type = WLSC_SURFACE_MAP_TRANSIENT;
535}
536
537static void
538surface_map_fullscreen(struct wl_client *client, struct wl_surface *surface)
539{
540 struct wlsc_surface *es = (struct wlsc_surface *) surface;
541 struct wlsc_output *output;
542
543 switch (es->map_type) {
544 case WLSC_SURFACE_MAP_UNMAPPED:
545 es->x = 10 + random() % 400;
546 es->y = 10 + random() % 400;
547 wl_list_insert(&es->compositor->surface_list, &es->link);
548 break;
549 case WLSC_SURFACE_MAP_FULLSCREEN:
550 return;
551 default:
552 break;
553 }
554
555 /* FIXME: Fullscreen on first output */
556 /* FIXME: Handle output going away */
557 output = container_of(es->compositor->output_list.next,
558 struct wlsc_output, link);
559
560 es->saved_x = es->x;
561 es->saved_y = es->y;
562 es->x = (output->width - es->width) / 2;
563 es->y = (output->height - es->height) / 2;
564 es->fullscreen_output = output;
565 wlsc_surface_update_matrix(es);
566 wlsc_compositor_schedule_repaint(es->compositor);
567 es->map_type = WLSC_SURFACE_MAP_FULLSCREEN;
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500568}
569
570static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500571surface_damage(struct wl_client *client,
572 struct wl_surface *surface,
573 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberg7f77bd82008-11-07 08:39:37 -0500574{
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400575 struct wlsc_surface *es = (struct wlsc_surface *) surface;
576
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400577 es->buffer->damage(es->buffer, surface, x, y, width, height);
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400578 wlsc_compositor_schedule_repaint(es->compositor);
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -0500579}
580
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500581const static struct wl_surface_interface surface_interface = {
582 surface_destroy,
583 surface_attach,
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500584 surface_map_toplevel,
Kristian Høgsberg8dc378f2011-01-21 18:02:24 -0500585 surface_map_transient,
Kristian Høgsberg0ce24572011-01-28 15:18:33 -0500586 surface_map_fullscreen,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500587 surface_damage
588};
589
590static void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400591wlsc_input_device_attach(struct wlsc_input_device *device,
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -0400592 struct wl_buffer *buffer, int x, int y)
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400593{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500594 struct wlsc_compositor *ec =
595 (struct wlsc_compositor *) device->input_device.compositor;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400596
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500597 buffer->attach(buffer, &device->sprite->surface);
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400598 device->hotspot_x = x;
599 device->hotspot_y = y;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400600
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500601 device->sprite->x = device->input_device.x - device->hotspot_x;
602 device->sprite->y = device->input_device.y - device->hotspot_y;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400603 device->sprite->width = buffer->width;
604 device->sprite->height = buffer->height;
Kristian Høgsberg1db21f12010-08-16 16:08:12 -0400605 wlsc_surface_update_matrix(device->sprite);
606
607 wlsc_compositor_schedule_repaint(ec);
608}
609
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400610
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500611void
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400612wlsc_input_device_set_pointer_image(struct wlsc_input_device *device,
613 enum wlsc_pointer_type type)
614{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500615 struct wlsc_compositor *compositor =
616 (struct wlsc_compositor *) device->input_device.compositor;
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400617
618 wlsc_input_device_attach(device,
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500619 compositor->pointer_buffers[type],
Kristian Høgsbergeef08fb2010-08-17 21:23:10 -0400620 pointer_images[type].hotspot_x,
621 pointer_images[type].hotspot_y);
622}
623
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400624static void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500625compositor_create_surface(struct wl_client *client,
626 struct wl_compositor *compositor, uint32_t id)
627{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500628 struct wlsc_compositor *ec = (struct wlsc_compositor *) compositor;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400629 struct wlsc_surface *surface;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500630
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500631 surface = wlsc_surface_create(ec, 0, 0, 0, 0);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400632 if (surface == NULL) {
Kristian Høgsberg13b8ae42010-09-02 20:55:16 -0400633 wl_client_post_no_memory(client);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500634 return;
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400635 }
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500636
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500637 surface->surface.resource.destroy = destroy_surface;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400638
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500639 surface->surface.resource.object.id = id;
640 surface->surface.resource.object.interface = &wl_surface_interface;
641 surface->surface.resource.object.implementation =
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400642 (void (**)(void)) &surface_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500643 surface->surface.client = client;
Kristian Høgsbergf66d0f42010-09-02 20:27:16 -0400644
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500645 wl_client_add_resource(client, &surface->surface.resource);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500646}
647
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500648const static struct wl_compositor_interface compositor_interface = {
649 compositor_create_surface,
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500650};
651
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500652static void
653wlsc_surface_transform(struct wlsc_surface *surface,
654 int32_t x, int32_t y, int32_t *sx, int32_t *sy)
655{
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400656 struct wlsc_vector v = { { x, y, 0, 1 } };
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500657
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400658 wlsc_matrix_transform(&surface->matrix_inv, &v);
Kristian Høgsberg0b8646b2010-06-08 15:29:14 -0400659 *sx = v.f[0] * surface->width;
660 *sy = v.f[1] * surface->height;
Kristian Høgsberg7b6907f2009-02-14 17:47:55 -0500661}
662
Kristian Høgsberg4cca3492011-01-18 07:53:49 -0500663struct wlsc_surface *
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500664pick_surface(struct wl_input_device *device, int32_t *sx, int32_t *sy)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500665{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500666 struct wlsc_compositor *ec =
667 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500668 struct wlsc_surface *es;
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500669
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400670 wl_list_for_each(es, &ec->surface_list, link) {
671 wlsc_surface_transform(es, device->x, device->y, sx, sy);
672 if (0 <= *sx && *sx < es->width &&
673 0 <= *sy && *sy < es->height)
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500674 return es;
Kristian Høgsberg27803c62010-06-06 22:23:21 -0400675 }
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500676
Kristian Høgsberg201a9042008-12-10 00:40:50 -0500677 return NULL;
678}
679
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500680
681static void
682motion_grab_motion(struct wl_grab *grab,
683 uint32_t time, int32_t x, int32_t y)
684{
685 struct wlsc_input_device *device =
686 (struct wlsc_input_device *) grab->input_device;
687 struct wlsc_surface *es =
688 (struct wlsc_surface *) device->input_device.pointer_focus;
689 int32_t sx, sy;
690
691 wlsc_surface_transform(es, x, y, &sx, &sy);
692 wl_client_post_event(es->surface.client,
693 &device->input_device.object,
694 WL_INPUT_DEVICE_MOTION,
695 time, x, y, sx, sy);
696}
697
698static void
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500699motion_grab_button(struct wl_grab *grab,
700 uint32_t time, int32_t button, int32_t state)
701{
702 wl_client_post_event(grab->input_device->pointer_focus->client,
703 &grab->input_device->object,
704 WL_INPUT_DEVICE_BUTTON,
705 time, button, state);
706}
707
708static void
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500709motion_grab_end(struct wl_grab *grab, uint32_t time)
710{
711}
712
713static const struct wl_grab_interface motion_grab_interface = {
714 motion_grab_motion,
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500715 motion_grab_button,
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500716 motion_grab_end
717};
718
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500719void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500720notify_motion(struct wl_input_device *device, uint32_t time, int x, int y)
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500721{
Kristian Høgsberg8e438622009-01-26 23:07:00 -0500722 struct wlsc_surface *es;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500723 struct wlsc_compositor *ec =
724 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500725 struct wlsc_output *output;
Kristian Høgsberg6d65d5f2010-12-07 13:30:18 -0500726 const struct wl_grab_interface *interface;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500727 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsbergfc9c28a2010-12-07 13:04:43 -0500728 int32_t sx, sy;
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500729
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500730 /* FIXME: We need some multi head love here. */
731 output = container_of(ec->output_list.next, struct wlsc_output, link);
732 if (x < output->x)
Ray Strode90e701d2008-12-18 23:05:43 -0500733 x = 0;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500734 if (y < output->y)
Ray Strode90e701d2008-12-18 23:05:43 -0500735 y = 0;
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -0500736 if (x >= output->x + output->width)
737 x = output->x + output->width - 1;
738 if (y >= output->y + output->height)
739 y = output->y + output->height - 1;
Ray Strode90e701d2008-12-18 23:05:43 -0500740
Kristian Høgsberge3ef3e52008-12-21 19:30:01 -0500741 device->x = x;
742 device->y = y;
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -0500743
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500744 if (device->grab) {
745 interface = device->grab->interface;
746 interface->motion(device->grab, time, x, y);
747 } else {
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400748 es = pick_surface(device, &sx, &sy);
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500749 wl_input_device_set_pointer_focus(device,
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500750 &es->surface,
Kristian Høgsberg26437072010-12-01 10:17:47 -0500751 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400752 if (es)
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500753 wl_client_post_event(es->surface.client,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500754 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -0400755 WL_INPUT_DEVICE_MOTION,
756 time, x, y, sx, sy);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400757 }
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500758
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500759 wd->sprite->x = device->x - wd->hotspot_x;
760 wd->sprite->y = device->y - wd->hotspot_y;
761 wlsc_surface_update_matrix(wd->sprite);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500762
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500763 wlsc_compositor_schedule_repaint(ec);
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500764}
765
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500766void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500767notify_button(struct wl_input_device *device,
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400768 uint32_t time, int32_t button, int32_t state)
Kristian Høgsbergeac149a2008-12-10 00:24:18 -0500769{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500770 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -0400771 struct wlsc_surface *surface;
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500772 struct wlsc_compositor *compositor =
773 (struct wlsc_compositor *) device->compositor;
Kristian Høgsbergeac149a2008-12-10 00:24:18 -0500774
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500775 surface = (struct wlsc_surface *) device->pointer_focus;
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100776 uint32_t edges = 0;
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500777 int32_t x, y;
Kristian Høgsbergea081152010-12-07 08:59:51 -0500778
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -0500779 if (state && surface && device->grab == NULL) {
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500780 wlsc_surface_raise(surface);
Kristian Høgsberg29573bc2008-12-11 23:27:27 -0500781
Kristian Høgsbergae6c8a62011-01-18 09:08:53 -0500782 if (wd->selection)
783 wlsc_selection_set_focus(wd->selection,
784 &surface->surface, time);
785
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500786 wl_input_device_start_grab(device,
787 &device->motion_grab,
788 button, time);
789 wl_input_device_set_keyboard_focus(device,
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500790 &surface->surface,
791 time);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500792 }
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500793
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -0500794 if (state && surface && button == BTN_LEFT &&
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500795 (wd->modifier_state & MODIFIER_SUPER))
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500796 shell_move(NULL,
797 (struct wl_shell *) &compositor->shell,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500798 &surface->surface, device, time);
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -0500799 else if (state && surface && button == BTN_MIDDLE &&
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100800 (wd->modifier_state & MODIFIER_SUPER)) {
801
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500802 x = device->grab_x - surface->x;
803 y = device->grab_y - surface->y;
804
805 if (x < surface->width / 3)
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100806 edges |= WL_SHELL_RESIZE_LEFT;
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500807 else if (x < 2 * surface->width / 3)
808 edges |= 0;
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100809 else
810 edges |= WL_SHELL_RESIZE_RIGHT;
811
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500812 if (y < surface->height / 3)
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100813 edges |= WL_SHELL_RESIZE_TOP;
Kristian Høgsberg181f52e2011-02-01 20:28:32 -0500814 else if (y < 2 * surface->height / 3)
815 edges |= 0;
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100816 else
817 edges |= WL_SHELL_RESIZE_BOTTOM;
818
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500819 shell_resize(NULL,
820 (struct wl_shell *) &compositor->shell,
Benjamin Franzke5a2218a2011-02-01 16:30:31 +0100821 &surface->surface, device, time, edges);
822 }
Kristian Høgsbergb3fc7572010-12-08 11:07:57 -0500823
Kristian Høgsbergdd4046a2011-01-21 17:00:09 -0500824 if (device->grab)
825 device->grab->interface->button(device->grab, time,
826 button, state);
Kristian Høgsbergdff2e3c2010-12-07 09:02:09 -0500827
Kristian Høgsberg8321e692010-12-07 17:06:15 -0500828 if (!state && device->grab && device->grab_button == button)
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500829 wl_input_device_end_grab(device, time);
Kristian Høgsbergeac149a2008-12-10 00:24:18 -0500830}
831
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500832void
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500833notify_key(struct wl_input_device *device,
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400834 uint32_t time, uint32_t key, uint32_t state)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -0500835{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500836 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
837 struct wlsc_compositor *compositor =
838 (struct wlsc_compositor *) device->compositor;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -0500839 uint32_t *k, *end;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -0400840 uint32_t modifier;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -0500841
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500842 switch (key | wd->modifier_state) {
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -0400843 case KEY_BACKSPACE | MODIFIER_CTRL | MODIFIER_ALT:
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500844 wl_display_terminate(compositor->wl_display);
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500845 return;
Kristian Høgsberg5c8c3282009-02-09 15:17:46 -0500846 }
Kristian Høgsbergab909ae2001-01-01 22:24:24 -0500847
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -0400848 switch (key) {
849 case KEY_LEFTCTRL:
850 case KEY_RIGHTCTRL:
851 modifier = MODIFIER_CTRL;
852 break;
853
854 case KEY_LEFTALT:
855 case KEY_RIGHTALT:
856 modifier = MODIFIER_ALT;
857 break;
858
Kristian Høgsberg5b75f1b2010-08-04 23:21:41 -0400859 case KEY_LEFTMETA:
860 case KEY_RIGHTMETA:
861 modifier = MODIFIER_SUPER;
862 break;
863
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -0400864 default:
865 modifier = 0;
866 break;
867 }
868
869 if (state)
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500870 wd->modifier_state |= modifier;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -0400871 else
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500872 wd->modifier_state &= ~modifier;
Kristian Høgsberg2cbedd12009-09-18 17:29:49 -0400873
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500874 end = device->keys.data + device->keys.size;
875 for (k = device->keys.data; k < end; k++) {
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -0500876 if (*k == key)
877 *k = *--end;
878 }
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500879 device->keys.size = (void *) end - device->keys.data;
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -0500880 if (state) {
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500881 k = wl_array_add(&device->keys, sizeof *k);
Kristian Høgsberg3c38fa02009-02-23 22:30:29 -0500882 *k = key;
883 }
Ray Strodee96dcb82008-12-20 02:00:49 -0500884
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500885 if (device->keyboard_focus != NULL)
886 wl_client_post_event(device->keyboard_focus->client,
887 &device->object,
Kristian Høgsberg50038e42010-09-07 21:08:59 -0400888 WL_INPUT_DEVICE_KEY, time, key, state);
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400889}
890
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500891void
892notify_pointer_focus(struct wl_input_device *device,
893 uint32_t time, struct wlsc_output *output,
894 int32_t x, int32_t y)
895{
896 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
897 struct wlsc_compositor *compositor =
898 (struct wlsc_compositor *) device->compositor;
899 struct wlsc_surface *es;
900 int32_t sx, sy;
901
902 if (output) {
903 device->x = x;
904 device->y = y;
905 es = pick_surface(device, &sx, &sy);
906 wl_input_device_set_pointer_focus(device,
907 &es->surface,
908 time, x, y, sx, sy);
909
910 compositor->focus = 1;
911
912 wd->sprite->x = device->x - wd->hotspot_x;
913 wd->sprite->y = device->y - wd->hotspot_y;
914 wlsc_surface_update_matrix(wd->sprite);
915 } else {
916 wl_input_device_set_pointer_focus(device, NULL,
917 time, 0, 0, 0, 0);
918 compositor->focus = 0;
919 }
920
921 wlsc_compositor_schedule_repaint(compositor);
922}
923
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500924void
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -0500925notify_keyboard_focus(struct wl_input_device *device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500926 uint32_t time, struct wlsc_output *output,
927 struct wl_array *keys)
928{
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -0500929 struct wlsc_input_device *wd =
930 (struct wlsc_input_device *) device;
931 struct wlsc_compositor *compositor =
932 (struct wlsc_compositor *) device->compositor;
933 struct wlsc_surface *es;
934
935 if (!wl_list_empty(&compositor->surface_list))
936 es = container_of(compositor->surface_list.next,
937 struct wlsc_surface, link);
938 else
939 es = NULL;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500940
941 if (output) {
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -0500942 wl_array_copy(&wd->input_device.keys, keys);
943 wl_input_device_set_keyboard_focus(&wd->input_device,
944 &es->surface, time);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500945 } else {
Kristian Høgsbergf992b2f2011-01-28 15:53:07 -0500946 wl_input_device_set_keyboard_focus(&wd->input_device,
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500947 NULL, time);
948 }
949}
950
951
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400952static void
Kristian Høgsbergab1862d2010-12-09 11:29:40 -0500953input_device_attach(struct wl_client *client,
954 struct wl_input_device *device_base,
955 uint32_t time,
956 struct wl_buffer *buffer, int32_t x, int32_t y)
957{
958 struct wlsc_input_device *device =
959 (struct wlsc_input_device *) device_base;
960
961 if (time < device->input_device.pointer_focus_time)
962 return;
963 if (device->input_device.pointer_focus == NULL)
964 return;
Kristian Høgsbergab1862d2010-12-09 11:29:40 -0500965 if (device->input_device.pointer_focus->client != client)
966 return;
967
968 if (buffer == NULL) {
969 wlsc_input_device_set_pointer_image(device,
970 WLSC_POINTER_LEFT_PTR);
971 return;
972 }
973
974 wlsc_input_device_attach(device, buffer, x, y);
975}
976
977const static struct wl_input_device_interface input_device_interface = {
978 input_device_attach,
979};
980
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400981void
982wlsc_input_device_init(struct wlsc_input_device *device,
983 struct wlsc_compositor *ec)
Kristian Høgsbergcddc0ad2008-11-24 00:31:49 -0500984{
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500985 wl_input_device_init(&device->input_device, &ec->compositor);
Kristian Høgsberg02ef1c12010-12-06 21:35:19 -0500986
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500987 device->input_device.object.interface = &wl_input_device_interface;
988 device->input_device.object.implementation =
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400989 (void (**)(void)) &input_device_interface;
Kristian Høgsbergb313b022010-12-01 17:07:41 -0500990 wl_display_add_object(ec->wl_display, &device->input_device.object);
991 wl_display_add_global(ec->wl_display, &device->input_device.object, NULL);
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400992
Kristian Høgsbergc5d6be92011-01-14 16:22:37 -0500993 device->sprite = wlsc_surface_create(ec,
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500994 device->input_device.x,
995 device->input_device.y, 32, 32);
Kristian Høgsberg77fb1672010-08-16 10:38:29 -0400996 device->hotspot_x = 16;
997 device->hotspot_y = 16;
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -0500998
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500999 device->input_device.motion_grab.interface = &motion_grab_interface;
Kristian Høgsberg8321e692010-12-07 17:06:15 -05001000
Kristian Høgsbergc492b482008-12-12 12:00:02 -05001001 wl_list_insert(ec->input_device_list.prev, &device->link);
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001002
1003 wlsc_input_device_set_pointer_image(device, WLSC_POINTER_LEFT_PTR);
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -05001004}
1005
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001006static void
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001007wlsc_output_post_geometry(struct wl_client *client, struct wl_object *global)
Kristian Høgsbergbf9541f2008-11-25 12:10:09 -05001008{
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001009 struct wlsc_output *output =
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001010 container_of(global, struct wlsc_output, object);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001011
1012 wl_client_post_event(client, global,
1013 WL_OUTPUT_GEOMETRY,
Kristian Høgsbergf8fc08f2010-12-01 20:10:10 -05001014 output->x, output->y,
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001015 output->width, output->height);
1016}
1017
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001018static const char vertex_shader[] =
1019 "uniform mat4 proj;\n"
1020 "attribute vec4 position;\n"
1021 "attribute vec2 texcoord;\n"
1022 "varying vec2 v_texcoord;\n"
1023 "void main()\n"
1024 "{\n"
1025 " gl_Position = proj * position;\n"
1026 " v_texcoord = texcoord;\n"
1027 "}\n";
1028
1029static const char fragment_shader[] =
Kristian Høgsbergdfce71d2010-12-07 20:19:10 -05001030 "precision mediump float;\n"
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001031 "varying vec2 v_texcoord;\n"
1032 "uniform sampler2D tex;\n"
1033 "void main()\n"
1034 "{\n"
1035 " gl_FragColor = texture2D(tex, v_texcoord)\n;"
1036 "}\n";
1037
Kristian Høgsberga9468212010-06-14 21:03:11 -04001038static int
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001039init_shaders(struct wlsc_compositor *ec)
1040{
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001041 GLuint v, f, program;
1042 const char *p;
1043 char msg[512];
1044 GLfloat vertices[4 * 5];
1045 GLint status;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001046
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001047 p = vertex_shader;
1048 v = glCreateShader(GL_VERTEX_SHADER);
1049 glShaderSource(v, 1, &p, NULL);
1050 glCompileShader(v);
1051 glGetShaderiv(v, GL_COMPILE_STATUS, &status);
1052 if (!status) {
1053 glGetShaderInfoLog(v, sizeof msg, NULL, msg);
1054 fprintf(stderr, "vertex shader info: %s\n", msg);
1055 return -1;
1056 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001057
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001058 p = fragment_shader;
1059 f = glCreateShader(GL_FRAGMENT_SHADER);
1060 glShaderSource(f, 1, &p, NULL);
1061 glCompileShader(f);
1062 glGetShaderiv(f, GL_COMPILE_STATUS, &status);
1063 if (!status) {
1064 glGetShaderInfoLog(f, sizeof msg, NULL, msg);
1065 fprintf(stderr, "fragment shader info: %s\n", msg);
1066 return -1;
1067 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001068
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001069 program = glCreateProgram();
1070 glAttachShader(program, v);
1071 glAttachShader(program, f);
1072 glBindAttribLocation(program, 0, "position");
1073 glBindAttribLocation(program, 1, "texcoord");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001074
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001075 glLinkProgram(program);
1076 glGetProgramiv(program, GL_LINK_STATUS, &status);
1077 if (!status) {
1078 glGetProgramInfoLog(program, sizeof msg, NULL, msg);
1079 fprintf(stderr, "link info: %s\n", msg);
1080 return -1;
1081 }
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001082
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001083 glUseProgram(program);
1084 ec->proj_uniform = glGetUniformLocation(program, "proj");
1085 ec->tex_uniform = glGetUniformLocation(program, "tex");
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001086
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001087 vertices[ 0] = 0.0;
1088 vertices[ 1] = 0.0;
1089 vertices[ 2] = 0.0;
1090 vertices[ 3] = 0.0;
1091 vertices[ 4] = 0.0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001092
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001093 vertices[ 5] = 0.0;
1094 vertices[ 6] = 1.0;
1095 vertices[ 7] = 0.0;
1096 vertices[ 8] = 0.0;
1097 vertices[ 9] = 1.0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001098
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001099 vertices[10] = 1.0;
1100 vertices[11] = 0.0;
1101 vertices[12] = 0.0;
1102 vertices[13] = 1.0;
1103 vertices[14] = 0.0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001104
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001105 vertices[15] = 1.0;
1106 vertices[16] = 1.0;
1107 vertices[17] = 0.0;
1108 vertices[18] = 1.0;
1109 vertices[19] = 1.0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001110
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001111 glGenBuffers(1, &ec->vbo);
1112 glBindBuffer(GL_ARRAY_BUFFER, ec->vbo);
1113 glBufferData(GL_ARRAY_BUFFER, sizeof vertices, vertices, GL_STATIC_DRAW);
Kristian Høgsberga9468212010-06-14 21:03:11 -04001114
Kristian Høgsberg67a21bd2010-06-25 18:58:24 -04001115 return 0;
Kristian Høgsberg27803c62010-06-06 22:23:21 -04001116}
1117
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001118void
1119wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c,
1120 int x, int y, int width, int height)
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001121{
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001122 output->compositor = c;
1123 output->x = x;
1124 output->y = y;
1125 output->width = width;
1126 output->height = height;
1127
1128 output->background =
1129 background_create(output, option_background);
1130
1131 wlsc_matrix_init(&output->matrix);
1132 wlsc_matrix_translate(&output->matrix,
1133 -output->x - output->width / 2.0,
1134 -output->y - output->height / 2.0, 0);
1135 wlsc_matrix_scale(&output->matrix,
1136 2.0 / output->width, 2.0 / output->height, 1);
1137
Kristian Høgsbergb313b022010-12-01 17:07:41 -05001138 output->object.interface = &wl_output_interface;
1139 wl_display_add_object(c->wl_display, &output->object);
1140 wl_display_add_global(c->wl_display, &output->object,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001141 wlsc_output_post_geometry);
1142}
1143
1144int
1145wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
1146{
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001147 struct wl_event_loop *loop;
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001148 const char *extensions;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001149
Kristian Høgsbergf9212892008-10-11 18:40:23 -04001150 ec->wl_display = display;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001151
Kristian Høgsbergc5c510e2010-12-08 15:12:58 -05001152 wl_compositor_init(&ec->compositor, &compositor_interface, display);
Kristian Høgsbergee02ca62008-12-21 23:37:12 -05001153
Kristian Høgsberg3d5bae02010-10-06 21:17:40 -04001154 wlsc_shm_init(ec);
1155
Kristian Høgsberg4cca3492011-01-18 07:53:49 -05001156 wlsc_shell_init(ec);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04001157
Kristian Høgsberg201a9042008-12-10 00:40:50 -05001158 wl_list_init(&ec->surface_list);
Kristian Høgsberg81ce09a2008-12-31 16:18:42 -05001159 wl_list_init(&ec->input_device_list);
1160 wl_list_init(&ec->output_list);
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001161
Kristian Høgsberg1db21f12010-08-16 16:08:12 -04001162 create_pointer_images(ec);
1163
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001164 screenshooter_create(ec);
1165
Kristian Høgsbergd711d0c2011-01-14 17:28:21 -05001166 extensions = (const char *) glGetString(GL_EXTENSIONS);
1167 if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) {
1168 fprintf(stderr,
1169 "GL_EXT_texture_format_BGRA8888 not available\n");
1170 return -1;
1171 }
1172
Kristian Høgsbergfc783d42010-06-11 12:56:24 -04001173 glGenFramebuffers(1, &ec->fbo);
1174 glBindFramebuffer(GL_FRAMEBUFFER, ec->fbo);
1175 glActiveTexture(GL_TEXTURE0);
Kristian Høgsberga9468212010-06-14 21:03:11 -04001176 if (init_shaders(ec) < 0)
1177 return -1;
Kristian Høgsberg8d7ca6b2008-11-09 00:22:51 -05001178
Kristian Høgsbergfbdbbdc2008-11-28 17:06:06 -05001179 loop = wl_display_get_event_loop(ec->wl_display);
Kristian Høgsberg4a298902008-11-28 18:35:25 -05001180 ec->timer_source = wl_event_loop_add_timer(loop, repaint, ec);
Kristian Høgsberg8da19ac2009-03-17 16:12:51 -04001181 wlsc_compositor_schedule_repaint(ec);
Kristian Høgsbergef7a9ca2008-10-11 21:21:39 -04001182
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001183 return 0;
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001184}
1185
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001186static void on_term_signal(int signal_number, void *data)
1187{
1188 struct wlsc_compositor *ec = data;
1189
1190 wl_display_terminate(ec->wl_display);
1191}
1192
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001193int main(int argc, char *argv[])
1194{
1195 struct wl_display *display;
Kristian Høgsberg8e438622009-01-26 23:07:00 -05001196 struct wlsc_compositor *ec;
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001197 struct wl_event_loop *loop;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001198 GError *error = NULL;
1199 GOptionContext *context;
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001200 int width, height;
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001201
Kristian Høgsberg77fb1672010-08-16 10:38:29 -04001202 g_type_init(); /* GdkPixbuf needs this, it seems. */
1203
Kristian Høgsbergd6531262008-12-12 11:06:18 -05001204 context = g_option_context_new(NULL);
1205 g_option_context_add_main_entries(context, option_entries, "Wayland");
1206 if (!g_option_context_parse(context, &argc, &argv, &error)) {
1207 fprintf(stderr, "option parsing failed: %s\n", error->message);
1208 exit(EXIT_FAILURE);
1209 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001210 if (sscanf(option_geometry, "%dx%d", &width, &height) != 2) {
1211 fprintf(stderr, "invalid geometry option: %s \n",
1212 option_geometry);
1213 exit(EXIT_FAILURE);
1214 }
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001215
1216 display = wl_display_create();
1217
Kristian Høgsberga9410222011-01-14 17:22:35 -05001218 ec = NULL;
1219
1220#if BUILD_WAYLAND_COMPOSITOR
Benjamin Franzkeec2e6422010-11-27 19:04:12 +01001221 if (getenv("WAYLAND_DISPLAY"))
1222 ec = wayland_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001223#endif
1224
1225#if BUILD_X11_COMPOSITOR
1226 if (ec == NULL && getenv("DISPLAY"))
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001227 ec = x11_compositor_create(display, width, height);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001228#endif
1229
1230#if BUILD_DRM_COMPOSITOR
1231 if (ec == NULL)
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001232 ec = drm_compositor_create(display, option_connector);
Kristian Høgsberga9410222011-01-14 17:22:35 -05001233#endif
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001234
Kristian Høgsberg841883b2008-12-05 11:19:56 -05001235 if (ec == NULL) {
1236 fprintf(stderr, "failed to create compositor\n");
1237 exit(EXIT_FAILURE);
1238 }
Kristian Høgsberg61a82512010-10-26 11:26:44 -04001239
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001240 if (wl_display_add_socket(display, option_socket_name)) {
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001241 fprintf(stderr, "failed to add socket: %m\n");
1242 exit(EXIT_FAILURE);
1243 }
1244
Kristian Høgsberg50dc6982010-12-01 16:43:56 -05001245 loop = wl_display_get_event_loop(ec->wl_display);
1246 wl_event_loop_add_signal(loop, SIGTERM, on_term_signal, ec);
1247 wl_event_loop_add_signal(loop, SIGINT, on_term_signal, ec);
1248
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001249 wl_display_run(display);
1250
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05001251 wl_display_destroy(display);
1252
Kristian Høgsbergcaa64422010-12-01 16:52:15 -05001253 ec->destroy(ec);
1254
Kristian Høgsberg122912c2008-12-05 11:13:50 -05001255 return 0;
Kristian Høgsberg16eb6752008-10-08 22:51:32 -04001256}