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 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
|
/*
* Copyright (C) 2022 Purism SPC
* 2023-2024 Phosh Developers
*
* SPDX-License-Identifier: GPL-3.0-or-later
* Author: Guido Günther <agx@sigxcpu.org>
*
* Based on wlroots layer-shell example which is BSD licensed.
*/
#define G_LOG_DOMAIN "phoc-example"
#include "egl-common.h"
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
#include "phoc-layer-shell-effects-unstable-v1-client-protocol.h"
#include "xdg-shell-client-protocol.h"
#include <linux/input-event-codes.h>
#include <GLES2/gl2.h>
#include <unistd.h>
#include <wayland-client.h>
#include <wayland-cursor.h>
#include <wayland-egl.h>
#include <wlr/render/egl.h>
#include <glib.h>
static struct wl_display *display;
static struct wl_compositor *compositor;
static struct wl_seat *seat;
static struct wl_shm *shm;
static struct wl_pointer *pointer;
static struct wl_keyboard *keyboard;
static struct wl_touch *touch;
static struct zwlr_layer_shell_v1 *layer_shell;
static struct zwlr_layer_surface_v1 *layer_surface;
static struct zphoc_layer_shell_effects_v1 *layer_shell_effects;
static struct zphoc_draggable_layer_surface_v1 *drag_surface;
static struct zphoc_alpha_layer_surface_v1 *alpha_surface;
static struct wl_output *wl_output;
static struct wl_surface *wl_surface;
static struct wl_egl_window *egl_window;
static struct wlr_egl_surface *egl_surface;
static struct wl_callback *frame_callback;
static uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND;
static uint32_t anchor;
static uint32_t width = 256, height = 256;
static uint32_t handle;
static int32_t unfolded_margin;
static int32_t folded_margin;
static uint32_t exclusive;
static double threshold = 1.0;
static bool use_alpha = false;
static bool run_display = true;
static int cur_x = -1, cur_y = -1;
static int buttons;
struct wl_cursor_image *cursor_image;
struct wl_surface *cursor_surface, *input_surface;
static struct {
float color[3];
} demo;
typedef enum {
folded = 0,
dragged,
unfolded,
} DragState;
static DragState drag_state;
static void draw (void);
static void
touch_handle_down (void *data, struct wl_touch *wl_touch_,
uint32_t serial, uint32_t time, struct wl_surface *surface,
int32_t id, wl_fixed_t x, wl_fixed_t y)
{
g_debug("%s", __func__);
}
static void
touch_handle_up (void *data, struct wl_touch *wl_touch_,
uint32_t serial, uint32_t time, int32_t id)
{
g_debug("%s", __func__);
}
static void
touch_handle_motion (void *data, struct wl_touch *wl_touch_,
uint32_t time, int32_t id, wl_fixed_t x, wl_fixed_t y)
{
}
static void
touch_handle_frame (void *data, struct wl_touch *wl_touch_)
{
}
static void
touch_handle_cancel (void *data, struct wl_touch *wl_touch_)
{
g_debug("%s", __func__);
}
static void
touch_handle_shape (void *data, struct wl_touch *wl_touch_,
int32_t id, wl_fixed_t major, wl_fixed_t minor)
{
}
static void
touch_handle_orientation (void *data, struct wl_touch *wl_touch_,
int32_t id, wl_fixed_t orientation)
{
}
static struct wl_touch_listener touch_listener = {
.down = touch_handle_down,
.up = touch_handle_up,
.motion = touch_handle_motion,
.frame = touch_handle_frame,
.cancel = touch_handle_cancel,
.shape = touch_handle_shape,
.orientation = touch_handle_orientation,
};
static void
surface_frame_callback (void *data, struct wl_callback *cb, uint32_t time)
{
wl_callback_destroy (cb);
frame_callback = NULL;
draw ();
}
static struct wl_callback_listener frame_listener = {
.done = surface_frame_callback
};
static void
draw (void)
{
eglMakeCurrent (egl_display, egl_surface, egl_surface, egl_context);
switch (drag_state) {
case folded:
demo.color[0] = 1.0;
demo.color[1] = 0.0;
demo.color[2] = 0.0;
break;
case dragged:
demo.color[0] = 0.0;
demo.color[1] = 1.0;
demo.color[2] = 0.0;
break;
case unfolded:
demo.color[0] = 0.0;
demo.color[1] = 0.0;
demo.color[2] = 1.0;
break;
default:
g_assert_not_reached ();
}
glViewport (0, 0, width, height);
if (false && buttons) {
glClearColor (1, 1, 1, 1.0);
} else {
glClearColor (demo.color[0], demo.color[1], demo.color[2], 1.0);
}
glClear (GL_COLOR_BUFFER_BIT);
if (cur_x != -1 && cur_y != -1) {
glEnable (GL_SCISSOR_TEST);
glScissor (cur_x, height - cur_y, 5, 5);
glClearColor (0, 0, 0, 1);
glClear (GL_COLOR_BUFFER_BIT);
glDisable (GL_SCISSOR_TEST);
}
frame_callback = wl_surface_frame (wl_surface);
wl_callback_add_listener (frame_callback, &frame_listener, NULL);
eglSwapBuffers (egl_display, egl_surface);
}
static void
layer_surface_configure (void *data,
struct zwlr_layer_surface_v1 *surface,
uint32_t serial, uint32_t w, uint32_t h)
{
width = w;
height = h;
if (egl_window) {
wl_egl_window_resize (egl_window, width, height, 0, 0);
}
zwlr_layer_surface_v1_ack_configure (surface, serial);
}
static void
layer_surface_closed (void *data,
struct zwlr_layer_surface_v1 *surface)
{
eglDestroySurface (egl_display, egl_surface);
wl_egl_window_destroy (egl_window);
zwlr_layer_surface_v1_destroy (surface);
wl_surface_destroy (wl_surface);
run_display = false;
}
struct zwlr_layer_surface_v1_listener layer_surface_listener = {
.configure = layer_surface_configure,
.closed = layer_surface_closed,
};
static void
wl_pointer_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)
{
struct wl_cursor_image *image = cursor_image;
wl_surface_attach (cursor_surface,
wl_cursor_image_get_buffer (image), 0, 0);
wl_surface_damage (cursor_surface, 1, 0,
image->width, image->height);
wl_surface_commit (cursor_surface);
wl_pointer_set_cursor (wl_pointer, serial, cursor_surface,
image->hotspot_x, image->hotspot_y);
input_surface = surface;
}
static void
wl_pointer_leave (void *data, struct wl_pointer *wl_pointer,
uint32_t serial, struct wl_surface *surface)
{
cur_x = cur_y = -1;
buttons = 0;
}
static void
wl_pointer_motion (void *data, struct wl_pointer *wl_pointer,
uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y)
{
cur_x = wl_fixed_to_int (surface_x);
cur_y = wl_fixed_to_int (surface_y);
}
static void
wl_pointer_button (void *data, struct wl_pointer *wl_pointer,
uint32_t serial, uint32_t time, uint32_t button, uint32_t state)
{
if (input_surface == wl_surface) {
if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
buttons++;
} else {
buttons--;
}
} else {
g_assert (false && "Unknown surface");
}
}
static void
wl_pointer_axis (void *data, struct wl_pointer *wl_pointer,
uint32_t time, uint32_t axis, wl_fixed_t value)
{
// Who cares
}
static void
wl_pointer_frame (void *data, struct wl_pointer *wl_pointer)
{
// Who cares
}
static void
wl_pointer_axis_source (void *data, struct wl_pointer *wl_pointer,
uint32_t axis_source)
{
// Who cares
}
static void
wl_pointer_axis_stop (void *data, struct wl_pointer *wl_pointer,
uint32_t time, uint32_t axis)
{
// Who cares
}
static void
wl_pointer_axis_discrete (void *data, struct wl_pointer *wl_pointer,
uint32_t axis, int32_t discrete)
{
// Who cares
}
struct wl_pointer_listener pointer_listener = {
.enter = wl_pointer_enter,
.leave = wl_pointer_leave,
.motion = wl_pointer_motion,
.button = wl_pointer_button,
.axis = wl_pointer_axis,
.frame = wl_pointer_frame,
.axis_source = wl_pointer_axis_source,
.axis_stop = wl_pointer_axis_stop,
.axis_discrete = wl_pointer_axis_discrete,
};
static void
wl_keyboard_keymap (void *data, struct wl_keyboard *wl_keyboard,
uint32_t format, int32_t fd, uint32_t size)
{
// Who cares
}
static void
wl_keyboard_enter (void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, struct wl_surface *surface, struct wl_array *keys)
{
g_debug ("Keyboard enter");
}
static void
wl_keyboard_leave (void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, struct wl_surface *surface)
{
g_debug ("Keyboard leave");
}
static void
wl_keyboard_key (void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, uint32_t time, uint32_t key, uint32_t state)
{
g_debug ("Key event: %d %d", key, state);
}
static void
wl_keyboard_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)
{
// Who cares
}
static void
wl_keyboard_repeat_info (void *data, struct wl_keyboard *wl_keyboard,
int32_t rate, int32_t delay)
{
// Who cares
}
static struct wl_keyboard_listener keyboard_listener = {
.keymap = wl_keyboard_keymap,
.enter = wl_keyboard_enter,
.leave = wl_keyboard_leave,
.key = wl_keyboard_key,
.modifiers = wl_keyboard_modifiers,
.repeat_info = wl_keyboard_repeat_info,
};
static void
seat_handle_capabilities (void *data, struct wl_seat *wl_seat,
enum wl_seat_capability caps)
{
if ((caps & WL_SEAT_CAPABILITY_POINTER)) {
pointer = wl_seat_get_pointer (wl_seat);
wl_pointer_add_listener (pointer, &pointer_listener, NULL);
}
if ((caps & WL_SEAT_CAPABILITY_KEYBOARD)) {
keyboard = wl_seat_get_keyboard (wl_seat);
wl_keyboard_add_listener (keyboard, &keyboard_listener, NULL);
}
if ((caps & WL_SEAT_CAPABILITY_TOUCH) && touch == NULL) {
touch = wl_seat_get_touch (wl_seat);
wl_touch_add_listener (touch, &touch_listener, NULL);
}
}
static void
seat_handle_name (void *data, struct wl_seat *wl_seat,
const char *name)
{
// Who cares
}
const struct wl_seat_listener seat_listener = {
.capabilities = seat_handle_capabilities,
.name = seat_handle_name,
};
static void
drag_surface_handle_drag_end (void *data,
struct zphoc_draggable_layer_surface_v1 *drag_surface_,
uint32_t state)
{
g_assert (drag_surface_ == drag_surface);
if (alpha_surface)
zphoc_alpha_layer_surface_v1_set_alpha (alpha_surface, wl_fixed_from_double (1.0));
if (state == 0)
drag_state = folded;
else
drag_state = unfolded;
}
static void
drag_surface_handle_dragged (void *data,
struct zphoc_draggable_layer_surface_v1 *drag_surface_,
int32_t margin)
{
g_assert (drag_surface_ == drag_surface);
g_debug ("Surface margin: %d", margin);
if (alpha_surface) {
float alpha = ABS (1.0 * margin / (unfolded_margin - folded_margin));
if (alpha < 0.2)
alpha = 0.2;
zphoc_alpha_layer_surface_v1_set_alpha (alpha_surface, wl_fixed_from_double (alpha));
}
drag_state = dragged;
}
const struct zphoc_draggable_layer_surface_v1_listener drag_surface_listener = {
.drag_end = drag_surface_handle_drag_end,
.dragged = drag_surface_handle_dragged,
};
static void
handle_global (void *data, struct wl_registry *registry,
uint32_t name, const char *interface, uint32_t version)
{
if (strcmp (interface, wl_compositor_interface.name) == 0) {
compositor = wl_registry_bind (registry, name,
&wl_compositor_interface, 1);
} else if (strcmp (interface, wl_shm_interface.name) == 0) {
shm = wl_registry_bind (registry, name,
&wl_shm_interface, 1);
} else if (strcmp (interface, "wl_output") == 0) {
if (!wl_output) {
wl_output = wl_registry_bind (registry, name,
&wl_output_interface, 1);
}
} else if (strcmp (interface, wl_seat_interface.name) == 0) {
seat = wl_registry_bind (registry, name,
&wl_seat_interface, 1);
wl_seat_add_listener (seat, &seat_listener, NULL);
} else if (strcmp (interface, zwlr_layer_shell_v1_interface.name) == 0) {
layer_shell = wl_registry_bind (
registry, name, &zwlr_layer_shell_v1_interface, 2);
} else if (strcmp (interface, zphoc_layer_shell_effects_v1_interface.name) == 0) {
layer_shell_effects = wl_registry_bind (registry, name,
&zphoc_layer_shell_effects_v1_interface, version);
}
}
static void
handle_global_remove (void *data, struct wl_registry *registry,
uint32_t name)
{
// who cares
}
static const struct wl_registry_listener registry_listener = {
.global = handle_global,
.global_remove = handle_global_remove,
};
int
main (int argc, char **argv)
{
char *namespace = "phoc-lse";
bool found;
int c;
while ((c = getopt (argc, argv, "u:f:e:w:h:H:l:a:t:A")) != -1) {
switch (c) {
case 'u':
unfolded_margin = atoi (optarg);
break;
case 'f':
folded_margin = atoi (optarg);
break;
case 'e':
exclusive = atoi (optarg);
break;
case 'w':
width = atoi (optarg);
break;
case 'h':
height = atoi (optarg);
break;
case 'H':
handle = atoi (optarg);
break;
case 'l': {
struct {
char *name;
enum zwlr_layer_shell_v1_layer value;
} layers[] = {
{ "background", ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND },
{ "bottom", ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM },
{ "top", ZWLR_LAYER_SHELL_V1_LAYER_TOP },
{ "overlay", ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY },
};
found = false;
for (size_t i = 0; i < sizeof (layers) / sizeof (layers[0]); ++i) {
if (strcmp (optarg, layers[i].name) == 0) {
layer = layers[i].value;
found = true;
break;
}
}
if (!found) {
g_critical ("invalid layer %s", optarg);
return 1;
}
break;
}
case 'a': {
struct {
char *name;
uint32_t value;
} anchors[] = {
{ "top", ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP },
{ "bottom", ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM },
{ "left", ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT },
{ "right", ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT },
};
found = false;
for (size_t i = 0; i < sizeof (anchors) / sizeof (anchors[0]); ++i) {
if (strcmp (optarg, anchors[i].name) == 0) {
anchor |= anchors[i].value;
found = true;
break;
}
}
if (!found) {
g_critical ("invalid anchor %s", optarg);
return 1;
}
break;
}
case 't':
threshold = atof (optarg);
break;
case 'A':
use_alpha = true;
break;
default:
break;
}
}
display = wl_display_connect (NULL);
if (display == NULL) {
g_critical ("Failed to create display");
return 1;
}
struct wl_registry *registry = wl_display_get_registry (display);
wl_registry_add_listener (registry, ®istry_listener, NULL);
wl_display_roundtrip (display);
if (compositor == NULL) {
g_critical ("wl_compositor not available");
return 1;
}
if (shm == NULL) {
g_critical ("wl_shm not available");
return 1;
}
if (layer_shell == NULL) {
g_critical ("layer_shell not available");
return 1;
}
if (layer_shell_effects == NULL) {
g_critical ("layer_shell_effects not available");
return 1;
}
struct wl_cursor_theme *cursor_theme =
wl_cursor_theme_load (NULL, 16, shm);
g_assert (cursor_theme);
struct wl_cursor *cursor =
wl_cursor_theme_get_cursor (cursor_theme, "crosshair");
if (cursor == NULL)
cursor = wl_cursor_theme_get_cursor (cursor_theme, "left_ptr");
g_assert (cursor);
cursor_image = cursor->images[0];
cursor = wl_cursor_theme_get_cursor (cursor_theme, "tcross");
if (cursor == NULL)
cursor = wl_cursor_theme_get_cursor (cursor_theme, "left_ptr");
g_assert (cursor);
cursor_surface = wl_compositor_create_surface (compositor);
g_assert (cursor_surface);
egl_init (display);
wl_surface = wl_compositor_create_surface (compositor);
g_assert (wl_surface);
layer_surface = zwlr_layer_shell_v1_get_layer_surface (layer_shell,
wl_surface, wl_output, layer, namespace);
g_assert (layer_surface);
zwlr_layer_surface_v1_set_size (layer_surface, width, height);
zwlr_layer_surface_v1_set_anchor (layer_surface, anchor);
zwlr_layer_surface_v1_add_listener (layer_surface,
&layer_surface_listener, layer_surface);
wl_surface_commit (wl_surface);
wl_display_roundtrip (display);
drag_surface = zphoc_layer_shell_effects_v1_get_draggable_layer_surface (layer_shell_effects,
layer_surface);
g_assert (drag_surface);
zphoc_draggable_layer_surface_v1_add_listener (drag_surface, &drag_surface_listener, NULL);
zphoc_draggable_layer_surface_v1_set_margins (drag_surface, folded_margin, unfolded_margin);
zphoc_draggable_layer_surface_v1_set_threshold (drag_surface, wl_fixed_from_double (threshold));
zphoc_draggable_layer_surface_v1_set_exclusive (drag_surface, exclusive);
zphoc_draggable_layer_surface_v1_set_state (drag_surface,
ZPHOC_DRAGGABLE_LAYER_SURFACE_V1_DRAG_END_STATE_FOLDED);
if (handle) {
zphoc_draggable_layer_surface_v1_set_drag_mode (drag_surface,
ZPHOC_DRAGGABLE_LAYER_SURFACE_V1_DRAG_MODE_HANDLE);
zphoc_draggable_layer_surface_v1_set_drag_handle (drag_surface, handle);
}
if (use_alpha) {
alpha_surface = zphoc_layer_shell_effects_v1_get_alpha_layer_surface (layer_shell_effects,
layer_surface);
g_assert (alpha_surface);
}
wl_surface_commit (wl_surface);
egl_window = wl_egl_window_create (wl_surface, width, height);
g_assert (egl_window);
egl_surface = eglCreatePlatformWindowSurfaceEXT (egl_display, egl_config, egl_window, NULL);
g_assert (egl_surface != EGL_NO_SURFACE);
wl_display_roundtrip (display);
draw ();
while (wl_display_dispatch (display) != -1 && run_display) {
// This space intentionally left blank
}
wl_cursor_theme_destroy (cursor_theme);
return 0;
}
|