wayland_thread.h 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123
  1. /**************************************************************************/
  2. /* wayland_thread.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #pragma once
  31. #ifdef WAYLAND_ENABLED
  32. #include "key_mapping_xkb.h"
  33. #ifdef SOWRAP_ENABLED
  34. #include "wayland/dynwrappers/wayland-client-core-so_wrap.h"
  35. #include "wayland/dynwrappers/wayland-cursor-so_wrap.h"
  36. #include "wayland/dynwrappers/wayland-egl-core-so_wrap.h"
  37. #include "xkbcommon-so_wrap.h"
  38. #else
  39. #include <wayland-client-core.h>
  40. #include <wayland-cursor.h>
  41. #ifdef GLES3_ENABLED
  42. #include <wayland-egl-core.h>
  43. #endif
  44. #include <xkbcommon/xkbcommon.h>
  45. #endif // SOWRAP_ENABLED
  46. // These must go after the Wayland client include to work properly.
  47. #include "wayland/protocol/idle_inhibit.gen.h"
  48. #include "wayland/protocol/primary_selection.gen.h"
  49. // These four protocol headers name wl_pointer method arguments as `pointer`,
  50. // which is the same name as X11's pointer typedef. This trips some very
  51. // annoying shadowing warnings. A `#define` works around this issue.
  52. #define pointer wl_pointer
  53. #include "wayland/protocol/cursor_shape.gen.h"
  54. #include "wayland/protocol/pointer_constraints.gen.h"
  55. #include "wayland/protocol/pointer_gestures.gen.h"
  56. #include "wayland/protocol/relative_pointer.gen.h"
  57. #undef pointer
  58. #include "wayland/protocol/fractional_scale.gen.h"
  59. #include "wayland/protocol/tablet.gen.h"
  60. #include "wayland/protocol/text_input.gen.h"
  61. #include "wayland/protocol/viewporter.gen.h"
  62. #include "wayland/protocol/wayland.gen.h"
  63. #include "wayland/protocol/xdg_activation.gen.h"
  64. #include "wayland/protocol/xdg_decoration.gen.h"
  65. #include "wayland/protocol/xdg_foreign_v2.gen.h"
  66. #include "wayland/protocol/xdg_shell.gen.h"
  67. #include "wayland/protocol/xdg_system_bell.gen.h"
  68. #include "wayland/protocol/xdg_toplevel_icon.gen.h"
  69. // NOTE: Deprecated.
  70. #include "wayland/protocol/xdg_foreign_v1.gen.h"
  71. #ifdef LIBDECOR_ENABLED
  72. #ifdef SOWRAP_ENABLED
  73. #include "dynwrappers/libdecor-so_wrap.h"
  74. #else
  75. #include <libdecor.h>
  76. #endif // SOWRAP_ENABLED
  77. #endif // LIBDECOR_ENABLED
  78. #include "core/os/thread.h"
  79. #include "servers/display_server.h"
  80. class WaylandThread {
  81. public:
  82. // Messages used for exchanging information between Godot's and Wayland's thread.
  83. class Message : public RefCounted {
  84. GDSOFTCLASS(Message, RefCounted);
  85. public:
  86. Message() {}
  87. virtual ~Message() = default;
  88. };
  89. class WindowMessage : public Message {
  90. GDSOFTCLASS(WindowMessage, Message);
  91. public:
  92. DisplayServer::WindowID id = DisplayServer::INVALID_WINDOW_ID;
  93. };
  94. // Message data for window rect changes.
  95. class WindowRectMessage : public WindowMessage {
  96. GDSOFTCLASS(WindowRectMessage, WindowMessage);
  97. public:
  98. // NOTE: This is in "scaled" terms. For example, if there's a 1920x1080 rect
  99. // with a scale factor of 2, the actual value of `rect` will be 3840x2160.
  100. Rect2i rect;
  101. };
  102. class WindowEventMessage : public WindowMessage {
  103. GDSOFTCLASS(WindowEventMessage, WindowMessage);
  104. public:
  105. DisplayServer::WindowEvent event;
  106. };
  107. class InputEventMessage : public Message {
  108. GDSOFTCLASS(InputEventMessage, Message);
  109. public:
  110. Ref<InputEvent> event;
  111. };
  112. class DropFilesEventMessage : public WindowMessage {
  113. GDSOFTCLASS(DropFilesEventMessage, WindowMessage);
  114. public:
  115. Vector<String> files;
  116. };
  117. class IMEUpdateEventMessage : public WindowMessage {
  118. GDSOFTCLASS(IMEUpdateEventMessage, WindowMessage);
  119. public:
  120. String text;
  121. Vector2i selection;
  122. };
  123. class IMECommitEventMessage : public WindowMessage {
  124. GDSOFTCLASS(IMECommitEventMessage, WindowMessage);
  125. public:
  126. String text;
  127. };
  128. struct RegistryState {
  129. WaylandThread *wayland_thread;
  130. // Core Wayland globals.
  131. struct wl_shm *wl_shm = nullptr;
  132. uint32_t wl_shm_name = 0;
  133. struct wl_compositor *wl_compositor = nullptr;
  134. uint32_t wl_compositor_name = 0;
  135. struct wl_subcompositor *wl_subcompositor = nullptr;
  136. uint32_t wl_subcompositor_name = 0;
  137. struct wl_data_device_manager *wl_data_device_manager = nullptr;
  138. uint32_t wl_data_device_manager_name = 0;
  139. List<struct wl_output *> wl_outputs;
  140. List<struct wl_seat *> wl_seats;
  141. // xdg-shell globals.
  142. struct xdg_wm_base *xdg_wm_base = nullptr;
  143. uint32_t xdg_wm_base_name = 0;
  144. // NOTE: Deprecated.
  145. struct zxdg_exporter_v1 *xdg_exporter_v1 = nullptr;
  146. uint32_t xdg_exporter_v1_name = 0;
  147. uint32_t xdg_exporter_v2_name = 0;
  148. struct zxdg_exporter_v2 *xdg_exporter_v2 = nullptr;
  149. // wayland-protocols globals.
  150. struct wp_viewporter *wp_viewporter = nullptr;
  151. uint32_t wp_viewporter_name = 0;
  152. struct wp_fractional_scale_manager_v1 *wp_fractional_scale_manager = nullptr;
  153. uint32_t wp_fractional_scale_manager_name = 0;
  154. struct wp_cursor_shape_manager_v1 *wp_cursor_shape_manager = nullptr;
  155. uint32_t wp_cursor_shape_manager_name = 0;
  156. struct zxdg_decoration_manager_v1 *xdg_decoration_manager = nullptr;
  157. uint32_t xdg_decoration_manager_name = 0;
  158. struct xdg_system_bell_v1 *xdg_system_bell = nullptr;
  159. uint32_t xdg_system_bell_name = 0;
  160. struct xdg_toplevel_icon_manager_v1 *xdg_toplevel_icon_manager = nullptr;
  161. uint32_t xdg_toplevel_icon_manager_name = 0;
  162. struct xdg_activation_v1 *xdg_activation = nullptr;
  163. uint32_t xdg_activation_name = 0;
  164. struct zwp_primary_selection_device_manager_v1 *wp_primary_selection_device_manager = nullptr;
  165. uint32_t wp_primary_selection_device_manager_name = 0;
  166. struct zwp_relative_pointer_manager_v1 *wp_relative_pointer_manager = nullptr;
  167. uint32_t wp_relative_pointer_manager_name = 0;
  168. struct zwp_pointer_constraints_v1 *wp_pointer_constraints = nullptr;
  169. uint32_t wp_pointer_constraints_name = 0;
  170. struct zwp_pointer_gestures_v1 *wp_pointer_gestures = nullptr;
  171. uint32_t wp_pointer_gestures_name = 0;
  172. struct zwp_idle_inhibit_manager_v1 *wp_idle_inhibit_manager = nullptr;
  173. uint32_t wp_idle_inhibit_manager_name = 0;
  174. struct zwp_tablet_manager_v2 *wp_tablet_manager = nullptr;
  175. uint32_t wp_tablet_manager_name = 0;
  176. struct zwp_text_input_manager_v3 *wp_text_input_manager = nullptr;
  177. uint32_t wp_text_input_manager_name = 0;
  178. // We're really not meant to use this one directly but we still need to know
  179. // whether it's available.
  180. uint32_t wp_fifo_manager_name = 0;
  181. };
  182. // General Wayland-specific states. Shouldn't be accessed directly.
  183. // TODO: Make private?
  184. struct WindowState {
  185. DisplayServer::WindowID id = DisplayServer::INVALID_WINDOW_ID;
  186. DisplayServer::WindowID parent_id = DisplayServer::INVALID_WINDOW_ID;
  187. Rect2i rect;
  188. DisplayServer::WindowMode mode = DisplayServer::WINDOW_MODE_WINDOWED;
  189. bool suspended = false;
  190. // These are true by default as it isn't guaranteed that we'll find an
  191. // xdg-shell implementation with wm_capabilities available. If and once we
  192. // receive a wm_capabilities event these will get reset and updated with
  193. // whatever the compositor says.
  194. bool can_minimize = false;
  195. bool can_maximize = false;
  196. bool can_fullscreen = false;
  197. HashSet<struct wl_output *> wl_outputs;
  198. // NOTE: If for whatever reason this callback is destroyed _while_ the event
  199. // thread is still running, it might be a good idea to set its user data to
  200. // `nullptr`. From some initial testing of mine, it looks like it might still
  201. // be called even after being destroyed, pointing to probably invalid window
  202. // data by then and segfaulting hard.
  203. struct wl_callback *frame_callback = nullptr;
  204. uint64_t last_frame_time = 0;
  205. struct wl_surface *wl_surface = nullptr;
  206. struct xdg_surface *xdg_surface = nullptr;
  207. struct xdg_toplevel *xdg_toplevel = nullptr;
  208. struct wp_viewport *wp_viewport = nullptr;
  209. struct wp_fractional_scale_v1 *wp_fractional_scale = nullptr;
  210. // NOTE: Deprecated.
  211. struct zxdg_exported_v1 *xdg_exported_v1 = nullptr;
  212. struct zxdg_exported_v2 *xdg_exported_v2 = nullptr;
  213. struct xdg_popup *xdg_popup = nullptr;
  214. String exported_handle;
  215. // Currently applied buffer scale.
  216. int buffer_scale = 1;
  217. // Buffer scale must be applied right before rendering but _after_ committing
  218. // everything else or otherwise we might have an inconsistent state (e.g.
  219. // double scale and odd resolution). This flag assists with that; when set,
  220. // on the next frame, we'll commit whatever is set in `buffer_scale`.
  221. bool buffer_scale_changed = false;
  222. // NOTE: The preferred buffer scale is currently only dynamically calculated.
  223. // It can be accessed by calling `window_state_get_preferred_buffer_scale`.
  224. // Override used by the fractional scale add-on object. If less or equal to 0
  225. // (default) then the normal output-based scale is used instead.
  226. double fractional_scale = 0;
  227. // What the compositor is recommending us.
  228. double preferred_fractional_scale = 0;
  229. struct zxdg_toplevel_decoration_v1 *xdg_toplevel_decoration = nullptr;
  230. struct zwp_idle_inhibitor_v1 *wp_idle_inhibitor = nullptr;
  231. #ifdef LIBDECOR_ENABLED
  232. // If this is null the xdg_* variables must be set and vice-versa. This way we
  233. // can handle this mess gracefully enough to hopefully being able of getting
  234. // rid of this cleanly once we have our own CSDs.
  235. struct libdecor_frame *libdecor_frame = nullptr;
  236. struct libdecor_configuration *pending_libdecor_configuration = nullptr;
  237. #endif
  238. RegistryState *registry;
  239. WaylandThread *wayland_thread;
  240. };
  241. // "High level" Godot-side screen data.
  242. struct ScreenData {
  243. // Geometry data.
  244. Point2i position;
  245. String make;
  246. String model;
  247. Size2i size;
  248. Size2i physical_size;
  249. float refresh_rate = -1;
  250. int scale = 1;
  251. };
  252. struct ScreenState {
  253. uint32_t wl_output_name = 0;
  254. ScreenData pending_data;
  255. ScreenData data;
  256. WaylandThread *wayland_thread;
  257. };
  258. enum class Gesture {
  259. NONE,
  260. MAGNIFY,
  261. };
  262. enum class PointerConstraint {
  263. NONE,
  264. LOCKED,
  265. CONFINED,
  266. };
  267. struct PointerData {
  268. Point2 position;
  269. uint32_t motion_time = 0;
  270. // Relative motion has its own optional event and so needs its own time.
  271. Vector2 relative_motion;
  272. uint32_t relative_motion_time = 0;
  273. BitField<MouseButtonMask> pressed_button_mask = MouseButtonMask::NONE;
  274. MouseButton last_button_pressed = MouseButton::NONE;
  275. Point2 last_pressed_position;
  276. DisplayServer::WindowID pointed_id = DisplayServer::INVALID_WINDOW_ID;
  277. DisplayServer::WindowID last_pointed_id = DisplayServer::INVALID_WINDOW_ID;
  278. // This is needed to check for a new double click every time.
  279. bool double_click_begun = false;
  280. uint32_t button_time = 0;
  281. uint32_t button_serial = 0;
  282. uint32_t scroll_type = WL_POINTER_AXIS_SOURCE_WHEEL;
  283. // The amount "scrolled" in pixels, in each direction.
  284. Vector2 scroll_vector;
  285. // The amount of scroll "clicks" in each direction, in fractions of 120.
  286. Vector2i discrete_scroll_vector_120;
  287. uint32_t pinch_scale = 1;
  288. };
  289. struct TabletToolData {
  290. Point2 position;
  291. Vector2 tilt;
  292. uint32_t pressure = 0;
  293. BitField<MouseButtonMask> pressed_button_mask = MouseButtonMask::NONE;
  294. MouseButton last_button_pressed = MouseButton::NONE;
  295. Point2 last_pressed_position;
  296. bool double_click_begun = false;
  297. uint64_t button_time = 0;
  298. uint64_t motion_time = 0;
  299. DisplayServer::WindowID proximal_id = DisplayServer::INVALID_WINDOW_ID;
  300. DisplayServer::WindowID last_proximal_id = DisplayServer::INVALID_WINDOW_ID;
  301. uint32_t proximity_serial = 0;
  302. };
  303. struct TabletToolState {
  304. struct wl_seat *wl_seat = nullptr;
  305. bool is_eraser = false;
  306. TabletToolData data_pending;
  307. TabletToolData data;
  308. };
  309. struct OfferState {
  310. HashSet<String> mime_types;
  311. };
  312. struct SeatState {
  313. RegistryState *registry = nullptr;
  314. WaylandThread *wayland_thread = nullptr;
  315. struct wl_seat *wl_seat = nullptr;
  316. uint32_t wl_seat_name = 0;
  317. // Pointer.
  318. struct wl_pointer *wl_pointer = nullptr;
  319. uint32_t pointer_enter_serial = 0;
  320. struct wp_cursor_shape_device_v1 *wp_cursor_shape_device = nullptr;
  321. struct zwp_relative_pointer_v1 *wp_relative_pointer = nullptr;
  322. struct zwp_locked_pointer_v1 *wp_locked_pointer = nullptr;
  323. struct zwp_confined_pointer_v1 *wp_confined_pointer = nullptr;
  324. struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch = nullptr;
  325. // NOTE: According to the wp_pointer_gestures protocol specification, there
  326. // can be only one active gesture at a time.
  327. Gesture active_gesture = Gesture::NONE;
  328. // Used for delta calculations.
  329. // NOTE: The wp_pointer_gestures protocol keeps track of the total scale of
  330. // the pinch gesture, while godot instead wants its delta.
  331. wl_fixed_t old_pinch_scale = 0;
  332. struct wl_surface *cursor_surface = nullptr;
  333. struct wl_callback *cursor_frame_callback = nullptr;
  334. uint32_t cursor_time_ms = 0;
  335. // This variable is needed to buffer all pointer changes until a
  336. // wl_pointer.frame event, as per Wayland's specification. Everything is
  337. // first set in `data_buffer` and then `data` is set with its contents on
  338. // an input frame event. All methods should generally read from
  339. // `pointer_data` and write to `data_buffer`.
  340. PointerData pointer_data_buffer;
  341. PointerData pointer_data;
  342. // Keyboard.
  343. struct wl_keyboard *wl_keyboard = nullptr;
  344. // For key events.
  345. DisplayServer::WindowID focused_id = DisplayServer::INVALID_WINDOW_ID;
  346. struct xkb_context *xkb_context = nullptr;
  347. struct xkb_keymap *xkb_keymap = nullptr;
  348. struct xkb_state *xkb_state = nullptr;
  349. const char *keymap_buffer = nullptr;
  350. uint32_t keymap_buffer_size = 0;
  351. HashMap<xkb_keycode_t, Key> pressed_keycodes;
  352. xkb_layout_index_t current_layout_index = 0;
  353. int32_t repeat_key_delay_msec = 0;
  354. int32_t repeat_start_delay_msec = 0;
  355. xkb_keycode_t repeating_keycode = XKB_KEYCODE_INVALID;
  356. uint64_t last_repeat_start_msec = 0;
  357. uint64_t last_repeat_msec = 0;
  358. bool shift_pressed = false;
  359. bool ctrl_pressed = false;
  360. bool alt_pressed = false;
  361. bool meta_pressed = false;
  362. uint32_t last_key_pressed_serial = 0;
  363. struct wl_data_device *wl_data_device = nullptr;
  364. // Drag and drop.
  365. DisplayServer::WindowID dnd_id = DisplayServer::INVALID_WINDOW_ID;
  366. struct wl_data_offer *wl_data_offer_dnd = nullptr;
  367. uint32_t dnd_enter_serial = 0;
  368. // Clipboard.
  369. struct wl_data_source *wl_data_source_selection = nullptr;
  370. Vector<uint8_t> selection_data;
  371. struct wl_data_offer *wl_data_offer_selection = nullptr;
  372. // Primary selection.
  373. struct zwp_primary_selection_device_v1 *wp_primary_selection_device = nullptr;
  374. struct zwp_primary_selection_source_v1 *wp_primary_selection_source = nullptr;
  375. Vector<uint8_t> primary_data;
  376. struct zwp_primary_selection_offer_v1 *wp_primary_selection_offer = nullptr;
  377. // Tablet.
  378. struct zwp_tablet_seat_v2 *wp_tablet_seat = nullptr;
  379. List<struct zwp_tablet_tool_v2 *> tablet_tools;
  380. // IME.
  381. struct zwp_text_input_v3 *wp_text_input = nullptr;
  382. DisplayServer::WindowID ime_window_id = DisplayServer::INVALID_WINDOW_ID;
  383. bool ime_enabled = false;
  384. bool ime_active = false;
  385. String ime_text;
  386. String ime_text_commit;
  387. Vector2i ime_cursor;
  388. Rect2i ime_rect;
  389. };
  390. struct CustomCursor {
  391. struct wl_buffer *wl_buffer = nullptr;
  392. uint32_t *buffer_data = nullptr;
  393. uint32_t buffer_data_size = 0;
  394. Point2i hotspot;
  395. };
  396. private:
  397. struct ThreadData {
  398. SafeFlag thread_done;
  399. Mutex mutex;
  400. struct wl_display *wl_display = nullptr;
  401. };
  402. // FIXME: Is this the right thing to do?
  403. inline static const char *proxy_tag = "godot";
  404. Thread events_thread;
  405. ThreadData thread_data;
  406. HashMap<DisplayServer::WindowID, WindowState> windows;
  407. List<Ref<Message>> messages;
  408. xdg_toplevel_icon_v1 *xdg_icon = nullptr;
  409. wl_buffer *icon_buffer = nullptr;
  410. String cursor_theme_name;
  411. int unscaled_cursor_size = 24;
  412. // NOTE: Regarding screen scale handling, the cursor cache is currently
  413. // "static", by which I mean that we try to change it as little as possible and
  414. // thus will be as big as the largest screen. This is mainly due to the fact
  415. // that doing it dynamically doesn't look like it's worth it to me currently,
  416. // especially as usually screen scales don't change continuously.
  417. int cursor_scale = 1;
  418. // Use cursor-shape-v1 protocol if the compositor supports it.
  419. wp_cursor_shape_device_v1_shape standard_cursors[DisplayServer::CURSOR_MAX] = {
  420. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_DEFAULT, //CURSOR_ARROW
  421. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_TEXT, //CURSOR_IBEAM
  422. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_POINTER, //CURSOR_POINTING_HAND
  423. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_CROSSHAIR, //CURSOR_CROSS
  424. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_WAIT, //CURSOR_WAIT
  425. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_PROGRESS, //CURSOR_BUSY
  426. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_GRAB, //CURSOR_DRAG
  427. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_GRABBING, //CURSOR_CAN_DROP
  428. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_NO_DROP, //CURSOR_FORBIDDEN
  429. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_NS_RESIZE, //CURSOR_VSIZE
  430. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_EW_RESIZE, //CURSOR_HSIZE
  431. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_NESW_RESIZE, //CURSOR_BDIAGSIZE
  432. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_NWSE_RESIZE, //CURSOR_FDIAGSIZE
  433. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_MOVE, //CURSOR_MOVE
  434. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_ROW_RESIZE, //CURSOR_VSPLIT
  435. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_COL_RESIZE, //CURSOR_HSPLIT
  436. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_HELP, //CURSOR_HELP
  437. };
  438. // Fallback to reading $XCURSOR and system themes if the compositor does not.
  439. struct wl_cursor_theme *wl_cursor_theme = nullptr;
  440. struct wl_cursor *wl_cursors[DisplayServer::CURSOR_MAX] = {};
  441. // User-defined cursor overrides. Take precedence over standard and wl cursors.
  442. HashMap<DisplayServer::CursorShape, CustomCursor> custom_cursors;
  443. DisplayServer::CursorShape cursor_shape = DisplayServer::CURSOR_ARROW;
  444. bool cursor_visible = true;
  445. PointerConstraint pointer_constraint = PointerConstraint::NONE;
  446. struct wl_display *wl_display = nullptr;
  447. struct wl_registry *wl_registry = nullptr;
  448. struct wl_seat *wl_seat_current = nullptr;
  449. bool frame = true;
  450. RegistryState registry;
  451. bool initialized = false;
  452. #ifdef LIBDECOR_ENABLED
  453. struct libdecor *libdecor_context = nullptr;
  454. #endif // LIBDECOR_ENABLED
  455. // Main polling method.
  456. static void _poll_events_thread(void *p_data);
  457. // Core Wayland event handlers.
  458. static void _wl_registry_on_global(void *data, struct wl_registry *wl_registry, uint32_t name, const char *interface, uint32_t version);
  459. static void _wl_registry_on_global_remove(void *data, struct wl_registry *wl_registry, uint32_t name);
  460. static void _wl_surface_on_enter(void *data, struct wl_surface *wl_surface, struct wl_output *wl_output);
  461. static void _wl_surface_on_leave(void *data, struct wl_surface *wl_surface, struct wl_output *wl_output);
  462. static void _wl_surface_on_preferred_buffer_scale(void *data, struct wl_surface *wl_surface, int32_t factor);
  463. static void _wl_surface_on_preferred_buffer_transform(void *data, struct wl_surface *wl_surface, uint32_t transform);
  464. static void _frame_wl_callback_on_done(void *data, struct wl_callback *wl_callback, uint32_t callback_data);
  465. static void _wl_output_on_geometry(void *data, struct wl_output *wl_output, int32_t x, int32_t y, int32_t physical_width, int32_t physical_height, int32_t subpixel, const char *make, const char *model, int32_t transform);
  466. static void _wl_output_on_mode(void *data, struct wl_output *wl_output, uint32_t flags, int32_t width, int32_t height, int32_t refresh);
  467. static void _wl_output_on_done(void *data, struct wl_output *wl_output);
  468. static void _wl_output_on_scale(void *data, struct wl_output *wl_output, int32_t factor);
  469. static void _wl_output_on_name(void *data, struct wl_output *wl_output, const char *name);
  470. static void _wl_output_on_description(void *data, struct wl_output *wl_output, const char *description);
  471. static void _wl_seat_on_capabilities(void *data, struct wl_seat *wl_seat, uint32_t capabilities);
  472. static void _wl_seat_on_name(void *data, struct wl_seat *wl_seat, const char *name);
  473. static void _cursor_frame_callback_on_done(void *data, struct wl_callback *wl_callback, uint32_t time_ms);
  474. static void _wl_pointer_on_enter(void *data, struct wl_pointer *wl_pointer, uint32_t serial, struct wl_surface *surface, wl_fixed_t surface_x, wl_fixed_t surface_y);
  475. static void _wl_pointer_on_leave(void *data, struct wl_pointer *wl_pointer, uint32_t serial, struct wl_surface *surface);
  476. static void _wl_pointer_on_motion(void *data, struct wl_pointer *wl_pointer, uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y);
  477. static void _wl_pointer_on_button(void *data, struct wl_pointer *wl_pointer, uint32_t serial, uint32_t time, uint32_t button, uint32_t state);
  478. static void _wl_pointer_on_axis(void *data, struct wl_pointer *wl_pointer, uint32_t time, uint32_t axis, wl_fixed_t value);
  479. static void _wl_pointer_on_frame(void *data, struct wl_pointer *wl_pointer);
  480. static void _wl_pointer_on_axis_source(void *data, struct wl_pointer *wl_pointer, uint32_t axis_source);
  481. static void _wl_pointer_on_axis_stop(void *data, struct wl_pointer *wl_pointer, uint32_t time, uint32_t axis);
  482. static void _wl_pointer_on_axis_discrete(void *data, struct wl_pointer *wl_pointer, uint32_t axis, int32_t discrete);
  483. static void _wl_pointer_on_axis_value120(void *data, struct wl_pointer *wl_pointer, uint32_t axis, int32_t value120);
  484. static void _wl_pointer_on_axis_relative_direction(void *data, struct wl_pointer *wl_pointer, uint32_t axis, uint32_t direction);
  485. static void _wl_keyboard_on_keymap(void *data, struct wl_keyboard *wl_keyboard, uint32_t format, int32_t fd, uint32_t size);
  486. static void _wl_keyboard_on_enter(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, struct wl_surface *surface, struct wl_array *keys);
  487. static void _wl_keyboard_on_leave(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, struct wl_surface *surface);
  488. static void _wl_keyboard_on_key(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, uint32_t time, uint32_t key, uint32_t state);
  489. static void _wl_keyboard_on_modifiers(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, uint32_t mods_depressed, uint32_t mods_latched, uint32_t mods_locked, uint32_t group);
  490. static void _wl_keyboard_on_repeat_info(void *data, struct wl_keyboard *wl_keyboard, int32_t rate, int32_t delay);
  491. static void _wl_data_device_on_data_offer(void *data, struct wl_data_device *wl_data_device, struct wl_data_offer *id);
  492. static void _wl_data_device_on_enter(void *data, struct wl_data_device *wl_data_device, uint32_t serial, struct wl_surface *surface, wl_fixed_t x, wl_fixed_t y, struct wl_data_offer *id);
  493. static void _wl_data_device_on_leave(void *data, struct wl_data_device *wl_data_device);
  494. static void _wl_data_device_on_motion(void *data, struct wl_data_device *wl_data_device, uint32_t time, wl_fixed_t x, wl_fixed_t y);
  495. static void _wl_data_device_on_drop(void *data, struct wl_data_device *wl_data_device);
  496. static void _wl_data_device_on_selection(void *data, struct wl_data_device *wl_data_device, struct wl_data_offer *id);
  497. static void _wl_data_offer_on_offer(void *data, struct wl_data_offer *wl_data_offer, const char *mime_type);
  498. static void _wl_data_offer_on_source_actions(void *data, struct wl_data_offer *wl_data_offer, uint32_t source_actions);
  499. static void _wl_data_offer_on_action(void *data, struct wl_data_offer *wl_data_offer, uint32_t dnd_action);
  500. static void _wl_data_source_on_target(void *data, struct wl_data_source *wl_data_source, const char *mime_type);
  501. static void _wl_data_source_on_send(void *data, struct wl_data_source *wl_data_source, const char *mime_type, int32_t fd);
  502. static void _wl_data_source_on_cancelled(void *data, struct wl_data_source *wl_data_source);
  503. static void _wl_data_source_on_dnd_drop_performed(void *data, struct wl_data_source *wl_data_source);
  504. static void _wl_data_source_on_dnd_finished(void *data, struct wl_data_source *wl_data_source);
  505. static void _wl_data_source_on_action(void *data, struct wl_data_source *wl_data_source, uint32_t dnd_action);
  506. // xdg-shell event handlers.
  507. static void _xdg_wm_base_on_ping(void *data, struct xdg_wm_base *xdg_wm_base, uint32_t serial);
  508. static void _xdg_surface_on_configure(void *data, struct xdg_surface *xdg_surface, uint32_t serial);
  509. static void _xdg_toplevel_on_configure(void *data, struct xdg_toplevel *xdg_toplevel, int32_t width, int32_t height, struct wl_array *states);
  510. static void _xdg_toplevel_on_close(void *data, struct xdg_toplevel *xdg_toplevel);
  511. static void _xdg_toplevel_on_configure_bounds(void *data, struct xdg_toplevel *xdg_toplevel, int32_t width, int32_t height);
  512. static void _xdg_toplevel_on_wm_capabilities(void *data, struct xdg_toplevel *xdg_toplevel, struct wl_array *capabilities);
  513. static void _xdg_popup_on_configure(void *data, struct xdg_popup *xdg_popup, int32_t x, int32_t y, int32_t width, int32_t height);
  514. static void _xdg_popup_on_popup_done(void *data, struct xdg_popup *xdg_popup);
  515. static void _xdg_popup_on_repositioned(void *data, struct xdg_popup *xdg_popup, uint32_t token);
  516. // wayland-protocols event handlers.
  517. static void _wp_fractional_scale_on_preferred_scale(void *data, struct wp_fractional_scale_v1 *wp_fractional_scale_v1, uint32_t scale);
  518. static void _wp_relative_pointer_on_relative_motion(void *data, struct zwp_relative_pointer_v1 *wp_relative_pointer_v1, uint32_t uptime_hi, uint32_t uptime_lo, wl_fixed_t dx, wl_fixed_t dy, wl_fixed_t dx_unaccel, wl_fixed_t dy_unaccel);
  519. static void _wp_pointer_gesture_pinch_on_begin(void *data, struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch_v1, uint32_t serial, uint32_t time, struct wl_surface *surface, uint32_t fingers);
  520. static void _wp_pointer_gesture_pinch_on_update(void *data, struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch_v1, uint32_t time, wl_fixed_t dx, wl_fixed_t dy, wl_fixed_t scale, wl_fixed_t rotation);
  521. static void _wp_pointer_gesture_pinch_on_end(void *data, struct zwp_pointer_gesture_pinch_v1 *zp_pointer_gesture_pinch_v1, uint32_t serial, uint32_t time, int32_t cancelled);
  522. static void _wp_primary_selection_device_on_data_offer(void *data, struct zwp_primary_selection_device_v1 *wp_primary_selection_device_v1, struct zwp_primary_selection_offer_v1 *offer);
  523. static void _wp_primary_selection_device_on_selection(void *data, struct zwp_primary_selection_device_v1 *wp_primary_selection_device_v1, struct zwp_primary_selection_offer_v1 *id);
  524. static void _wp_primary_selection_offer_on_offer(void *data, struct zwp_primary_selection_offer_v1 *wp_primary_selection_offer_v1, const char *mime_type);
  525. static void _wp_primary_selection_source_on_send(void *data, struct zwp_primary_selection_source_v1 *wp_primary_selection_source_v1, const char *mime_type, int32_t fd);
  526. static void _wp_primary_selection_source_on_cancelled(void *data, struct zwp_primary_selection_source_v1 *wp_primary_selection_source_v1);
  527. static void _wp_tablet_seat_on_tablet_added(void *data, struct zwp_tablet_seat_v2 *wp_tablet_seat_v2, struct zwp_tablet_v2 *id);
  528. static void _wp_tablet_seat_on_tool_added(void *data, struct zwp_tablet_seat_v2 *wp_tablet_seat_v2, struct zwp_tablet_tool_v2 *id);
  529. static void _wp_tablet_seat_on_pad_added(void *data, struct zwp_tablet_seat_v2 *wp_tablet_seat_v2, struct zwp_tablet_pad_v2 *id);
  530. static void _wp_tablet_tool_on_type(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t tool_type);
  531. static void _wp_tablet_tool_on_hardware_serial(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t hardware_serial_hi, uint32_t hardware_serial_lo);
  532. static void _wp_tablet_tool_on_hardware_id_wacom(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t hardware_id_hi, uint32_t hardware_id_lo);
  533. static void _wp_tablet_tool_on_capability(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t capability);
  534. static void _wp_tablet_tool_on_done(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2);
  535. static void _wp_tablet_tool_on_removed(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2);
  536. static void _wp_tablet_tool_on_proximity_in(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t serial, struct zwp_tablet_v2 *tablet, struct wl_surface *surface);
  537. static void _wp_tablet_tool_on_proximity_out(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2);
  538. static void _wp_tablet_tool_on_down(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t serial);
  539. static void _wp_tablet_tool_on_up(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2);
  540. static void _wp_tablet_tool_on_motion(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, wl_fixed_t x, wl_fixed_t y);
  541. static void _wp_tablet_tool_on_pressure(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t pressure);
  542. static void _wp_tablet_tool_on_distance(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t distance);
  543. static void _wp_tablet_tool_on_tilt(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, wl_fixed_t tilt_x, wl_fixed_t tilt_y);
  544. static void _wp_tablet_tool_on_rotation(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, wl_fixed_t degrees);
  545. static void _wp_tablet_tool_on_slider(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, int32_t position);
  546. static void _wp_tablet_tool_on_wheel(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, wl_fixed_t degrees, int32_t clicks);
  547. static void _wp_tablet_tool_on_button(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t serial, uint32_t button, uint32_t state);
  548. static void _wp_tablet_tool_on_frame(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t time);
  549. static void _wp_text_input_on_enter(void *data, struct zwp_text_input_v3 *wp_text_input_v3, struct wl_surface *surface);
  550. static void _wp_text_input_on_leave(void *data, struct zwp_text_input_v3 *wp_text_input_v3, struct wl_surface *surface);
  551. static void _wp_text_input_on_preedit_string(void *data, struct zwp_text_input_v3 *wp_text_input_v3, const char *text, int32_t cursor_begin, int32_t cursor_end);
  552. static void _wp_text_input_on_commit_string(void *data, struct zwp_text_input_v3 *wp_text_input_v3, const char *text);
  553. static void _wp_text_input_on_delete_surrounding_text(void *data, struct zwp_text_input_v3 *wp_text_input_v3, uint32_t before_length, uint32_t after_length);
  554. static void _wp_text_input_on_done(void *data, struct zwp_text_input_v3 *wp_text_input_v3, uint32_t serial);
  555. static void _xdg_toplevel_decoration_on_configure(void *data, struct zxdg_toplevel_decoration_v1 *xdg_toplevel_decoration, uint32_t mode);
  556. // NOTE: Deprecated.
  557. static void _xdg_exported_v1_on_handle(void *data, zxdg_exported_v1 *exported, const char *handle);
  558. static void _xdg_exported_v2_on_handle(void *data, zxdg_exported_v2 *exported, const char *handle);
  559. static void _xdg_activation_token_on_done(void *data, struct xdg_activation_token_v1 *xdg_activation_token, const char *token);
  560. // Core Wayland event listeners.
  561. static constexpr struct wl_registry_listener wl_registry_listener = {
  562. .global = _wl_registry_on_global,
  563. .global_remove = _wl_registry_on_global_remove,
  564. };
  565. static constexpr struct wl_surface_listener wl_surface_listener = {
  566. .enter = _wl_surface_on_enter,
  567. .leave = _wl_surface_on_leave,
  568. .preferred_buffer_scale = _wl_surface_on_preferred_buffer_scale,
  569. .preferred_buffer_transform = _wl_surface_on_preferred_buffer_transform,
  570. };
  571. static constexpr struct wl_callback_listener frame_wl_callback_listener = {
  572. .done = _frame_wl_callback_on_done,
  573. };
  574. static constexpr struct wl_output_listener wl_output_listener = {
  575. .geometry = _wl_output_on_geometry,
  576. .mode = _wl_output_on_mode,
  577. .done = _wl_output_on_done,
  578. .scale = _wl_output_on_scale,
  579. .name = _wl_output_on_name,
  580. .description = _wl_output_on_description,
  581. };
  582. static constexpr struct wl_seat_listener wl_seat_listener = {
  583. .capabilities = _wl_seat_on_capabilities,
  584. .name = _wl_seat_on_name,
  585. };
  586. static constexpr struct wl_callback_listener cursor_frame_callback_listener = {
  587. .done = _cursor_frame_callback_on_done,
  588. };
  589. static constexpr struct wl_pointer_listener wl_pointer_listener = {
  590. .enter = _wl_pointer_on_enter,
  591. .leave = _wl_pointer_on_leave,
  592. .motion = _wl_pointer_on_motion,
  593. .button = _wl_pointer_on_button,
  594. .axis = _wl_pointer_on_axis,
  595. .frame = _wl_pointer_on_frame,
  596. .axis_source = _wl_pointer_on_axis_source,
  597. .axis_stop = _wl_pointer_on_axis_stop,
  598. .axis_discrete = _wl_pointer_on_axis_discrete,
  599. .axis_value120 = _wl_pointer_on_axis_value120,
  600. .axis_relative_direction = _wl_pointer_on_axis_relative_direction,
  601. };
  602. static constexpr struct wl_keyboard_listener wl_keyboard_listener = {
  603. .keymap = _wl_keyboard_on_keymap,
  604. .enter = _wl_keyboard_on_enter,
  605. .leave = _wl_keyboard_on_leave,
  606. .key = _wl_keyboard_on_key,
  607. .modifiers = _wl_keyboard_on_modifiers,
  608. .repeat_info = _wl_keyboard_on_repeat_info,
  609. };
  610. static constexpr struct wl_data_device_listener wl_data_device_listener = {
  611. .data_offer = _wl_data_device_on_data_offer,
  612. .enter = _wl_data_device_on_enter,
  613. .leave = _wl_data_device_on_leave,
  614. .motion = _wl_data_device_on_motion,
  615. .drop = _wl_data_device_on_drop,
  616. .selection = _wl_data_device_on_selection,
  617. };
  618. static constexpr struct wl_data_offer_listener wl_data_offer_listener = {
  619. .offer = _wl_data_offer_on_offer,
  620. .source_actions = _wl_data_offer_on_source_actions,
  621. .action = _wl_data_offer_on_action,
  622. };
  623. static constexpr struct wl_data_source_listener wl_data_source_listener = {
  624. .target = _wl_data_source_on_target,
  625. .send = _wl_data_source_on_send,
  626. .cancelled = _wl_data_source_on_cancelled,
  627. .dnd_drop_performed = _wl_data_source_on_dnd_drop_performed,
  628. .dnd_finished = _wl_data_source_on_dnd_finished,
  629. .action = _wl_data_source_on_action,
  630. };
  631. // xdg-shell event listeners.
  632. static constexpr struct xdg_wm_base_listener xdg_wm_base_listener = {
  633. .ping = _xdg_wm_base_on_ping,
  634. };
  635. static constexpr struct xdg_surface_listener xdg_surface_listener = {
  636. .configure = _xdg_surface_on_configure,
  637. };
  638. static constexpr struct xdg_toplevel_listener xdg_toplevel_listener = {
  639. .configure = _xdg_toplevel_on_configure,
  640. .close = _xdg_toplevel_on_close,
  641. .configure_bounds = _xdg_toplevel_on_configure_bounds,
  642. .wm_capabilities = _xdg_toplevel_on_wm_capabilities,
  643. };
  644. static constexpr struct xdg_popup_listener xdg_popup_listener = {
  645. .configure = _xdg_popup_on_configure,
  646. .popup_done = _xdg_popup_on_popup_done,
  647. .repositioned = _xdg_popup_on_repositioned,
  648. };
  649. // wayland-protocols event listeners.
  650. static constexpr struct wp_fractional_scale_v1_listener wp_fractional_scale_listener = {
  651. .preferred_scale = _wp_fractional_scale_on_preferred_scale,
  652. };
  653. static constexpr struct zwp_relative_pointer_v1_listener wp_relative_pointer_listener = {
  654. .relative_motion = _wp_relative_pointer_on_relative_motion,
  655. };
  656. static constexpr struct zwp_pointer_gesture_pinch_v1_listener wp_pointer_gesture_pinch_listener = {
  657. .begin = _wp_pointer_gesture_pinch_on_begin,
  658. .update = _wp_pointer_gesture_pinch_on_update,
  659. .end = _wp_pointer_gesture_pinch_on_end,
  660. };
  661. static constexpr struct zwp_primary_selection_device_v1_listener wp_primary_selection_device_listener = {
  662. .data_offer = _wp_primary_selection_device_on_data_offer,
  663. .selection = _wp_primary_selection_device_on_selection,
  664. };
  665. static constexpr struct zwp_primary_selection_offer_v1_listener wp_primary_selection_offer_listener = {
  666. .offer = _wp_primary_selection_offer_on_offer,
  667. };
  668. static constexpr struct zwp_primary_selection_source_v1_listener wp_primary_selection_source_listener = {
  669. .send = _wp_primary_selection_source_on_send,
  670. .cancelled = _wp_primary_selection_source_on_cancelled,
  671. };
  672. static constexpr struct zwp_tablet_seat_v2_listener wp_tablet_seat_listener = {
  673. .tablet_added = _wp_tablet_seat_on_tablet_added,
  674. .tool_added = _wp_tablet_seat_on_tool_added,
  675. .pad_added = _wp_tablet_seat_on_pad_added,
  676. };
  677. static constexpr struct zwp_tablet_tool_v2_listener wp_tablet_tool_listener = {
  678. .type = _wp_tablet_tool_on_type,
  679. .hardware_serial = _wp_tablet_tool_on_hardware_serial,
  680. .hardware_id_wacom = _wp_tablet_tool_on_hardware_id_wacom,
  681. .capability = _wp_tablet_tool_on_capability,
  682. .done = _wp_tablet_tool_on_done,
  683. .removed = _wp_tablet_tool_on_removed,
  684. .proximity_in = _wp_tablet_tool_on_proximity_in,
  685. .proximity_out = _wp_tablet_tool_on_proximity_out,
  686. .down = _wp_tablet_tool_on_down,
  687. .up = _wp_tablet_tool_on_up,
  688. .motion = _wp_tablet_tool_on_motion,
  689. .pressure = _wp_tablet_tool_on_pressure,
  690. .distance = _wp_tablet_tool_on_distance,
  691. .tilt = _wp_tablet_tool_on_tilt,
  692. .rotation = _wp_tablet_tool_on_rotation,
  693. .slider = _wp_tablet_tool_on_slider,
  694. .wheel = _wp_tablet_tool_on_wheel,
  695. .button = _wp_tablet_tool_on_button,
  696. .frame = _wp_tablet_tool_on_frame,
  697. };
  698. static constexpr struct zwp_text_input_v3_listener wp_text_input_listener = {
  699. .enter = _wp_text_input_on_enter,
  700. .leave = _wp_text_input_on_leave,
  701. .preedit_string = _wp_text_input_on_preedit_string,
  702. .commit_string = _wp_text_input_on_commit_string,
  703. .delete_surrounding_text = _wp_text_input_on_delete_surrounding_text,
  704. .done = _wp_text_input_on_done,
  705. };
  706. // NOTE: Deprecated.
  707. static constexpr struct zxdg_exported_v1_listener xdg_exported_v1_listener = {
  708. .handle = _xdg_exported_v1_on_handle,
  709. };
  710. static constexpr struct zxdg_exported_v2_listener xdg_exported_v2_listener = {
  711. .handle = _xdg_exported_v2_on_handle,
  712. };
  713. static constexpr struct zxdg_toplevel_decoration_v1_listener xdg_toplevel_decoration_listener = {
  714. .configure = _xdg_toplevel_decoration_on_configure,
  715. };
  716. static constexpr struct xdg_activation_token_v1_listener xdg_activation_token_listener = {
  717. .done = _xdg_activation_token_on_done,
  718. };
  719. #ifdef LIBDECOR_ENABLED
  720. // libdecor event handlers.
  721. static void libdecor_on_error(struct libdecor *context, enum libdecor_error error, const char *message);
  722. static void libdecor_frame_on_configure(struct libdecor_frame *frame, struct libdecor_configuration *configuration, void *user_data);
  723. static void libdecor_frame_on_close(struct libdecor_frame *frame, void *user_data);
  724. static void libdecor_frame_on_commit(struct libdecor_frame *frame, void *user_data);
  725. static void libdecor_frame_on_dismiss_popup(struct libdecor_frame *frame, const char *seat_name, void *user_data);
  726. // libdecor event listeners.
  727. static constexpr struct libdecor_interface libdecor_interface = {
  728. .error = libdecor_on_error,
  729. .reserved0 = nullptr,
  730. .reserved1 = nullptr,
  731. .reserved2 = nullptr,
  732. .reserved3 = nullptr,
  733. .reserved4 = nullptr,
  734. .reserved5 = nullptr,
  735. .reserved6 = nullptr,
  736. .reserved7 = nullptr,
  737. .reserved8 = nullptr,
  738. .reserved9 = nullptr,
  739. };
  740. static constexpr struct libdecor_frame_interface libdecor_frame_interface = {
  741. .configure = libdecor_frame_on_configure,
  742. .close = libdecor_frame_on_close,
  743. .commit = libdecor_frame_on_commit,
  744. .dismiss_popup = libdecor_frame_on_dismiss_popup,
  745. .reserved0 = nullptr,
  746. .reserved1 = nullptr,
  747. .reserved2 = nullptr,
  748. .reserved3 = nullptr,
  749. .reserved4 = nullptr,
  750. .reserved5 = nullptr,
  751. .reserved6 = nullptr,
  752. .reserved7 = nullptr,
  753. .reserved8 = nullptr,
  754. .reserved9 = nullptr,
  755. };
  756. #endif // LIBDECOR_ENABLED
  757. static Vector<uint8_t> _read_fd(int fd);
  758. static int _allocate_shm_file(size_t size);
  759. static Vector<uint8_t> _wl_data_offer_read(struct wl_display *wl_display, const char *p_mime, struct wl_data_offer *wl_data_offer);
  760. static Vector<uint8_t> _wp_primary_selection_offer_read(struct wl_display *wl_display, const char *p_mime, struct zwp_primary_selection_offer_v1 *wp_primary_selection_offer);
  761. static void _seat_state_set_current(WaylandThread::SeatState &p_ss);
  762. static Ref<InputEventKey> _seat_state_get_key_event(SeatState *p_ss, xkb_keycode_t p_keycode, bool p_pressed);
  763. static Ref<InputEventKey> _seat_state_get_unstuck_key_event(SeatState *p_ss, xkb_keycode_t p_keycode, bool p_pressed, Key p_key);
  764. static void _wayland_state_update_cursor();
  765. void _set_current_seat(struct wl_seat *p_seat);
  766. bool _load_cursor_theme(int p_cursor_size);
  767. void _update_scale(int p_scale);
  768. public:
  769. Mutex &mutex = thread_data.mutex;
  770. struct wl_display *get_wl_display() const;
  771. // Core Wayland utilities for integrating with our own data structures.
  772. static bool wl_proxy_is_godot(struct wl_proxy *p_proxy);
  773. static void wl_proxy_tag_godot(struct wl_proxy *p_proxy);
  774. static WindowState *wl_surface_get_window_state(struct wl_surface *p_surface);
  775. static ScreenState *wl_output_get_screen_state(struct wl_output *p_output);
  776. static SeatState *wl_seat_get_seat_state(struct wl_seat *p_seat);
  777. static TabletToolState *wp_tablet_tool_get_state(struct zwp_tablet_tool_v2 *p_tool);
  778. static OfferState *wl_data_offer_get_offer_state(struct wl_data_offer *p_offer);
  779. static OfferState *wp_primary_selection_offer_get_offer_state(struct zwp_primary_selection_offer_v1 *p_offer);
  780. void seat_state_unlock_pointer(SeatState *p_ss);
  781. void seat_state_lock_pointer(SeatState *p_ss);
  782. void seat_state_set_hint(SeatState *p_ss, int p_x, int p_y);
  783. void seat_state_confine_pointer(SeatState *p_ss);
  784. static void seat_state_update_cursor(SeatState *p_ss);
  785. void seat_state_echo_keys(SeatState *p_ss);
  786. static int window_state_get_preferred_buffer_scale(WindowState *p_ws);
  787. static double window_state_get_scale_factor(WindowState *p_ws);
  788. static void window_state_update_size(WindowState *p_ws, int p_width, int p_height);
  789. static Vector2i scale_vector2i(const Vector2i &p_vector, double p_amount);
  790. void push_message(Ref<Message> message);
  791. bool has_message();
  792. Ref<Message> pop_message();
  793. void beep() const;
  794. void set_icon(const Ref<Image> &p_icon);
  795. void window_create(DisplayServer::WindowID p_window_id, int p_width, int p_height);
  796. void window_create_popup(DisplayServer::WindowID p_window_id, DisplayServer::WindowID p_parent_id, Rect2i p_rect);
  797. void window_destroy(DisplayServer::WindowID p_window_Id);
  798. void window_set_parent(DisplayServer::WindowID p_window_id, DisplayServer::WindowID p_parent_id);
  799. struct wl_surface *window_get_wl_surface(DisplayServer::WindowID p_window_id) const;
  800. WindowState *window_get_state(DisplayServer::WindowID p_window_id);
  801. void window_start_resize(DisplayServer::WindowResizeEdge p_edge, DisplayServer::WindowID p_window);
  802. void window_set_max_size(DisplayServer::WindowID p_window_id, const Size2i &p_size);
  803. void window_set_min_size(DisplayServer::WindowID p_window_id, const Size2i &p_size);
  804. bool window_can_set_mode(DisplayServer::WindowID p_window_id, DisplayServer::WindowMode p_window_mode) const;
  805. void window_try_set_mode(DisplayServer::WindowID p_window_id, DisplayServer::WindowMode p_window_mode);
  806. DisplayServer::WindowMode window_get_mode(DisplayServer::WindowID p_window_id) const;
  807. void window_set_borderless(DisplayServer::WindowID p_window_id, bool p_borderless);
  808. void window_set_title(DisplayServer::WindowID p_window_id, const String &p_title);
  809. void window_set_app_id(DisplayServer::WindowID p_window_id, const String &p_app_id);
  810. bool window_is_focused(DisplayServer::WindowID p_window_id);
  811. // Optional - requires xdg_activation_v1
  812. void window_request_attention(DisplayServer::WindowID p_window_id);
  813. void window_start_drag(DisplayServer::WindowID p_window_id);
  814. // Optional - require idle_inhibit_unstable_v1
  815. void window_set_idle_inhibition(DisplayServer::WindowID p_window_id, bool p_enable);
  816. bool window_get_idle_inhibition(DisplayServer::WindowID p_window_id) const;
  817. ScreenData screen_get_data(int p_screen) const;
  818. int get_screen_count() const;
  819. void pointer_set_constraint(PointerConstraint p_constraint);
  820. void pointer_set_hint(const Point2i &p_hint);
  821. PointerConstraint pointer_get_constraint() const;
  822. DisplayServer::WindowID pointer_get_pointed_window_id() const;
  823. DisplayServer::WindowID pointer_get_last_pointed_window_id() const;
  824. BitField<MouseButtonMask> pointer_get_button_mask() const;
  825. void cursor_set_visible(bool p_visible);
  826. void cursor_set_shape(DisplayServer::CursorShape p_cursor_shape);
  827. void cursor_set_custom_shape(DisplayServer::CursorShape p_cursor_shape);
  828. void cursor_shape_set_custom_image(DisplayServer::CursorShape p_cursor_shape, Ref<Image> p_image, const Point2i &p_hotspot);
  829. void cursor_shape_clear_custom_image(DisplayServer::CursorShape p_cursor_shape);
  830. void window_set_ime_active(const bool p_active, DisplayServer::WindowID p_window_id);
  831. void window_set_ime_position(const Point2i &p_pos, DisplayServer::WindowID p_window_id);
  832. int keyboard_get_layout_count() const;
  833. int keyboard_get_current_layout_index() const;
  834. void keyboard_set_current_layout_index(int p_index);
  835. String keyboard_get_layout_name(int p_index) const;
  836. Key keyboard_get_key_from_physical(Key p_key) const;
  837. void keyboard_echo_keys();
  838. bool selection_has_mime(const String &p_mime) const;
  839. Vector<uint8_t> selection_get_mime(const String &p_mime) const;
  840. void selection_set_text(const String &p_text);
  841. // Optional primary support - requires wp_primary_selection_unstable_v1
  842. bool primary_has_mime(const String &p_mime) const;
  843. Vector<uint8_t> primary_get_mime(const String &p_mime) const;
  844. void primary_set_text(const String &p_text);
  845. void commit_surfaces();
  846. void set_frame();
  847. bool get_reset_frame();
  848. bool wait_frame_suspend_ms(int p_timeout);
  849. bool is_fifo_available() const;
  850. uint64_t window_get_last_frame_time(DisplayServer::WindowID p_window_id) const;
  851. bool window_is_suspended(DisplayServer::WindowID p_window_id) const;
  852. bool is_suspended() const;
  853. Error init();
  854. void destroy();
  855. };
  856. #endif // WAYLAND_ENABLED