mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			320 lines
		
	
	
	
		
			10 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			320 lines
		
	
	
	
		
			10 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include <stdio.h>
 | 
						|
#include <assert.h>
 | 
						|
#include <stdint.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <string.h>
 | 
						|
#include <unistd.h>
 | 
						|
#include <sys/types.h>
 | 
						|
#include <sys/mman.h>
 | 
						|
#include <wayland-client.h>
 | 
						|
#include <GLES2/gl2.h>
 | 
						|
#include <wlr/interfaces/wlr_output.h>
 | 
						|
#include <wlr/util/log.h>
 | 
						|
#include "backend/wayland.h"
 | 
						|
#include "xdg-shell-unstable-v6-client-protocol.h"
 | 
						|
 | 
						|
int os_create_anonymous_file(off_t size);
 | 
						|
 | 
						|
static struct wl_callback_listener frame_listener;
 | 
						|
 | 
						|
static void surface_frame_callback(void *data, struct wl_callback *cb, uint32_t time) {
 | 
						|
	struct wlr_output *wlr_output = data;
 | 
						|
	assert(wlr_output);
 | 
						|
	wl_signal_emit(&wlr_output->events.frame, wlr_output);
 | 
						|
	wl_callback_destroy(cb);
 | 
						|
}
 | 
						|
 | 
						|
static struct wl_callback_listener frame_listener = {
 | 
						|
	.done = surface_frame_callback
 | 
						|
};
 | 
						|
 | 
						|
