backend/wayland: create one virtual pointer per output

This commit is contained in:
emersion 2018-04-29 12:16:31 +01:00
parent 2551ef8871
commit 9f8a7c8fc4
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
5 changed files with 192 additions and 203 deletions

View File

@ -71,7 +71,7 @@ static void backend_destroy(struct wlr_backend *wlr_backend) {
return; return;
} }
struct wlr_wl_backend_output *output, *tmp_output; struct wlr_wl_output *output, *tmp_output;
wl_list_for_each_safe(output, tmp_output, &backend->outputs, link) { wl_list_for_each_safe(output, tmp_output, &backend->outputs, link) {
wlr_output_destroy(&output->wlr_output); wlr_output_destroy(&output->wlr_output);
} }
@ -90,6 +90,9 @@ static void backend_destroy(struct wlr_backend *wlr_backend) {
wl_event_source_remove(backend->remote_display_src); wl_event_source_remove(backend->remote_display_src);
wlr_renderer_destroy(backend->renderer); wlr_renderer_destroy(backend->renderer);
wlr_egl_finish(&backend->egl); wlr_egl_finish(&backend->egl);
if (backend->pointer) {
wl_pointer_destroy(backend->pointer);
}
if (backend->seat) { if (backend->seat) {
wl_seat_destroy(backend->seat); wl_seat_destroy(backend->seat);
} }
@ -127,49 +130,6 @@ bool wlr_backend_is_wl(struct wlr_backend *b) {
return b->impl == &backend_impl; return b->impl == &backend_impl;
} }
struct wlr_wl_backend_output *get_wl_output_for_surface(
struct wlr_wl_backend *backend, struct wl_surface *surface) {
struct wlr_wl_backend_output *output;
wl_list_for_each(output, &backend->outputs, link) {
if (output->surface == surface) {
return output;
}
}
return NULL;
}
void get_wl_output_layout_box(struct wlr_wl_backend *backend,
struct wlr_box *box) {
int min_x = INT_MAX, min_y = INT_MAX;
int max_x = INT_MIN, max_y = INT_MIN;
struct wlr_wl_backend_output *output;
wl_list_for_each(output, &backend->outputs, link) {
struct wlr_output *wlr_output = &output->wlr_output;
int width, height;
wlr_output_effective_resolution(wlr_output, &width, &height);
if (wlr_output->lx < min_x) {
min_x = wlr_output->lx;
}
if (wlr_output->ly < min_y) {
min_y = wlr_output->ly;
}
if (wlr_output->lx + width > max_x) {
max_x = wlr_output->lx + width;
}
if (wlr_output->ly + height > max_y) {
max_y = wlr_output->ly + height;
}
}
box->x = min_x;
box->y = min_y;
box->width = max_x - min_x;
box->height = max_y - min_y;
}
static void handle_display_destroy(struct wl_listener *listener, void *data) { static void handle_display_destroy(struct wl_listener *listener, void *data) {
struct wlr_wl_backend *backend = struct wlr_wl_backend *backend =
wl_container_of(listener, backend, local_display_destroy); wl_container_of(listener, backend, local_display_destroy);

View File

@ -20,7 +20,7 @@ static struct wl_callback_listener frame_listener;
static void surface_frame_callback(void *data, struct wl_callback *cb, static void surface_frame_callback(void *data, struct wl_callback *cb,
uint32_t time) { uint32_t time) {
struct wlr_wl_backend_output *output = data; struct wlr_wl_output *output = data;
assert(output); assert(output);
wl_callback_destroy(cb); wl_callback_destroy(cb);
output->frame_callback = NULL; output->frame_callback = NULL;
@ -34,7 +34,7 @@ static struct wl_callback_listener frame_listener = {
static bool output_set_custom_mode(struct wlr_output *_output, static bool output_set_custom_mode(struct wlr_output *_output,
int32_t width, int32_t height, int32_t refresh) { int32_t width, int32_t height, int32_t refresh) {
struct wlr_wl_backend_output *output = (struct wlr_wl_backend_output *)_output; struct wlr_wl_output *output = (struct wlr_wl_output *)_output;
wl_egl_window_resize(output->egl_window, width, height, 0, 0); wl_egl_window_resize(output->egl_window, width, height, 0, 0);
wlr_output_update_custom_mode(&output->wlr_output, width, height, 0); wlr_output_update_custom_mode(&output->wlr_output, width, height, 0);
return true; return true;
@ -42,16 +42,16 @@ static bool output_set_custom_mode(struct wlr_output *_output,
static bool output_make_current(struct wlr_output *wlr_output, static bool output_make_current(struct wlr_output *wlr_output,
int *buffer_age) { int *buffer_age) {
struct wlr_wl_backend_output *output = struct wlr_wl_output *output =
(struct wlr_wl_backend_output *)wlr_output; (struct wlr_wl_output *)wlr_output;
return wlr_egl_make_current(&output->backend->egl, output->egl_surface, return wlr_egl_make_current(&output->backend->egl, output->egl_surface,
buffer_age); buffer_age);
} }
static bool output_swap_buffers(struct wlr_output *wlr_output, static bool output_swap_buffers(struct wlr_output *wlr_output,
pixman_region32_t *damage) { pixman_region32_t *damage) {
struct wlr_wl_backend_output *output = struct wlr_wl_output *output =
(struct wlr_wl_backend_output *)wlr_output; (struct wlr_wl_output *)wlr_output;
if (output->frame_callback != NULL) { if (output->frame_callback != NULL) {
wlr_log(L_ERROR, "Skipping buffer swap"); wlr_log(L_ERROR, "Skipping buffer swap");
@ -67,15 +67,15 @@ static bool output_swap_buffers(struct wlr_output *wlr_output,
static void output_transform(struct wlr_output *_output, static void output_transform(struct wlr_output *_output,
enum wl_output_transform transform) { enum wl_output_transform transform) {
struct wlr_wl_backend_output *output = (struct wlr_wl_backend_output *)_output; struct wlr_wl_output *output = (struct wlr_wl_output *)_output;
output->wlr_output.transform = transform; output->wlr_output.transform = transform;
} }
static bool output_set_cursor(struct wlr_output *_output, static bool output_set_cursor(struct wlr_output *_output,
const uint8_t *buf, int32_t stride, uint32_t width, uint32_t height, const uint8_t *buf, int32_t stride, uint32_t width, uint32_t height,
int32_t hotspot_x, int32_t hotspot_y, bool update_pixels) { int32_t hotspot_x, int32_t hotspot_y, bool update_pixels) {
struct wlr_wl_backend_output *output = struct wlr_wl_output *output =
(struct wlr_wl_backend_output *)_output; (struct wlr_wl_output *)_output;
struct wlr_wl_backend *backend = output->backend; struct wlr_wl_backend *backend = output->backend;
// TODO: use output->wlr_output.transform to transform pixels and hotpot // TODO: use output->wlr_output.transform to transform pixels and hotpot
@ -100,7 +100,7 @@ static bool output_set_cursor(struct wlr_output *_output,
} }
if (!backend->shm || !backend->pointer) { if (!backend->shm || !backend->pointer) {
wlr_log(L_INFO, "cannot set cursor, no shm or pointer"); wlr_log(L_INFO, "cannot set cursor: no wl_shm or wl_pointer");
return false; return false;
} }
@ -158,8 +158,8 @@ static bool output_set_cursor(struct wlr_output *_output,
} }
static void output_destroy(struct wlr_output *wlr_output) { static void output_destroy(struct wlr_output *wlr_output) {
struct wlr_wl_backend_output *output = struct wlr_wl_output *output =
(struct wlr_wl_backend_output *)wlr_output; (struct wlr_wl_output *)wlr_output;
if (output == NULL) { if (output == NULL) {
return; return;
} }
@ -192,7 +192,7 @@ static void output_destroy(struct wlr_output *wlr_output) {
free(output); free(output);
} }
void update_wl_output_cursor(struct wlr_wl_backend_output *output) { void update_wl_output_cursor(struct wlr_wl_output *output) {
if (output->backend->pointer && output->enter_serial) { if (output->backend->pointer && output->enter_serial) {
wl_pointer_set_cursor(output->backend->pointer, output->enter_serial, wl_pointer_set_cursor(output->backend->pointer, output->enter_serial,
output->cursor.surface, output->cursor.hotspot_x, output->cursor.surface, output->cursor.hotspot_x,
@ -221,7 +221,7 @@ bool wlr_output_is_wl(struct wlr_output *wlr_output) {
static void xdg_surface_handle_configure(void *data, struct zxdg_surface_v6 *xdg_surface, static void xdg_surface_handle_configure(void *data, struct zxdg_surface_v6 *xdg_surface,
uint32_t serial) { uint32_t serial) {
struct wlr_wl_backend_output *output = data; struct wlr_wl_output *output = data;
assert(output && output->xdg_surface == xdg_surface); assert(output && output->xdg_surface == xdg_surface);
zxdg_surface_v6_ack_configure(xdg_surface, serial); zxdg_surface_v6_ack_configure(xdg_surface, serial);
@ -235,7 +235,7 @@ static struct zxdg_surface_v6_listener xdg_surface_listener = {
static void xdg_toplevel_handle_configure(void *data, struct zxdg_toplevel_v6 *xdg_toplevel, static void xdg_toplevel_handle_configure(void *data, struct zxdg_toplevel_v6 *xdg_toplevel,
int32_t width, int32_t height, struct wl_array *states) { int32_t width, int32_t height, struct wl_array *states) {
struct wlr_wl_backend_output *output = data; struct wlr_wl_output *output = data;
assert(output && output->xdg_toplevel == xdg_toplevel); assert(output && output->xdg_toplevel == xdg_toplevel);
if (width == 0 && height == 0) { if (width == 0 && height == 0) {
@ -247,7 +247,7 @@ static void xdg_toplevel_handle_configure(void *data, struct zxdg_toplevel_v6 *x
} }
static void xdg_toplevel_handle_close(void *data, struct zxdg_toplevel_v6 *xdg_toplevel) { static void xdg_toplevel_handle_close(void *data, struct zxdg_toplevel_v6 *xdg_toplevel) {
struct wlr_wl_backend_output *output = data; struct wlr_wl_output *output = data;
assert(output && output->xdg_toplevel == xdg_toplevel); assert(output && output->xdg_toplevel == xdg_toplevel);
wlr_output_destroy((struct wlr_output *)output); wlr_output_destroy((struct wlr_output *)output);
@ -266,9 +266,9 @@ struct wlr_output *wlr_wl_output_create(struct wlr_backend *_backend) {
return NULL; return NULL;
} }
struct wlr_wl_backend_output *output; struct wlr_wl_output *output;
if (!(output = calloc(sizeof(struct wlr_wl_backend_output), 1))) { if (!(output = calloc(sizeof(struct wlr_wl_output), 1))) {
wlr_log(L_ERROR, "Failed to allocate wlr_wl_backend_output"); wlr_log(L_ERROR, "Failed to allocate wlr_wl_output");
return NULL; return NULL;
} }
wlr_output_init(&output->wlr_output, &backend->backend, &output_impl, wlr_output_init(&output->wlr_output, &backend->backend, &output_impl,
@ -336,7 +336,13 @@ struct wlr_output *wlr_wl_output_create(struct wlr_backend *_backend) {
wl_list_insert(&backend->outputs, &output->link); wl_list_insert(&backend->outputs, &output->link);
wlr_output_update_enabled(wlr_output, true); wlr_output_update_enabled(wlr_output, true);
wlr_signal_emit_safe(&backend->backend.events.new_output, wlr_output); wlr_signal_emit_safe(&backend->backend.events.new_output, wlr_output);
if (backend->pointer != NULL) {
create_wl_pointer(backend->pointer, output);
}
return wlr_output; return wlr_output;
error: error:

View File

@ -14,104 +14,79 @@
#include "util/signal.h" #include "util/signal.h"
static void pointer_handle_enter(void *data, struct wl_pointer *wl_pointer, static void pointer_handle_enter(void *data, struct wl_pointer *wl_pointer,
uint32_t serial, struct wl_surface *surface, wl_fixed_t surface_x, uint32_t serial, struct wl_surface *surface, wl_fixed_t sx,
wl_fixed_t surface_y) { wl_fixed_t sy) {
struct wlr_input_device *dev = data; struct wlr_wl_pointer *pointer = data;
struct wlr_wl_input_device *wlr_wl_dev = (struct wlr_wl_input_device *)dev; if (pointer->output->surface != surface) {
assert(dev && dev->pointer);
struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer;
struct wlr_wl_backend_output *output =
get_wl_output_for_surface(wlr_wl_dev->backend, surface);
if (!output) {
// GNOME sends a pointer enter when the surface is being destroyed
return; return;
} }
if (wlr_wl_pointer->current_output) {
wl_list_remove(&wlr_wl_pointer->output_destroy_listener.link); pointer->output->enter_serial = serial;
} update_wl_output_cursor(pointer->output);
wl_signal_add(&output->wlr_output.events.destroy,
&wlr_wl_pointer->output_destroy_listener);
wlr_wl_pointer->current_output = output;
output->enter_serial = serial;
update_wl_output_cursor(output);
} }
static void pointer_handle_leave(void *data, struct wl_pointer *wl_pointer, static void pointer_handle_leave(void *data, struct wl_pointer *wl_pointer,
uint32_t serial, struct wl_surface *surface) { uint32_t serial, struct wl_surface *surface) {
struct wlr_input_device *dev = data; struct wlr_wl_pointer *pointer = data;
assert(dev && dev->pointer); if (pointer->output->surface != surface) {
struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer;
if (wlr_wl_pointer->current_output) {
wlr_wl_pointer->current_output->enter_serial = 0;
wlr_wl_pointer->current_output = NULL;
}
}
static void pointer_handle_motion(void *data, struct wl_pointer *wl_pointer,
uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y) {
struct wlr_input_device *dev = data;
assert(dev && dev->pointer);
struct wlr_wl_pointer *wlr_wl_pointer =
(struct wlr_wl_pointer *)dev->pointer;
if (!wlr_wl_pointer->current_output) {
wlr_log(L_DEBUG, "pointer motion event without current output");
return; return;
} }
struct wlr_output *wlr_output = &wlr_wl_pointer->current_output->wlr_output; pointer->output->enter_serial = 0;
}
struct wlr_box box = { static void pointer_handle_motion(void *data, struct wl_pointer *wl_pointer,
.x = wl_fixed_to_int(surface_x), uint32_t time, wl_fixed_t sx, wl_fixed_t sy) {
.y = wl_fixed_to_int(surface_y), struct wlr_wl_pointer *pointer = data;
}; if (pointer->output->enter_serial == 0) {
wlr_box_transform(&box, wlr_output->transform, wlr_output->width, return;
wlr_output->height, &box); }
box.x /= wlr_output->scale;
box.y /= wlr_output->scale;
struct wlr_box layout_box; int output_width, output_height;
get_wl_output_layout_box(wlr_wl_pointer->current_output->backend, wlr_output_effective_resolution(&pointer->output->wlr_output,
&layout_box); &output_width, &output_height);
double ox = wlr_output->lx / (double)layout_box.width; struct wlr_event_pointer_motion_absolute event = {
double oy = wlr_output->ly / (double)layout_box.height; .device = &pointer->input_device->wlr_input_device,
struct wlr_event_pointer_motion_absolute wlr_event = {
.device = dev,
.time_msec = time, .time_msec = time,
.x = box.x / (double)layout_box.width + ox, .x = (double)wl_fixed_to_int(sx) / output_width,
.y = box.y / (double)layout_box.height + oy, .y = (double)wl_fixed_to_int(sy) / output_height,
}; };
wlr_log(L_DEBUG, "motion: %f,%f", event.x, event.y);
wlr_signal_emit_safe(&dev->pointer->events.motion_absolute, &wlr_event); wlr_signal_emit_safe(&pointer->wlr_pointer.events.motion_absolute, &event);
} }
static void pointer_handle_button(void *data, struct wl_pointer *wl_pointer, static void pointer_handle_button(void *data, struct wl_pointer *wl_pointer,
uint32_t serial, uint32_t time, uint32_t button, uint32_t state) { uint32_t serial, uint32_t time, uint32_t button, uint32_t state) {
struct wlr_input_device *dev = data; struct wlr_wl_pointer *pointer = data;
assert(dev && dev->pointer); if (pointer->output->enter_serial == 0) {
return;
}
struct wlr_event_pointer_button wlr_event; struct wlr_event_pointer_button event = {
wlr_event.device = dev; .device = &pointer->input_device->wlr_input_device,
wlr_event.button = button; .button = button,
wlr_event.state = state; .state = state,
wlr_event.time_msec = time; .time_msec = time,
wlr_signal_emit_safe(&dev->pointer->events.button, &wlr_event); };
wlr_signal_emit_safe(&pointer->wlr_pointer.events.button, &event);
} }
static void pointer_handle_axis(void *data, struct wl_pointer *wl_pointer, static void pointer_handle_axis(void *data, struct wl_pointer *wl_pointer,
uint32_t time, uint32_t axis, wl_fixed_t value) { uint32_t time, uint32_t axis, wl_fixed_t value) {
struct wlr_input_device *dev = data; struct wlr_wl_pointer *pointer = data;
assert(dev && dev->pointer); if (pointer->output->enter_serial == 0) {
struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer; return;
}
struct wlr_event_pointer_axis wlr_event; struct wlr_event_pointer_axis event = {
wlr_event.device = dev; .device = &pointer->input_device->wlr_input_device,
wlr_event.delta = wl_fixed_to_double(value); .delta = wl_fixed_to_double(value),
wlr_event.orientation = axis; .orientation = axis,
wlr_event.time_msec = time; .time_msec = time,
wlr_event.source = wlr_wl_pointer->axis_source; .source = pointer->axis_source,
wlr_signal_emit_safe(&dev->pointer->events.axis, &wlr_event); };
wlr_signal_emit_safe(&pointer->wlr_pointer.events.axis, &event);
} }
static void pointer_handle_frame(void *data, struct wl_pointer *wl_pointer) { static void pointer_handle_frame(void *data, struct wl_pointer *wl_pointer) {
@ -120,11 +95,12 @@ static void pointer_handle_frame(void *data, struct wl_pointer *wl_pointer) {
static void pointer_handle_axis_source(void *data, struct wl_pointer *wl_pointer, static void pointer_handle_axis_source(void *data, struct wl_pointer *wl_pointer,
uint32_t axis_source) { uint32_t axis_source) {
struct wlr_input_device *dev = data; struct wlr_wl_pointer *pointer = data;
assert(dev && dev->pointer); if (pointer->output->enter_serial == 0) {
struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer; return;
}
wlr_wl_pointer->axis_source = axis_source; pointer->axis_source = axis_source;
} }
static void pointer_handle_axis_stop(void *data, struct wl_pointer *wl_pointer, static void pointer_handle_axis_stop(void *data, struct wl_pointer *wl_pointer,
@ -146,7 +122,7 @@ static const struct wl_pointer_listener pointer_listener = {
.frame = pointer_handle_frame, .frame = pointer_handle_frame,
.axis_source = pointer_handle_axis_source, .axis_source = pointer_handle_axis_source,
.axis_stop = pointer_handle_axis_stop, .axis_stop = pointer_handle_axis_stop,
.axis_discrete = pointer_handle_axis_discrete .axis_discrete = pointer_handle_axis_discrete,
}; };
static void keyboard_handle_keymap(void *data, struct wl_keyboard *wl_keyboard, static void keyboard_handle_keymap(void *data, struct wl_keyboard *wl_keyboard,
@ -204,43 +180,104 @@ static void input_device_destroy(struct wlr_input_device *wlr_dev) {
if (dev->resource) { if (dev->resource) {
wl_proxy_destroy(dev->resource); wl_proxy_destroy(dev->resource);
} }
wl_list_remove(&dev->wlr_input_device.link);
free(dev); free(dev);
} }
static struct wlr_input_device_impl input_device_impl = { static struct wlr_input_device_impl input_device_impl = {
.destroy = input_device_destroy .destroy = input_device_destroy,
}; };
bool wlr_input_device_is_wl(struct wlr_input_device *dev) { bool wlr_input_device_is_wl(struct wlr_input_device *dev) {
return dev->impl == &input_device_impl; return dev->impl == &input_device_impl;
} }
static struct wlr_input_device *allocate_device(struct wlr_wl_backend *backend, static struct wlr_wl_input_device *create_wl_input_device(
enum wlr_input_device_type type) { struct wlr_wl_backend *backend, enum wlr_input_device_type type) {
struct wlr_wl_input_device *wlr_wl_dev; struct wlr_wl_input_device *dev =
if (!(wlr_wl_dev = calloc(1, sizeof(struct wlr_wl_input_device)))) { calloc(1, sizeof(struct wlr_wl_input_device));
if (dev == NULL) {
wlr_log_errno(L_ERROR, "Allocation failed"); wlr_log_errno(L_ERROR, "Allocation failed");
return NULL; return NULL;
} }
dev->backend = backend;
wlr_wl_dev->backend = backend; struct wlr_input_device *wlr_dev = &dev->wlr_input_device;
int vendor = 0; unsigned int vendor = 0, product = 0;
int product = 0;
const char *name = "wayland"; const char *name = "wayland";
struct wlr_input_device *wlr_device = &wlr_wl_dev->wlr_input_device; wlr_input_device_init(wlr_dev, type, &input_device_impl, name, vendor,
wlr_input_device_init(wlr_device, type, &input_device_impl, product);
name, vendor, product); wl_list_insert(&backend->devices, &wlr_dev->link);
wl_list_insert(&backend->devices, &wlr_device->link); return dev;
return wlr_device;
} }
static struct wlr_pointer_impl pointer_impl;
struct wlr_wl_pointer *pointer_get_wl(struct wlr_pointer *wlr_pointer) {
assert(wlr_pointer->impl == &pointer_impl);
return (struct wlr_wl_pointer *)wlr_pointer;
}
static void pointer_destroy(struct wlr_pointer *wlr_pointer) {
struct wlr_wl_pointer *pointer = pointer_get_wl(wlr_pointer);
wl_list_remove(&pointer->output_destroy.link);
free(pointer);
}
static struct wlr_pointer_impl pointer_impl = {
.destroy = pointer_destroy,
};
static void pointer_handle_output_destroy(struct wl_listener *listener, static void pointer_handle_output_destroy(struct wl_listener *listener,
void *data) { void *data) {
struct wlr_wl_pointer *wlr_wl_pointer = struct wlr_wl_pointer *pointer =
wl_container_of(listener, wlr_wl_pointer, output_destroy_listener); wl_container_of(listener, pointer, output_destroy);
wlr_wl_pointer->current_output = NULL; wlr_input_device_destroy(&pointer->input_device->wlr_input_device);
wl_list_remove(&wlr_wl_pointer->output_destroy_listener.link); }
void create_wl_pointer(struct wl_pointer *wl_pointer,
struct wlr_wl_output *output) {
struct wlr_wl_backend *backend = output->backend;
struct wlr_input_device *wlr_dev;
wl_list_for_each(wlr_dev, &output->backend->devices, link) {
if (wlr_dev->type != WLR_INPUT_DEVICE_POINTER) {
continue;
}
struct wlr_wl_pointer *pointer = pointer_get_wl(wlr_dev->pointer);
if (pointer->output == output) {
return;
}
}
struct wlr_wl_pointer *pointer = calloc(1, sizeof(struct wlr_wl_pointer));
if (pointer == NULL) {
wlr_log(L_ERROR, "Allocation failed");
return;
}
pointer->wl_pointer = wl_pointer;
pointer->output = output;
wl_signal_add(&output->wlr_output.events.destroy, &pointer->output_destroy);
pointer->output_destroy.notify = pointer_handle_output_destroy;
struct wlr_wl_input_device *dev =
create_wl_input_device(backend, WLR_INPUT_DEVICE_POINTER);
if (dev == NULL) {
free(pointer);
wlr_log(L_ERROR, "Allocation failed");
return;
}
wlr_dev = &dev->wlr_input_device;
pointer->input_device = dev;
wl_pointer_add_listener(wl_pointer, &pointer_listener, pointer);
wlr_dev->pointer = &pointer->wlr_pointer;
wlr_dev->output_name = strdup(output->wlr_output.name);
wlr_pointer_init(wlr_dev->pointer, &pointer_impl);
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_dev);
} }
static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat, static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat,
@ -250,53 +287,36 @@ static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat,
if ((caps & WL_SEAT_CAPABILITY_POINTER)) { if ((caps & WL_SEAT_CAPABILITY_POINTER)) {
wlr_log(L_DEBUG, "seat %p offered pointer", (void*) wl_seat); wlr_log(L_DEBUG, "seat %p offered pointer", (void*) wl_seat);
struct wlr_wl_pointer *wlr_wl_pointer;
if (!(wlr_wl_pointer = calloc(1, sizeof(struct wlr_wl_pointer)))) {
wlr_log(L_ERROR, "Unable to allocate wlr_wl_pointer");
return;
}
wlr_wl_pointer->output_destroy_listener.notify =
pointer_handle_output_destroy;
struct wlr_input_device *wlr_device;
if (!(wlr_device = allocate_device(backend, WLR_INPUT_DEVICE_POINTER))) {
free(wlr_wl_pointer);
wlr_log(L_ERROR, "Unable to allocate wlr_device for pointer");
return;
}
struct wlr_wl_input_device *wlr_wl_device =
(struct wlr_wl_input_device *)wlr_device;
struct wl_pointer *wl_pointer = wl_seat_get_pointer(wl_seat); struct wl_pointer *wl_pointer = wl_seat_get_pointer(wl_seat);
wl_pointer_add_listener(wl_pointer, &pointer_listener, wlr_device);
wlr_device->pointer = &wlr_wl_pointer->wlr_pointer;
wlr_pointer_init(wlr_device->pointer, NULL);
wlr_wl_device->resource = wl_pointer;
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_device);
backend->pointer = wl_pointer; backend->pointer = wl_pointer;
struct wlr_wl_output *output;
wl_list_for_each(output, &backend->outputs, link) {
create_wl_pointer(wl_pointer, output);
}
} }
if ((caps & WL_SEAT_CAPABILITY_KEYBOARD)) { if ((caps & WL_SEAT_CAPABILITY_KEYBOARD)) {
wlr_log(L_DEBUG, "seat %p offered keyboard", (void*) wl_seat); wlr_log(L_DEBUG, "seat %p offered keyboard", (void*) wl_seat);
struct wlr_input_device *wlr_device = allocate_device(backend, struct wlr_wl_input_device *dev = create_wl_input_device(backend,
WLR_INPUT_DEVICE_KEYBOARD); WLR_INPUT_DEVICE_KEYBOARD);
if (!wlr_device) { if (dev == NULL) {
wlr_log(L_ERROR, "Unable to allocate wl_keyboard device"); wlr_log(L_ERROR, "Allocation failed");
return; return;
} }
wlr_device->keyboard = calloc(1, sizeof(struct wlr_keyboard)); struct wlr_input_device *wlr_dev = &dev->wlr_input_device;
if (!wlr_device->keyboard) { wlr_dev->keyboard = calloc(1, sizeof(struct wlr_keyboard));
free(wlr_device); if (!wlr_dev->keyboard) {
wlr_log(L_ERROR, "Unable to allocate wlr keyboard"); free(dev);
wlr_log(L_ERROR, "Allocation failed");
return; return;
} }
wlr_keyboard_init(wlr_device->keyboard, NULL); wlr_keyboard_init(wlr_dev->keyboard, NULL);
struct wlr_wl_input_device *wlr_wl_device =
(struct wlr_wl_input_device *)wlr_device;
struct wl_keyboard *wl_keyboard = wl_seat_get_keyboard(wl_seat); struct wl_keyboard *wl_keyboard = wl_seat_get_keyboard(wl_seat);
wl_keyboard_add_listener(wl_keyboard, &keyboard_listener, wlr_device); wl_keyboard_add_listener(wl_keyboard, &keyboard_listener, wlr_dev);
wlr_wl_device->resource = wl_keyboard; dev->resource = wl_keyboard;
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_device); wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_dev);
} }
} }

View File

@ -35,7 +35,7 @@ struct wlr_wl_backend {
char *seat_name; char *seat_name;
}; };
struct wlr_wl_backend_output { struct wlr_wl_output {
struct wlr_output wlr_output; struct wlr_output wlr_output;
struct wlr_wl_backend *backend; struct wlr_wl_backend *backend;
@ -47,7 +47,7 @@ struct wlr_wl_backend_output {
struct { struct {
struct wl_shm_pool *pool; struct wl_shm_pool *pool;
void *buffer; // actually a (client-side) struct wl_buffer* void *buffer; // actually a (client-side) struct wl_buffer *
uint32_t buf_size; uint32_t buf_size;
uint8_t *data; uint8_t *data;
struct wl_surface *surface; struct wl_surface *surface;
@ -69,17 +69,20 @@ struct wlr_wl_input_device {
struct wlr_wl_pointer { struct wlr_wl_pointer {
struct wlr_pointer wlr_pointer; struct wlr_pointer wlr_pointer;
struct wlr_wl_input_device *input_device;
struct wl_pointer *wl_pointer;
enum wlr_axis_source axis_source; enum wlr_axis_source axis_source;
struct wlr_wl_backend_output *current_output; struct wlr_wl_output *output;
struct wl_listener output_destroy_listener;
struct wl_listener output_destroy;
}; };
void poll_wl_registry(struct wlr_wl_backend *backend); void poll_wl_registry(struct wlr_wl_backend *backend);
void update_wl_output_cursor(struct wlr_wl_backend_output *output); void update_wl_output_cursor(struct wlr_wl_output *output);
struct wlr_wl_backend_output *get_wl_output_for_surface( struct wlr_wl_pointer *pointer_get_wl(struct wlr_pointer *wlr_pointer);
struct wlr_wl_backend *backend, struct wl_surface *surface); void create_wl_pointer(struct wl_pointer *wl_pointer,
void get_wl_output_layout_box(struct wlr_wl_backend *backend, struct wlr_wl_output *output);
struct wlr_box *box);
extern const struct wl_seat_listener seat_listener; extern const struct wl_seat_listener seat_listener;

View File

@ -37,7 +37,7 @@ bool wlr_backend_is_wl(struct wlr_backend *backend);
bool wlr_input_device_is_wl(struct wlr_input_device *device); bool wlr_input_device_is_wl(struct wlr_input_device *device);
/** /**
* True if the given output is a wlr_wl_backend_output. * True if the given output is a wlr_wl_output.
*/ */
bool wlr_output_is_wl(struct wlr_output *output); bool wlr_output_is_wl(struct wlr_output *output);