|
|
@ -3,6 +3,7 @@
|
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
|
|
|
#include <wlr/types/wlr_box.h>
|
|
|
|
#include <wlr/types/wlr_box.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#include <float.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
|
|
|
@ -157,47 +158,33 @@ void wlr_output_layout_output_coords(struct wlr_output_layout *layout,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static double get_distance(double x1, double y1, double x2, double y2) {
|
|
|
|
static struct wlr_box *wlr_output_layout_output_get_box(
|
|
|
|
double distance;
|
|
|
|
struct wlr_output_layout_output *l_output) {
|
|
|
|
distance = sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2));
|
|
|
|
l_output->state->_box->x = l_output->x;
|
|
|
|
return distance;
|
|
|
|
l_output->state->_box->y = l_output->y;
|
|
|
|
|
|
|
|
wlr_output_effective_resolution(l_output->output,
|
|
|
|
|
|
|
|
&l_output->state->_box->width, &l_output->state->_box->height);
|
|
|
|
|
|
|
|
return l_output->state->_box;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wlr_output_layout_closest_boundary(struct wlr_output_layout *layout,
|
|
|
|
void wlr_output_layout_closest_point(struct wlr_output_layout *layout,
|
|
|
|
struct wlr_output *reference, double x, double y, double *dest_x,
|
|
|
|
struct wlr_output *reference, double x, double y, double *dest_x,
|
|
|
|
double *dest_y) {
|
|
|
|
double *dest_y) {
|
|
|
|
double min_x = INT_MAX, min_y = INT_MAX, min_distance = INT_MAX;
|
|
|
|
double min_x = DBL_MAX, min_y = DBL_MAX, min_distance = DBL_MAX;
|
|
|
|
struct wlr_output_layout_output *l_output;
|
|
|
|
struct wlr_output_layout_output *l_output;
|
|
|
|
wl_list_for_each(l_output, &layout->outputs, link) {
|
|
|
|
wl_list_for_each(l_output, &layout->outputs, link) {
|
|
|
|
if (reference != NULL && reference != l_output->output) {
|
|
|
|
if (reference != NULL && reference != l_output->output) {
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
double output_x, output_y, output_distance;
|
|
|
|
double output_x, output_y, output_distance;
|
|
|
|
wlr_output_effective_resolution(l_output->output, &width, &height);
|
|
|
|
struct wlr_box *box = wlr_output_layout_output_get_box(l_output);
|
|
|
|
|
|
|
|
wlr_box_closest_point(box, x, y, &output_x, &output_y);
|
|
|
|
// find the closest x point
|
|
|
|
|
|
|
|
// TODO use wlr_box_closest_boundary
|
|
|
|
|
|
|
|
if (x < l_output->x) {
|
|
|
|
|
|
|
|
output_x = l_output->x;
|
|
|
|
|
|
|
|
} else if (x > l_output->x + width) {
|
|
|
|
|
|
|
|
output_x = l_output->x + width;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
output_x = x;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// find closest y point
|
|
|
|
// calculate squared distance suitable for comparison
|
|
|
|
if (y < l_output->y) {
|
|
|
|
output_distance =
|
|
|
|
output_y = l_output->y;
|
|
|
|
(x - output_x) * (x - output_x) + (y - output_y) * (y - output_y);
|
|
|
|
} else if (y > l_output->y + height) {
|
|
|
|
|
|
|
|
output_y = l_output->y + height;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
output_y = y;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// calculate distance
|
|
|
|
|
|
|
|
output_distance = get_distance(output_x, output_y, x, y);
|
|
|
|
|
|
|
|
if (output_distance < min_distance) {
|
|
|
|
if (output_distance < min_distance) {
|
|
|
|
min_x = output_x;
|
|
|
|
min_x = output_x;
|
|
|
|
min_y = output_y;
|
|
|
|
min_y = output_y;
|
|
|
@ -215,11 +202,7 @@ struct wlr_box *wlr_output_layout_get_box(
|
|
|
|
if (reference) {
|
|
|
|
if (reference) {
|
|
|
|
// output extents
|
|
|
|
// output extents
|
|
|
|
l_output= wlr_output_layout_get(layout, reference);
|
|
|
|
l_output= wlr_output_layout_get(layout, reference);
|
|
|
|
l_output->state->_box->x = l_output->x;
|
|
|
|
return wlr_output_layout_output_get_box(l_output);
|
|
|
|
l_output->state->_box->y = l_output->y;
|
|
|
|
|
|
|
|
wlr_output_effective_resolution(reference,
|
|
|
|
|
|
|
|
&l_output->state->_box->width, &l_output->state->_box->height);
|
|
|
|
|
|
|
|
return l_output->state->_box;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// layout extents
|
|
|
|
// layout extents
|
|
|
|
int min_x = INT_MAX, min_y = INT_MAX;
|
|
|
|
int min_x = INT_MAX, min_y = INT_MAX;
|
|
|
|