mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
6ef5a5cee3
A new ioctl TIOCGDISPLAYS allow detecting which displays the terminal has associated. The ability to set a keyboard layout can be detected with tcgetblob kblayout. Improve the user-space multi-monitor support while here. The kernel now sets TERM rather than init(8). This is a compatible ABI change riding on the previous commit's bump.
150 lines
3.9 KiB
C
150 lines
3.9 KiB
C
/*
|
|
* Copyright (c) 2012, 2013, 2014, 2016 Jonas 'Sortie' Termansen.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* window.c
|
|
* Handles windows.
|
|
*/
|
|
|
|
#include <sys/display.h>
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
#include <ioleast.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include <dispd.h>
|
|
|
|
#include "framebuffer.h"
|
|
#include "session.h"
|
|
#include "window.h"
|
|
|
|
struct dispd_window* dispd_create_window_game_rgba(struct dispd_session* session)
|
|
{
|
|
if ( session->current_window )
|
|
return NULL;
|
|
if ( !session->is_rgba )
|
|
return NULL;
|
|
size_t size = sizeof(struct dispd_window);
|
|
struct dispd_window* window = (struct dispd_window*) malloc(size);
|
|
if ( !window )
|
|
return NULL;
|
|
memset(window, 0, sizeof(*window));
|
|
window->session = session;
|
|
return session->current_window = window;
|
|
}
|
|
|
|
bool dispd_destroy_window(struct dispd_window* window)
|
|
{
|
|
free(window->cached_buffer);
|
|
free(window);
|
|
return true;
|
|
}
|
|
|
|
static uint8_t* request_buffer(struct dispd_window* window, size_t size)
|
|
{
|
|
if ( window->cached_buffer )
|
|
{
|
|
if ( window->cached_buffer_size == size )
|
|
{
|
|
uint8_t* ret = window->cached_buffer;
|
|
window->cached_buffer = NULL;
|
|
window->cached_buffer_size = 0;
|
|
return ret;
|
|
}
|
|
free(window->cached_buffer);
|
|
window->cached_buffer = NULL;
|
|
window->cached_buffer_size = 0;
|
|
}
|
|
return (uint8_t*) malloc(size);
|
|
}
|
|
|
|
static void return_buffer(struct dispd_window* window, uint8_t* b, size_t size)
|
|
{
|
|
free(window->cached_buffer);
|
|
window->cached_buffer = b;
|
|
window->cached_buffer_size = size;
|
|
}
|
|
|
|
struct dispd_framebuffer* dispd_begin_render(struct dispd_window* window)
|
|
{
|
|
struct dispmsg_get_crtc_mode msg;
|
|
msg.msgid = DISPMSG_GET_CRTC_MODE;
|
|
msg.device = window->session->device;
|
|
msg.connector = window->session->connector;
|
|
if ( dispmsg_issue(&msg, sizeof(msg)) != 0 )
|
|
return NULL;
|
|
size_t size = sizeof(struct dispd_framebuffer);
|
|
struct dispd_framebuffer* fb = (struct dispd_framebuffer*) malloc(size);
|
|
if ( !fb )
|
|
return NULL;
|
|
memset(fb, 0, sizeof(*fb));
|
|
fb->window = window;
|
|
fb->width = msg.mode.view_xres;
|
|
fb->height = msg.mode.view_yres;
|
|
fb->bpp = 32;
|
|
fb->pitch = fb->width * fb->bpp / 8;
|
|
fb->datasize = fb->pitch * fb->height;
|
|
fb->data = (uint8_t*) request_buffer(window, fb->datasize);
|
|
fb->fb_location = msg.mode.fb_location;
|
|
if ( !fb->data ) { free(fb); return NULL; }
|
|
return fb;
|
|
}
|
|
|
|
bool dispd_finish_render(struct dispd_framebuffer* fb)
|
|
{
|
|
struct dispd_window* window = fb->window;
|
|
bool ret = false;
|
|
struct dispmsg_write_memory msg;
|
|
msg.msgid = DISPMSG_WRITE_MEMORY;
|
|
msg.device = window->session->device;
|
|
msg.offset = fb->fb_location;
|
|
msg.size = fb->datasize;
|
|
msg.src = fb->data;
|
|
if ( dispmsg_issue(&msg, sizeof(msg)) == 0 )
|
|
ret = true;
|
|
return_buffer(window, fb->data, fb->datasize);
|
|
free(fb);
|
|
return ret;
|
|
}
|
|
|
|
uint8_t* dispd_get_framebuffer_data(struct dispd_framebuffer* fb)
|
|
{
|
|
return fb->data;
|
|
}
|
|
|
|
size_t dispd_get_framebuffer_pitch(struct dispd_framebuffer* fb)
|
|
{
|
|
return fb->pitch;
|
|
}
|
|
|
|
int dispd_get_framebuffer_format(struct dispd_framebuffer* fb)
|
|
{
|
|
return fb->bpp;
|
|
}
|
|
|
|
int dispd_get_framebuffer_height(struct dispd_framebuffer* fb)
|
|
{
|
|
return fb->height;
|
|
}
|
|
|
|
int dispd_get_framebuffer_width(struct dispd_framebuffer* fb)
|
|
{
|
|
return fb->width;
|
|
}
|