aboutsummaryrefslogtreecommitdiff
path: root/rootston/cursor.c
blob: 0dbc413cfefdeed7a3b8b94e943a31e1575eb30c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
#define _XOPEN_SOURCE 700
#include <stdlib.h>
#include <math.h>
#ifdef __linux__
#include <linux/input-event-codes.h>
#elif __FreeBSD__
#include <dev/evdev/input-event-codes.h>
#endif
#include <wlr/types/wlr_xcursor_manager.h>
#include <wlr/util/log.h>
#include "rootston/xcursor.h"
#include "rootston/cursor.h"

struct roots_cursor *roots_cursor_create(struct roots_seat *seat) {
	struct roots_cursor *cursor = calloc(1, sizeof(struct roots_cursor));
	if (!cursor) {
		return NULL;
	}
	cursor->cursor = wlr_cursor_create();
	if (!cursor->cursor) {
		free(cursor);
		return NULL;
	}
	return cursor;
}

void roots_cursor_destroy(struct roots_cursor *cursor) {
	// TODO
}

static void roots_cursor_update_position(struct roots_cursor *cursor, uint32_t time) {
	struct roots_desktop *desktop = cursor->seat->input->server->desktop;
	struct roots_seat *seat = cursor->seat;
	struct roots_view *view;
	struct wlr_surface *surface;
	double sx, sy;
	switch (cursor->mode) {
	case ROOTS_CURSOR_PASSTHROUGH:
		view = view_at(desktop, cursor->cursor->x, cursor->cursor->y,
			&surface, &sx, &sy);
		bool set_compositor_cursor = !view && cursor->cursor_client;
		if (view) {
			struct wl_client *view_client =
				wl_resource_get_client(view->wlr_surface->resource);
			set_compositor_cursor = view_client != cursor->cursor_client;
		}
		if (set_compositor_cursor) {
			wlr_xcursor_manager_set_cursor_image(cursor->xcursor_manager,
				ROOTS_XCURSOR_DEFAULT, cursor->cursor);
			cursor->cursor_client = NULL;
		}
		if (view) {
			wlr_seat_pointer_notify_enter(seat->seat, surface, sx, sy);
			wlr_seat_pointer_notify_motion(seat->seat, time, sx, sy);
		} else {
			wlr_seat_pointer_clear_focus(seat->seat);
		}
		break;
	case ROOTS_CURSOR_MOVE:
		if (seat->focus) {
			double dx = cursor->cursor->x - cursor->offs_x;
			double dy = cursor->cursor->y - cursor->offs_y;
			view_move(seat->focus->view, cursor->view_x + dx,
				cursor->view_y + dy);
		}
		break;
	case ROOTS_CURSOR_RESIZE:
		if (seat->focus) {
			double dx = cursor->cursor->x - cursor->offs_x;
			double dy = cursor->cursor->y - cursor->offs_y;
			double active_x = seat->focus->view->x;
			double active_y = seat->focus->view->y;
			int width = cursor->view_width;
			int height = cursor->view_height;
			if (cursor->resize_edges & ROOTS_CURSOR_RESIZE_EDGE_TOP) {
				active_y = cursor->view_y + dy;
				height -= dy;
				if (height < 0) {
					active_y += height;
				}
			} else if (cursor->resize_edges & ROOTS_CURSOR_RESIZE_EDGE_BOTTOM) {
				height += dy;
			}
			if (cursor->resize_edges & ROOTS_CURSOR_RESIZE_EDGE_LEFT) {
				active_x = cursor->view_x + dx;
				width -= dx;
				if (width < 0) {
					active_x += width;
				}
			} else if (cursor->resize_edges & ROOTS_CURSOR_RESIZE_EDGE_RIGHT) {
				width += dx;
			}

			if (width < 0) {
				width = 0;
			}
			if (height < 0) {
				height = 0;
			}

			if (active_x != seat->focus->view->x ||
					active_y != seat->focus->view->y) {
				view_move_resize(seat->focus->view, active_x, active_y,
					width, height);
			} else {
				view_resize(seat->focus->view, width, height);
			}
		}
		break;
	case ROOTS_CURSOR_ROTATE:
		if (seat->focus) {
			struct roots_view *view = seat->focus->view;
			int ox = view->x + view->wlr_surface->current->width/2,
				oy = view->y + view->wlr_surface->current->height/2;
			int ux = cursor->offs_x - ox,
				uy = cursor->offs_y - oy;
			int vx = cursor->cursor->x - ox,
				vy = cursor->cursor->y - oy;
			float angle = atan2(vx*uy - vy*ux, vx*ux + vy*uy);
			int steps = 12;
			angle = round(angle/M_PI*steps) / (steps/M_PI);
			view->rotation = cursor->view_rotation + angle;
		}
		break;
	}

}

