2017-06-29 00:51:58 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <wayland-server.h>
|
|
|
|
#include <wlr/util/log.h>
|
2017-07-12 04:16:56 +02:00
|
|
|
#include "compositor.h"
|
2017-06-29 00:51:58 +02:00
|
|
|
|
2017-08-03 15:50:45 +02:00
|
|
|
static void surface_destroy(struct wl_client *client, struct wl_resource *resource) {
|
|
|
|
wl_resource_destroy(resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void surface_attach(struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
struct wl_resource *buffer_resource, int32_t sx, int32_t sy) {
|
2017-08-03 20:20:51 +02:00
|
|
|
struct wlr_surface *surface = wl_resource_get_user_data(resource);
|
|
|
|
struct wl_shm_buffer *buffer = wl_shm_buffer_get(buffer_resource);
|
|
|
|
uint32_t format = wl_shm_buffer_get_format(buffer);
|
|
|
|
wlr_surface_attach_shm(surface, format, buffer);
|
2017-08-03 15:50:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void surface_damage(struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
int32_t x, int32_t y, int32_t width, int32_t height) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: surface damage");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void surface_frame(struct wl_client *client,
|
|
|
|
struct wl_resource *resource, uint32_t callback) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: surface frame");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void surface_set_opaque_region(struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
struct wl_resource *region_resource) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: surface opaque region");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void surface_set_input_region(struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
struct wl_resource *region_resource) {
|
|
|
|
|
|
|
|
wlr_log(L_DEBUG, "TODO: surface input region");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void surface_commit(struct wl_client *client,
|
|
|
|
struct wl_resource *resource) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: surface surface commit");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void surface_set_buffer_transform(struct wl_client *client,
|
|
|
|
struct wl_resource *resource, int transform) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: surface surface buffer transform");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void surface_set_buffer_scale(struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
int32_t scale) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: surface set buffer scale");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void surface_damage_buffer(struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
int32_t x, int32_t y, int32_t width,
|
|
|
|
int32_t height) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: surface damage buffer");
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wl_surface_interface surface_interface = {
|
|
|
|
surface_destroy,
|
|
|
|
surface_attach,
|
|
|
|
surface_damage,
|
|
|
|
surface_frame,
|
|
|
|
surface_set_opaque_region,
|
|
|
|
surface_set_input_region,
|
|
|
|
surface_commit,
|
|
|
|
surface_set_buffer_transform,
|
|
|
|
surface_set_buffer_scale,
|
|
|
|
surface_damage_buffer
|
|
|
|
};
|
|
|
|
|
|
|
|
static void destroy_surface(struct wl_resource *resource) {
|
2017-08-04 17:53:55 +02:00
|
|
|
struct wlr_surface *surface = wl_resource_get_user_data(resource);
|
|
|
|
wlr_surface_destroy(surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void destroy_surface_listener(struct wl_listener *listener, void *data) {
|
|
|
|
struct wl_compositor_state *state;
|
|
|
|
struct wlr_surface *surface = data;
|
|
|
|
state = wl_container_of(listener, state, destroy_surface_listener);
|
|
|
|
|
2017-08-04 22:26:21 +02:00
|
|
|
struct wl_resource *res = NULL;
|
|
|
|
wl_list_for_each(res, &state->surfaces, link) {
|
2017-08-04 22:44:45 +02:00
|
|
|
if (res == surface->resource) {
|
2017-08-04 22:26:21 +02:00
|
|
|
wl_list_remove(&res->link);
|
2017-08-04 17:53:55 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-08-03 15:50:45 +02:00
|
|
|
}
|
|
|
|
|
2017-06-29 00:51:58 +02:00
|
|
|
static void wl_compositor_create_surface(struct wl_client *client,
|
2017-08-03 15:50:45 +02:00
|
|
|
struct wl_resource *resource, uint32_t id) {
|
|
|
|
struct wl_compositor_state *state = wl_resource_get_user_data(resource);
|
|
|
|
struct wl_resource *surface_resource = wl_resource_create(client,
|
|
|
|
&wl_surface_interface, wl_resource_get_version(resource), id);
|
|
|
|
struct wlr_surface *surface = wlr_render_surface_init(state->renderer);
|
2017-08-04 17:53:55 +02:00
|
|
|
surface->resource = surface_resource;
|
2017-08-03 15:50:45 +02:00
|
|
|
wl_resource_set_implementation(surface_resource, &surface_interface,
|
|
|
|
surface, destroy_surface);
|
|
|
|
wl_resource_set_user_data(surface_resource, surface);
|
2017-08-03 20:20:51 +02:00
|
|
|
wl_list_insert(&state->surfaces, wl_resource_get_link(surface_resource));
|
2017-08-04 17:53:55 +02:00
|
|
|
wl_signal_add(&surface->destroy_signal, &state->destroy_surface_listener);
|
2017-06-29 00:51:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wl_compositor_create_region(struct wl_client *client,
|
2017-08-03 15:50:45 +02:00
|
|
|
struct wl_resource *resource, uint32_t id) {
|
2017-06-29 00:51:58 +02:00
|
|
|
wlr_log(L_DEBUG, "TODO: implement create_region");
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wl_compositor_interface wl_compositor_impl = {
|
|
|
|
.create_surface = wl_compositor_create_surface,
|
|
|
|
.create_region = wl_compositor_create_region
|
|
|
|
};
|
|
|
|
|
|
|
|
static void wl_compositor_destroy(struct wl_resource *resource) {
|
|
|
|
struct wl_compositor_state *state = wl_resource_get_user_data(resource);
|
|
|
|
struct wl_resource *_resource = NULL;
|
|
|
|
wl_resource_for_each(_resource, &state->wl_resources) {
|
|
|
|
if (_resource == resource) {
|
|
|
|
struct wl_list *link = wl_resource_get_link(_resource);
|
|
|
|
wl_list_remove(link);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wl_compositor_bind(struct wl_client *wl_client, void *_state,
|
|
|
|
uint32_t version, uint32_t id) {
|
|
|
|
struct wl_compositor_state *state = _state;
|
|
|
|
assert(wl_client && state);
|
|
|
|
if (version > 4) {
|
|
|
|
wlr_log(L_ERROR, "Client requested unsupported wl_compositor version, disconnecting");
|
|
|
|
wl_client_destroy(wl_client);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct wl_resource *wl_resource = wl_resource_create(
|
|
|
|
wl_client, &wl_compositor_interface, version, id);
|
|
|
|
wl_resource_set_implementation(wl_resource, &wl_compositor_impl,
|
|
|
|
state, wl_compositor_destroy);
|
|
|
|
wl_list_insert(&state->wl_resources, wl_resource_get_link(wl_resource));
|
|
|
|
}
|
|
|
|
|
|
|
|
void wl_compositor_init(struct wl_display *display,
|
2017-08-03 15:50:45 +02:00
|
|
|
struct wl_compositor_state *state, struct wlr_renderer *renderer) {
|
2017-06-29 00:51:58 +02:00
|
|
|
struct wl_global *wl_global = wl_global_create(display,
|
|
|
|
&wl_compositor_interface, 4, state, wl_compositor_bind);
|
|
|
|
state->wl_global = wl_global;
|
2017-08-03 15:50:45 +02:00
|
|
|
state->renderer = renderer;
|
2017-08-04 17:53:55 +02:00
|
|
|
state->destroy_surface_listener.notify = destroy_surface_listener;
|
2017-06-29 00:51:58 +02:00
|
|
|
wl_list_init(&state->wl_resources);
|
2017-08-03 20:20:51 +02:00
|
|
|
wl_list_init(&state->surfaces);
|
2017-06-29 00:51:58 +02:00
|
|
|
}
|