2017-06-22 20:26:02 +02:00
|
|
|
#include <assert.h>
|
2017-05-07 18:26:48 +02:00
|
|
|
#include <stdlib.h>
|
2017-06-07 06:43:57 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <tgmath.h>
|
2017-05-07 18:26:48 +02:00
|
|
|
#include <wayland-server.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/types/wlr_output.h>
|
|
|
|
#include <wlr/interfaces/wlr_output.h>
|
2017-06-21 18:10:07 +02:00
|
|
|
#include <wlr/util/list.h>
|
2017-06-22 20:26:02 +02:00
|
|
|
#include <wlr/util/log.h>
|
|
|
|
|
|
|
|
static void wl_output_send_to_resource(struct wl_resource *resource) {
|
|
|
|
assert(resource);
|
|
|
|
struct wlr_output *output = wl_resource_get_user_data(resource);
|
|
|
|
assert(output);
|
|
|
|
const uint32_t version = wl_resource_get_version(resource);
|
|
|
|
if (version >= WL_OUTPUT_GEOMETRY_SINCE_VERSION) {
|
|
|
|
wl_output_send_geometry(resource, 0, 0, // TODO: get position from layout?
|
|
|
|
output->phys_width, output->phys_height, output->subpixel,
|
|
|
|
output->make, output->model, output->transform);
|
|
|
|
}
|
|
|
|
if (version >= WL_OUTPUT_MODE_SINCE_VERSION) {
|
|
|
|
for (size_t i = 0; i < output->modes->length; ++i) {
|
|
|
|
struct wlr_output_mode *mode = output->modes->items[i];
|
|
|
|
// TODO: mode->flags should just be preferred
|
|
|
|
uint32_t flags = mode->flags;
|
|
|
|
if (output->current_mode == mode) {
|
|
|
|
flags |= WL_OUTPUT_MODE_CURRENT;
|
|
|
|
}
|
|
|
|
wl_output_send_mode(resource, flags,
|
|
|
|
mode->width, mode->height, mode->refresh);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (version >= WL_OUTPUT_SCALE_SINCE_VERSION) {
|
|
|
|
wl_output_send_scale(resource, output->scale);
|
|
|
|
}
|
|
|
|
if (version >= WL_OUTPUT_DONE_SINCE_VERSION) {
|
|
|
|
wl_output_send_done(resource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wl_output_destroy(struct wl_resource *resource) {
|
|
|
|
struct wlr_output *output = wl_resource_get_user_data(resource);
|
|
|
|
struct wl_resource *_resource = NULL;
|
|
|
|
wl_resource_for_each(_resource, &output->resource_list) {
|
|
|
|
if (_resource == resource) {
|
|
|
|
struct wl_list *link = wl_resource_get_link(_resource);
|
|
|
|
wl_list_remove(link);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wl_output_release(struct wl_client *client, struct wl_resource *resource) {
|
|
|
|
wl_output_destroy(resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct wl_output_interface wl_output_impl = {
|
|
|
|
.release = wl_output_release
|
|
|
|
};
|
|
|
|
|
|
|
|
static void wl_output_bind(struct wl_client *wl_client, void *_wlr_output,
|
|
|
|
uint32_t version, uint32_t id) {
|
|
|
|
struct wlr_output *wlr_output = _wlr_output;
|
|
|
|
assert(wl_client && wlr_output);
|
|
|
|
if (version > 3) {
|
|
|
|
wlr_log(L_ERROR, "Client requested unsupported wl_output version, disconnecting");
|
|
|
|
wl_client_destroy(wl_client);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct wl_resource *wl_resource = wl_resource_create(
|
|
|
|
wl_client, &wl_output_interface, version, id);
|
|
|
|
wl_resource_set_implementation(wl_resource, &wl_output_impl,
|
|
|
|
wlr_output, wl_output_destroy);
|
|
|
|
wl_list_insert(&wlr_output->resource_list, wl_resource_get_link(wl_resource));
|
|
|
|
wl_output_send_to_resource(wl_resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wl_global *wlr_output_create_global(
|
|
|
|
struct wlr_output *wlr_output, struct wl_display *display) {
|
|
|
|
struct wl_global *wl_global = wl_global_create(display,
|
|
|
|
&wl_output_interface, 3, wlr_output, wl_output_bind);
|
|
|
|
wlr_output->wl_global = wl_global;
|
|
|
|
wl_list_init(&wlr_output->resource_list);
|
|
|
|
return wl_global;
|
|
|
|
}
|
2017-05-07 18:26:48 +02:00
|
|
|
|
2017-06-07 06:43:57 +02:00
|
|
|
static const float transforms[][4] = {
|
|
|
|
[WL_OUTPUT_TRANSFORM_NORMAL] = {
|
|
|
|
1.0f, 0.0f,
|
2017-06-07 17:05:31 +02:00
|
|
|
0.0f, -1.0f,
|
2017-06-07 06:43:57 +02:00
|
|
|
},
|
|
|
|
[WL_OUTPUT_TRANSFORM_90] = {
|
|
|
|
0.0f, -1.0f,
|
2017-06-07 17:05:31 +02:00
|
|
|
-1.0f, 0.0f,
|
2017-06-07 06:43:57 +02:00
|
|
|
},
|
|
|
|
[WL_OUTPUT_TRANSFORM_180] = {
|
|
|
|
-1.0f, 0.0f,
|
2017-06-07 17:05:31 +02:00
|
|
|
0.0f, 1.0f,
|
2017-06-07 06:43:57 +02:00
|
|
|
},
|
|
|
|
[WL_OUTPUT_TRANSFORM_270] = {
|
|
|
|
0.0f, 1.0f,
|
2017-06-07 17:05:31 +02:00
|
|
|
1.0f, 0.0f,
|
2017-06-07 06:43:57 +02:00
|
|
|
},
|
|
|
|
[WL_OUTPUT_TRANSFORM_FLIPPED] = {
|
|
|
|
-1.0f, 0.0f,
|
2017-06-07 17:05:31 +02:00
|
|
|
0.0f, -1.0f,
|
2017-06-07 06:43:57 +02:00
|
|
|
},
|
|
|
|
[WL_OUTPUT_TRANSFORM_FLIPPED_90] = {
|
|
|
|
0.0f, 1.0f,
|
2017-06-07 17:05:31 +02:00
|
|
|
-1.0f, 0.0f,
|
2017-06-07 06:43:57 +02:00
|
|
|
},
|
|
|
|
[WL_OUTPUT_TRANSFORM_FLIPPED_180] = {
|
|
|
|
1.0f, 0.0f,
|
2017-06-07 17:05:31 +02:00
|
|
|
0.0f, 1.0f,
|
2017-06-07 06:43:57 +02:00
|
|
|
},
|
|
|
|
[WL_OUTPUT_TRANSFORM_FLIPPED_270] = {
|
|
|
|
0.0f, -1.0f,
|
2017-06-07 17:05:31 +02:00
|
|
|
1.0f, 0.0f,
|
2017-06-07 06:43:57 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
// Equivilent to glOrtho(0, width, 0, height, 1, -1) with the transform applied
|
|
|
|
static void set_matrix(float mat[static 16], int32_t width, int32_t height,
|
|
|
|
enum wl_output_transform transform) {
|
|
|
|
memset(mat, 0, sizeof(*mat) * 16);
|
|
|
|
|
|
|
|
const float *t = transforms[transform];
|
|
|
|
float x = 2.0f / width;
|
|
|
|
float y = 2.0f / height;
|
|
|
|
|
|
|
|
// Rotation + relection
|
|
|
|
mat[0] = x * t[0];
|
|
|
|
mat[1] = x * t[1];
|
|
|
|
mat[4] = y * t[2];
|
|
|
|
mat[5] = y * t[3];
|
|
|
|
|
|
|
|
// Translation
|
|
|
|
mat[3] = -copysign(1.0f, mat[0] + mat[1]);
|
|
|
|
mat[7] = -copysign(1.0f, mat[4] + mat[5]);
|
|
|
|
|
|
|
|
// Identity
|
|
|
|
mat[10] = 1.0f;
|
|
|
|
mat[15] = 1.0f;
|
|
|
|
}
|
|
|
|
|
2017-06-20 23:51:45 +02:00
|
|
|
void wlr_output_update_matrix(struct wlr_output *output) {
|
|
|
|
set_matrix(output->transform_matrix, output->width, output->height, output->transform);
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:26:48 +02:00
|
|
|
struct wlr_output *wlr_output_create(struct wlr_output_impl *impl,
|
|
|
|
struct wlr_output_state *state) {
|
|
|
|
struct wlr_output *output = calloc(1, sizeof(struct wlr_output));
|
|
|
|
output->impl = impl;
|
|
|
|
output->state = state;
|
|
|
|
output->modes = list_create();
|
2017-06-06 17:48:30 +02:00
|
|
|
output->transform = WL_OUTPUT_TRANSFORM_NORMAL;
|
2017-05-07 18:26:48 +02:00
|
|
|
wl_signal_init(&output->events.frame);
|
2017-06-20 23:51:45 +02:00
|
|
|
wl_signal_init(&output->events.resolution);
|
2017-05-07 18:26:48 +02:00
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2017-06-06 17:48:30 +02:00
|
|
|
void wlr_output_enable(struct wlr_output *output, bool enable) {
|
|
|
|
output->impl->enable(output->state, enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wlr_output_set_mode(struct wlr_output *output, struct wlr_output_mode *mode) {
|
2017-06-20 23:51:45 +02:00
|
|
|
if (!output->impl || !output->impl->set_mode) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-22 17:19:46 +02:00
|
|
|
bool result = output->impl->set_mode(output->state, mode);
|
|
|
|
if (result) {
|
|
|
|
wlr_output_update_matrix(output);
|
|
|
|
}
|
|
|
|
return result;
|
2017-06-06 17:48:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_output_transform(struct wlr_output *output,
|
|
|
|
enum wl_output_transform transform) {
|
2017-06-20 23:51:45 +02:00
|
|
|
wlr_output_update_matrix(output);
|
2017-06-06 17:48:30 +02:00
|
|
|
output->impl->transform(output->state, transform);
|
|
|
|
}
|
|
|
|
|
2017-06-16 21:38:34 +02:00
|
|
|
bool wlr_output_set_cursor(struct wlr_output *output,
|
|
|
|
const uint8_t *buf, int32_t stride, uint32_t width, uint32_t height) {
|
2017-06-20 23:51:45 +02:00
|
|
|
if (!output->impl || !output->impl->set_cursor) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-16 21:38:34 +02:00
|
|
|
return output->impl->set_cursor(output->state, buf, stride, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wlr_output_move_cursor(struct wlr_output *output, int x, int y) {
|
2017-06-20 23:51:45 +02:00
|
|
|
if (!output->impl || !output->impl->move_cursor) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-16 21:38:34 +02:00
|
|
|
return output->impl->move_cursor(output->state, x, y);
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:17:04 +02:00
|
|
|
void wlr_output_destroy(struct wlr_output *output) {
|
2017-05-07 18:26:48 +02:00
|
|
|
if (!output) return;
|
2017-05-31 22:17:04 +02:00
|
|
|
output->impl->destroy(output->state);
|
2017-05-07 18:26:48 +02:00
|
|
|
for (size_t i = 0; output->modes && i < output->modes->length; ++i) {
|
|
|
|
free(output->modes->items[i]);
|
|
|
|
}
|
|
|
|
list_free(output->modes);
|
|
|
|
free(output);
|
|
|
|
}
|
2017-06-08 03:35:07 +02:00
|
|
|
|
|
|
|
void wlr_output_effective_resolution(struct wlr_output *output,
|
|
|
|
int *width, int *height) {
|
|
|
|
// TODO: Scale factor
|
|
|
|
if (output->transform % 2 == 1) {
|
|
|
|
*width = output->height;
|
|
|
|
*height = output->width;
|
|
|
|
} else {
|
|
|
|
*width = output->width;
|
|
|
|
*height = output->height;
|
|
|
|
}
|
|
|
|
}
|