static void roots_cursor_press_button(struct roots_cursor *cursor,
		struct wlr_input_device *device, uint32_t time, uint32_t button,
		uint32_t state) {
	struct roots_seat *seat = cursor->seat;
	struct roots_desktop *desktop = seat->input->server->desktop;
	struct wlr_surface *surface;
	double sx, sy;
	struct roots_view *view = view_at(desktop,
		cursor->cursor->x, cursor->cursor->y, &surface, &sx, &sy);

	if (state == WLR_BUTTON_PRESSED && view && roots_seat_has_meta_pressed(seat)) {
		roots_seat_focus_view(seat, view);

		uint32_t edges;
		switch (button) {
		case BTN_LEFT:
			roots_seat_begin_move(seat, view);
			break;
		case BTN_RIGHT:
			edges = 0;
			if (sx < view->wlr_surface->current->width/2) {
				edges |= ROOTS_CURSOR_RESIZE_EDGE_LEFT;
			} else {
				edges |= ROOTS_CURSOR_RESIZE_EDGE_RIGHT;
			}
			if (sy < view->wlr_surface->current->height/2) {
				edges |= ROOTS_CURSOR_RESIZE_EDGE_TOP;
			} else {
				edges |= ROOTS_CURSOR_RESIZE_EDGE_BOTTOM;
			}
			roots_seat_begin_resize(seat, view, edges);
			break;
		case BTN_MIDDLE:
			roots_seat_begin_rotate(seat, view);
			break;
		}
		return;
	}

	uint32_t serial =
		wlr_seat_pointer_notify_button(seat->seat, time, button, state);

	int i;
	switch (state) {
	case WLR_BUTTON_RELEASED:
		seat->cursor->mode = ROOTS_CURSOR_PASSTHROUGH;
		roots_cursor_update_position(cursor, time);
		break;
	case WLR_BUTTON_PRESSED:
		i = cursor->input_events_idx;
		cursor->input_events[i].serial = serial;
		cursor->input_events[i].cursor = cursor->cursor;
		cursor->input_events[i].device = device;
		cursor->input_events_idx = (i + 1)
			% (sizeof(cursor->input_events) / sizeof(cursor->input_events[0]));
		roots_seat_focus_view(seat, view);
		break;
	}
}

void roots_cursor_handle_motion(struct roots_cursor *cursor,
		struct wlr_event_pointer_motion *event) {
	wlr_cursor_move(cursor->cursor, event->device,
			event->delta_x, event->delta_y);
	roots_cursor_update_position(cursor, event->time_msec);
}

void roots_cursor_handle_motion_absolute(struct roots_cursor *cursor,
		struct wlr_event_pointer_motion_absolute *event) {
	wlr_cursor_warp_absolute(cursor->cursor, event->device,
		event->x_mm / event->width_mm, event->y_mm / event->height_mm);
	roots_cursor_update_position(cursor, event->time_msec);
}

void roots_cursor_handle_button(struct roots_cursor *cursor,
		struct wlr_event_pointer_button *event) {
	roots_cursor_press_button(cursor, event->device, event->time_msec,
		event->button, event->state);
}

void roots_cursor_handle_axis(struct roots_cursor *cursor,
		struct wlr_event_pointer_axis *event) {
	wlr_seat_pointer_notify_axis(cursor->seat->seat, event->time_msec,
		event->orientation, event->delta);
}

void roots_cursor_handle_touch_down(struct roots_cursor *cursor,
		struct wlr_event_touch_down *event) {
	struct roots_touch_point *point =
		calloc(1, sizeof(struct roots_touch_point));
	if (!point) {
		wlr_log(L_ERROR, "could not allocate memory for touch point");
		return;
	}

	point->device = event->device->data;
	point->slot = event->slot;
	point->x = event->x_mm / event->width_mm;
	point->y = event->y_mm / event->height_mm;
	wlr_cursor_warp_absolute(cursor->cursor, event->device, point->x, point->y);
	roots_cursor_update_position(cursor, event->time_msec);
	wl_list_insert(&cursor->touch_points, &point->link);
	roots_cursor_press_button(cursor,  event->device,
		event->time_msec, BTN_LEFT, 1);
}

void roots_cursor_handle_touch_up(struct roots_cursor *cursor,
		struct wlr_event_touch_up *event) {
	struct roots_touch_point *point;
	wl_list_for_each(point, &cursor->touch_points, link) {
		if (point->slot == event->slot) {
			wl_list_remove(&point->link);
			free(point);
			break;
		}
	}
	roots_cursor_press_button(cursor, event->device,
		event->time_msec, BTN_LEFT, 0);
}

