wlroots/examples/pointer.c

406 lines
13 KiB
C
Raw Normal View History

2018-04-20 14:11:45 +00:00
#define _POSIX_C_SOURCE 200112L
#include <assert.h>
#include <math.h>
2017-06-13 16:21:36 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
2017-06-13 16:21:36 +00:00
#include <unistd.h>
#include <wayland-server-core.h>
2017-06-13 16:21:36 +00:00
#include <wlr/backend.h>
2017-07-11 07:18:34 +00:00
#include <wlr/backend/session.h>
#include <wlr/render/gles2.h>
#include <wlr/render/wlr_renderer.h>
#include <wlr/types/wlr_cursor.h>
2017-06-21 14:27:45 +00:00
#include <wlr/types/wlr_keyboard.h>
#include <wlr/types/wlr_list.h>
#include <wlr/types/wlr_matrix.h>
2017-08-20 20:02:39 +00:00
#include <wlr/types/wlr_output_layout.h>
2018-05-13 14:42:16 +00:00
#include <wlr/types/wlr_xcursor_manager.h>
2017-06-21 18:15:06 +00:00
#include <wlr/util/log.h>
#include <xkbcommon/xkbcommon.h>
2017-06-13 16:21:36 +00:00
struct sample_state {
2018-04-20 14:11:45 +00:00
struct wl_display *display;
2017-08-20 20:02:39 +00:00
struct compositor_state *compositor;
2018-05-13 14:42:16 +00:00
struct wlr_xcursor_manager *xcursor_manager;
2017-08-20 20:02:39 +00:00
struct wlr_cursor *cursor;
2017-06-26 05:34:15 +00:00
double cur_x, cur_y;
2017-06-13 16:38:57 +00:00
float default_color[4];
float clear_color[4];
2017-08-20 20:02:39 +00:00
struct wlr_output_layout *layout;
struct wl_list devices;
2018-04-20 14:11:45 +00:00
struct timespec last_frame;
2017-08-20 20:02:39 +00:00
2018-04-20 14:11:45 +00:00
struct wl_listener new_output;
struct wl_listener new_input;
2017-08-20 20:02:39 +00:00
struct wl_listener cursor_motion;
struct wl_listener cursor_motion_absolute;
struct wl_listener cursor_button;
struct wl_listener cursor_axis;
2017-08-27 15:34:25 +00:00
struct wl_listener touch_motion;
struct wl_listener touch_up;
struct wl_listener touch_down;
struct wl_listener touch_cancel;
struct wl_list touch_points;
struct wl_listener tablet_tool_axis;
struct wl_listener tablet_tool_proxmity;
struct wl_listener tablet_tool_tip;
struct wl_listener tablet_tool_button;
2017-08-27 15:34:25 +00:00
};
struct touch_point {
2017-11-16 22:53:52 +00:00
int32_t touch_id;
2017-08-27 15:34:25 +00:00
double x, y;
struct wl_list link;
2017-06-13 16:21:36 +00:00
};
2018-04-20 14:11:45 +00:00
struct sample_output {
2018-05-13 14:45:18 +00:00
struct sample_state *state;
2018-04-20 14:11:45 +00:00
struct wlr_output *output;
struct wl_listener frame;
struct wl_listener destroy;
};
struct sample_keyboard {
2018-05-13 14:45:18 +00:00
struct sample_state *state;
2018-04-20 14:11:45 +00:00
struct wlr_input_device *device;
struct wl_listener key;
struct wl_listener destroy;
};
2018-05-13 14:45:18 +00:00
static void warp_to_touch(struct sample_state *state,
2017-10-29 19:03:56 +00:00
struct wlr_input_device *dev) {
2018-05-13 14:45:18 +00:00
if (wl_list_empty(&state->touch_points)) {
2017-08-27 21:35:12 +00:00
return;
}
double x = 0, y = 0;
size_t n = 0;
struct touch_point *point;
2018-05-13 14:45:18 +00:00
wl_list_for_each(point, &state->touch_points, link) {
2017-08-27 21:35:12 +00:00
x += point->x;
y += point->y;
n++;
2017-08-27 15:34:25 +00:00
}
x /= n;
y /= n;
2018-05-13 14:45:18 +00:00
wlr_cursor_warp_absolute(state->cursor, dev, x, y);
2017-08-27 15:34:25 +00:00
}
static void output_frame_notify(struct wl_listener *listener, void *data) {
2018-04-20 14:11:45 +00:00
struct sample_output *sample_output = wl_container_of(listener, sample_output, frame);
2018-05-13 14:45:18 +00:00
struct sample_state *state = sample_output->state;
2018-04-20 14:11:45 +00:00
struct wlr_output *wlr_output = sample_output->output;
struct wlr_renderer *renderer = wlr_backend_get_renderer(wlr_output->backend);
assert(renderer);
2017-06-13 16:21:36 +00:00
wlr_output_attach_render(wlr_output, NULL);
wlr_renderer_begin(renderer, wlr_output->width, wlr_output->height);
2018-05-13 14:45:18 +00:00
wlr_renderer_clear(renderer, state->clear_color);
wlr_output_render_software_cursors(wlr_output, NULL);
wlr_output_commit(wlr_output);
wlr_renderer_end(renderer);
2017-06-13 16:21:36 +00:00
}
2017-08-20 20:02:39 +00:00
static void handle_cursor_motion(struct wl_listener *listener, void *data) {
2017-08-29 13:52:11 +00:00
struct sample_state *sample =
2017-10-29 19:03:56 +00:00
wl_container_of(listener, sample, cursor_motion);
2017-08-20 20:02:39 +00:00
struct wlr_event_pointer_motion *event = data;
2017-08-29 13:52:11 +00:00
wlr_cursor_move(sample->cursor, event->device, event->delta_x,
2017-10-29 19:03:56 +00:00
event->delta_y);
2017-08-20 20:02:39 +00:00
}
2017-08-29 13:52:11 +00:00
static void handle_cursor_motion_absolute(struct wl_listener *listener,
2017-10-29 19:03:56 +00:00
void *data) {
2017-08-29 13:52:11 +00:00
struct sample_state *sample =
2017-10-29 19:03:56 +00:00
wl_container_of(listener, sample, cursor_motion_absolute);
2017-08-20 20:02:39 +00:00
struct wlr_event_pointer_motion_absolute *event = data;
sample->cur_x = event->x;
sample->cur_y = event->y;
2017-06-26 05:34:15 +00:00
wlr_cursor_warp_absolute(sample->cursor, event->device, sample->cur_x,
sample->cur_y);
}
2017-08-20 20:02:39 +00:00
static void handle_cursor_button(struct wl_listener *listener, void *data) {
2017-08-29 13:52:11 +00:00
struct sample_state *sample =
2017-10-29 19:03:56 +00:00
wl_container_of(listener, sample, cursor_button);
2017-08-20 20:02:39 +00:00
struct wlr_event_pointer_button *event = data;
float (*color)[4];
2017-08-20 20:02:39 +00:00
if (event->state == WLR_BUTTON_RELEASED) {
2017-06-13 16:38:57 +00:00
color = &sample->default_color;
2017-08-20 20:02:39 +00:00
memcpy(&sample->clear_color, color, sizeof(*color));
} else {
float red[4] = { 0.25f, 0.25f, 0.25f, 1 };
2017-08-20 20:02:39 +00:00
red[event->button % 3] = 1;
color = &red;
2017-08-20 20:02:39 +00:00
memcpy(&sample->clear_color, color, sizeof(*color));
}
}
2017-08-20 20:02:39 +00:00
static void handle_cursor_axis(struct wl_listener *listener, void *data) {
2017-08-29 13:52:11 +00:00
struct sample_state *sample =
2017-10-29 19:03:56 +00:00
wl_container_of(listener, sample, cursor_axis);
2017-08-20 20:02:39 +00:00
struct wlr_event_pointer_axis *event = data;
2017-06-13 16:38:57 +00:00
for (size_t i = 0; i < 3; ++i) {
2017-08-20 20:02:39 +00:00
sample->default_color[i] += event->delta > 0 ? -0.05f : 0.05f;
2017-06-13 16:38:57 +00:00
if (sample->default_color[i] > 1.0f) {
sample->default_color[i] = 1.0f;
}
if (sample->default_color[i] < 0.0f) {
sample->default_color[i] = 0.0f;
}
}
2017-08-20 20:02:39 +00:00
2017-06-13 16:38:57 +00:00
memcpy(&sample->clear_color, &sample->default_color,
sizeof(sample->clear_color));
}
2017-08-27 15:34:25 +00:00
static void handle_touch_up(struct wl_listener *listener, void *data) {
struct sample_state *sample = wl_container_of(listener, sample, touch_up);
struct wlr_event_touch_up *event = data;
struct touch_point *point, *tmp;
wl_list_for_each_safe(point, tmp, &sample->touch_points, link) {
2017-11-16 22:53:52 +00:00
if (point->touch_id == event->touch_id) {
wl_list_remove(&point->link);
2017-08-27 15:34:25 +00:00
break;
}
}
2017-08-27 21:35:12 +00:00
warp_to_touch(sample, event->device);
2017-08-27 15:34:25 +00:00
}
static void handle_touch_down(struct wl_listener *listener, void *data) {
struct sample_state *sample = wl_container_of(listener, sample, touch_down);
struct wlr_event_touch_down *event = data;
2017-08-28 15:07:54 +00:00
struct touch_point *point = calloc(1, sizeof(struct touch_point));
2017-11-16 22:53:52 +00:00
point->touch_id = event->touch_id;
2018-03-28 15:04:40 +00:00
point->x = event->x;
point->y = event->y;
wl_list_insert(&sample->touch_points, &point->link);
2017-08-27 15:34:25 +00:00
2017-08-27 21:35:12 +00:00
warp_to_touch(sample, event->device);
2017-08-27 15:34:25 +00:00
}
static void handle_touch_motion(struct wl_listener *listener, void *data) {
2017-08-29 13:52:11 +00:00
struct sample_state *sample =
2017-10-29 19:03:56 +00:00
wl_container_of(listener, sample, touch_motion);
2017-08-27 15:34:25 +00:00
struct wlr_event_touch_motion *event = data;
struct touch_point *point;
wl_list_for_each(point, &sample->touch_points, link) {
2017-11-16 22:53:52 +00:00
if (point->touch_id == event->touch_id) {
2018-03-28 15:04:40 +00:00
point->x = event->x;
point->y = event->y;
2017-08-27 15:34:25 +00:00
break;
}
}
2017-08-27 21:35:12 +00:00
warp_to_touch(sample, event->device);
2017-08-27 15:34:25 +00:00
}
static void handle_touch_cancel(struct wl_listener *listener, void *data) {
2018-07-09 21:49:54 +00:00
wlr_log(WLR_DEBUG, "TODO: touch cancel");
2017-08-27 15:34:25 +00:00
}
static void handle_tablet_tool_axis(struct wl_listener *listener, void *data) {
2017-08-29 13:52:11 +00:00
struct sample_state *sample =
2017-10-29 19:03:56 +00:00
wl_container_of(listener, sample, tablet_tool_axis);
struct wlr_event_tablet_tool_axis *event = data;
2017-08-29 13:52:11 +00:00
if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_X) &&
(event->updated_axes & WLR_TABLET_TOOL_AXIS_Y)) {
2018-03-28 15:40:35 +00:00
wlr_cursor_warp_absolute(sample->cursor,
event->device, event->x, event->y);
}
}
static void keyboard_key_notify(struct wl_listener *listener, void *data) {
2018-04-20 14:11:45 +00:00
struct sample_keyboard *keyboard = wl_container_of(listener, keyboard, key);
2018-05-13 14:45:18 +00:00
struct sample_state *sample = keyboard->state;
2018-04-20 14:11:45 +00:00
struct wlr_event_keyboard_key *event = data;
uint32_t keycode = event->keycode + 8;
const xkb_keysym_t *syms;
int nsyms = xkb_state_key_get_syms(keyboard->device->keyboard->xkb_state,
keycode, &syms);
for (int i = 0; i < nsyms; i++) {
xkb_keysym_t sym = syms[i];
if (sym == XKB_KEY_Escape) {
2018-04-30 00:16:29 +00:00
wl_display_terminate(sample->display);
}
2018-04-20 14:11:45 +00:00
}
}
static void output_remove_notify(struct wl_listener *listener, void *data) {
2018-04-20 14:11:45 +00:00
struct sample_output *sample_output = wl_container_of(listener, sample_output, destroy);
2018-05-13 14:45:18 +00:00
struct sample_state *sample = sample_output->state;
2018-04-20 14:11:45 +00:00
wlr_output_layout_remove(sample->layout, sample_output->output);
wl_list_remove(&sample_output->frame.link);
wl_list_remove(&sample_output->destroy.link);
free(sample_output);
}
static void new_output_notify(struct wl_listener *listener, void *data) {
2018-04-20 14:11:45 +00:00
struct wlr_output *output = data;
struct sample_state *sample = wl_container_of(listener, sample, new_output);
struct sample_output *sample_output = calloc(1, sizeof(struct sample_output));
2018-05-11 02:03:36 +00:00
if (!wl_list_empty(&output->modes)) {
struct wlr_output_mode *mode = wl_container_of(output->modes.prev, mode, link);
2018-04-20 14:11:45 +00:00
wlr_output_set_mode(output, mode);
}
sample_output->output = output;
2018-05-13 14:45:18 +00:00
sample_output->state = sample;
2018-04-20 14:11:45 +00:00
wl_signal_add(&output->events.frame, &sample_output->frame);
sample_output->frame.notify = output_frame_notify;
wl_signal_add(&output->events.destroy, &sample_output->destroy);
sample_output->destroy.notify = output_remove_notify;
wlr_output_layout_add_auto(sample->layout, sample_output->output);
2018-05-13 14:42:16 +00:00
wlr_xcursor_manager_load(sample->xcursor_manager, output->scale);
wlr_xcursor_manager_set_cursor_image(sample->xcursor_manager, "left_ptr",
sample->cursor);
wlr_output_commit(output);
2018-04-20 14:11:45 +00:00
}
static void keyboard_destroy_notify(struct wl_listener *listener, void *data) {
2018-04-20 14:11:45 +00:00
struct sample_keyboard *keyboard = wl_container_of(listener, keyboard, destroy);
wl_list_remove(&keyboard->destroy.link);
wl_list_remove(&keyboard->key.link);
free(keyboard);
}
static void new_input_notify(struct wl_listener *listener, void *data) {
2018-04-20 14:11:45 +00:00
struct wlr_input_device *device = data;
2018-05-13 14:45:18 +00:00
struct sample_state *state = wl_container_of(listener, state, new_input);
2018-04-20 14:11:45 +00:00
switch (device->type) {
case WLR_INPUT_DEVICE_POINTER:
case WLR_INPUT_DEVICE_TOUCH:
case WLR_INPUT_DEVICE_TABLET_TOOL:
2018-05-13 14:45:18 +00:00
wlr_cursor_attach_input_device(state->cursor, device);
2018-04-20 14:11:45 +00:00
break;
2018-04-30 00:16:29 +00:00
case WLR_INPUT_DEVICE_KEYBOARD:;
struct sample_keyboard *keyboard = calloc(1, sizeof(struct sample_keyboard));
2018-04-20 14:11:45 +00:00
keyboard->device = device;
2018-05-13 14:45:18 +00:00
keyboard->state = state;
2018-04-20 14:11:45 +00:00
wl_signal_add(&device->events.destroy, &keyboard->destroy);
keyboard->destroy.notify = keyboard_destroy_notify;
wl_signal_add(&device->keyboard->events.key, &keyboard->key);
keyboard->key.notify = keyboard_key_notify;
2018-04-30 00:16:29 +00:00
struct xkb_rule_names rules = { 0 };
2018-04-20 14:11:45 +00:00
rules.rules = getenv("XKB_DEFAULT_RULES");
rules.model = getenv("XKB_DEFAULT_MODEL");
rules.layout = getenv("XKB_DEFAULT_LAYOUT");
rules.variant = getenv("XKB_DEFAULT_VARIANT");
rules.options = getenv("XKB_DEFAULT_OPTIONS");
2018-04-30 00:16:29 +00:00
struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
2018-04-20 14:11:45 +00:00
if (!context) {
2018-07-09 21:49:54 +00:00
wlr_log(WLR_ERROR, "Failed to create XKB context");
2018-04-20 14:11:45 +00:00
exit(1);
}
struct xkb_keymap *keymap = xkb_map_new_from_names(context, &rules,
XKB_KEYMAP_COMPILE_NO_FLAGS);
if (!keymap) {
wlr_log(WLR_ERROR, "Failed to create XKB keymap");
exit(1);
}
wlr_keyboard_set_keymap(device->keyboard, keymap);
xkb_keymap_unref(keymap);
2018-04-20 14:11:45 +00:00
xkb_context_unref(context);
break;
default:
break;
}
}
2017-06-13 16:21:36 +00:00
int main(int argc, char *argv[]) {
2018-07-09 21:49:54 +00:00
wlr_log_init(WLR_DEBUG, NULL);
2018-04-20 14:11:45 +00:00
struct wl_display *display = wl_display_create();
struct sample_state state = {
2017-06-13 16:38:57 +00:00
.default_color = { 0.25f, 0.25f, 0.25f, 1 },
2017-08-27 15:34:25 +00:00
.clear_color = { 0.25f, 0.25f, 0.25f, 1 },
2018-04-20 14:11:45 +00:00
.display = display
};
2017-08-20 20:02:39 +00:00
struct wlr_backend *wlr = wlr_backend_autocreate(display, NULL);
2018-04-20 14:11:45 +00:00
if (!wlr) {
exit(1);
}
state.cursor = wlr_cursor_create();
state.layout = wlr_output_layout_create();
wlr_cursor_attach_output_layout(state.cursor, state.layout);
2018-04-20 14:11:45 +00:00
//wlr_cursor_map_to_region(state.cursor, state.config->cursor.mapped_box);
wl_list_init(&state.devices);
wl_list_init(&state.touch_points);
2017-08-20 20:02:39 +00:00
2017-08-27 15:34:25 +00:00
// pointer events
2017-08-20 20:02:39 +00:00
wl_signal_add(&state.cursor->events.motion, &state.cursor_motion);
state.cursor_motion.notify = handle_cursor_motion;
2017-08-29 13:52:11 +00:00
wl_signal_add(&state.cursor->events.motion_absolute,
&state.cursor_motion_absolute);
2017-08-20 20:02:39 +00:00
state.cursor_motion_absolute.notify = handle_cursor_motion_absolute;
wl_signal_add(&state.cursor->events.button, &state.cursor_button);
state.cursor_button.notify = handle_cursor_button;
wl_signal_add(&state.cursor->events.axis, &state.cursor_axis);
state.cursor_axis.notify = handle_cursor_axis;
2017-08-27 15:34:25 +00:00
// touch events
wl_signal_add(&state.cursor->events.touch_up, &state.touch_up);
state.touch_up.notify = handle_touch_up;
wl_signal_add(&state.cursor->events.touch_down, &state.touch_down);
state.touch_down.notify = handle_touch_down;
wl_signal_add(&state.cursor->events.touch_motion, &state.touch_motion);
state.touch_motion.notify = handle_touch_motion;
wl_signal_add(&state.cursor->events.touch_cancel, &state.touch_cancel);
state.touch_cancel.notify = handle_touch_cancel;
2018-04-20 14:11:45 +00:00
wl_signal_add(&wlr->events.new_input, &state.new_input);
state.new_input.notify = new_input_notify;
wl_signal_add(&wlr->events.new_output, &state.new_output);
state.new_output.notify = new_output_notify;
// tool events
2017-08-29 13:52:11 +00:00
wl_signal_add(&state.cursor->events.tablet_tool_axis,
&state.tablet_tool_axis);
state.tablet_tool_axis.notify = handle_tablet_tool_axis;
2018-05-13 14:42:16 +00:00
state.xcursor_manager = wlr_xcursor_manager_create("default", 24);
if (!state.xcursor_manager) {
2018-07-09 21:49:54 +00:00
wlr_log(WLR_ERROR, "Failed to load left_ptr cursor");
2017-08-08 01:13:04 +00:00
return 1;
}
2018-05-13 14:42:16 +00:00
wlr_xcursor_manager_set_cursor_image(state.xcursor_manager, "left_ptr",
state.cursor);
2017-08-20 20:02:39 +00:00
2018-04-20 14:11:45 +00:00
clock_gettime(CLOCK_MONOTONIC, &state.last_frame);
2018-04-20 14:11:45 +00:00
if (!wlr_backend_start(wlr)) {
2018-07-09 21:49:54 +00:00
wlr_log(WLR_ERROR, "Failed to start backend");
2018-04-20 14:11:45 +00:00
wlr_backend_destroy(wlr);
exit(1);
}
2018-04-20 14:11:45 +00:00
wl_display_run(display);
wl_display_destroy(display);
2017-08-08 01:13:04 +00:00
2018-05-13 14:42:16 +00:00
wlr_xcursor_manager_destroy(state.xcursor_manager);
2017-08-20 20:02:39 +00:00
wlr_cursor_destroy(state.cursor);
wlr_output_layout_destroy(state.layout);
2017-06-13 16:21:36 +00:00
}