wlroots-hyprland/examples/rotation.c

222 lines
6.1 KiB
C
Raw Normal View History

2017-06-05 12:48:51 +02:00
#define _POSIX_C_SOURCE 199309L
#define _XOPEN_SOURCE 500
2017-06-05 12:48:51 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#include <strings.h>
2017-06-05 12:48:51 +02:00
#include <unistd.h>
#include <wayland-server.h>
#include <wayland-server-protocol.h>
2017-06-13 04:33:55 +02:00
#include <xkbcommon/xkbcommon.h>
2017-06-23 17:38:45 +02:00
#include <GLES2/gl2.h>
#include <wlr/render/matrix.h>
2017-06-23 17:38:45 +02:00
#include <wlr/render/gles2.h>
2017-06-08 17:30:38 +02:00
#include <wlr/render.h>
2017-06-05 12:48:51 +02:00
#include <wlr/backend.h>
2017-07-11 09:18:34 +02:00
#include <wlr/backend/session.h>
2017-06-21 16:27:45 +02:00
#include <wlr/types/wlr_keyboard.h>
#include <math.h>
2017-06-13 16:13:11 +02:00
#include "shared.h"
#include "cat.h"
2017-06-05 12:48:51 +02:00
2017-06-13 16:13:11 +02:00
struct sample_state {
2017-06-13 04:33:55 +02:00
struct wl_list config;
struct wlr_renderer *renderer;
struct wlr_texture *cat_texture;
2017-06-05 12:48:51 +02:00
};
2017-06-13 16:13:11 +02:00
struct output_data {
2017-06-09 16:38:29 +02:00
float x_offs, y_offs;
2017-06-13 04:33:55 +02:00
float x_vel, y_vel;
2017-06-05 12:48:51 +02:00
};
struct output_config {
char *name;
enum wl_output_transform transform;
struct wl_list link;
};
2017-06-13 16:13:11 +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 output_data *odata = output->data;
struct wlr_output *wlr_output = output->output;
2017-06-05 12:48:51 +02:00
2017-06-09 16:38:29 +02:00
int32_t width, height;
2017-06-13 16:13:11 +02:00
wlr_output_effective_resolution(wlr_output, &width, &height);
2017-06-09 16:38:29 +02:00
2017-06-26 07:34:15 +02:00
wlr_output_make_current(wlr_output);
2017-06-13 16:13:11 +02:00
wlr_renderer_begin(sample->renderer, wlr_output);
float matrix[16];
2017-06-13 16:13:11 +02:00
for (int y = -128 + (int)odata->y_offs; y < height; y += 128) {
for (int x = -128 + (int)odata->x_offs; x < width; x += 128) {
wlr_texture_get_matrix(sample->cat_texture, &matrix,
2017-06-13 16:13:11 +02:00
&wlr_output->transform_matrix, x, y);
wlr_render_with_matrix(sample->renderer,
sample->cat_texture, &matrix);
2017-06-09 16:38:29 +02:00
}
}
2017-06-05 12:48:51 +02:00
2017-06-13 16:13:11 +02:00
wlr_renderer_end(sample->renderer);
2017-06-26 07:34:15 +02:00
wlr_output_swap_buffers(wlr_output);
2017-06-05 12:48:51 +02:00
2017-06-13 16:13:11 +02:00
long ms = (ts->tv_sec - output->last_frame.tv_sec) * 1000 +
(ts->tv_nsec - output->last_frame.tv_nsec) / 1000000;
float seconds = ms / 1000.0f;
2017-06-13 16:13:11 +02:00
odata->x_offs += odata->x_vel * seconds;
odata->y_offs += odata->y_vel * seconds;
if (odata->x_offs > 128) odata->x_offs = 0;
if (odata->y_offs > 128) odata->y_offs = 0;
2017-06-05 12:48:51 +02:00
}
2017-06-13 16:13:11 +02:00
static void handle_output_add(struct output_state *output) {
struct output_data *odata = calloc(1, sizeof(struct output_data));
odata->x_offs = odata->y_offs = 0;
odata->x_vel = odata->y_vel = 128;
output->data = odata;
struct sample_state *state = output->compositor->data;
2017-06-05 12:48:51 +02:00
struct output_config *conf;
wl_list_for_each(conf, &state->config, link) {
2017-06-13 16:13:11 +02:00
if (strcmp(conf->name, output->output->name) == 0) {
wlr_output_transform(output->output, conf->transform);
2017-06-05 12:48:51 +02:00
break;
}
}
}
2017-06-13 16:13:11 +02:00
static void handle_output_remove(struct output_state *output) {
free(output->data);
2017-06-05 12:48:51 +02:00
}
2017-06-13 16:13:11 +02:00
static void update_velocities(struct compositor_state *state,
float x_diff, float y_diff) {
struct output_state *output;
wl_list_for_each(output, &state->outputs, link) {
struct output_data *odata = output->data;
odata->x_vel += x_diff;
odata->y_vel += y_diff;
2017-06-13 04:33:55 +02:00
}
}
2017-06-13 16:13:11 +02:00
static void handle_keyboard_key(struct keyboard_state *kbstate,
xkb_keysym_t sym, enum wlr_key_state key_state) {
2017-06-13 04:33:55 +02:00
// NOTE: It may be better to simply refer to our key state during each frame
// and make this change in pixels/sec^2
2017-06-13 16:13:11 +02:00
// Also, key repeat
2017-06-13 04:33:55 +02:00
if (key_state == WLR_KEY_PRESSED) {
switch (sym) {
case XKB_KEY_Left:
2017-06-13 16:13:11 +02:00
update_velocities(kbstate->compositor, -16, 0);
2017-06-13 04:33:55 +02:00
break;
case XKB_KEY_Right:
2017-06-13 16:13:11 +02:00
update_velocities(kbstate->compositor, 16, 0);
2017-06-13 04:33:55 +02:00
break;
case XKB_KEY_Up:
2017-06-13 16:13:11 +02:00
update_velocities(kbstate->compositor, 0, -16);
2017-06-13 04:33:55 +02:00
break;
case XKB_KEY_Down:
2017-06-13 16:13:11 +02:00
update_velocities(kbstate->compositor, 0, 16);
2017-06-13 04:33:55 +02:00
break;
}
}
2017-06-05 12:48:51 +02:00
}
static void usage(const char *name, int ret) {
fprintf(stderr,
"usage: %s [-d <name> [-r <rotation> | -f]]*\n"
"\n"
2017-06-06 17:25:36 +02:00
" -o <output> The name of the DRM display. e.g. DVI-I-1.\n"
2017-06-05 12:48:51 +02:00
" -r <rotation> The rotation counter clockwise. Valid values are 90, 180, 270.\n"
" -f Flip the output along the vertical axis.\n", name);
exit(ret);
}
static void parse_args(int argc, char *argv[], struct wl_list *config) {
struct output_config *oc = NULL;
int c;
while ((c = getopt(argc, argv, "o:r:fh")) != -1) {
switch (c) {
case 'o':
oc = calloc(1, sizeof(*oc));
oc->name = optarg;
oc->transform = WL_OUTPUT_TRANSFORM_NORMAL;
wl_list_insert(config, &oc->link);
break;
case 'r':
if (!oc) {
fprintf(stderr, "You must specify an output first\n");
usage(argv[0], 1);
}
if (oc->transform != WL_OUTPUT_TRANSFORM_NORMAL
&& oc->transform != WL_OUTPUT_TRANSFORM_FLIPPED) {
fprintf(stderr, "Rotation for %s already specified\n", oc->name);
usage(argv[0], 1);
}
if (strcmp(optarg, "90") == 0) {
oc->transform += WL_OUTPUT_TRANSFORM_90;
} else if (strcmp(optarg, "180") == 0) {
oc->transform += WL_OUTPUT_TRANSFORM_180;
} else if (strcmp(optarg, "270") == 0) {
oc->transform += WL_OUTPUT_TRANSFORM_270;
} else {
fprintf(stderr, "Invalid rotation '%s'\n", optarg);
usage(argv[0], 1);
}
break;
case 'f':
if (!oc) {
fprintf(stderr, "You must specify an output first\n");
usage(argv[0], 1);
}
if (oc->transform >= WL_OUTPUT_TRANSFORM_FLIPPED) {
fprintf(stderr, "Flip for %s already specified\n", oc->name);
usage(argv[0], 1);
}
oc->transform += WL_OUTPUT_TRANSFORM_FLIPPED;
break;
case 'h':
case '?':
usage(argv[0], c != 'h');
}
}
}
int main(int argc, char *argv[]) {
struct sample_state state = {0};
2017-06-05 12:48:51 +02:00
wl_list_init(&state.config);
parse_args(argc, argv, &state.config);
struct compositor_state compositor = { 0 };
compositor.data = &state;
compositor.output_add_cb = handle_output_add;
compositor.output_remove_cb = handle_output_remove;
compositor.output_frame_cb = handle_output_frame;
compositor.keyboard_key_cb = handle_keyboard_key;
2017-06-13 16:13:11 +02:00
compositor_init(&compositor);
2017-06-05 12:48:51 +02:00
2017-08-11 04:15:37 +02:00
state.renderer = wlr_gles2_renderer_init(compositor.backend);
state.cat_texture = wlr_render_texture_init(state.renderer);
wlr_texture_upload_pixels(state.cat_texture, WL_SHM_FORMAT_ABGR8888,
2017-06-26 07:34:15 +02:00
cat_tex.width, cat_tex.width, cat_tex.height, cat_tex.pixel_data);
2017-06-05 12:48:51 +02:00
2017-06-13 16:13:11 +02:00
compositor_run(&compositor);
2017-06-05 12:48:51 +02:00
wlr_texture_destroy(state.cat_texture);
wlr_renderer_destroy(state.renderer);
2017-06-05 12:48:51 +02:00
struct output_config *ptr, *tmp;
wl_list_for_each_safe(ptr, tmp, &state.config, link) {
free(ptr);
}
}