static void wlr_wl_output_make_current(struct wlr_output *_output) {
 | 
						|
	struct wlr_wl_backend_output *output = (struct wlr_wl_backend_output *)_output;
 | 
						|
	if (!eglMakeCurrent(output->backend->egl.display,
 | 
						|
		output->egl_surface, output->egl_surface,
 | 
						|
		output->backend->egl.context)) {
 | 
						|
		wlr_log(L_ERROR, "eglMakeCurrent failed: %s", egl_error());
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
static void wlr_wl_output_swap_buffers(struct wlr_output *_output) {
 | 
						|
	struct wlr_wl_backend_output *output = (struct wlr_wl_backend_output *)_output;
 | 
						|
	output->frame_callback = wl_surface_frame(output->surface);
 | 
						|
	wl_callback_add_listener(output->frame_callback, &frame_listener, output);
 | 
						|
	if (!eglSwapBuffers(output->backend->egl.display, output->egl_surface)) {
 | 
						|
		wlr_log(L_ERROR, "eglSwapBuffers failed: %s", egl_error());
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
static void wlr_wl_output_transform(struct wlr_output *_output,
 | 
						|
		enum wl_output_transform transform) {
 | 
						|
	struct wlr_wl_backend_output *output = (struct wlr_wl_backend_output *)_output;
 | 
						|
	output->wlr_output.transform = transform;
 | 
						|
}
 | 
						|
 | 
						|
static bool wlr_wl_output_set_cursor(struct wlr_output *_output,
 | 
						|
		const uint8_t *buf, int32_t stride, uint32_t width, uint32_t height,
 | 
						|
		int32_t hotspot_x, int32_t hotspot_y, bool update_pixels) {
 | 
						|
	struct wlr_wl_backend_output *output =
 | 
						|
		(struct wlr_wl_backend_output *)_output;
 | 
						|
	struct wlr_wl_backend *backend = output->backend;
 | 
						|
 | 
						|
	// TODO: use output->wlr_output.transform to transform pixels and hotpot
 | 
						|
	output->cursor.hotspot_x = hotspot_x;
 | 
						|
	output->cursor.hotspot_y = hotspot_y;
 | 
						|
 | 
						|
	if (!update_pixels) {
 | 
						|
		// Update hotspot without changing cursor image
 | 
						|
		wlr_wl_output_update_cursor(output);
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
	if (!buf) {
 | 
						|
		// Hide cursor
 | 
						|
		if (output->cursor.surface) {
 | 
						|
			wl_surface_destroy(output->cursor.surface);
 | 
						|
			munmap(output->cursor.data, output->cursor.buf_size);
 | 
						|
			output->cursor.surface = NULL;
 | 
						|
			output->cursor.buf_size = 0;
 | 
						|
		}
 | 
						|
		wlr_wl_output_update_cursor(output);
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
 | 
						|
	stride *= 4; // stride is given in pixels, we need it in bytes
 | 
						|
 | 
						|
	if (!backend->shm || !backend->pointer) {
 | 
						|
		wlr_log(L_INFO, "cannot set cursor, no shm or pointer");
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
 | 
						|
	if (!output->cursor.surface) {
 | 
						|
		output->cursor.surface =
 | 
						|
			wl_compositor_create_surface(output->backend->compositor);
 | 
						|
	}
 | 
						|
 | 
						|
	uint32_t size = stride * height;
 | 
						|
	if (output->cursor.buf_size != size) {
 | 
						|
		if (output->cursor.buffer) {
 | 
						|
			wl_buffer_destroy(output->cursor.buffer);
 | 
						|
		}
 | 
						|
 | 
						|
		if (size > output->cursor.buf_size) {
 | 
						|
			if (output->cursor.pool) {
 | 
						|
				wl_shm_pool_destroy(output->cursor.pool);
 | 
						|
				output->cursor.pool = NULL;
 | 
						|
				munmap(output->cursor.data, output->cursor.buf_size);
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		if (!output->cursor.pool) {
 | 
						|
			int fd = os_create_anonymous_file(size);
 | 
						|
			if (fd < 0) {
 | 
						|
				wlr_log_errno(L_INFO,
 | 
						|
					"creating anonymous file for cursor buffer failed");
 | 
						|
				return false;
 | 
						|
			}
 | 
						|
 | 
						|
			output->cursor.data = mmap(NULL, size, PROT_READ | PROT_WRITE,
 | 
						|
				MAP_SHARED, fd, 0);
 | 
						|
			if (output->cursor.data == MAP_FAILED) {
 | 
						|
				close(fd);
 | 
						|
				wlr_log_errno(L_INFO, "mmap failed");
 | 
						|
				return false;
 | 
						|
			}
 | 
						|
 | 
						|
			output->cursor.pool = wl_shm_create_pool(backend->shm, fd, size);
 | 
						|
			close(fd);
 | 
						|
		}
 | 
						|
 | 
						|
		output->cursor.buffer = wl_shm_pool_create_buffer(output->cursor.pool,
 | 
						|
			0, width, height, stride, WL_SHM_FORMAT_ARGB8888);
 | 
						|
		output->cursor.buf_size = size;
 | 
						|
	}
 | 
						|
 | 
						|
	memcpy(output->cursor.data, buf, size);
 | 
						|
	wl_surface_attach(output->cursor.surface, output->cursor.buffer, 0, 0);
 | 
						|
	wl_surface_damage(output->cursor.surface, 0, 0, width, height);
 | 
						|
	wl_surface_commit(output->cursor.surface);
 | 
						|
 | 
						|
	wlr_wl_output_update_cursor(output);
 | 
						|
	return true;
 | 
						|
}
 | 
						|
 | 
						|
static void wlr_wl_output_destroy(struct wlr_output *_output) {
 | 
						|
	struct wlr_wl_backend_output *output =
 | 
						|
		(struct wlr_wl_backend_output *)_output;
 | 
						|
	wl_signal_emit(&output->backend->backend.events.output_remove,
 | 
						|
		&output->wlr_output);
 | 
						|
 | 
						|
	if (output->cursor.buf_size != 0) {
 | 
						|
		assert(output->cursor.data);
 | 
						|
		assert(output->cursor.buffer);
 | 
						|
		assert(output->cursor.pool);
 | 
						|
 | 
						|
		wl_buffer_destroy(output->cursor.buffer);
 | 
						|
		munmap(output->cursor.data, output->cursor.buf_size);
 | 
						|
		wl_shm_pool_destroy(output->cursor.pool);
 | 
						|
	}
 | 
						|
 | 
						|
	if (output->cursor.surface) {
 | 
						|
		wl_surface_destroy(output->cursor.surface);
 | 
						|
	}
 | 
						|
 | 
						|
	if (output->frame_callback) {
 | 
						|
		wl_callback_destroy(output->frame_callback);
 | 
						|
	}
 | 
						|
	eglDestroySurface(output->backend->egl.display, output->surface);
 | 
						|
	wl_egl_window_destroy(output->egl_window);
 | 
						|
	zxdg_toplevel_v6_destroy(output->xdg_toplevel);
 | 
						|
	zxdg_surface_v6_destroy(output->xdg_surface);
 | 
						|
	wl_surface_destroy(output->surface);
 | 
						|
	free(output);
 | 
						|
}
 | 
						|
 | 
						|
void wlr_wl_output_update_cursor(struct wlr_wl_backend_output *output) {
 | 
						|
	if (output->backend->pointer && output->enter_serial) {
 | 
						|
		wl_pointer_set_cursor(output->backend->pointer, output->enter_serial,
 | 
						|
			output->cursor.surface, output->cursor.hotspot_x,
 | 
						|
			output->cursor.hotspot_y);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
bool wlr_wl_output_move_cursor(struct wlr_output *_output, int x, int y) {
 | 
						|
	// TODO: only return true if x == current x and y == current y
 | 
						|
	return true;
 | 
						|
}
 | 
						|
 | 
						|
static struct wlr_output_impl output_impl = {
 | 
						|
	.transform = wlr_wl_output_transform,
 | 
						|
	.destroy = wlr_wl_output_destroy,
 | 
						|
	.make_current = wlr_wl_output_make_current,
 | 
						|
	.swap_buffers = wlr_wl_output_swap_buffers,
 | 
						|
	.set_cursor = wlr_wl_output_set_cursor,
 | 
						|
	.move_cursor = wlr_wl_output_move_cursor,
 | 
						|
};
 | 
						|
 | 
						|
static void xdg_surface_handle_configure(void *data, struct zxdg_surface_v6 *xdg_surface,
 | 
						|
		uint32_t serial) {
 | 
						|
	struct wlr_wl_backend_output *output = data;
 | 
						|
	assert(output && output->xdg_surface == xdg_surface);
 | 
						|
 | 
						|
	zxdg_surface_v6_ack_configure(xdg_surface, serial);
 | 
						|
 | 
						|
	// nothing else?
 | 
						|
}
 | 
						|
 | 
						|
static struct zxdg_surface_v6_listener xdg_surface_listener = {
 | 
						|
	.configure = xdg_surface_handle_configure,
 | 
						|
};
 | 
						|
 | 
						|
static void xdg_toplevel_handle_configure(void *data, struct zxdg_toplevel_v6 *xdg_toplevel,
 | 
						|
		int32_t width, int32_t height, struct wl_array *states) {
 | 
						|
	struct wlr_wl_backend_output *output = data;
 | 
						|
	assert(output && output->xdg_toplevel == xdg_toplevel);
 | 
						|
 | 
						|
	if (width == 0 && height == 0) {
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	// loop over states for maximized etc?
 | 
						|
	wl_egl_window_resize(output->egl_window, width, height, 0, 0);
 | 
						|
	wlr_output_update_size(&output->wlr_output, width, height);
 | 
						|
	wl_signal_emit(&output->wlr_output.events.resolution, output);
 | 
						|
}
 | 
						|
 | 
						|
static void xdg_toplevel_handle_close(void *data, struct zxdg_toplevel_v6 *xdg_toplevel) {
 | 
						|
	struct wlr_wl_backend_output *output = data;
 | 
						|
	assert(output && output->xdg_toplevel == xdg_toplevel);
 | 
						|
 | 
						|
	wl_display_terminate(output->backend->local_display);
 | 
						|
}
 | 
						|
 | 
						|
static struct zxdg_toplevel_v6_listener xdg_toplevel_listener = {
 | 
						|
	.configure = xdg_toplevel_handle_configure,
 | 
						|
	.close = xdg_toplevel_handle_close,
 | 
						|
};
 | 
						|
 | 
						|
struct wlr_output *wlr_wl_output_create(struct wlr_backend *_backend) {
 | 
						|
	assert(wlr_backend_is_wl(_backend));
 | 
						|
	struct wlr_wl_backend *backend = (struct wlr_wl_backend *)_backend;
 | 
						|
	if (!backend->started) {
 | 
						|
		++backend->requested_outputs;
 | 
						|
		return NULL;
 | 
						|
	}
 | 
						|
 | 
						|
	struct wlr_wl_backend_output *output;
 | 
						|
	if (!(output = calloc(sizeof(struct wlr_wl_backend_output), 1))) {
 | 
						|
		wlr_log(L_ERROR, "Failed to allocate wlr_wl_backend_output");
 | 
						|
		return NULL;
 | 
						|
	}
 | 
						|
	wlr_output_init(&output->wlr_output, &backend->backend, &output_impl);
 | 
						|
	struct wlr_output *wlr_output = &output->wlr_output;
 | 
						|
 | 
						|
	wlr_output_update_size(wlr_output, 640, 480);
 | 
						|
	strncpy(wlr_output->make, "wayland", sizeof(wlr_output->make));
 | 
						|
	strncpy(wlr_output->model, "wayland", sizeof(wlr_output->model));
 | 
						|
	snprintf(wlr_output->name, sizeof(wlr_output->name), "WL-%d",
 | 
						|
		wl_list_length(&backend->outputs) + 1);
 | 
						|
 | 
						|
	output->backend = backend;
 | 
						|
 | 
						|
	output->surface = wl_compositor_create_surface(backend->compositor);
 | 
						|
	if (!output->surface) {
 | 
						|
		wlr_log_errno(L_ERROR, "Could not create output surface");
 | 
						|
		goto error;
 | 
						|
	}
 | 
						|
	output->xdg_surface =
 | 
						|
		zxdg_shell_v6_get_xdg_surface(backend->shell, output->surface);
 | 
						|
	if (!output->xdg_surface) {
 | 
						|
		wlr_log_errno(L_ERROR, "Could not get xdg surface");
 | 
						|
		goto error;
 | 
						|
	}
 | 
						|
	output->xdg_toplevel =
 | 
						|
		zxdg_surface_v6_get_toplevel(output->xdg_surface);
 | 
						|
	if (!output->xdg_toplevel) {
 | 
						|
		wlr_log_errno(L_ERROR, "Could not get xdg toplevel");
 | 
						|
		goto error;
 | 
						|
	}
 | 
						|
 | 
						|
	zxdg_toplevel_v6_set_app_id(output->xdg_toplevel, "wlroots");
 | 
						|
	zxdg_toplevel_v6_set_title(output->xdg_toplevel, "wlroots");
 | 
						|
	zxdg_surface_v6_add_listener(output->xdg_surface,
 | 
						|
			&xdg_surface_listener, output);
 | 
						|
	zxdg_toplevel_v6_add_listener(output->xdg_toplevel,
 | 
						|
			&xdg_toplevel_listener, output);
 | 
						|
	wl_surface_commit(output->surface);
 | 
						|
 | 
						|
	output->egl_window = wl_egl_window_create(output->surface,
 | 
						|
			wlr_output->width, wlr_output->height);
 | 
						|
	output->egl_surface = wlr_egl_create_surface(&backend->egl, output->egl_window);
 | 
						|
 | 
						|
	wl_display_roundtrip(output->backend->remote_display);
 | 
						|
 | 
						|
	// start rendering loop per callbacks by rendering first frame
 | 
						|
	if (!eglMakeCurrent(output->backend->egl.display,
 | 
						|
		output->egl_surface, output->egl_surface,
 | 
						|
		output->backend->egl.context)) {
 | 
						|
		wlr_log(L_ERROR, "eglMakeCurrent failed: %s", egl_error());
 | 
						|
		goto error;
 | 
						|
	}
 | 
						|
 | 
						|
	glViewport(0, 0, wlr_output->width, wlr_output->height);
 | 
						|
	glClearColor(1.0, 1.0, 1.0, 1.0);
 | 
						|
	glClear(GL_COLOR_BUFFER_BIT);
 | 
						|
 | 
						|
	output->frame_callback = wl_surface_frame(output->surface);
 | 
						|
	wl_callback_add_listener(output->frame_callback, &frame_listener, output);
 | 
						|
 | 
						|
	if (!eglSwapBuffers(output->backend->egl.display, output->egl_surface)) {
 | 
						|
		wlr_log(L_ERROR, "eglSwapBuffers failed: %s", egl_error());
 | 
						|
		goto error;
 | 
						|
	}
 | 
						|
 | 
						|
	wl_list_insert(&backend->outputs, &output->link);
 | 
						|
	wlr_output_create_global(wlr_output, backend->local_display);
 | 
						|
	wl_signal_emit(&backend->backend.events.output_add, wlr_output);
 | 
						|
	return wlr_output;
 | 
						|
 | 
						|
error:
 | 
						|
	wlr_output_destroy(&output->wlr_output);
 | 
						|
	return NULL;
 | 
						|
}
 |