2018-04-17 01:55:44 +02:00
|
|
|
#define _POSIX_C_SOURCE 200112L
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <GLES2/gl2.h>
|
|
|
|
#include <inttypes.h>
|
2017-05-07 18:26:48 +02:00
|
|
|
#include <stdio.h>
|
2017-04-25 21:06:58 +02:00
|
|
|
#include <stdlib.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <string.h>
|
2017-05-07 18:26:48 +02:00
|
|
|
#include <time.h>
|
2017-04-25 21:06:58 +02:00
|
|
|
#include <wayland-server.h>
|
2017-05-31 21:38:26 +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_output.h>
|
2018-04-17 02:13:02 +02:00
|
|
|
#include <wlr/types/wlr_input_device.h>
|
2017-09-24 20:12:56 +02:00
|
|
|
#include <wlr/util/log.h>
|
2017-06-13 03:53:41 +02:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2017-04-25 21:06:58 +02:00
|
|
|
|
2017-06-13 16:13:11 +02:00
|
|
|
struct sample_state {
|
2018-04-17 02:13:02 +02:00
|
|
|
struct wl_display *display;
|
2018-04-17 01:55:44 +02:00
|
|
|
struct wl_listener new_output;
|
2018-04-17 02:13:02 +02:00
|
|
|
struct wl_listener new_input;
|
2018-04-17 01:55:44 +02:00
|
|
|
struct timespec last_frame;
|
2017-05-07 18:26:48 +02:00
|
|
|
float color[3];
|
|
|
|
int dec;
|
|
|
|
};
|
|
|
|
|
2018-04-17 01:55:44 +02:00
|
|
|
struct sample_output {
|
|
|
|
struct sample_state *sample;
|
|
|
|
struct wlr_output *output;
|
|
|
|
struct wl_listener frame;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
};
|
|
|
|
|
2018-04-17 02:13:02 +02:00
|
|
|
struct sample_keyboard {
|
|
|
|
struct sample_state *sample;
|
|
|
|
struct wlr_input_device *device;
|
|
|
|
struct wl_listener key;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
};
|
|
|
|
|
2018-04-17 01:55:44 +02:00
|
|
|
void output_frame_notify(struct wl_listener *listener, void *data) {
|
2018-04-18 02:11:24 +02:00
|
|
|
wlr_log(L_DEBUG, "Output removed");
|
2018-04-17 01:55:44 +02:00
|
|
|
struct sample_output *sample_output = wl_container_of(listener, sample_output, frame);
|
|
|
|
struct sample_state *sample = sample_output->sample;
|
|
|
|
struct timespec now;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
2017-05-07 18:26:48 +02:00
|
|
|
|
2018-04-17 01:55:44 +02:00
|
|
|
long ms = (now.tv_sec - sample->last_frame.tv_sec) * 1000 +
|
|
|
|
(now.tv_nsec - sample->last_frame.tv_nsec) / 1000000;
|
2017-06-13 16:13:11 +02:00
|
|
|
int inc = (sample->dec + 1) % 3;
|
2017-05-07 18:26:48 +02:00
|
|
|
|
2017-06-13 16:13:11 +02:00
|
|
|
sample->color[inc] += ms / 2000.0f;
|
|
|
|
sample->color[sample->dec] -= ms / 2000.0f;
|
2017-05-07 18:26:48 +02:00
|
|
|
|
2017-06-13 16:13:11 +02:00
|
|
|
if (sample->color[sample->dec] < 0.0f) {
|
|
|
|
sample->color[inc] = 1.0f;
|
|
|
|
sample->color[sample->dec] = 0.0f;
|
|
|
|
sample->dec = inc;
|
2017-05-07 18:26:48 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 01:55:44 +02:00
|
|
|
wlr_output_make_current(sample_output->output, NULL);
|
2017-06-26 07:34:15 +02:00
|
|
|
|
2017-06-13 16:13:11 +02:00
|
|
|
glClearColor(sample->color[0], sample->color[1], sample->color[2], 1.0);
|
2017-05-07 18:26:48 +02:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
2017-06-26 07:34:15 +02:00
|
|
|
|
2018-04-17 01:55:44 +02:00
|
|
|
wlr_output_swap_buffers(sample_output->output, NULL, NULL);
|
|
|
|
sample->last_frame = now;
|
|
|
|
}
|
|
|
|
|
|
|
|
void output_remove_notify(struct wl_listener *listener, void *data) {
|
|
|
|
struct sample_output *sample_output = wl_container_of(listener, sample_output, destroy);
|
|
|
|
wl_list_remove(&sample_output->frame.link);
|
2018-04-17 02:13:02 +02:00
|
|
|
wl_list_remove(&sample_output->destroy.link);
|
2018-04-17 01:55:44 +02:00
|
|
|
free(sample_output);
|
|
|
|
}
|
|
|
|
|
|
|
|
void new_output_notify(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_output *output = data;
|
|
|
|
struct sample_state *sample = wl_container_of(listener, sample, new_output);
|
|
|
|
struct sample_output *sample_output = calloc(1, sizeof(struct sample_output));
|
2018-05-11 04:03:36 +02:00
|
|
|
if (!wl_list_empty(&output->modes)) {
|
|
|
|
struct wlr_output_mode *mode = wl_container_of(output->modes.prev, mode, link);
|
2018-04-18 02:11:24 +02:00
|
|
|
wlr_output_set_mode(output, mode);
|
|
|
|
}
|
2018-04-17 01:55:44 +02:00
|
|
|
sample_output->output = output;
|
|
|
|
sample_output->sample = sample;
|
|
|
|
wl_signal_add(&output->events.frame, &sample_output->frame);
|
|
|
|
sample_output->frame.notify = output_frame_notify;
|
|
|
|
wl_signal_add(&output->events.destroy, &sample_output->destroy);
|
|
|
|
sample_output->destroy.notify = output_remove_notify;
|
2017-05-07 18:26:48 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 02:13:02 +02:00
|
|
|
void keyboard_key_notify(struct wl_listener *listener, void *data) {
|
|
|
|
struct sample_keyboard *keyboard = wl_container_of(listener, keyboard, key);
|
|
|
|
struct sample_state *sample = keyboard->sample;
|
|
|
|
struct wlr_event_keyboard_key *event = data;
|
|
|
|
uint32_t keycode = event->keycode + 8;
|
|
|
|
const xkb_keysym_t *syms;
|
|
|
|
int nsyms = xkb_state_key_get_syms(keyboard->device->keyboard->xkb_state,
|
|
|
|
keycode, &syms);
|
|
|
|
for (int i = 0; i < nsyms; i++) {
|
|
|
|
xkb_keysym_t sym = syms[i];
|
|
|
|
if (sym == XKB_KEY_Escape) {
|
2018-04-30 02:16:29 +02:00
|
|
|
wl_display_terminate(sample->display);
|
|
|
|
}
|
2018-04-17 02:13:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void keyboard_destroy_notify(struct wl_listener *listener, void *data) {
|
|
|
|
struct sample_keyboard *keyboard = wl_container_of(listener, keyboard, destroy);
|
|
|
|
wl_list_remove(&keyboard->destroy.link);
|
|
|
|
wl_list_remove(&keyboard->key.link);
|
|
|
|
free(keyboard);
|
|
|
|
}
|
|
|
|
|
|
|
|
void new_input_notify(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_input_device *device = data;
|
|
|
|
struct sample_state *sample = wl_container_of(listener, sample, new_input);
|
|
|
|
switch (device->type) {
|
2018-04-30 02:16:29 +02:00
|
|
|
case WLR_INPUT_DEVICE_KEYBOARD:;
|
|
|
|
struct sample_keyboard *keyboard = calloc(1, sizeof(struct sample_keyboard));
|
2018-04-17 02:13:02 +02:00
|
|
|
keyboard->device = device;
|
|
|
|
keyboard->sample = sample;
|
|
|
|
wl_signal_add(&device->events.destroy, &keyboard->destroy);
|
|
|
|
keyboard->destroy.notify = keyboard_destroy_notify;
|
|
|
|
wl_signal_add(&device->keyboard->events.key, &keyboard->key);
|
|
|
|
keyboard->key.notify = keyboard_key_notify;
|
2018-04-30 02:16:29 +02:00
|
|
|
struct xkb_rule_names rules = { 0 };
|
2018-04-17 02:13:02 +02:00
|
|
|
rules.rules = getenv("XKB_DEFAULT_RULES");
|
|
|
|
rules.model = getenv("XKB_DEFAULT_MODEL");
|
|
|
|
rules.layout = getenv("XKB_DEFAULT_LAYOUT");
|
|
|
|
rules.variant = getenv("XKB_DEFAULT_VARIANT");
|
|
|
|
rules.options = getenv("XKB_DEFAULT_OPTIONS");
|
2018-04-30 02:16:29 +02:00
|
|
|
struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
2018-04-17 02:13:02 +02:00
|
|
|
if (!context) {
|
|
|
|
wlr_log(L_ERROR, "Failed to create XKB context");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
wlr_keyboard_set_keymap(device->keyboard, xkb_map_new_from_names(context,
|
|
|
|
&rules, XKB_KEYMAP_COMPILE_NO_FLAGS));
|
|
|
|
xkb_context_unref(context);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:26:48 +02:00
|
|
|
int main() {
|
2018-01-16 04:51:00 +01:00
|
|
|
wlr_log_init(L_DEBUG, NULL);
|
2018-04-17 02:13:02 +02:00
|
|
|
struct wl_display *display = wl_display_create();
|
2017-06-13 16:13:11 +02:00
|
|
|
struct sample_state state = {
|
2017-05-07 18:26:48 +02:00
|
|
|
.color = { 1.0, 0.0, 0.0 },
|
|
|
|
.dec = 0,
|
2018-04-17 02:13:02 +02:00
|
|
|
.last_frame = { 0 },
|
|
|
|
.display = display
|
2017-05-07 18:26:48 +02:00
|
|
|
};
|
2018-05-25 12:14:35 +02:00
|
|
|
struct wlr_backend *wlr = wlr_backend_autocreate(display, NULL);
|
2018-04-17 01:55:44 +02:00
|
|
|
if (!wlr) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
wl_signal_add(&wlr->events.new_output, &state.new_output);
|
|
|
|
state.new_output.notify = new_output_notify;
|
2018-04-17 02:13:02 +02:00
|
|
|
wl_signal_add(&wlr->events.new_input, &state.new_input);
|
|
|
|
state.new_input.notify = new_input_notify;
|
2018-04-17 01:55:44 +02:00
|
|
|
clock_gettime(CLOCK_MONOTONIC, &state.last_frame);
|
2018-04-30 01:47:11 +02:00
|
|
|
|
2018-04-17 01:55:44 +02:00
|
|
|
if (!wlr_backend_start(wlr)) {
|
2017-09-24 20:12:56 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to start backend");
|
2018-04-17 01:55:44 +02:00
|
|
|
wlr_backend_destroy(wlr);
|
2017-09-24 20:12:56 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2018-04-17 01:55:44 +02:00
|
|
|
wl_display_run(display);
|
|
|
|
wl_display_destroy(display);
|
2017-04-25 21:06:58 +02:00
|
|
|
}
|