2018-04-20 10:11:45 -04:00
|
|
|
#define _POSIX_C_SOURCE 200112L
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <assert.h>
|
|
|
|
|
#include <math.h>
|
2017-06-13 12:21:36 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <time.h>
|
2017-06-13 12:21:36 -04:00
|
|
|
#include <unistd.h>
|
2019-07-27 11:53:54 +03:00
|
|
|
#include <wayland-server-core.h>
|
2017-06-13 12:21:36 -04:00
|
|
|
#include <wlr/backend.h>
|
2017-07-11 19:18:34 +12:00
|
|
|
#include <wlr/backend/session.h>
|
2021-09-24 09:34:51 -04:00
|
|
|
#include <wlr/render/allocator.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2017-08-20 16:02:39 -04:00
|
|
|
#include <wlr/types/wlr_cursor.h>
|
2023-01-17 22:49:10 +03:00
|
|
|
#include <wlr/types/wlr_input_mapper.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/types/wlr_keyboard.h>
|
|
|
|
|
#include <wlr/types/wlr_matrix.h>
|
|
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
2020-11-11 14:16:41 +01:00
|
|
|
#include <wlr/types/wlr_pointer.h>
|
|
|
|
|
#include <wlr/types/wlr_tablet_tool.h>
|
|
|
|
|
#include <wlr/types/wlr_touch.h>
|
2018-05-13 10:42:16 -04:00
|
|
|
#include <wlr/types/wlr_xcursor_manager.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/util/log.h>
|
|
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2017-06-13 12:21:36 -04:00
|
|
|
|
|
|
|
|
struct sample_state {
|
2018-04-20 10:11:45 -04:00
|
|
|
struct wl_display *display;
|
2021-09-24 09:34:51 -04:00
|
|
|
struct wlr_renderer *renderer;
|
|
|
|
|
struct wlr_allocator *allocator;
|
2018-05-13 10:42:16 -04:00
|
|
|
struct wlr_xcursor_manager *xcursor_manager;
|
2017-08-20 16:02:39 -04:00
|
|
|
struct wlr_cursor *cursor;
|
2017-06-13 12:38:57 -04:00
|
|
|
float default_color[4];
|
2017-06-13 12:31:24 -04:00
|
|
|
float clear_color[4];
|
2017-08-20 16:02:39 -04:00
|
|
|
struct wlr_output_layout *layout;
|
2023-01-17 22:49:10 +03:00
|
|
|
struct wlr_input_mapper *input_mapper;
|
2017-08-20 16:02:39 -04:00
|
|
|
|
2018-04-20 10:11:45 -04:00
|
|
|
struct wl_listener new_output;
|
|
|
|
|
struct wl_listener new_input;
|
2017-06-13 12:21:36 -04:00
|
|
|
};
|
|
|
|
|
|
2017-08-27 11:34:25 -04:00
|
|
|
struct touch_point {
|
2017-11-16 17:53:52 -05:00
|
|
|
int32_t touch_id;
|
2017-08-27 11:34:25 -04:00
|
|
|
double x, y;
|
2017-11-20 21:26:20 +01:00
|
|
|
struct wl_list link;
|
2017-08-27 11:34:25 -04:00
|
|
|
};
|
|
|
|
|
|
2018-04-20 10:11:45 -04:00
|
|
|
struct sample_output {
|
2018-05-13 10:45:18 -04:00
|
|
|
struct sample_state *state;
|
2018-04-20 10:11:45 -04:00
|
|
|
struct wlr_output *output;
|
|
|
|
|
struct wl_listener frame;
|
|
|
|
|
struct wl_listener destroy;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct sample_keyboard {
|
2018-05-13 10:45:18 -04:00
|
|
|
struct sample_state *state;
|
2022-06-20 16:57:29 +02:00
|
|
|
struct wlr_keyboard *wlr_keyboard;
|
2018-04-20 10:11:45 -04:00
|
|
|
struct wl_listener key;
|
|
|
|
|
struct wl_listener destroy;
|
|
|
|
|
};
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
struct sample_pointer {
|
|
|
|
|
struct sample_state *state;
|
|
|
|
|
struct wlr_pointer *wlr_pointer;
|
|
|
|
|
struct wl_listener motion;
|
|
|
|
|
struct wl_listener motion_absolute;
|
|
|
|
|
struct wl_listener button;
|
|
|
|
|
struct wl_listener axis;
|
|
|
|
|
struct wl_listener frame;
|
|
|
|
|
struct wl_listener destroy;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct sample_touch {
|
|
|
|
|
struct sample_state *state;
|
|
|
|
|
struct wlr_touch *wlr_touch;
|
|
|
|
|
struct wl_list points;
|
|
|
|
|
struct wl_listener motion;
|
|
|
|
|
struct wl_listener down;
|
|
|
|
|
struct wl_listener up;
|
|
|
|
|
struct wl_listener destroy;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct sample_tablet {
|
|
|
|
|
struct sample_state *state;
|
|
|
|
|
struct wlr_tablet *wlr_tablet;
|
|
|
|
|
double x, y;
|
|
|
|
|
struct wl_listener axis;
|
|
|
|
|
struct wl_listener destroy;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void warp_absolute(struct sample_state *state,
|
|
|
|
|
struct wlr_input_device *device, double x, double y) {
|
|
|
|
|
double lx, ly;
|
|
|
|
|
wlr_input_mapper_absolute_to_layout(state->input_mapper,
|
|
|
|
|
device, x, y, &lx, &ly);
|
|
|
|
|
wlr_cursor_warp(state->cursor, lx, ly);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void warp_to_touch(struct sample_touch *touch) {
|
|
|
|
|
if (wl_list_empty(&touch->points)) {
|
2017-08-27 17:35:12 -04:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double x = 0, y = 0;
|
2017-11-20 21:26:20 +01:00
|
|
|
size_t n = 0;
|
|
|
|
|
struct touch_point *point;
|
2023-01-17 22:49:10 +03:00
|
|
|
wl_list_for_each(point, &touch->points, link) {
|
2017-08-27 17:35:12 -04:00
|
|
|
x += point->x;
|
|
|
|
|
y += point->y;
|
2017-11-20 21:26:20 +01:00
|
|
|
n++;
|
2017-08-27 11:34:25 -04:00
|
|
|
}
|
2017-11-20 21:26:20 +01:00
|
|
|
x /= n;
|
|
|
|
|
y /= n;
|
2023-01-17 22:49:10 +03:00
|
|
|
warp_absolute(touch->state, &touch->wlr_touch->base, x, y);
|
2017-08-27 11:34:25 -04:00
|
|
|
}
|
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void output_frame_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 10:11:45 -04:00
|
|
|
struct sample_output *sample_output = wl_container_of(listener, sample_output, frame);
|
2018-05-13 10:45:18 -04:00
|
|
|
struct sample_state *state = sample_output->state;
|
2018-04-20 10:11:45 -04:00
|
|
|
struct wlr_output *wlr_output = sample_output->output;
|
2021-09-24 09:34:51 -04:00
|
|
|
struct wlr_renderer *renderer = state->renderer;
|
2018-05-13 10:31:07 -04:00
|
|
|
assert(renderer);
|
2017-06-13 12:21:36 -04:00
|
|
|
|
2019-04-22 12:42:37 +03:00
|
|
|
wlr_output_attach_render(wlr_output, NULL);
|
2018-05-13 10:31:07 -04:00
|
|
|
wlr_renderer_begin(renderer, wlr_output->width, wlr_output->height);
|
2018-05-13 10:45:18 -04:00
|
|
|
wlr_renderer_clear(renderer, state->clear_color);
|
2019-01-13 17:22:18 +01:00
|
|
|
wlr_output_render_software_cursors(wlr_output, NULL);
|
2018-05-13 10:31:07 -04:00
|
|
|
wlr_renderer_end(renderer);
|
2020-06-20 18:48:52 +02:00
|
|
|
wlr_output_commit(wlr_output);
|
2017-06-13 12:21:36 -04:00
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void pointer_motion_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_pointer *pointer = wl_container_of(listener, pointer, motion);
|
2022-03-09 14:52:27 -05:00
|
|
|
struct wlr_pointer_motion_event *event = data;
|
2023-01-17 22:49:10 +03:00
|
|
|
|
|
|
|
|
struct sample_state *sample = pointer->state;
|
|
|
|
|
|
|
|
|
|
wlr_cursor_warp(sample->cursor, sample->cursor->x + event->delta_x,
|
|
|
|
|
sample->cursor->y + event->delta_y);
|
2017-08-20 16:02:39 -04:00
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void pointer_motion_absolute_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_pointer *pointer =
|
|
|
|
|
wl_container_of(listener, pointer, motion_absolute);
|
2022-03-09 14:52:27 -05:00
|
|
|
struct wlr_pointer_motion_absolute_event *event = data;
|
2017-08-20 16:02:39 -04:00
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
warp_absolute(pointer->state, &pointer->wlr_pointer->base, event->x, event->y);
|
2017-08-20 16:02:39 -04:00
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void pointer_button_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_pointer *pointer = wl_container_of(listener, pointer, button);
|
2022-03-09 14:52:27 -05:00
|
|
|
struct wlr_pointer_button_event *event = data;
|
2017-08-20 16:02:39 -04:00
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
struct sample_state *sample = pointer->state;
|
|
|
|
|
|
2017-08-20 16:02:39 -04:00
|
|
|
float (*color)[4];
|
|
|
|
|
if (event->state == WLR_BUTTON_RELEASED) {
|
|
|
|
|
color = &sample->default_color;
|
|
|
|
|
memcpy(&sample->clear_color, color, sizeof(*color));
|
|
|
|
|
} else {
|
|
|
|
|
float red[4] = { 0.25f, 0.25f, 0.25f, 1 };
|
|
|
|
|
red[event->button % 3] = 1;
|
|
|
|
|
color = &red;
|
|
|
|
|
memcpy(&sample->clear_color, color, sizeof(*color));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void pointer_axis_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_pointer *pointer = wl_container_of(listener, pointer, axis);
|
2022-03-09 14:52:27 -05:00
|
|
|
struct wlr_pointer_axis_event *event = data;
|
2017-08-20 16:02:39 -04:00
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
struct sample_state *sample = pointer->state;
|
|
|
|
|
|
2017-08-20 16:02:39 -04:00
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
|
|
|
|
sample->default_color[i] += event->delta > 0 ? -0.05f : 0.05f;
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
memcpy(&sample->clear_color, &sample->default_color,
|
|
|
|
|
sizeof(sample->clear_color));
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void pointer_destroy_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_pointer *pointer = wl_container_of(listener, pointer, destroy);
|
|
|
|
|
wl_list_remove(&pointer->destroy.link);
|
|
|
|
|
wl_list_remove(&pointer->motion.link);
|
|
|
|
|
wl_list_remove(&pointer->motion_absolute.link);
|
|
|
|
|
wl_list_remove(&pointer->button.link);
|
|
|
|
|
wl_list_remove(&pointer->axis.link);
|
|
|
|
|
free(pointer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void touch_up_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_touch *touch = wl_container_of(listener, touch, up);
|
|
|
|
|
struct wlr_touch_up_event *event = data;
|
2017-11-20 21:26:20 +01:00
|
|
|
|
|
|
|
|
struct touch_point *point, *tmp;
|
2023-01-17 22:49:10 +03:00
|
|
|
wl_list_for_each_safe(point, tmp, &touch->points, link) {
|
2017-11-16 17:53:52 -05:00
|
|
|
if (point->touch_id == event->touch_id) {
|
2017-11-20 21:26:20 +01:00
|
|
|
wl_list_remove(&point->link);
|
2017-08-27 11:34:25 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
warp_to_touch(touch);
|
2017-08-27 11:34:25 -04:00
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void touch_down_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_touch *touch = wl_container_of(listener, touch, down);
|
|
|
|
|
struct wlr_touch_down_event *event = data;
|
|
|
|
|
|
2017-08-28 11:07:54 -04:00
|
|
|
struct touch_point *point = calloc(1, sizeof(struct touch_point));
|
2017-11-16 17:53:52 -05:00
|
|
|
point->touch_id = event->touch_id;
|
2018-03-28 11:04:40 -04:00
|
|
|
point->x = event->x;
|
|
|
|
|
point->y = event->y;
|
2023-01-17 22:49:10 +03:00
|
|
|
wl_list_insert(&touch->points, &point->link);
|
2017-08-27 11:34:25 -04:00
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
warp_to_touch(touch);
|
2017-08-27 11:34:25 -04:00
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void touch_motion_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_touch *touch = wl_container_of(listener, touch, motion);
|
|
|
|
|
struct wlr_touch_motion_event *event = data;
|
2017-11-20 21:26:20 +01:00
|
|
|
|
|
|
|
|
struct touch_point *point;
|
2023-01-17 22:49:10 +03:00
|
|
|
wl_list_for_each(point, &touch->points, link) {
|
2017-11-16 17:53:52 -05:00
|
|
|
if (point->touch_id == event->touch_id) {
|
2018-03-28 11:04:40 -04:00
|
|
|
point->x = event->x;
|
|
|
|
|
point->y = event->y;
|
2017-08-27 11:34:25 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
warp_to_touch(touch);
|
2017-08-27 11:34:25 -04:00
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void touch_destroy_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_touch *touch = wl_container_of(listener, touch, destroy);
|
|
|
|
|
wl_list_remove(&touch->destroy.link);
|
|
|
|
|
wl_list_remove(&touch->up.link);
|
|
|
|
|
wl_list_remove(&touch->down.link);
|
|
|
|
|
wl_list_remove(&touch->motion.link);
|
|
|
|
|
free(touch);
|
2017-08-27 11:34:25 -04:00
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void tablet_axis_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_tablet *tablet = wl_container_of(listener, tablet, axis);
|
2022-03-09 15:43:28 -05:00
|
|
|
struct wlr_tablet_tool_axis_event *event = data;
|
2023-01-17 22:49:10 +03:00
|
|
|
|
|
|
|
|
if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_X) != 0) {
|
|
|
|
|
tablet->x = event->x;
|
2017-08-28 22:12:35 -04:00
|
|
|
}
|
2023-01-17 22:49:10 +03:00
|
|
|
if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_Y) != 0) {
|
|
|
|
|
tablet->y = event->y;
|
|
|
|
|
}
|
|
|
|
|
warp_absolute(tablet->state, &tablet->wlr_tablet->base, tablet->x, tablet->y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void tablet_destroy_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_tablet *tablet = wl_container_of(listener, tablet, destroy);
|
|
|
|
|
wl_list_remove(&tablet->destroy.link);
|
|
|
|
|
wl_list_remove(&tablet->axis.link);
|
|
|
|
|
free(tablet);
|
2017-08-28 22:12:35 -04:00
|
|
|
}
|
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void keyboard_key_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 10:11:45 -04:00
|
|
|
struct sample_keyboard *keyboard = wl_container_of(listener, keyboard, key);
|
2018-05-13 10:45:18 -04:00
|
|
|
struct sample_state *sample = keyboard->state;
|
2022-03-09 15:05:12 -05:00
|
|
|
struct wlr_keyboard_key_event *event = data;
|
2018-04-20 10:11:45 -04:00
|
|
|
uint32_t keycode = event->keycode + 8;
|
|
|
|
|
const xkb_keysym_t *syms;
|
2022-06-20 16:57:29 +02:00
|
|
|
int nsyms = xkb_state_key_get_syms(keyboard->wlr_keyboard->xkb_state,
|
2018-04-20 10:11:45 -04:00
|
|
|
keycode, &syms);
|
|
|
|
|
for (int i = 0; i < nsyms; i++) {
|
|
|
|
|
xkb_keysym_t sym = syms[i];
|
|
|
|
|
if (sym == XKB_KEY_Escape) {
|
2018-04-29 20:16:29 -04:00
|
|
|
wl_display_terminate(sample->display);
|
|
|
|
|
}
|
2018-04-20 10:11:45 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
static void keyboard_destroy_notify(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct sample_keyboard *keyboard = wl_container_of(listener, keyboard, destroy);
|
|
|
|
|
wl_list_remove(&keyboard->destroy.link);
|
|
|
|
|
wl_list_remove(&keyboard->key.link);
|
|
|
|
|
free(keyboard);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void output_remove_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 10:11:45 -04:00
|
|
|
struct sample_output *sample_output = wl_container_of(listener, sample_output, destroy);
|
2018-05-13 10:45:18 -04:00
|
|
|
struct sample_state *sample = sample_output->state;
|
2018-04-20 10:11:45 -04: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);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void new_output_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 10:11:45 -04:00
|
|
|
struct wlr_output *output = data;
|
|
|
|
|
struct sample_state *sample = wl_container_of(listener, sample, new_output);
|
2021-09-24 09:34:51 -04:00
|
|
|
|
|
|
|
|
wlr_output_init_render(output, sample->allocator, sample->renderer);
|
|
|
|
|
|
2018-04-20 10:11:45 -04:00
|
|
|
struct sample_output *sample_output = calloc(1, sizeof(struct sample_output));
|
|
|
|
|
sample_output->output = output;
|
2018-05-13 10:45:18 -04:00
|
|
|
sample_output->state = sample;
|
2018-04-20 10:11:45 -04: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 10:42:16 -04:00
|
|
|
wlr_xcursor_manager_load(sample->xcursor_manager, output->scale);
|
|
|
|
|
wlr_xcursor_manager_set_cursor_image(sample->xcursor_manager, "left_ptr",
|
|
|
|
|
sample->cursor);
|
2020-02-08 19:09:41 +13:00
|
|
|
|
2021-04-19 17:25:13 +02:00
|
|
|
struct wlr_output_mode *mode = wlr_output_preferred_mode(output);
|
|
|
|
|
if (mode != NULL) {
|
|
|
|
|
wlr_output_set_mode(output, mode);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-08 19:09:41 +13:00
|
|
|
wlr_output_commit(output);
|
2018-04-20 10:11:45 -04:00
|
|
|
}
|
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void new_input_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 10:11:45 -04:00
|
|
|
struct wlr_input_device *device = data;
|
2018-05-13 10:45:18 -04:00
|
|
|
struct sample_state *state = wl_container_of(listener, state, new_input);
|
2018-04-20 10:11:45 -04:00
|
|
|
switch (device->type) {
|
2023-01-17 22:49:10 +03:00
|
|
|
case WLR_INPUT_DEVICE_POINTER:;
|
|
|
|
|
struct sample_pointer *pointer = calloc(1, sizeof(struct sample_pointer));
|
|
|
|
|
pointer->wlr_pointer = wlr_pointer_from_input_device(device);
|
|
|
|
|
pointer->state = state;
|
|
|
|
|
wl_signal_add(&device->events.destroy, &pointer->destroy);
|
|
|
|
|
pointer->destroy.notify = pointer_destroy_notify;
|
|
|
|
|
wl_signal_add(&pointer->wlr_pointer->events.motion, &pointer->motion);
|
|
|
|
|
pointer->motion.notify = pointer_motion_notify;
|
|
|
|
|
wl_signal_add(&pointer->wlr_pointer->events.motion_absolute,
|
|
|
|
|
&pointer->motion_absolute);
|
|
|
|
|
pointer->motion_absolute.notify = pointer_motion_absolute_notify;
|
|
|
|
|
wl_signal_add(&pointer->wlr_pointer->events.button, &pointer->button);
|
|
|
|
|
pointer->button.notify = pointer_button_notify;
|
|
|
|
|
wl_signal_add(&pointer->wlr_pointer->events.axis, &pointer->axis);
|
|
|
|
|
pointer->axis.notify = pointer_axis_notify;
|
|
|
|
|
break;
|
|
|
|
|
case WLR_INPUT_DEVICE_TOUCH:;
|
|
|
|
|
struct sample_touch *touch = calloc(1, sizeof(struct sample_touch));
|
|
|
|
|
touch->wlr_touch = wlr_touch_from_input_device(device);
|
|
|
|
|
touch->state = state;
|
|
|
|
|
wl_list_init(&touch->points);
|
|
|
|
|
wl_signal_add(&device->events.destroy, &touch->destroy);
|
|
|
|
|
touch->destroy.notify = touch_destroy_notify;
|
|
|
|
|
wl_signal_add(&touch->wlr_touch->events.up, &touch->up);
|
|
|
|
|
touch->up.notify = touch_up_notify;
|
|
|
|
|
wl_signal_add(&touch->wlr_touch->events.down, &touch->down);
|
|
|
|
|
touch->down.notify = touch_down_notify;
|
|
|
|
|
wl_signal_add(&touch->wlr_touch->events.motion, &touch->motion);
|
|
|
|
|
touch->motion.notify = touch_motion_notify;
|
|
|
|
|
break;
|
|
|
|
|
case WLR_INPUT_DEVICE_TABLET_TOOL:;
|
|
|
|
|
struct sample_tablet *tablet = calloc(1, sizeof(struct sample_tablet));
|
|
|
|
|
tablet->wlr_tablet = wlr_tablet_from_input_device(device);
|
|
|
|
|
tablet->state = state;
|
|
|
|
|
wl_signal_add(&device->events.destroy, &tablet->destroy);
|
|
|
|
|
tablet->destroy.notify = tablet_destroy_notify;
|
|
|
|
|
wl_signal_add(&tablet->wlr_tablet->events.axis, &tablet->axis);
|
|
|
|
|
tablet->axis.notify = tablet_axis_notify;
|
2018-04-20 10:11:45 -04:00
|
|
|
break;
|
2018-04-29 20:16:29 -04:00
|
|
|
case WLR_INPUT_DEVICE_KEYBOARD:;
|
|
|
|
|
struct sample_keyboard *keyboard = calloc(1, sizeof(struct sample_keyboard));
|
2022-06-20 16:57:29 +02:00
|
|
|
keyboard->wlr_keyboard = wlr_keyboard_from_input_device(device);
|
2018-05-13 10:45:18 -04:00
|
|
|
keyboard->state = state;
|
2018-04-20 10:11:45 -04:00
|
|
|
wl_signal_add(&device->events.destroy, &keyboard->destroy);
|
|
|
|
|
keyboard->destroy.notify = keyboard_destroy_notify;
|
2022-06-20 16:57:29 +02:00
|
|
|
wl_signal_add(&keyboard->wlr_keyboard->events.key, &keyboard->key);
|
2018-04-20 10:11:45 -04:00
|
|
|
keyboard->key.notify = keyboard_key_notify;
|
2018-04-29 20:16:29 -04:00
|
|
|
struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
2018-04-20 10:11:45 -04:00
|
|
|
if (!context) {
|
2018-07-09 22:49:54 +01:00
|
|
|
wlr_log(WLR_ERROR, "Failed to create XKB context");
|
2018-04-20 10:11:45 -04:00
|
|
|
exit(1);
|
|
|
|
|
}
|
2021-04-16 09:05:39 +02:00
|
|
|
struct xkb_keymap *keymap = xkb_keymap_new_from_names(context, NULL,
|
2018-09-02 21:16:24 +05:30
|
|
|
XKB_KEYMAP_COMPILE_NO_FLAGS);
|
|
|
|
|
if (!keymap) {
|
|
|
|
|
wlr_log(WLR_ERROR, "Failed to create XKB keymap");
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2022-06-20 16:57:29 +02:00
|
|
|
wlr_keyboard_set_keymap(keyboard->wlr_keyboard, keymap);
|
2018-09-02 21:16:24 +05:30
|
|
|
xkb_keymap_unref(keymap);
|
2018-04-20 10:11:45 -04:00
|
|
|
xkb_context_unref(context);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-06-13 12:21:36 -04:00
|
|
|
int main(int argc, char *argv[]) {
|
2018-07-09 22:49:54 +01:00
|
|
|
wlr_log_init(WLR_DEBUG, NULL);
|
2018-04-20 10:11:45 -04:00
|
|
|
struct wl_display *display = wl_display_create();
|
2017-06-13 12:31:24 -04:00
|
|
|
struct sample_state state = {
|
2017-06-13 12:38:57 -04:00
|
|
|
.default_color = { 0.25f, 0.25f, 0.25f, 1 },
|
2017-08-27 11:34:25 -04:00
|
|
|
.clear_color = { 0.25f, 0.25f, 0.25f, 1 },
|
2023-01-17 22:49:10 +03:00
|
|
|
.display = display,
|
2017-06-13 12:31:24 -04:00
|
|
|
};
|
2017-08-20 16:02:39 -04:00
|
|
|
|
2022-11-03 18:25:05 +01:00
|
|
|
struct wlr_backend *wlr = wlr_backend_autocreate(display, NULL);
|
2018-04-20 10:11:45 -04:00
|
|
|
if (!wlr) {
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2021-09-24 09:34:51 -04:00
|
|
|
|
|
|
|
|
state.renderer = wlr_renderer_autocreate(wlr);
|
|
|
|
|
state.allocator = wlr_allocator_autocreate(wlr, state.renderer);
|
|
|
|
|
|
2017-09-05 17:53:29 -04:00
|
|
|
state.layout = wlr_output_layout_create();
|
2023-01-17 22:49:10 +03:00
|
|
|
state.cursor = wlr_cursor_create(state.layout);
|
2017-08-20 16:02:39 -04:00
|
|
|
|
2023-01-17 22:49:10 +03:00
|
|
|
state.input_mapper = wlr_input_mapper_create();
|
|
|
|
|
wlr_input_mapper_attach_output_layout(state.input_mapper, state.layout);
|
2017-08-27 11:34:25 -04:00
|
|
|
|
2018-04-20 10:11:45 -04: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;
|
|
|
|
|
|
2018-05-13 10:42:16 -04:00
|
|
|
state.xcursor_manager = wlr_xcursor_manager_create("default", 24);
|
|
|
|
|
if (!state.xcursor_manager) {
|
2018-07-09 22:49:54 +01:00
|
|
|
wlr_log(WLR_ERROR, "Failed to load left_ptr cursor");
|
2017-08-07 21:13:04 -04:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-13 10:42:16 -04:00
|
|
|
wlr_xcursor_manager_set_cursor_image(state.xcursor_manager, "left_ptr",
|
|
|
|
|
state.cursor);
|
2017-08-20 16:02:39 -04:00
|
|
|
|
2018-04-20 10:11:45 -04:00
|
|
|
if (!wlr_backend_start(wlr)) {
|
2018-07-09 22:49:54 +01:00
|
|
|
wlr_log(WLR_ERROR, "Failed to start backend");
|
2018-04-20 10:11:45 -04:00
|
|
|
wlr_backend_destroy(wlr);
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
wl_display_run(display);
|
|
|
|
|
wl_display_destroy(display);
|
2017-08-07 21:13:04 -04:00
|
|
|
|
2018-05-13 10:42:16 -04:00
|
|
|
wlr_xcursor_manager_destroy(state.xcursor_manager);
|
2017-08-20 16:02:39 -04:00
|
|
|
wlr_cursor_destroy(state.cursor);
|
2017-08-30 10:39:22 -04:00
|
|
|
wlr_output_layout_destroy(state.layout);
|
2017-06-13 12:21:36 -04:00
|
|
|
}
|