2018-03-19 23:16:29 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <math.h>
|
2017-06-13 18:21:36 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <time.h>
|
2017-06-13 18:21:36 +02:00
|
|
|
#include <unistd.h>
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2017-06-13 18:21:36 +02:00
|
|
|
#include <wlr/backend.h>
|
2017-07-11 09:18:34 +02:00
|
|
|
#include <wlr/backend/session.h>
|
2021-09-24 15:34:51 +02:00
|
|
|
#include <wlr/render/allocator.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
#include <wlr/types/wlr_cursor.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/types/wlr_keyboard.h>
|
2017-08-20 22:02:39 +02:00
|
|
|
#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 16:42:16 +02:00
|
|
|
#include <wlr/types/wlr_xcursor_manager.h>
|
2017-06-21 20:15:06 +02:00
|
|
|
#include <wlr/util/log.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2017-06-13 18:21:36 +02:00
|
|
|
|
|
|
|
struct sample_state {
|
2018-04-20 16:11:45 +02:00
|
|
|
struct wl_display *display;
|
2017-08-20 22:02:39 +02:00
|
|
|
struct compositor_state *compositor;
|
2021-09-24 15:34:51 +02:00
|
|
|
struct wlr_renderer *renderer;
|
|
|
|
struct wlr_allocator *allocator;
|
2018-05-13 16:42:16 +02:00
|
|
|
struct wlr_xcursor_manager *xcursor_manager;
|
2017-08-20 22:02:39 +02:00
|
|
|
struct wlr_cursor *cursor;
|
2017-06-26 07:34:15 +02:00
|
|
|
double cur_x, cur_y;
|
2017-06-13 18:38:57 +02:00
|
|
|
float default_color[4];
|
2017-06-13 18:31:24 +02:00
|
|
|
float clear_color[4];
|
2017-08-20 22:02:39 +02:00
|
|
|
struct wlr_output_layout *layout;
|
2017-08-24 20:35:55 +02:00
|
|
|
struct wl_list devices;
|
2018-04-20 16:11:45 +02:00
|
|
|
struct timespec last_frame;
|
2017-08-20 22:02:39 +02:00
|
|
|
|
2018-04-20 16:11:45 +02:00
|
|
|
struct wl_listener new_output;
|
|
|
|
struct wl_listener new_input;
|
2017-08-20 22:02:39 +02: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 17:34:25 +02:00
|
|
|
|
|
|
|
struct wl_listener touch_motion;
|
|
|
|
struct wl_listener touch_up;
|
|
|
|
struct wl_listener touch_down;
|
|
|
|
struct wl_listener touch_cancel;
|
2017-11-20 21:26:20 +01:00
|
|
|
struct wl_list touch_points;
|
2017-08-29 04:12:35 +02:00
|
|
|
|
|
|
|
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 17:34:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct touch_point {
|
2017-11-16 23:53:52 +01:00
|
|
|
int32_t touch_id;
|
2017-08-27 17:34:25 +02:00
|
|
|
double x, y;
|
2017-11-20 21:26:20 +01:00
|
|
|
struct wl_list link;
|
2017-06-13 18:21:36 +02:00
|
|
|
};
|
|
|
|
|
2018-04-20 16:11:45 +02:00
|
|
|
struct sample_output {
|
2018-05-13 16:45:18 +02:00
|
|
|
struct sample_state *state;
|
2018-04-20 16:11:45 +02:00
|
|
|
struct wlr_output *output;
|
|
|
|
struct wl_listener frame;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sample_keyboard {
|
2018-05-13 16:45:18 +02:00
|
|
|
struct sample_state *state;
|
2022-06-20 16:57:29 +02:00
|
|
|
struct wlr_keyboard *wlr_keyboard;
|
2018-04-20 16:11:45 +02:00
|
|
|
struct wl_listener key;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
};
|
|
|
|
|
2018-05-13 16:45:18 +02:00
|
|
|
static void warp_to_touch(struct sample_state *state,
|
2017-10-29 20:03:56 +01:00
|
|
|
struct wlr_input_device *dev) {
|
2018-05-13 16:45:18 +02:00
|
|
|
if (wl_list_empty(&state->touch_points)) {
|
2017-08-27 23:35:12 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
double x = 0, y = 0;
|
2017-11-20 21:26:20 +01:00
|
|
|
size_t n = 0;
|
|
|
|
struct touch_point *point;
|
2018-05-13 16:45:18 +02:00
|
|
|
wl_list_for_each(point, &state->touch_points, link) {
|
2017-08-27 23:35:12 +02:00
|
|
|
x += point->x;
|
|
|
|
y += point->y;
|
2017-11-20 21:26:20 +01:00
|
|
|
n++;
|
2017-08-27 17:34:25 +02:00
|
|
|
}
|
2017-11-20 21:26:20 +01:00
|
|
|
x /= n;
|
|
|
|
y /= n;
|
2018-05-13 16:45:18 +02:00
|
|
|
wlr_cursor_warp_absolute(state->cursor, dev, x, y);
|
2017-08-27 17:34:25 +02:00
|
|
|
}
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void output_frame_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 16:11:45 +02:00
|
|
|
struct sample_output *sample_output = wl_container_of(listener, sample_output, frame);
|
2018-05-13 16:45:18 +02:00
|
|
|
struct sample_state *state = sample_output->state;
|
2018-04-20 16:11:45 +02:00
|
|
|
struct wlr_output *wlr_output = sample_output->output;
|
2021-09-24 15:34:51 +02:00
|
|
|
struct wlr_renderer *renderer = state->renderer;
|
2018-05-13 16:31:07 +02:00
|
|
|
assert(renderer);
|
2017-06-13 18:21:36 +02:00
|
|
|
|
2023-06-22 15:48:35 +02:00
|
|
|
struct wlr_output_state output_state;
|
|
|
|
wlr_output_state_init(&output_state);
|
2023-06-02 11:25:07 +02:00
|
|
|
struct wlr_render_pass *pass = wlr_output_begin_render_pass(wlr_output, &output_state, NULL, NULL);
|
2023-04-17 19:44:33 +02:00
|
|
|
wlr_render_pass_add_rect(pass, &(struct wlr_render_rect_options){
|
|
|
|
.box = { .width = wlr_output->width, .height = wlr_output->height },
|
|
|
|
.color = {
|
|
|
|
state->clear_color[0],
|
|
|
|
state->clear_color[1],
|
|
|
|
state->clear_color[2],
|
|
|
|
state->clear_color[3],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
wlr_output_add_software_cursors_to_render_pass(wlr_output, pass, NULL);
|
|
|
|
wlr_render_pass_submit(pass);
|
|
|
|
wlr_output_commit_state(wlr_output, &output_state);
|
|
|
|
wlr_output_state_finish(&output_state);
|
2017-06-13 18:21:36 +02:00
|
|
|
}
|
|
|
|
|
2017-08-20 22:02:39 +02:00
|
|
|
static void handle_cursor_motion(struct wl_listener *listener, void *data) {
|
2017-08-29 15:52:11 +02:00
|
|
|
struct sample_state *sample =
|
2017-10-29 20:03:56 +01:00
|
|
|
wl_container_of(listener, sample, cursor_motion);
|
2022-03-09 20:52:27 +01:00
|
|
|
struct wlr_pointer_motion_event *event = data;
|
|
|
|
wlr_cursor_move(sample->cursor, &event->pointer->base, event->delta_x,
|
2017-10-29 20:03:56 +01:00
|
|
|
event->delta_y);
|
2017-08-20 22:02:39 +02:00
|
|
|
}
|
|
|
|
|
2017-08-29 15:52:11 +02:00
|
|
|
static void handle_cursor_motion_absolute(struct wl_listener *listener,
|
2017-10-29 20:03:56 +01:00
|
|
|
void *data) {
|
2017-08-29 15:52:11 +02:00
|
|
|
struct sample_state *sample =
|
2017-10-29 20:03:56 +01:00
|
|
|
wl_container_of(listener, sample, cursor_motion_absolute);
|
2022-03-09 20:52:27 +01:00
|
|
|
struct wlr_pointer_motion_absolute_event *event = data;
|
2017-08-20 22:02:39 +02:00
|
|
|
|
2018-03-28 16:46:50 +02:00
|
|
|
sample->cur_x = event->x;
|
|
|
|
sample->cur_y = event->y;
|
2017-06-26 07:34:15 +02:00
|
|
|
|
2022-03-09 20:52:27 +01:00
|
|
|
wlr_cursor_warp_absolute(sample->cursor, &event->pointer->base,
|
|
|
|
sample->cur_x, sample->cur_y);
|
2017-06-22 18:21:28 +02:00
|
|
|
}
|
|
|
|
|
2017-08-20 22:02:39 +02:00
|
|
|
static void handle_cursor_button(struct wl_listener *listener, void *data) {
|
2017-08-29 15:52:11 +02:00
|
|
|
struct sample_state *sample =
|
2017-10-29 20:03:56 +01:00
|
|
|
wl_container_of(listener, sample, cursor_button);
|
2022-03-09 20:52:27 +01:00
|
|
|
struct wlr_pointer_button_event *event = data;
|
2017-08-20 22:02:39 +02:00
|
|
|
|
2017-06-13 18:31:24 +02:00
|
|
|
float (*color)[4];
|
2017-08-20 22:02:39 +02:00
|
|
|
if (event->state == WLR_BUTTON_RELEASED) {
|
2017-06-13 18:38:57 +02:00
|
|
|
color = &sample->default_color;
|
2017-08-20 22:02:39 +02:00
|
|
|
memcpy(&sample->clear_color, color, sizeof(*color));
|
2017-06-13 18:31:24 +02:00
|
|
|
} else {
|
|
|
|
float red[4] = { 0.25f, 0.25f, 0.25f, 1 };
|
2017-08-20 22:02:39 +02:00
|
|
|
red[event->button % 3] = 1;
|
2017-06-13 18:31:24 +02:00
|
|
|
color = &red;
|
2017-08-20 22:02:39 +02:00
|
|
|
memcpy(&sample->clear_color, color, sizeof(*color));
|
2017-06-13 18:31:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-20 22:02:39 +02:00
|
|
|
static void handle_cursor_axis(struct wl_listener *listener, void *data) {
|
2017-08-29 15:52:11 +02:00
|
|
|
struct sample_state *sample =
|
2017-10-29 20:03:56 +01:00
|
|
|
wl_container_of(listener, sample, cursor_axis);
|
2022-03-09 20:52:27 +01:00
|
|
|
struct wlr_pointer_axis_event *event = data;
|
2017-08-20 22:02:39 +02:00
|
|
|
|
2017-06-13 18:38:57 +02:00
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2017-08-20 22:02:39 +02:00
|
|
|
sample->default_color[i] += event->delta > 0 ? -0.05f : 0.05f;
|
2017-06-13 18:38:57 +02: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 22:02:39 +02:00
|
|
|
|
2017-06-13 18:38:57 +02:00
|
|
|
memcpy(&sample->clear_color, &sample->default_color,
|
|
|
|
sizeof(sample->clear_color));
|
|
|
|
}
|
|
|
|
|
2017-08-27 17:34:25 +02:00
|
|
|
static void handle_touch_up(struct wl_listener *listener, void *data) {
|
|
|
|
struct sample_state *sample = wl_container_of(listener, sample, touch_up);
|
2022-03-09 22:01:14 +01:00
|
|
|
struct wlr_touch_up_event *event = data;
|
2017-11-20 21:26:20 +01:00
|
|
|
|
|
|
|
struct touch_point *point, *tmp;
|
|
|
|
wl_list_for_each_safe(point, tmp, &sample->touch_points, link) {
|
2017-11-16 23:53:52 +01:00
|
|
|
if (point->touch_id == event->touch_id) {
|
2017-11-20 21:26:20 +01:00
|
|
|
wl_list_remove(&point->link);
|
2017-08-27 17:34:25 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-09 22:01:14 +01:00
|
|
|
warp_to_touch(sample, &event->touch->base);
|
2017-08-27 17:34:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_touch_down(struct wl_listener *listener, void *data) {
|
|
|
|
struct sample_state *sample = wl_container_of(listener, sample, touch_down);
|
2022-03-09 22:01:14 +01:00
|
|
|
struct wlr_touch_down_event *event = data;
|
2023-10-03 07:51:07 +02:00
|
|
|
struct touch_point *point = calloc(1, sizeof(*point));
|
2017-11-16 23:53:52 +01:00
|
|
|
point->touch_id = event->touch_id;
|
2018-03-28 17:04:40 +02:00
|
|
|
point->x = event->x;
|
|
|
|
point->y = event->y;
|
2017-11-20 21:26:20 +01:00
|
|
|
wl_list_insert(&sample->touch_points, &point->link);
|
2017-08-27 17:34:25 +02:00
|
|
|
|
2022-03-09 22:01:14 +01:00
|
|
|
warp_to_touch(sample, &event->touch->base);
|
2017-08-27 17:34:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_touch_motion(struct wl_listener *listener, void *data) {
|
2017-08-29 15:52:11 +02:00
|
|
|
struct sample_state *sample =
|
2017-10-29 20:03:56 +01:00
|
|
|
wl_container_of(listener, sample, touch_motion);
|
2022-03-09 22:01:14 +01:00
|
|
|
struct wlr_touch_motion_event *event = data;
|
2017-11-20 21:26:20 +01:00
|
|
|
|
|
|
|
struct touch_point *point;
|
|
|
|
wl_list_for_each(point, &sample->touch_points, link) {
|
2017-11-16 23:53:52 +01:00
|
|
|
if (point->touch_id == event->touch_id) {
|
2018-03-28 17:04:40 +02:00
|
|
|
point->x = event->x;
|
|
|
|
point->y = event->y;
|
2017-08-27 17:34:25 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-09 22:01:14 +01:00
|
|
|
warp_to_touch(sample, &event->touch->base);
|
2017-08-27 17:34:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_touch_cancel(struct wl_listener *listener, void *data) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_DEBUG, "TODO: touch cancel");
|
2017-08-27 17:34:25 +02:00
|
|
|
}
|
|
|
|
|
2017-08-29 04:12:35 +02:00
|
|
|
static void handle_tablet_tool_axis(struct wl_listener *listener, void *data) {
|
2017-08-29 15:52:11 +02:00
|
|
|
struct sample_state *sample =
|
2017-10-29 20:03:56 +01:00
|
|
|
wl_container_of(listener, sample, tablet_tool_axis);
|
2022-03-09 21:43:28 +01:00
|
|
|
struct wlr_tablet_tool_axis_event *event = data;
|
2017-08-29 15:52:11 +02:00
|
|
|
if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_X) &&
|
|
|
|
(event->updated_axes & WLR_TABLET_TOOL_AXIS_Y)) {
|
2022-03-09 21:43:28 +01:00
|
|
|
wlr_cursor_warp_absolute(sample->cursor, &event->tablet->base,
|
|
|
|
event->x, event->y);
|
2017-08-29 04:12:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void keyboard_key_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 16:11:45 +02:00
|
|
|
struct sample_keyboard *keyboard = wl_container_of(listener, keyboard, key);
|
2018-05-13 16:45:18 +02:00
|
|
|
struct sample_state *sample = keyboard->state;
|
2022-03-09 21:05:12 +01:00
|
|
|
struct wlr_keyboard_key_event *event = data;
|
2018-04-20 16:11:45 +02: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 16:11:45 +02:00
|
|
|
keycode, &syms);
|
|
|
|
for (int i = 0; i < nsyms; i++) {
|
|
|
|
xkb_keysym_t sym = syms[i];
|
|
|
|
if (sym == XKB_KEY_Escape) {
|
2018-04-30 02:16:29 +02:00
|
|
|
wl_display_terminate(sample->display);
|
|
|
|
}
|
2018-04-20 16:11:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void output_remove_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 16:11:45 +02:00
|
|
|
struct sample_output *sample_output = wl_container_of(listener, sample_output, destroy);
|
2018-05-13 16:45:18 +02:00
|
|
|
struct sample_state *sample = sample_output->state;
|
2018-04-20 16:11:45 +02: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 16:11:45 +02:00
|
|
|
struct wlr_output *output = data;
|
|
|
|
struct sample_state *sample = wl_container_of(listener, sample, new_output);
|
2021-09-24 15:34:51 +02:00
|
|
|
|
|
|
|
wlr_output_init_render(output, sample->allocator, sample->renderer);
|
|
|
|
|
2023-10-03 07:51:07 +02:00
|
|
|
struct sample_output *sample_output = calloc(1, sizeof(*sample_output));
|
2018-04-20 16:11:45 +02:00
|
|
|
sample_output->output = output;
|
2018-05-13 16:45:18 +02:00
|
|
|
sample_output->state = sample;
|
2018-04-20 16:11:45 +02: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);
|
|
|
|
|
2023-06-26 20:07:36 +02:00
|
|
|
struct wlr_output_state state;
|
|
|
|
wlr_output_state_init(&state);
|
|
|
|
wlr_output_state_set_enabled(&state, true);
|
2021-04-19 17:25:13 +02:00
|
|
|
struct wlr_output_mode *mode = wlr_output_preferred_mode(output);
|
|
|
|
if (mode != NULL) {
|
2023-06-13 02:16:25 +02:00
|
|
|
wlr_output_state_set_mode(&state, mode);
|
2021-04-19 17:25:13 +02:00
|
|
|
}
|
2023-06-26 20:07:36 +02:00
|
|
|
wlr_output_commit_state(output, &state);
|
|
|
|
wlr_output_state_finish(&state);
|
2018-04-20 16:11:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void keyboard_destroy_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 16:11:45 +02: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);
|
|
|
|
}
|
|
|
|
|
2019-11-20 00:45:19 +01:00
|
|
|
static void new_input_notify(struct wl_listener *listener, void *data) {
|
2018-04-20 16:11:45 +02:00
|
|
|
struct wlr_input_device *device = data;
|
2018-05-13 16:45:18 +02:00
|
|
|
struct sample_state *state = wl_container_of(listener, state, new_input);
|
2018-04-20 16:11:45 +02:00
|
|
|
switch (device->type) {
|
|
|
|
case WLR_INPUT_DEVICE_POINTER:
|
|
|
|
case WLR_INPUT_DEVICE_TOUCH:
|
|
|
|
case WLR_INPUT_DEVICE_TABLET_TOOL:
|
2018-05-13 16:45:18 +02:00
|
|
|
wlr_cursor_attach_input_device(state->cursor, device);
|
2018-04-20 16:11:45 +02:00
|
|
|
break;
|
|
|
|
|
2018-04-30 02:16:29 +02:00
|
|
|
case WLR_INPUT_DEVICE_KEYBOARD:;
|
2023-10-03 07:51:07 +02:00
|
|
|
struct sample_keyboard *keyboard = calloc(1, sizeof(*keyboard));
|
2022-06-20 16:57:29 +02:00
|
|
|
keyboard->wlr_keyboard = wlr_keyboard_from_input_device(device);
|
2018-05-13 16:45:18 +02:00
|
|
|
keyboard->state = state;
|
2018-04-20 16:11:45 +02: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 16:11:45 +02:00
|
|
|
keyboard->key.notify = keyboard_key_notify;
|
2018-04-30 02:16:29 +02:00
|
|
|
struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
2018-04-20 16:11:45 +02:00
|
|
|
if (!context) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to create XKB context");
|
2018-04-20 16:11:45 +02: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 17:46:24 +02:00
|
|
|
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 17:46:24 +02:00
|
|
|
xkb_keymap_unref(keymap);
|
2018-04-20 16:11:45 +02:00
|
|
|
xkb_context_unref(context);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-13 18:21:36 +02:00
|
|
|
int main(int argc, char *argv[]) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_init(WLR_DEBUG, NULL);
|
2018-04-20 16:11:45 +02:00
|
|
|
struct wl_display *display = wl_display_create();
|
2017-06-13 18:31:24 +02:00
|
|
|
struct sample_state state = {
|
2017-06-13 18:38:57 +02:00
|
|
|
.default_color = { 0.25f, 0.25f, 0.25f, 1 },
|
2017-08-27 17:34:25 +02:00
|
|
|
.clear_color = { 0.25f, 0.25f, 0.25f, 1 },
|
2018-04-20 16:11:45 +02:00
|
|
|
.display = display
|
2017-06-13 18:31:24 +02:00
|
|
|
};
|
2017-08-20 22:02:39 +02:00
|
|
|
|
2023-11-23 14:17:39 +01:00
|
|
|
struct wlr_backend *wlr = wlr_backend_autocreate(wl_display_get_event_loop(display), NULL);
|
2018-04-20 16:11:45 +02:00
|
|
|
if (!wlr) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2021-09-24 15:34:51 +02:00
|
|
|
|
|
|
|
state.renderer = wlr_renderer_autocreate(wlr);
|
|
|
|
state.allocator = wlr_allocator_autocreate(wlr, state.renderer);
|
|
|
|
|
2017-08-29 16:42:23 +02:00
|
|
|
state.cursor = wlr_cursor_create();
|
2023-08-12 08:24:08 +02:00
|
|
|
state.layout = wlr_output_layout_create(display);
|
2017-08-30 16:39:22 +02:00
|
|
|
wlr_cursor_attach_output_layout(state.cursor, state.layout);
|
2018-04-20 16:11:45 +02:00
|
|
|
//wlr_cursor_map_to_region(state.cursor, state.config->cursor.mapped_box);
|
2017-08-24 20:35:55 +02:00
|
|
|
wl_list_init(&state.devices);
|
2017-11-20 21:26:20 +01:00
|
|
|
wl_list_init(&state.touch_points);
|
2017-08-20 22:02:39 +02:00
|
|
|
|
2017-08-27 17:34:25 +02:00
|
|
|
// pointer events
|
2017-08-20 22:02:39 +02:00
|
|
|
wl_signal_add(&state.cursor->events.motion, &state.cursor_motion);
|
|
|
|
state.cursor_motion.notify = handle_cursor_motion;
|
|
|
|
|
2017-08-29 15:52:11 +02:00
|
|
|
wl_signal_add(&state.cursor->events.motion_absolute,
|
2017-10-21 12:35:51 +02:00
|
|
|
&state.cursor_motion_absolute);
|
2017-08-20 22:02:39 +02: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 17:34:25 +02: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 16:11:45 +02: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;
|
|
|
|
|
2017-08-29 04:12:35 +02:00
|
|
|
// tool events
|
2017-08-29 15:52:11 +02:00
|
|
|
wl_signal_add(&state.cursor->events.tablet_tool_axis,
|
2017-10-21 12:35:51 +02:00
|
|
|
&state.tablet_tool_axis);
|
2017-08-29 04:12:35 +02:00
|
|
|
state.tablet_tool_axis.notify = handle_tablet_tool_axis;
|
|
|
|
|
2023-02-01 15:01:20 +01:00
|
|
|
state.xcursor_manager = wlr_xcursor_manager_create(NULL, 24);
|
2018-05-13 16:42:16 +02:00
|
|
|
if (!state.xcursor_manager) {
|
2023-02-01 15:00:42 +01:00
|
|
|
wlr_log(WLR_ERROR, "Failed to load default cursor");
|
2017-08-08 03:13:04 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2023-06-23 20:08:11 +02:00
|
|
|
wlr_cursor_set_xcursor(state.cursor, state.xcursor_manager, "default");
|
2017-08-20 22:02:39 +02:00
|
|
|
|
2018-04-20 16:11:45 +02:00
|
|
|
clock_gettime(CLOCK_MONOTONIC, &state.last_frame);
|
2018-04-30 01:47:11 +02:00
|
|
|
|
2018-04-20 16:11:45 +02:00
|
|
|
if (!wlr_backend_start(wlr)) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to start backend");
|
2018-04-20 16:11:45 +02:00
|
|
|
wlr_backend_destroy(wlr);
|
2017-09-24 20:12:56 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2018-04-20 16:11:45 +02:00
|
|
|
wl_display_run(display);
|
|
|
|
wl_display_destroy(display);
|
2017-08-08 03:13:04 +02:00
|
|
|
|
2018-05-13 16:42:16 +02:00
|
|
|
wlr_xcursor_manager_destroy(state.xcursor_manager);
|
2017-08-20 22:02:39 +02:00
|
|
|
wlr_cursor_destroy(state.cursor);
|
2017-06-13 18:21:36 +02:00
|
|
|
}
|