2017-06-14 20:50:09 +02:00
|
|
|
#define _POSIX_C_SOURCE 199309L
|
|
|
|
#define _XOPEN_SOURCE 500
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <GLES2/gl2.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdint.h>
|
2017-06-14 20:50:09 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <time.h>
|
2017-06-14 20:50:09 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <wayland-server-protocol.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wayland-server.h>
|
2017-06-14 20:50:09 +02:00
|
|
|
#include <wlr/backend.h>
|
2017-07-11 09:18:34 +02:00
|
|
|
#include <wlr/backend/session.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2017-10-22 04:00:04 +02:00
|
|
|
#include <wlr/types/wlr_list.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/types/wlr_matrix.h>
|
2017-08-15 07:56:47 +02:00
|
|
|
#include <wlr/util/log.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2017-11-01 20:47:58 +01:00
|
|
|
#include "support/cat.h"
|
2018-03-19 23:16:29 +01:00
|
|
|
#include "support/shared.h"
|
2017-06-14 20:50:09 +02:00
|
|
|
|
|
|
|
struct sample_state {
|
|
|
|
struct wlr_renderer *renderer;
|
2017-08-08 18:02:14 +02:00
|
|
|
struct wlr_texture *cat_texture;
|
2017-11-20 21:26:20 +01:00
|
|
|
struct wl_list touch_points;
|
2017-06-14 20:50:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct touch_point {
|
2017-11-16 23:53:52 +01:00
|
|
|
int32_t touch_id;
|
2017-06-14 20:50:09 +02:00
|
|
|
double x, y;
|
2017-11-20 21:26:20 +01:00
|
|
|
struct wl_list link;
|
2017-06-14 20:50:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static void handle_output_frame(struct output_state *output, struct timespec *ts) {
|
|
|
|
struct compositor_state *state = output->compositor;
|
|
|
|
struct sample_state *sample = state->data;
|
|
|
|
struct wlr_output *wlr_output = output->output;
|
|
|
|
|
|
|
|
int32_t width, height;
|
|
|
|
wlr_output_effective_resolution(wlr_output, &width, &height);
|
2017-06-26 07:34:15 +02:00
|
|
|
|
2018-01-21 00:06:35 +01:00
|
|
|
wlr_output_make_current(wlr_output, NULL);
|
2018-03-20 23:10:42 +01:00
|
|
|
wlr_renderer_begin(sample->renderer, wlr_output->width, wlr_output->height);
|
2018-03-15 11:10:56 +01:00
|
|
|
wlr_renderer_clear(sample->renderer, (float[]){0.25f, 0.25f, 0.25f, 1});
|
2017-06-14 20:50:09 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
int tex_width, tex_height;
|
|
|
|
wlr_texture_get_size(sample->cat_texture, &tex_width, &tex_height);
|
|
|
|
|
2017-11-20 21:26:20 +01:00
|
|
|
struct touch_point *p;
|
|
|
|
wl_list_for_each(p, &sample->touch_points, link) {
|
2018-03-24 23:30:28 +01:00
|
|
|
int x = (int)(p->x * width) - tex_width / 2;
|
|
|
|
int y = (int)(p->y * height) - tex_height / 2;
|
2018-03-15 19:31:02 +01:00
|
|
|
wlr_render_texture(sample->renderer, sample->cat_texture,
|
|
|
|
wlr_output->transform_matrix, x, y, 1.0f);
|
2017-06-14 20:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
wlr_renderer_end(sample->renderer);
|
2018-01-19 14:08:47 +01:00
|
|
|
wlr_output_swap_buffers(wlr_output, NULL, NULL);
|
2017-06-14 20:50:09 +02:00
|
|
|
}
|
|
|
|
|
2018-03-28 17:04:40 +02:00
|
|
|
static void handle_touch_down(struct touch_state *tstate,
|
|
|
|
int32_t touch_id, double x, double y) {
|
2017-06-14 20:50:09 +02:00
|
|
|
struct sample_state *sample = tstate->compositor->data;
|
2017-08-28 17:07:54 +02:00
|
|
|
struct touch_point *point = calloc(1, sizeof(struct touch_point));
|
2017-11-16 23:53:52 +01:00
|
|
|
point->touch_id = touch_id;
|
2018-03-28 17:04:40 +02:00
|
|
|
point->x = x;
|
|
|
|
point->y = y;
|
2017-11-20 21:26:20 +01:00
|
|
|
wl_list_insert(&sample->touch_points, &point->link);
|
2017-06-14 20:50:09 +02:00
|
|
|
}
|
|
|
|
|
2017-11-16 23:53:52 +01:00
|
|
|
static void handle_touch_up(struct touch_state *tstate, int32_t touch_id) {
|
2017-06-14 20:50:09 +02:00
|
|
|
struct sample_state *sample = tstate->compositor->data;
|
2017-11-20 21:26:20 +01:00
|
|
|
struct touch_point *point, *tmp;
|
|
|
|
wl_list_for_each_safe(point, tmp, &sample->touch_points, link) {
|
2017-11-16 23:53:52 +01:00
|
|
|
if (point->touch_id == touch_id) {
|
2017-11-20 21:26:20 +01:00
|
|
|
wl_list_remove(&point->link);
|
2017-06-14 20:50:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-28 17:04:40 +02:00
|
|
|
static void handle_touch_motion(struct touch_state *tstate,
|
|
|
|
int32_t touch_id, double x, double y) {
|
2017-06-14 20:50:09 +02:00
|
|
|
struct sample_state *sample = tstate->compositor->data;
|
2017-11-20 21:26:20 +01:00
|
|
|
struct touch_point *point;
|
|
|
|
wl_list_for_each(point, &sample->touch_points, link) {
|
2017-11-16 23:53:52 +01:00
|
|
|
if (point->touch_id == touch_id) {
|
2018-03-28 17:04:40 +02:00
|
|
|
point->x = x;
|
|
|
|
point->y = y;
|
2017-06-14 20:50:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2018-01-16 04:51:00 +01:00
|
|
|
wlr_log_init(L_DEBUG, NULL);
|
2017-11-20 21:26:20 +01:00
|
|
|
struct sample_state state;
|
|
|
|
wl_list_init(&state.touch_points);
|
|
|
|
|
2017-06-20 21:29:27 +02:00
|
|
|
struct compositor_state compositor = { 0,
|
|
|
|
.data = &state,
|
|
|
|
.output_frame_cb = handle_output_frame,
|
|
|
|
.touch_down_cb = handle_touch_down,
|
|
|
|
.touch_up_cb = handle_touch_up,
|
|
|
|
.touch_motion_cb = handle_touch_motion,
|
|
|
|
};
|
2017-06-14 20:50:09 +02:00
|
|
|
compositor_init(&compositor);
|
|
|
|
|
2018-04-01 22:57:29 +02:00
|
|
|
state.renderer = wlr_backend_get_renderer(compositor.backend);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!state.renderer) {
|
|
|
|
wlr_log(L_ERROR, "Could not start compositor, OOM");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2018-03-24 23:30:28 +01:00
|
|
|
state.cat_texture = wlr_texture_from_pixels(state.renderer,
|
|
|
|
WL_SHM_FORMAT_ARGB8888, cat_tex.width * 4, cat_tex.width, cat_tex.height,
|
|
|
|
cat_tex.pixel_data);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!state.cat_texture) {
|
|
|
|
wlr_log(L_ERROR, "Could not start compositor, OOM");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2017-06-14 20:50:09 +02:00
|
|
|
|
2017-09-24 20:12:56 +02:00
|
|
|
if (!wlr_backend_start(compositor.backend)) {
|
|
|
|
wlr_log(L_ERROR, "Failed to start backend");
|
|
|
|
wlr_backend_destroy(compositor.backend);
|
|
|
|
exit(1);
|
|
|
|
}
|
2017-08-19 09:26:25 +02:00
|
|
|
wl_display_run(compositor.display);
|
2017-06-14 20:50:09 +02:00
|
|
|
|
2017-08-08 18:02:14 +02:00
|
|
|
wlr_texture_destroy(state.cat_texture);
|
2017-06-14 20:50:09 +02:00
|
|
|
wlr_renderer_destroy(state.renderer);
|
2017-08-19 09:26:25 +02:00
|
|
|
compositor_fini(&compositor);
|
2017-06-14 20:50:09 +02:00
|
|
|
}
|