void roots_cursor_handle_touch_motion(struct roots_cursor *cursor,
		struct wlr_event_touch_motion *event) {
	struct roots_touch_point *point;
	wl_list_for_each(point, &cursor->touch_points, link) {
		if (point->slot == event->slot) {
			point->x = event->x_mm / event->width_mm;
			point->y = event->y_mm / event->height_mm;
			wlr_cursor_warp_absolute(cursor->cursor, event->device,
					point->x, point->y);
			roots_cursor_update_position(cursor, event->time_msec);
			break;
		}
	}
}

void roots_cursor_handle_tool_axis(struct roots_cursor *cursor,
		struct wlr_event_tablet_tool_axis *event) {
	if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_X) &&
			(event->updated_axes & WLR_TABLET_TOOL_AXIS_Y)) {
		wlr_cursor_warp_absolute(cursor->cursor, event->device,
			event->x_mm / event->width_mm, event->y_mm / event->height_mm);
		roots_cursor_update_position(cursor, event->time_msec);
	} else if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_X)) {
		wlr_cursor_warp_absolute(cursor->cursor, event->device,
			event->x_mm / event->width_mm, -1);
		roots_cursor_update_position(cursor, event->time_msec);
	} else if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_Y)) {
		wlr_cursor_warp_absolute(cursor->cursor, event->device,
			-1, event->y_mm / event->height_mm);
		roots_cursor_update_position(cursor, event->time_msec);
	}
}

void roots_cursor_handle_tool_tip(struct roots_cursor *cursor,
		struct wlr_event_tablet_tool_tip *event) {
	roots_cursor_press_button(cursor, event->device,
		event->time_msec, BTN_LEFT, event->state);
}

void roots_cursor_handle_request_set_cursor(struct roots_cursor *cursor,
		struct wlr_seat_pointer_request_set_cursor_event *event) {
	struct wlr_surface *focused_surface =
		event->seat_client->seat->pointer_state.focused_surface;
	bool has_focused = focused_surface != NULL && focused_surface->resource != NULL;
	struct wl_client *focused_client = NULL;
	if (has_focused) {
		focused_client = wl_resource_get_client(focused_surface->resource);
	}
	if (event->seat_client->client != focused_client ||
			cursor->mode != ROOTS_CURSOR_PASSTHROUGH) {
		wlr_log(L_DEBUG, "Denying request to set cursor from unfocused client");
		return;
	}

	wlr_log(L_DEBUG, "Setting client cursor");
	wlr_cursor_set_surface(cursor->cursor, event->surface, event->hotspot_x,
		event->hotspot_y);
	cursor->cursor_client = event->seat_client->client;
}

static void handle_drag_icon_commit(struct wl_listener *listener, void *data) {
	struct roots_drag_icon *drag_icon =
		wl_container_of(listener, drag_icon, surface_commit);
	drag_icon->sx += drag_icon->surface->current->sx;
	drag_icon->sy += drag_icon->surface->current->sy;
}

static void handle_drag_icon_destroy(struct wl_listener *listener, void *data) {
	struct roots_drag_icon *drag_icon =
		wl_container_of(listener, drag_icon, surface_destroy);
	wl_list_remove(&drag_icon->link);
	wl_list_remove(&drag_icon->surface_destroy.link);
	wl_list_remove(&drag_icon->surface_commit.link);
	free(drag_icon);
}

void roots_cursor_handle_pointer_grab_begin(struct roots_cursor *cursor,
		struct wlr_seat_pointer_grab *grab) {
	struct roots_seat *seat = cursor->seat;
	if (grab->interface == &wlr_data_device_pointer_drag_interface) {
		struct wlr_drag *drag = grab->data;
		if (drag->icon) {
			struct roots_drag_icon *iter_icon;
			wl_list_for_each(iter_icon, &seat->drag_icons, link) {
				if (iter_icon->surface == drag->icon) {
					// already in the list
					return;
				}
			}

			struct roots_drag_icon *drag_icon =
				calloc(1, sizeof(struct roots_drag_icon));
			drag_icon->mapped = true;
			drag_icon->surface = drag->icon;
			wl_list_insert(&seat->drag_icons, &drag_icon->link);

			wl_signal_add(&drag->icon->events.destroy,
				&drag_icon->surface_destroy);
			drag_icon->surface_destroy.notify = handle_drag_icon_destroy;

			wl_signal_add(&drag->icon->events.commit,
				&drag_icon->surface_commit);
			drag_icon->surface_commit.notify = handle_drag_icon_commit;
		}
	}
}

void roots_cursor_handle_pointer_grab_end(struct roots_cursor *cursor,
		struct wlr_seat_pointer_grab *grab) {
	if (grab->interface == &wlr_data_device_pointer_drag_interface) {
		struct wlr_drag *drag = grab->data;
		struct roots_drag_icon *icon;
		wl_list_for_each(icon, &cursor->seat->drag_icons, link) {
			if (icon->surface == drag->icon) {
				icon->mapped = false;
			}
		}
	}

	roots_cursor_update_position(cursor, 0);
}