1431 lines
43 KiB
C
1431 lines
43 KiB
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <syscall.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <signal.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <time.h>
|
|
#include <math.h>
|
|
#include <assert.h>
|
|
#include <getopt.h>
|
|
#include <errno.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
#include "lib/graphics.h"
|
|
#include "lib/pthread.h"
|
|
#include "lib/mouse.h"
|
|
#include "lib/kbd.h"
|
|
#include "lib/pex.h"
|
|
#include "lib/yutani.h"
|
|
#include "lib/hashmap.h"
|
|
#include "lib/list.h"
|
|
|
|
#include "yutani_int.h"
|
|
|
|
struct {
|
|
int nested;
|
|
int nest_width;
|
|
int nest_height;
|
|
} yutani_options = {
|
|
.nested = 0,
|
|
.nest_width = 0,
|
|
.nest_height = 0
|
|
};
|
|
|
|
|
|
static int usage(char * argv[]) {
|
|
fprintf(stderr,
|
|
"Yutani - Window Compositor\n"
|
|
"\n"
|
|
"usage: %s [-n [-g WxH]] [-h]\n"
|
|
"\n"
|
|
" -n --nested \033[3mRun in a window.\033[0m\n"
|
|
" -h --help \033[3mShow this help message.\033[0m\n"
|
|
" -g --geometry \033[3mSet the size of the server framebuffer.\033[0m\n"
|
|
"\n"
|
|
" Yutani is the standard system compositor.\n"
|
|
"\n",
|
|
argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
/**
|
|
* Parse arguments
|
|
*/
|
|
static int parse_args(int argc, char * argv[], int * out) {
|
|
static struct option long_opts[] = {
|
|
{"nest", no_argument, 0, 'n'},
|
|
{"geometry", required_argument, 0, 'g'},
|
|
{"help", no_argument, 0, 'h'},
|
|
{0,0,0,0}
|
|
};
|
|
|
|
int index, c;
|
|
while ((c = getopt_long(argc, argv, "hg:n", long_opts, &index)) != -1) {
|
|
if (!c) {
|
|
if (long_opts[index].flag == 0) {
|
|
c = long_opts[index].val;
|
|
}
|
|
}
|
|
switch (c) {
|
|
case 'h':
|
|
return usage(argv);
|
|
case 'n':
|
|
yutani_options.nested = 1;
|
|
break;
|
|
case 'g':
|
|
{
|
|
char * c = strstr(optarg, "x");
|
|
if (c) {
|
|
*c = '\0';
|
|
c++;
|
|
yutani_options.nest_width = atoi(optarg);
|
|
yutani_options.nest_height = atoi(c);
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
fprintf(stderr, "Unrecognized option: %c\n", c);
|
|
break;
|
|
}
|
|
}
|
|
*out = optind;
|
|
return 0;
|
|
}
|
|
|
|
int32_t min(int32_t a, int32_t b) {
|
|
return (a < b) ? a : b;
|
|
}
|
|
|
|
int32_t max(int32_t a, int32_t b) {
|
|
return (a > b) ? a : b;
|
|
}
|
|
|
|
static void spin_lock(int volatile * lock) {
|
|
while(__sync_lock_test_and_set(lock, 0x01)) {
|
|
syscall_yield();
|
|
}
|
|
}
|
|
|
|
static void spin_unlock(int volatile * lock) {
|
|
__sync_lock_release(lock);
|
|
}
|
|
|
|
static int next_buf_id(void) {
|
|
static int _next = 1;
|
|
return _next++;
|
|
}
|
|
|
|
static int next_wid(void) {
|
|
static int _next = 1;
|
|
return _next++;
|
|
}
|
|
|
|
static void device_to_window(yutani_server_window_t * window, int32_t x, int32_t y, int32_t * out_x, int32_t * out_y) {
|
|
*out_x = x - window->x;
|
|
*out_y = y - window->y;
|
|
|
|
if (!window->rotation) return;
|
|
|
|
double t_x = *out_x - (window->width / 2);
|
|
double t_y = *out_y - (window->height / 2);
|
|
|
|
double s = sin(-M_PI * (window->rotation/ 180.0));
|
|
double c = cos(-M_PI * (window->rotation/ 180.0));
|
|
|
|
double n_x = t_x * c - t_y * s;
|
|
double n_y = t_x * s + t_y * c;
|
|
|
|
*out_x = (int32_t)n_x + (window->width / 2);
|
|
*out_y = (int32_t)n_y + (window->height / 2);
|
|
}
|
|
|
|
static void window_to_device(yutani_server_window_t * window, int32_t x, int32_t y, int32_t * out_x, int32_t * out_y) {
|
|
|
|
if (!window->rotation) {
|
|
*out_x = window->x + x;
|
|
*out_y = window->y + y;
|
|
return;
|
|
}
|
|
|
|
double t_x = x - (window->width / 2);
|
|
double t_y = y - (window->height / 2);
|
|
|
|
double s = sin(M_PI * (window->rotation/ 180.0));
|
|
double c = cos(M_PI * (window->rotation/ 180.0));
|
|
|
|
double n_x = t_x * c - t_y * s;
|
|
double n_y = t_x * s + t_y * c;
|
|
|
|
*out_x = (int32_t)n_x + (window->width / 2) + window->x;
|
|
*out_y = (int32_t)n_y + (window->height / 2) + window->y;
|
|
}
|
|
|
|
static void rebalance_windows(yutani_globals_t * yg) {
|
|
uint32_t i = 1;
|
|
for (; i < YUTANI_ZORDER_TOP; ++i) {
|
|
if (!yg->zlist[i]) break;
|
|
}
|
|
uint32_t j = i + 1;
|
|
for (; j < YUTANI_ZORDER_TOP; ++j) {
|
|
if (!yg->zlist[j]) break;
|
|
}
|
|
if (j == i + 1) {
|
|
return;
|
|
} else {
|
|
for (j = i; j < YUTANI_ZORDER_TOP; ++j) {
|
|
yg->zlist[j] = yg->zlist[j+1];
|
|
if (yg->zlist[j+1] == NULL) return;
|
|
yg->zlist[j]->z = j;
|
|
}
|
|
}
|
|
}
|
|
|
|
static void reorder_window(yutani_globals_t * yg, yutani_server_window_t * window, uint16_t new_zed) {
|
|
if (!window) {
|
|
return;
|
|
}
|
|
|
|
int z = window->z;
|
|
window->z = new_zed;
|
|
|
|
if (yg->zlist[z] == window) {
|
|
yg->zlist[z] = NULL;
|
|
}
|
|
|
|
if (new_zed == 0 || new_zed == YUTANI_ZORDER_TOP) {
|
|
yg->zlist[new_zed] = window;
|
|
if (z != new_zed) {
|
|
rebalance_windows(yg);
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (yg->zlist[new_zed] != window) {
|
|
reorder_window(yg, yg->zlist[new_zed], new_zed + 1);
|
|
yg->zlist[new_zed ] = window;
|
|
}
|
|
if (z != new_zed) {
|
|
rebalance_windows(yg);
|
|
}
|
|
}
|
|
|
|
static void unorder_window(yutani_globals_t * yg, yutani_server_window_t * w) {
|
|
if (yg->zlist[w->z] == w) {
|
|
yg->zlist[w->z] = NULL;
|
|
}
|
|
rebalance_windows(yg);
|
|
}
|
|
|
|
static void make_top(yutani_globals_t * yg, yutani_server_window_t * w) {
|
|
unsigned short index = w->z;
|
|
|
|
if (index == YUTANI_ZORDER_BOTTOM) return;
|
|
if (index == YUTANI_ZORDER_TOP) return;
|
|
|
|
unsigned short highest = 0;
|
|
|
|
for (unsigned int i = 0; i <= YUTANI_ZORDER_MAX; ++i) {
|
|
if (yg->zlist[i]) {
|
|
yutani_server_window_t * win = yg->zlist[i];
|
|
|
|
if (win == w) continue;
|
|
if (win->z == YUTANI_ZORDER_BOTTOM) continue;
|
|
if (win->z == YUTANI_ZORDER_TOP) continue;
|
|
if (highest < win->z) highest = win->z;
|
|
if (win->z > w->z) continue;
|
|
}
|
|
}
|
|
|
|
reorder_window(yg, w, highest + 1);
|
|
}
|
|
|
|
static void set_focused_window(yutani_globals_t * yg, yutani_server_window_t * w) {
|
|
if (w == yg->focused_window) {
|
|
return; /* Already focused */
|
|
}
|
|
|
|
if (yg->focused_window) {
|
|
/* XXX Send focus change to old focused window */
|
|
yutani_msg_t * response = yutani_msg_build_window_focus_change(yg->focused_window->wid, 0);
|
|
pex_send(yg->server, yg->focused_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
yg->focused_window = w;
|
|
if (w) {
|
|
/* XXX Send focus change to new focused window */
|
|
yutani_msg_t * response = yutani_msg_build_window_focus_change(w->wid, 1);
|
|
pex_send(yg->server, w->owner, response->size, (char *)response);
|
|
free(response);
|
|
make_top(yg, w);
|
|
} else {
|
|
/* XXX */
|
|
yg->focused_window = yg->zlist[0];
|
|
}
|
|
}
|
|
|
|
static yutani_server_window_t * get_focused(yutani_globals_t * yg) {
|
|
if (yg->focused_window) return yg->focused_window;
|
|
return yg->zlist[0];
|
|
}
|
|
|
|
int best_z_option(yutani_globals_t * yg) {
|
|
for (int i = 1; i < YUTANI_ZORDER_TOP; ++i) {
|
|
if (!yg->zlist[i]) return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
|
|
static yutani_server_window_t * server_window_create(yutani_globals_t * yg, int width, int height, uint32_t owner) {
|
|
yutani_server_window_t * win = malloc(sizeof(yutani_server_window_t));
|
|
|
|
win->wid = next_wid();
|
|
win->owner = owner;
|
|
list_insert(yg->windows, win);
|
|
hashmap_set(yg->wids_to_windows, (void*)win->wid, win);
|
|
|
|
win->x = 0;
|
|
win->y = 0;
|
|
win->z = best_z_option(yg);
|
|
win->width = width;
|
|
win->height = height;
|
|
win->bufid = next_buf_id();
|
|
win->rotation = 0;
|
|
win->newbufid = 0;
|
|
win->name = NULL;
|
|
win->anim_mode = YUTANI_EFFECT_FADE_IN;
|
|
win->anim_start = yg->tick_count;
|
|
|
|
char key[1024];
|
|
YUTANI_SHMKEY(key, 1024, win);
|
|
|
|
size_t size = (width * height * 4);
|
|
win->buffer = (uint8_t *)syscall_shm_obtain(key, &size);
|
|
memset(win->buffer, 0, size);
|
|
|
|
yg->zlist[win->z] = win;
|
|
|
|
return win;
|
|
}
|
|
|
|
static uint32_t server_window_resize(yutani_globals_t * yg, yutani_server_window_t * win, int width, int height) {
|
|
/* A client has accepted our offer, let's make a buffer for them */
|
|
if (win->newbufid) {
|
|
/* Already in the middle of an accept/done, bail */
|
|
return win->newbufid;
|
|
}
|
|
win->newbufid = next_buf_id();
|
|
|
|
{
|
|
char key[1024];
|
|
YUTANI_SHMKEY_EXP(key, 1024, win->newbufid);
|
|
|
|
size_t size = (width * height * 4);
|
|
win->newbuffer = (uint8_t *)syscall_shm_obtain(key, &size);
|
|
}
|
|
|
|
return win->newbufid;
|
|
}
|
|
|
|
static void server_window_resize_finish(yutani_globals_t * yg, yutani_server_window_t * win, int width, int height) {
|
|
if (!win->newbufid) {
|
|
return;
|
|
}
|
|
|
|
int oldbufid = win->bufid;
|
|
|
|
win->width = width;
|
|
win->height = height;
|
|
|
|
win->bufid = win->newbufid;
|
|
win->newbufid = 0;
|
|
|
|
{
|
|
char key[1024];
|
|
YUTANI_SHMKEY_EXP(key, 1024, oldbufid);
|
|
spin_lock(&yg->redraw_lock);
|
|
syscall_shm_release(key);
|
|
spin_unlock(&yg->redraw_lock);
|
|
}
|
|
|
|
win->buffer = win->newbuffer;
|
|
win->newbuffer = NULL;
|
|
}
|
|
|
|
/**
|
|
* Mouse input thread
|
|
*
|
|
* Reads the kernel mouse device and converts
|
|
* mouse clicks and movements into event objects
|
|
* to send to the core compositor.
|
|
*/
|
|
void * mouse_input(void * garbage) {
|
|
int mfd = open("/dev/mouse", O_RDONLY);
|
|
|
|
yutani_t * y = yutani_init();
|
|
mouse_device_packet_t packet;
|
|
|
|
while (1) {
|
|
int r = read(mfd, (char *)&packet, sizeof(mouse_device_packet_t));
|
|
if (r > 0) {
|
|
yutani_msg_t * m = yutani_msg_build_mouse_event(0, &packet);
|
|
int result = yutani_msg_send(y, m);
|
|
free(m);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Keyboard input thread
|
|
*
|
|
* Reads the kernel keyboard device and converts
|
|
* key presses into event objects to send to the
|
|
* core compositor.
|
|
*/
|
|
void * keyboard_input(void * garbage) {
|
|
int kfd = open("/dev/kbd", O_RDONLY);
|
|
|
|
yutani_t * y = yutani_init();
|
|
key_event_t event;
|
|
key_event_state_t state = {0};
|
|
|
|
while (1) {
|
|
char buf[1];
|
|
int r = read(kfd, buf, 1);
|
|
if (r > 0) {
|
|
kbd_scancode(&state, buf[0], &event);
|
|
yutani_msg_t * m = yutani_msg_build_key_event(0, &event, &state);
|
|
int result = yutani_msg_send(y, m);
|
|
free(m);
|
|
}
|
|
}
|
|
}
|
|
|
|
#define FONT_PATH "/usr/share/fonts/"
|
|
#define FONT(a,b) {YUTANI_SERVER_IDENTIFIER ".fonts." a, FONT_PATH b}
|
|
|
|
struct font_def {
|
|
char * identifier;
|
|
char * path;
|
|
};
|
|
|
|
static struct font_def fonts[] = {
|
|
FONT("sans-serif", "DejaVuSans.ttf"),
|
|
FONT("sans-serif.bold", "DejaVuSans-Bold.ttf"),
|
|
FONT("sans-serif.italic", "DejaVuSans-Oblique.ttf"),
|
|
FONT("sans-serif.bolditalic", "DejaVuSans-BoldOblique.ttf"),
|
|
FONT("monospace", "DejaVuSansMono.ttf"),
|
|
FONT("monospace.bold", "DejaVuSansMono-Bold.ttf"),
|
|
FONT("monospace.italic", "DejaVuSansMono-Oblique.ttf"),
|
|
FONT("monospace.bolditalic", "DejaVuSansMono-BoldOblique.ttf"),
|
|
{NULL, NULL}
|
|
};
|
|
|
|
static char * precache_shmfont(char * ident, char * name) {
|
|
FILE * f = fopen(name, "r");
|
|
size_t s = 0;
|
|
fseek(f, 0, SEEK_END);
|
|
s = ftell(f);
|
|
fseek(f, 0, SEEK_SET);
|
|
|
|
size_t shm_size = s;
|
|
char * font = (char *)syscall_shm_obtain(ident, &shm_size); //malloc(s);
|
|
assert((shm_size >= s) && "shm_obtain returned too little memory to load a font into!");
|
|
|
|
fread(font, s, 1, f);
|
|
|
|
fclose(f);
|
|
return font;
|
|
}
|
|
|
|
static void load_fonts(void) {
|
|
int i = 0;
|
|
while (fonts[i].identifier) {
|
|
fprintf(stderr, "[compositor] Loading font %s -> %s\n", fonts[i].path, fonts[i].identifier);
|
|
precache_shmfont(fonts[i].identifier, fonts[i].path);
|
|
++i;
|
|
}
|
|
}
|
|
|
|
static void draw_cursor(yutani_globals_t * yg, int x, int y) {
|
|
draw_sprite(yg->backend_ctx, &yg->mouse_sprite, x / MOUSE_SCALE - MOUSE_OFFSET_X, y / MOUSE_SCALE - MOUSE_OFFSET_Y);
|
|
}
|
|
|
|
static void yutani_add_clip(yutani_globals_t * yg, double x, double y, double w, double h) {
|
|
cairo_rectangle(yg->framebuffer_ctx, x, y, w, h);
|
|
cairo_rectangle(yg->real_ctx, x, y, w, h);
|
|
}
|
|
|
|
static void save_cairo_states(yutani_globals_t * yg) {
|
|
cairo_save(yg->framebuffer_ctx);
|
|
cairo_save(yg->selectbuffer_ctx);
|
|
cairo_save(yg->real_ctx);
|
|
}
|
|
|
|
static void restore_cairo_states(yutani_globals_t * yg) {
|
|
cairo_restore(yg->framebuffer_ctx);
|
|
cairo_restore(yg->selectbuffer_ctx);
|
|
cairo_restore(yg->real_ctx);
|
|
}
|
|
|
|
static void yutani_set_clip(yutani_globals_t * yg) {
|
|
cairo_clip(yg->framebuffer_ctx);
|
|
cairo_clip(yg->real_ctx);
|
|
}
|
|
|
|
yutani_server_window_t * top_at(yutani_globals_t * yg, uint16_t x, uint16_t y) {
|
|
uint32_t c = ((uint32_t *)yg->select_framebuffer)[(yg->width * y + x)];
|
|
yutani_wid_t w = (_RED(c) << 16) | (_GRE(c) << 8) | (_BLU(c));
|
|
return hashmap_get(yg->wids_to_windows, (void *)w);
|
|
}
|
|
|
|
static void set_focused_at(yutani_globals_t * yg, int x, int y) {
|
|
yutani_server_window_t * n_focused = top_at(yg, x, y);
|
|
set_focused_window(yg, n_focused);
|
|
}
|
|
|
|
static int window_is_top(yutani_globals_t * yg, yutani_server_window_t * window) {
|
|
/* For now, just use simple z-order */
|
|
return window->z == YUTANI_ZORDER_TOP;
|
|
}
|
|
|
|
static int window_is_bottom(yutani_globals_t * yg, yutani_server_window_t * window) {
|
|
/* For now, just use simple z-order */
|
|
return window->z == YUTANI_ZORDER_BOTTOM;
|
|
}
|
|
|
|
static int yutani_blit_window(yutani_globals_t * yg, yutani_server_window_t * window, int x, int y) {
|
|
|
|
/* Obtain the previously initialized cairo contexts */
|
|
cairo_t * cr = yg->framebuffer_ctx;
|
|
cairo_t * cs = yg->selectbuffer_ctx;
|
|
|
|
/* Window stride is always 4 bytes per pixel... */
|
|
int stride = window->width * 4;
|
|
|
|
/* Initialize a cairo surface object for this window */
|
|
cairo_surface_t * surf = cairo_image_surface_create_for_data(
|
|
window->buffer, CAIRO_FORMAT_ARGB32, window->width, window->height, stride);
|
|
|
|
/* Save cairo contexts for both rendering and selectbuffer */
|
|
cairo_save(cr);
|
|
cairo_save(cs);
|
|
|
|
/*
|
|
* Offset the rendering context appropriately for the position of the window
|
|
* based on the modifier paramters
|
|
*/
|
|
cairo_translate(cr, x, y);
|
|
cairo_translate(cs, x, y);
|
|
|
|
/* Top and bottom windows can not be rotated. */
|
|
if (!window_is_top(yg, window) && !window_is_bottom(yg, window)) {
|
|
/* Calcuate radians from degrees */
|
|
|
|
/* XXX Window rotation is disabled until damage rects can take it into account */
|
|
if (window->rotation != 0) {
|
|
double r = M_PI * (((double)window->rotation) / 180.0);
|
|
|
|
/* Rotate the render context about the center of the window */
|
|
cairo_translate(cr, (int)( window->width / 2), (int)( (int)window->height / 2));
|
|
cairo_rotate(cr, r);
|
|
cairo_translate(cr, (int)(-window->width / 2), (int)(-window->height / 2));
|
|
|
|
/* Rotate the selectbuffer context about the center of the window */
|
|
cairo_translate(cs, (int)( window->width / 2), (int)( window->height / 2));
|
|
cairo_rotate(cs, r);
|
|
cairo_translate(cs, (int)(-window->width / 2), (int)(-window->height / 2));
|
|
|
|
/* Prefer faster filter when rendering rotated windows */
|
|
cairo_pattern_set_filter (cairo_get_source (cr), CAIRO_FILTER_FAST);
|
|
}
|
|
}
|
|
if (window->anim_mode) {
|
|
int frame = yg->tick_count - window->anim_start;
|
|
if (frame >= yutani_animation_lengths[window->anim_mode]) {
|
|
/* XXX handle animation-end things like cleanup of closing windows */
|
|
if (window->anim_mode == YUTANI_EFFECT_FADE_OUT) {
|
|
window_actually_close(yg, window);
|
|
goto draw_finish;
|
|
}
|
|
window->anim_mode = 0;
|
|
window->anim_start = 0;
|
|
goto draw_window;
|
|
} else {
|
|
switch (window->anim_mode) {
|
|
case YUTANI_EFFECT_FADE_OUT:
|
|
{
|
|
frame = 256 - frame;
|
|
}
|
|
case YUTANI_EFFECT_FADE_IN:
|
|
{
|
|
double x = 0.75 + ((double)frame / 256.0) * 0.25;
|
|
int t_x = (window->width * (1.0 - x)) / 2;
|
|
int t_y = (window->height * (1.0 - x)) / 2;
|
|
|
|
if (!window_is_top(yg, window) && !window_is_bottom(yg, window)) {
|
|
cairo_translate(cr, t_x, t_y);
|
|
cairo_scale(cr, x, x);
|
|
}
|
|
|
|
cairo_set_source_surface(cr, surf, 0, 0);
|
|
cairo_pattern_set_filter(cairo_get_source(cr), CAIRO_FILTER_FAST);
|
|
cairo_paint_with_alpha(cr, (double)frame/256.0);
|
|
}
|
|
break;
|
|
default:
|
|
goto draw_window;
|
|
break;
|
|
}
|
|
}
|
|
} else {
|
|
draw_window:
|
|
/* Paint window */
|
|
cairo_set_source_surface(cr, surf, 0, 0);
|
|
cairo_paint(cr);
|
|
}
|
|
|
|
draw_finish:
|
|
|
|
/* Clean up */
|
|
cairo_surface_destroy(surf);
|
|
|
|
/* Paint select buffer */
|
|
cairo_set_operator(cs, CAIRO_OPERATOR_SOURCE);
|
|
cairo_set_source_rgb(cs,
|
|
((window->wid & 0xFF0000) >> 16) / 255.0,
|
|
((window->wid & 0xFF00) >> 8) / 255.0,
|
|
((window->wid & 0xFF) >> 0) / 255.0
|
|
);
|
|
cairo_rectangle(cs, 0, 0, window->width, window->height);
|
|
cairo_set_antialias(cs, CAIRO_ANTIALIAS_NONE);
|
|
cairo_fill(cs);
|
|
|
|
/* Restore context stack */
|
|
cairo_restore(cr);
|
|
cairo_restore(cs);
|
|
|
|
#ifdef YUTANI_DEBUG_WINDOW_BOUNDS
|
|
cairo_save(cr);
|
|
|
|
int32_t t_x, t_y;
|
|
int32_t s_x, s_y;
|
|
int32_t r_x, r_y;
|
|
int32_t q_x, q_y;
|
|
|
|
window_to_device(window, 0, 0, &t_x, &t_y);
|
|
window_to_device(window, window->width, window->height, &s_x, &s_y);
|
|
window_to_device(window, 0, window->height, &r_x, &r_y);
|
|
window_to_device(window, window->width, 0, &q_x, &q_y);
|
|
cairo_set_source_rgba(cr, 1.0, 0.0, 0.0, 0.7);
|
|
cairo_set_line_width(cr, 2.0);
|
|
|
|
cairo_move_to(cr, t_x, t_y);
|
|
cairo_line_to(cr, s_x, s_y);
|
|
cairo_stroke(cr);
|
|
|
|
cairo_move_to(cr, r_x, r_y);
|
|
cairo_line_to(cr, q_x, q_y);
|
|
cairo_stroke(cr);
|
|
|
|
cairo_restore(cr);
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void draw_resizing_box(yutani_globals_t * yg) {
|
|
cairo_t * cr = yg->framebuffer_ctx;
|
|
cairo_save(cr);
|
|
|
|
int32_t t_x, t_y;
|
|
int32_t s_x, s_y;
|
|
int32_t r_x, r_y;
|
|
int32_t q_x, q_y;
|
|
|
|
window_to_device(yg->resizing_window, 0, 0, &t_x, &t_y);
|
|
window_to_device(yg->resizing_window, yg->resizing_w, yg->resizing_h, &s_x, &s_y);
|
|
window_to_device(yg->resizing_window, 0, yg->resizing_h, &r_x, &r_y);
|
|
window_to_device(yg->resizing_window, yg->resizing_w, 0, &q_x, &q_y);
|
|
cairo_set_line_width(cr, 2.0);
|
|
|
|
cairo_move_to(cr, t_x, t_y);
|
|
cairo_line_to(cr, q_x, q_y);
|
|
cairo_line_to(cr, s_x, s_y);
|
|
cairo_line_to(cr, r_x, r_y);
|
|
cairo_line_to(cr, t_x, t_y);
|
|
cairo_close_path(cr);
|
|
cairo_stroke_preserve(cr);
|
|
cairo_set_source_rgba(cr, 0.33, 0.55, 1.0, 0.5);
|
|
cairo_fill(cr);
|
|
cairo_set_source_rgba(cr, 0.0, 0.4, 1.0, 0.9);
|
|
cairo_stroke(cr);
|
|
|
|
cairo_restore(cr);
|
|
|
|
}
|
|
|
|
static void redraw_windows(yutani_globals_t * yg) {
|
|
/* Save the cairo contexts so we can apply clipping */
|
|
save_cairo_states(yg);
|
|
int has_updates = 0;
|
|
|
|
/* We keep our own temporary mouse coordinates as they may change while we're drawing. */
|
|
int tmp_mouse_x = yg->mouse_x;
|
|
int tmp_mouse_y = yg->mouse_y;
|
|
|
|
/* If the mouse has moved, that counts as two damage regions */
|
|
if ((yg->last_mouse_x != tmp_mouse_x) || (yg->last_mouse_y != tmp_mouse_y)) {
|
|
has_updates = 2;
|
|
yutani_add_clip(yg, yg->last_mouse_x / MOUSE_SCALE - MOUSE_OFFSET_X, yg->last_mouse_y / MOUSE_SCALE - MOUSE_OFFSET_Y, 64, 64);
|
|
yutani_add_clip(yg, tmp_mouse_x / MOUSE_SCALE - MOUSE_OFFSET_X, tmp_mouse_y / MOUSE_SCALE - MOUSE_OFFSET_Y, 64, 64);
|
|
}
|
|
|
|
yg->last_mouse_x = tmp_mouse_x;
|
|
yg->last_mouse_y = tmp_mouse_y;
|
|
|
|
yg->tick_count += 10;
|
|
|
|
for (unsigned int i = 0; i <= YUTANI_ZORDER_MAX; ++i) {
|
|
yutani_server_window_t * w = yg->zlist[i];
|
|
if (w) {
|
|
if (w->anim_mode > 0) {
|
|
mark_window(yg,w);
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Calculate damage regions from currently queued updates */
|
|
spin_lock(&yg->update_list_lock);
|
|
while (yg->update_list->length) {
|
|
node_t * win = list_dequeue(yg->update_list);
|
|
yutani_damage_rect_t * rect = (void *)win->value;
|
|
|
|
/* We add a clip region for each window in the update queue */
|
|
has_updates = 1;
|
|
yutani_add_clip(yg, rect->x, rect->y, rect->width, rect->height);
|
|
free(rect);
|
|
free(win);
|
|
}
|
|
spin_unlock(&yg->update_list_lock);
|
|
|
|
/* Render */
|
|
if (has_updates) {
|
|
|
|
yutani_set_clip(yg);
|
|
|
|
/*
|
|
* In theory, we should restrict this to windows within the clip region,
|
|
* but calculating that may be more trouble than it's worth;
|
|
* we also need to render windows in stacking order...
|
|
*/
|
|
spin_lock(&yg->redraw_lock);
|
|
for (unsigned int i = 0; i <= YUTANI_ZORDER_MAX; ++i) {
|
|
if (yg->zlist[i]) {
|
|
yutani_blit_window(yg, yg->zlist[i], yg->zlist[i]->x, yg->zlist[i]->y);
|
|
}
|
|
}
|
|
spin_unlock(&yg->redraw_lock);
|
|
|
|
if (yg->resizing_window) {
|
|
/* Draw box */
|
|
draw_resizing_box(yg);
|
|
}
|
|
|
|
/*
|
|
* Draw the cursor.
|
|
* We may also want to draw other compositor elements, like effects, but those
|
|
* can also go in the stack order of the windows.
|
|
*/
|
|
draw_cursor(yg, tmp_mouse_x, tmp_mouse_y);
|
|
|
|
/*
|
|
* Flip the updated areas. This minimizes writes to video memory,
|
|
* which is very important on real hardware where these writes are slow.
|
|
*/
|
|
cairo_set_operator(yg->real_ctx, CAIRO_OPERATOR_SOURCE);
|
|
cairo_translate(yg->real_ctx, 0, 0);
|
|
cairo_set_source_surface(yg->real_ctx, yg->framebuffer_surface, 0, 0);
|
|
cairo_paint(yg->real_ctx);
|
|
|
|
}
|
|
|
|
/* Restore the cairo contexts to reset clip regions */
|
|
restore_cairo_states(yg);
|
|
}
|
|
|
|
void yutani_cairo_init(yutani_globals_t * yg) {
|
|
|
|
int stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, yg->width);
|
|
yg->framebuffer_surface = cairo_image_surface_create_for_data(
|
|
yg->backend_framebuffer, CAIRO_FORMAT_ARGB32, yg->width, yg->height, stride);
|
|
yg->real_surface = cairo_image_surface_create_for_data(
|
|
yg->backend_ctx->buffer, CAIRO_FORMAT_ARGB32, yg->width, yg->height, stride);
|
|
|
|
yg->select_framebuffer = malloc(YUTANI_BYTE_DEPTH * yg->width * yg->height);
|
|
|
|
yg->selectbuffer_surface = cairo_image_surface_create_for_data(
|
|
yg->select_framebuffer, CAIRO_FORMAT_ARGB32, yg->width, yg->height, stride);
|
|
|
|
yg->framebuffer_ctx = cairo_create(yg->framebuffer_surface);
|
|
yg->selectbuffer_ctx = cairo_create(yg->selectbuffer_surface);
|
|
yg->real_ctx = cairo_create(yg->real_surface);
|
|
|
|
yg->update_list = list_create();
|
|
yg->update_list_lock = 0;
|
|
}
|
|
|
|
void * redraw(void * in) {
|
|
yutani_globals_t * yg = in;
|
|
while (1) {
|
|
/*
|
|
* Perform whatever redraw work is required.
|
|
*/
|
|
redraw_windows(yg);
|
|
|
|
/*
|
|
* Attempt to run at about 60fps...
|
|
* we should actually see how long it took to render so
|
|
* we can sleep *less* if it took a long time to render
|
|
* this particular frame. We are definitely not
|
|
* going to run at 60fps unless there's nothing to do
|
|
* (and even then we've wasted cycles checking).
|
|
*/
|
|
usleep(16666);
|
|
}
|
|
}
|
|
|
|
static void mark_window(yutani_globals_t * yg, yutani_server_window_t * window) {
|
|
yutani_damage_rect_t * rect = malloc(sizeof(yutani_damage_rect_t));
|
|
|
|
if (window->rotation == 0) {
|
|
rect->x = window->x;
|
|
rect->y = window->y;
|
|
rect->width = window->width;
|
|
rect->height = window->height;
|
|
} else {
|
|
int32_t ul_x, ul_y;
|
|
int32_t ll_x, ll_y;
|
|
int32_t ur_x, ur_y;
|
|
int32_t lr_x, lr_y;
|
|
|
|
window_to_device(window, 0, 0, &ul_x, &ul_y);
|
|
window_to_device(window, 0, window->height, &ll_x, &ll_y);
|
|
window_to_device(window, window->width, 0, &ur_x, &ur_y);
|
|
window_to_device(window, window->width, window->height, &lr_x, &lr_y);
|
|
|
|
/* Calculate bounds */
|
|
|
|
int32_t left_bound = min(min(ul_x, ll_x), min(ur_x, lr_x));
|
|
int32_t top_bound = min(min(ul_y, ll_y), min(ur_y, lr_y));
|
|
|
|
int32_t right_bound = max(max(ul_x, ll_x), max(ur_x, lr_x));
|
|
int32_t bottom_bound = max(max(ul_y, ll_y), max(ur_y, lr_y));
|
|
|
|
rect->x = left_bound;
|
|
rect->y = top_bound;
|
|
rect->width = right_bound - left_bound;
|
|
rect->height = bottom_bound - top_bound;
|
|
}
|
|
|
|
spin_lock(&yg->update_list_lock);
|
|
list_insert(yg->update_list, rect);
|
|
spin_unlock(&yg->update_list_lock);
|
|
}
|
|
|
|
static void mark_window_relative(yutani_globals_t * yg, yutani_server_window_t * window, int32_t x, int32_t y, int32_t width, int32_t height) {
|
|
yutani_damage_rect_t * rect = malloc(sizeof(yutani_damage_rect_t));
|
|
|
|
if (window->rotation == 0) {
|
|
rect->x = window->x + x;
|
|
rect->y = window->y + y;
|
|
rect->width = width;
|
|
rect->height = height;
|
|
} else {
|
|
int32_t ul_x, ul_y;
|
|
int32_t ll_x, ll_y;
|
|
int32_t ur_x, ur_y;
|
|
int32_t lr_x, lr_y;
|
|
|
|
window_to_device(window, x, y, &ul_x, &ul_y);
|
|
window_to_device(window, x, y + height, &ll_x, &ll_y);
|
|
window_to_device(window, x + width, y, &ur_x, &ur_y);
|
|
window_to_device(window, x + width, y + height, &lr_x, &lr_y);
|
|
|
|
/* Calculate bounds */
|
|
|
|
int32_t left_bound = min(min(ul_x, ll_x), min(ur_x, lr_x));
|
|
int32_t top_bound = min(min(ul_y, ll_y), min(ur_y, lr_y));
|
|
|
|
int32_t right_bound = max(max(ul_x, ll_x), max(ur_x, lr_x));
|
|
int32_t bottom_bound = max(max(ul_y, ll_y), max(ur_y, lr_y));
|
|
|
|
rect->x = left_bound;
|
|
rect->y = top_bound;
|
|
rect->width = right_bound - left_bound;
|
|
rect->height = bottom_bound - top_bound;
|
|
}
|
|
|
|
spin_lock(&yg->update_list_lock);
|
|
list_insert(yg->update_list, rect);
|
|
spin_unlock(&yg->update_list_lock);
|
|
}
|
|
|
|
|
|
static void mark_region(yutani_globals_t * yg, int x, int y, int width, int height) {
|
|
yutani_damage_rect_t * rect = malloc(sizeof(yutani_damage_rect_t));
|
|
rect->x = x;
|
|
rect->y = y;
|
|
rect->width = width;
|
|
rect->height = height;
|
|
|
|
spin_lock(&yg->update_list_lock);
|
|
list_insert(yg->update_list, rect);
|
|
spin_unlock(&yg->update_list_lock);
|
|
}
|
|
|
|
static void window_mark_for_close(yutani_globals_t * yg, yutani_server_window_t * w) {
|
|
w->anim_mode = YUTANI_EFFECT_FADE_OUT;
|
|
w->anim_start = yg->tick_count;
|
|
}
|
|
|
|
static void window_actually_close(yutani_globals_t * yg, yutani_server_window_t * w) {
|
|
/* XXX free window */
|
|
hashmap_remove(yg->wids_to_windows, (void *)w->wid);
|
|
list_remove(yg->windows, list_index_of(yg->windows, w));
|
|
mark_window(yg, w);
|
|
unorder_window(yg, w);
|
|
if (w == yg->focused_window) {
|
|
yg->focused_window = NULL;
|
|
}
|
|
yutani_msg_t * response = yutani_msg_build_notify();
|
|
foreach(node, yg->window_subscribers) {
|
|
uint32_t subscriber = (uint32_t)node->value;
|
|
pex_send(yg->server, subscriber, response->size, (char *)response);
|
|
}
|
|
free(response);
|
|
}
|
|
|
|
static void handle_key_event(yutani_globals_t * yg, struct yutani_msg_key_event * ke) {
|
|
yutani_server_window_t * focused = get_focused(yg);
|
|
memcpy(&yg->kbd_state, &ke->state, sizeof(key_event_state_t));
|
|
if (focused) {
|
|
if ((ke->event.action == KEY_ACTION_DOWN) &&
|
|
(ke->event.modifiers & KEY_MOD_LEFT_CTRL) &&
|
|
(ke->event.modifiers & KEY_MOD_LEFT_SHIFT) &&
|
|
(ke->event.keycode == 'z')) {
|
|
mark_window(yg,focused);
|
|
focused->rotation -= 5;
|
|
mark_window(yg,focused);
|
|
return;
|
|
}
|
|
if ((ke->event.action == KEY_ACTION_DOWN) &&
|
|
(ke->event.modifiers & KEY_MOD_LEFT_CTRL) &&
|
|
(ke->event.modifiers & KEY_MOD_LEFT_SHIFT) &&
|
|
(ke->event.keycode == 'x')) {
|
|
mark_window(yg,focused);
|
|
focused->rotation += 5;
|
|
mark_window(yg,focused);
|
|
return;
|
|
}
|
|
if ((ke->event.action == KEY_ACTION_DOWN) &&
|
|
(ke->event.modifiers & KEY_MOD_LEFT_CTRL) &&
|
|
(ke->event.modifiers & KEY_MOD_LEFT_SHIFT) &&
|
|
(ke->event.keycode == 'c')) {
|
|
mark_window(yg,focused);
|
|
focused->rotation = 0;
|
|
mark_window(yg,focused);
|
|
return;
|
|
}
|
|
|
|
yutani_msg_t * response = yutani_msg_build_key_event(focused->wid, &ke->event, &ke->state);
|
|
pex_send(yg->server, focused->owner, response->size, (char *)response);
|
|
free(response);
|
|
|
|
}
|
|
|
|
/* Other events? */
|
|
}
|
|
|
|
static void handle_mouse_event(yutani_globals_t * yg, struct yutani_msg_mouse_event * me) {
|
|
yg->mouse_x += me->event.x_difference * 3;
|
|
yg->mouse_y -= me->event.y_difference * 3;
|
|
|
|
if (yg->mouse_x < 0) yg->mouse_x = 0;
|
|
if (yg->mouse_y < 0) yg->mouse_y = 0;
|
|
if (yg->mouse_x > (yg->width) * MOUSE_SCALE) yg->mouse_x = (yg->width) * MOUSE_SCALE;
|
|
if (yg->mouse_y > (yg->height) * MOUSE_SCALE) yg->mouse_y = (yg->height) * MOUSE_SCALE;
|
|
|
|
switch (yg->mouse_state) {
|
|
case YUTANI_MOUSE_STATE_NORMAL:
|
|
{
|
|
if ((me->event.buttons & YUTANI_MOUSE_BUTTON_LEFT) && (yg->kbd_state.k_alt)) {
|
|
set_focused_at(yg, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE);
|
|
yg->mouse_window = get_focused(yg);
|
|
if (yg->mouse_window) {
|
|
if (yg->mouse_window->z == YUTANI_ZORDER_BOTTOM || yg->mouse_window->z == YUTANI_ZORDER_TOP) {
|
|
yg->mouse_state = YUTANI_MOUSE_STATE_NORMAL;
|
|
yg->mouse_window = NULL;
|
|
} else {
|
|
yg->mouse_state = YUTANI_MOUSE_STATE_MOVING;
|
|
yg->mouse_init_x = yg->mouse_x;
|
|
yg->mouse_init_y = yg->mouse_y;
|
|
yg->mouse_win_x = yg->mouse_window->x;
|
|
yg->mouse_win_y = yg->mouse_window->y;
|
|
make_top(yg, yg->mouse_window);
|
|
}
|
|
}
|
|
} else if ((me->event.buttons & YUTANI_MOUSE_BUTTON_MIDDLE) && (yg->kbd_state.k_alt)) {
|
|
set_focused_at(yg, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE);
|
|
yg->mouse_window = get_focused(yg);
|
|
if (yg->mouse_window) {
|
|
if (yg->mouse_window->z == YUTANI_ZORDER_BOTTOM || yg->mouse_window->z == YUTANI_ZORDER_TOP) {
|
|
yg->mouse_state = YUTANI_MOUSE_STATE_NORMAL;
|
|
yg->mouse_window = NULL;
|
|
} else {
|
|
fprintf(stderr, "[yutani-server] resize starting for wid=%d\n", yg->mouse_window -> wid);
|
|
yg->mouse_state = YUTANI_MOUSE_STATE_RESIZING;
|
|
yg->mouse_init_x = yg->mouse_x;
|
|
yg->mouse_init_y = yg->mouse_y;
|
|
yg->mouse_win_x = yg->mouse_window->x;
|
|
yg->mouse_win_y = yg->mouse_window->y;
|
|
yg->resizing_window = yg->mouse_window;
|
|
yg->resizing_w = yg->mouse_window->width;
|
|
yg->resizing_h = yg->mouse_window->height;
|
|
make_top(yg, yg->mouse_window);
|
|
}
|
|
}
|
|
} else if ((me->event.buttons & YUTANI_MOUSE_BUTTON_LEFT) && (!yg->kbd_state.k_alt)) {
|
|
yg->mouse_state = YUTANI_MOUSE_STATE_DRAGGING;
|
|
set_focused_at(yg, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE);
|
|
yg->mouse_window = get_focused(yg);
|
|
yg->mouse_moved = 0;
|
|
yg->mouse_drag_button = YUTANI_MOUSE_BUTTON_LEFT;
|
|
device_to_window(yg->mouse_window, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE, &yg->mouse_click_x, &yg->mouse_click_y);
|
|
yutani_msg_t * response = yutani_msg_build_window_mouse_event(yg->mouse_window->wid, yg->mouse_click_x, yg->mouse_click_y, -1, -1, me->event.buttons, YUTANI_MOUSE_EVENT_DOWN);
|
|
pex_send(yg->server, yg->mouse_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
} else {
|
|
yg->mouse_window = get_focused(yg);
|
|
yutani_server_window_t * tmp_window = top_at(yg, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE);
|
|
if (yg->mouse_window) {
|
|
int32_t x, y;
|
|
device_to_window(yg->mouse_window, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE, &x, &y);
|
|
yutani_msg_t * response = yutani_msg_build_window_mouse_event(yg->mouse_window->wid, x, y, -1, -1, me->event.buttons, YUTANI_MOUSE_EVENT_MOVE);
|
|
pex_send(yg->server, yg->mouse_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
if (tmp_window) {
|
|
int32_t x, y;
|
|
yutani_msg_t * response;
|
|
if (tmp_window != yg->old_hover_window) {
|
|
device_to_window(tmp_window, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE, &x, &y);
|
|
response = yutani_msg_build_window_mouse_event(tmp_window->wid, x, y, -1, -1, me->event.buttons, YUTANI_MOUSE_EVENT_ENTER);
|
|
pex_send(yg->server, tmp_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
if (yg->old_hover_window) {
|
|
device_to_window(yg->old_hover_window, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE, &x, &y);
|
|
response = yutani_msg_build_window_mouse_event(yg->old_hover_window->wid, x, y, -1, -1, me->event.buttons, YUTANI_MOUSE_EVENT_LEAVE);
|
|
pex_send(yg->server, yg->old_hover_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
yg->old_hover_window = tmp_window;
|
|
}
|
|
if (tmp_window != yg->mouse_window) {
|
|
device_to_window(tmp_window, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE, &x, &y);
|
|
response = yutani_msg_build_window_mouse_event(tmp_window->wid, x, y, -1, -1, me->event.buttons, YUTANI_MOUSE_EVENT_MOVE);
|
|
pex_send(yg->server, tmp_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MOUSE_STATE_MOVING:
|
|
{
|
|
if (!(me->event.buttons & YUTANI_MOUSE_BUTTON_LEFT)) {
|
|
yg->mouse_window = NULL;
|
|
yg->mouse_state = YUTANI_MOUSE_STATE_NORMAL;
|
|
} else {
|
|
mark_window(yg, yg->mouse_window);
|
|
yg->mouse_window->x = yg->mouse_win_x + (yg->mouse_x - yg->mouse_init_x) / MOUSE_SCALE;
|
|
yg->mouse_window->y = yg->mouse_win_y + (yg->mouse_y - yg->mouse_init_y) / MOUSE_SCALE;
|
|
mark_window(yg, yg->mouse_window);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MOUSE_STATE_DRAGGING:
|
|
{
|
|
if (!(me->event.buttons & yg->mouse_drag_button)) {
|
|
/* Mouse released */
|
|
yg->mouse_state = YUTANI_MOUSE_STATE_NORMAL;
|
|
int32_t old_x = yg->mouse_click_x;
|
|
int32_t old_y = yg->mouse_click_y;
|
|
device_to_window(yg->mouse_window, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE, &yg->mouse_click_x, &yg->mouse_click_y);
|
|
if (!yg->mouse_moved) {
|
|
yutani_msg_t * response = yutani_msg_build_window_mouse_event(yg->mouse_window->wid, yg->mouse_click_x, yg->mouse_click_y, -1, -1, me->event.buttons, YUTANI_MOUSE_EVENT_CLICK);
|
|
pex_send(yg->server, yg->mouse_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
} else {
|
|
yutani_msg_t * response = yutani_msg_build_window_mouse_event(yg->mouse_window->wid, yg->mouse_click_x, yg->mouse_click_y, old_x, old_y, me->event.buttons, YUTANI_MOUSE_EVENT_RAISE);
|
|
pex_send(yg->server, yg->mouse_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
} else {
|
|
yg->mouse_state = YUTANI_MOUSE_STATE_DRAGGING;
|
|
yg->mouse_moved = 1;
|
|
int32_t old_x = yg->mouse_click_x;
|
|
int32_t old_y = yg->mouse_click_y;
|
|
device_to_window(yg->mouse_window, yg->mouse_x / MOUSE_SCALE, yg->mouse_y / MOUSE_SCALE, &yg->mouse_click_x, &yg->mouse_click_y);
|
|
if (old_x != yg->mouse_click_x || old_y != yg->mouse_click_y) {
|
|
yutani_msg_t * response = yutani_msg_build_window_mouse_event(yg->mouse_window->wid, yg->mouse_click_x, yg->mouse_click_y, old_x, old_y, me->event.buttons, YUTANI_MOUSE_EVENT_DRAG);
|
|
pex_send(yg->server, yg->mouse_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MOUSE_STATE_RESIZING:
|
|
{
|
|
int width_diff = (yg->mouse_x - yg->mouse_init_x) / MOUSE_SCALE;
|
|
int height_diff = (yg->mouse_y - yg->mouse_init_y) / MOUSE_SCALE;
|
|
|
|
mark_window_relative(yg, yg->mouse_window, -2, -2, yg->resizing_w + 10, yg->resizing_h + 10);
|
|
|
|
yg->resizing_w = yg->resizing_window->width + width_diff;
|
|
yg->resizing_h = yg->resizing_window->height + height_diff;
|
|
|
|
mark_window_relative(yg, yg->mouse_window, -2, -2, yg->resizing_w + 10, yg->resizing_h + 10);
|
|
|
|
if (!(me->event.buttons & YUTANI_MOUSE_BUTTON_MIDDLE)) {
|
|
fprintf(stderr, "[yutani-server] resize complete, now %d x %d\n", yg->resizing_w, yg->resizing_h);
|
|
yutani_msg_t * response = yutani_msg_build_window_resize(YUTANI_MSG_RESIZE_OFFER, yg->resizing_window->wid, yg->resizing_w, yg->resizing_h, 0);
|
|
pex_send(yg->server, yg->resizing_window->owner, response->size, (char *)response);
|
|
free(response);
|
|
yg->resizing_window = NULL;
|
|
yg->mouse_window = NULL;
|
|
yg->mouse_state = YUTANI_MOUSE_STATE_NORMAL;
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
/* XXX ? */
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* main
|
|
*/
|
|
int main(int argc, char * argv[]) {
|
|
|
|
int argx = 0;
|
|
int results = parse_args(argc, argv, &argx);
|
|
if (results) return results;
|
|
|
|
yutani_globals_t * yg = malloc(sizeof(yutani_globals_t));
|
|
memset(yg, 0x00, sizeof(yutani_globals_t));
|
|
yg->backend_ctx = init_graphics_fullscreen_double_buffer();
|
|
|
|
if (!yg->backend_ctx) {
|
|
free(yg);
|
|
fprintf(stderr, "%s: Failed to open framebuffer, bailing.\n", argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
yg->width = yg->backend_ctx->width;
|
|
yg->height = yg->backend_ctx->height;
|
|
|
|
draw_fill(yg->backend_ctx, rgb(0,0,0));
|
|
flip(yg->backend_ctx);
|
|
|
|
yg->backend_framebuffer = yg->backend_ctx->backbuffer;
|
|
yg->pex_endpoint = "compositor";
|
|
setenv("DISPLAY", yg->pex_endpoint, 1);
|
|
|
|
FILE * server = pex_bind(yg->pex_endpoint);
|
|
yg->server = server;
|
|
|
|
fprintf(stderr, "[yutani] Loading fonts...\n");
|
|
load_fonts();
|
|
fprintf(stderr, "[yutani] Done.\n");
|
|
|
|
load_sprite_png(&yg->mouse_sprite, "/usr/share/arrow.png");
|
|
yg->last_mouse_x = 0;
|
|
yg->last_mouse_y = 0;
|
|
yg->mouse_x = yg->width * MOUSE_SCALE / 2;
|
|
yg->mouse_y = yg->height * MOUSE_SCALE / 2;
|
|
|
|
yg->windows = list_create();
|
|
yg->wids_to_windows = hashmap_create_int(10);
|
|
|
|
yg->window_subscribers = list_create();
|
|
|
|
yutani_cairo_init(yg);
|
|
|
|
pthread_t mouse_thread;
|
|
pthread_create(&mouse_thread, NULL, mouse_input, NULL);
|
|
|
|
pthread_t keyboard_thread;
|
|
pthread_create(&keyboard_thread, NULL, keyboard_input, NULL);
|
|
|
|
pthread_t render_thread;
|
|
pthread_create(&render_thread, NULL, redraw, yg);
|
|
|
|
if (!fork()) {
|
|
fprintf(stderr, "Have %d args, argx=%d\n", argc, argx);
|
|
if (argx < argc) {
|
|
fprintf(stderr, "Starting %s\n", argv[argx]);
|
|
execvp(argv[argx], &argv[argx]);
|
|
} else {
|
|
char * args[] = {"/bin/glogin", NULL};
|
|
execvp(args[0], args);
|
|
}
|
|
}
|
|
|
|
while (1) {
|
|
pex_packet_t * p = calloc(PACKET_SIZE, 1);
|
|
pex_listen(server, p);
|
|
|
|
yutani_msg_t * m = (yutani_msg_t *)p->data;
|
|
|
|
if (m->magic != YUTANI_MSG__MAGIC) {
|
|
fprintf(stderr, "[yutani-server] Message has bad magic. (Should eject client, but will instead skip this message.) 0x%x\n", m->magic);
|
|
free(p);
|
|
continue;
|
|
}
|
|
|
|
switch(m->type) {
|
|
case YUTANI_MSG_HELLO:
|
|
{
|
|
fprintf(stderr, "[yutani-server] And hello to you, %08x!\n", p->source);
|
|
yutani_msg_t * response = yutani_msg_build_welcome(yg->width, yg->height);
|
|
pex_send(server, p->source, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
break;
|
|
case YUTANI_MSG_WINDOW_NEW:
|
|
{
|
|
struct yutani_msg_window_new * wn = (void *)m->data;
|
|
fprintf(stderr, "[yutani-server] Client %08x requested a new window (%dx%d).\n", p->source, wn->width, wn->height);
|
|
yutani_server_window_t * w = server_window_create(yg, wn->width, wn->height, p->source);
|
|
yutani_msg_t * response = yutani_msg_build_window_init(w->wid, w->width, w->height, w->bufid);
|
|
pex_send(server, p->source, response->size, (char *)response);
|
|
free(response);
|
|
|
|
response = yutani_msg_build_notify();
|
|
foreach(node, yg->window_subscribers) {
|
|
uint32_t subscriber = (uint32_t)node->value;
|
|
pex_send(server, subscriber, response->size, (char *)response);
|
|
}
|
|
free(response);
|
|
}
|
|
break;
|
|
case YUTANI_MSG_FLIP:
|
|
{
|
|
struct yutani_msg_flip * wf = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)wf->wid);
|
|
if (w) {
|
|
mark_window(yg, w);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_FLIP_REGION:
|
|
{
|
|
struct yutani_msg_flip_region * wf = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)wf->wid);
|
|
if (w) {
|
|
mark_window_relative(yg, w, wf->x, wf->y, wf->width, wf->height);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_KEY_EVENT:
|
|
{
|
|
/* XXX Verify this is from a valid device client */
|
|
struct yutani_msg_key_event * ke = (void *)m->data;
|
|
handle_key_event(yg, ke);
|
|
}
|
|
break;
|
|
case YUTANI_MSG_MOUSE_EVENT:
|
|
{
|
|
/* XXX Verify this is from a valid device client */
|
|
struct yutani_msg_mouse_event * me = (void *)m->data;
|
|
handle_mouse_event(yg, me);
|
|
}
|
|
break;
|
|
case YUTANI_MSG_WINDOW_MOVE:
|
|
{
|
|
struct yutani_msg_window_move * wm = (void *)m->data;
|
|
fprintf(stderr, "[yutani-server] %08x wanted to move window %d\n", p->source, wm->wid);
|
|
yutani_server_window_t * win = hashmap_get(yg->wids_to_windows, (void*)wm->wid);
|
|
if (win) {
|
|
mark_window(yg, win);
|
|
win->x = wm->x;
|
|
win->y = wm->y;
|
|
mark_window(yg, win);
|
|
} else {
|
|
fprintf(stderr, "[yutani-server] %08x wanted to move window %d, but I can't find it?\n", p->source, wm->wid);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_WINDOW_CLOSE:
|
|
{
|
|
struct yutani_msg_window_close * wc = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)wc->wid);
|
|
if (w) {
|
|
window_mark_for_close(yg, w);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_WINDOW_STACK:
|
|
{
|
|
struct yutani_msg_window_stack * ws = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)ws->wid);
|
|
if (w) {
|
|
reorder_window(yg, w, ws->z);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_RESIZE_REQUEST:
|
|
{
|
|
struct yutani_msg_window_resize * wr = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)wr->wid);
|
|
if (w) {
|
|
yutani_msg_t * response = yutani_msg_build_window_resize(YUTANI_MSG_RESIZE_OFFER, w->wid, wr->width, wr->height, 0);
|
|
pex_send(server, p->source, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_RESIZE_OFFER:
|
|
{
|
|
struct yutani_msg_window_resize * wr = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)wr->wid);
|
|
if (w) {
|
|
yutani_msg_t * response = yutani_msg_build_window_resize(YUTANI_MSG_RESIZE_OFFER, w->wid, wr->width, wr->height, 0);
|
|
pex_send(server, p->source, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_RESIZE_ACCEPT:
|
|
{
|
|
struct yutani_msg_window_resize * wr = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)wr->wid);
|
|
if (w) {
|
|
uint32_t newbufid = server_window_resize(yg, w, wr->width, wr->height);
|
|
yutani_msg_t * response = yutani_msg_build_window_resize(YUTANI_MSG_RESIZE_BUFID, w->wid, wr->width, wr->height, newbufid);
|
|
pex_send(server, p->source, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_RESIZE_DONE:
|
|
{
|
|
struct yutani_msg_window_resize * wr = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)wr->wid);
|
|
if (w) {
|
|
server_window_resize_finish(yg, w, wr->width, wr->height);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_QUERY_WINDOWS:
|
|
{
|
|
for (unsigned int i = 0; i <= YUTANI_ZORDER_MAX; ++i) {
|
|
if (yg->zlist[i] && yg->zlist[i]->name) {
|
|
fprintf(stderr, "[yutani-server] informing client about window %d with name %s\n", yg->zlist[i]->wid, yg->zlist[i]->name);
|
|
yutani_msg_t * response = yutani_msg_build_window_advertise(yg->zlist[i]->wid, yg->zlist[i]->name);
|
|
pex_send(server, p->source, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
}
|
|
yutani_msg_t * response = yutani_msg_build_window_advertise(0, NULL);
|
|
pex_send(server, p->source, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
break;
|
|
case YUTANI_MSG_SUBSCRIBE:
|
|
{
|
|
foreach(node, yg->window_subscribers) {
|
|
if ((uint32_t)node->value == p->source) {
|
|
break;
|
|
}
|
|
}
|
|
list_insert(yg->window_subscribers, (void*)p->source);
|
|
}
|
|
break;
|
|
case YUTANI_MSG_UNSUBSCRIBE:
|
|
{
|
|
node_t * node = list_find(yg->window_subscribers, (void*)p->source);
|
|
if (node) {
|
|
list_delete(yg->window_subscribers, node);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_WINDOW_ADVERTISE:
|
|
{
|
|
struct yutani_msg_window_advertise * wa = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)wa->wid);
|
|
if (w) {
|
|
if (w->name) {
|
|
free(w->name);
|
|
}
|
|
if (wa->size == 0) {
|
|
w->name = NULL;
|
|
} else {
|
|
char * t = malloc(wa->size+1);
|
|
memcpy(t, wa->name, wa->size+1);
|
|
w->name = t;
|
|
}
|
|
yutani_msg_t * response = yutani_msg_build_notify();
|
|
foreach(node, yg->window_subscribers) {
|
|
uint32_t subscriber = (uint32_t)node->value;
|
|
pex_send(server, subscriber, response->size, (char *)response);
|
|
}
|
|
free(response);
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_SESSION_END:
|
|
{
|
|
for (unsigned int i = 0; i <= YUTANI_ZORDER_MAX; ++i) {
|
|
if (yg->zlist[i]) {
|
|
yutani_msg_t * response = yutani_msg_build_session_end();
|
|
pex_send(server, yg->zlist[i]->owner, response->size, (char *)response);
|
|
free(response);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case YUTANI_MSG_WINDOW_FOCUS:
|
|
{
|
|
struct yutani_msg_window_focus * wa = (void *)m->data;
|
|
yutani_server_window_t * w = hashmap_get(yg->wids_to_windows, (void *)wa->wid);
|
|
if (w) {
|
|
set_focused_window(yg, w);
|
|
yutani_msg_t * response = yutani_msg_build_notify();
|
|
foreach(node, yg->window_subscribers) {
|
|
uint32_t subscriber = (uint32_t)node->value;
|
|
pex_send(server, subscriber, response->size, (char *)response);
|
|
}
|
|
free(response);
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
{
|
|
fprintf(stderr, "[yutani-server] Unknown type: 0x%8x\n", m->type);
|
|
}
|
|
break;
|
|
}
|
|
free(p);
|
|
}
|
|
|
|
return 0;
|
|
}
|