2018-12-12 07:57:31 +00:00
|
|
|
/*
|
|
|
|
Looking Glass - KVM FrameRelay (KVMFR) Client
|
2019-02-22 11:16:14 +00:00
|
|
|
Copyright (C) 2017-2019 Geoffrey McRae <geoff@hostfission.com>
|
2018-12-12 07:57:31 +00:00
|
|
|
https://looking-glass.hostfission.com
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
cahe terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cursor.h"
|
2019-04-11 01:12:59 +00:00
|
|
|
#include "common/debug.h"
|
2020-01-17 03:35:08 +00:00
|
|
|
#include "common/locking.h"
|
2020-11-08 19:59:54 +00:00
|
|
|
#include "common/option.h"
|
2018-12-12 07:57:31 +00:00
|
|
|
|
|
|
|
#include "texture.h"
|
|
|
|
#include "shader.h"
|
|
|
|
#include "model.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2019-03-28 04:53:15 +00:00
|
|
|
// these headers are auto generated by cmake
|
|
|
|
#include "cursor.vert.h"
|
|
|
|
#include "cursor_rgb.frag.h"
|
|
|
|
#include "cursor_mono.frag.h"
|
|
|
|
|
2018-12-12 07:57:31 +00:00
|
|
|
struct EGL_Cursor
|
|
|
|
{
|
|
|
|
LG_Lock lock;
|
|
|
|
LG_RendererCursor type;
|
|
|
|
int width;
|
|
|
|
int height;
|
2019-01-01 23:30:19 +00:00
|
|
|
int stride;
|
2018-12-12 07:57:31 +00:00
|
|
|
uint8_t * data;
|
|
|
|
size_t dataSize;
|
|
|
|
bool update;
|
|
|
|
|
|
|
|
// cursor state
|
|
|
|
bool visible;
|
|
|
|
float x, y, w, h;
|
2020-11-08 19:59:54 +00:00
|
|
|
int cbMode;
|
2018-12-12 07:57:31 +00:00
|
|
|
|
|
|
|
// textures
|
|
|
|
struct EGL_Texture * texture;
|
|
|
|
struct EGL_Texture * textureMono;
|
|
|
|
|
|
|
|
// shaders
|
|
|
|
struct EGL_Shader * shader;
|
|
|
|
struct EGL_Shader * shaderMono;
|
|
|
|
|
|
|
|
// uniforms
|
|
|
|
GLuint uMousePos;
|
|
|
|
GLuint uMousePosMono;
|
2020-11-08 19:59:54 +00:00
|
|
|
GLuint uCBMode;
|
2018-12-12 07:57:31 +00:00
|
|
|
|
|
|
|
// model
|
|
|
|
struct EGL_Model * model;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool egl_cursor_init(EGL_Cursor ** cursor)
|
|
|
|
{
|
|
|
|
*cursor = (EGL_Cursor *)malloc(sizeof(EGL_Cursor));
|
|
|
|
if (!*cursor)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to malloc EGL_Cursor");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(*cursor, 0, sizeof(EGL_Cursor));
|
|
|
|
LG_LOCK_INIT((*cursor)->lock);
|
|
|
|
|
2020-10-29 15:32:25 +00:00
|
|
|
if (!egl_texture_init(&(*cursor)->texture, NULL))
|
2018-12-12 07:57:31 +00:00
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to initialize the cursor texture");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-10-29 15:32:25 +00:00
|
|
|
if (!egl_texture_init(&(*cursor)->textureMono, NULL))
|
2018-12-12 07:57:31 +00:00
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to initialize the cursor mono texture");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!egl_shader_init(&(*cursor)->shader))
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to initialize the cursor shader");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!egl_shader_init(&(*cursor)->shaderMono))
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to initialize the cursor mono shader");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!egl_shader_compile(
|
|
|
|
(*cursor)->shader,
|
2019-03-28 04:53:15 +00:00
|
|
|
b_shader_cursor_vert , b_shader_cursor_vert_size,
|
|
|
|
b_shader_cursor_rgb_frag, b_shader_cursor_rgb_frag_size))
|
2018-12-12 07:57:31 +00:00
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to compile the cursor shader");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!egl_shader_compile(
|
|
|
|
(*cursor)->shaderMono,
|
2019-03-28 04:53:15 +00:00
|
|
|
b_shader_cursor_vert , b_shader_cursor_vert_size,
|
|
|
|
b_shader_cursor_mono_frag, b_shader_cursor_mono_frag_size))
|
2018-12-12 07:57:31 +00:00
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to compile the cursor mono shader");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-11-08 19:59:54 +00:00
|
|
|
(*cursor)->uMousePos = egl_shader_get_uniform_location((*cursor)->shader , "mouse" );
|
|
|
|
(*cursor)->uCBMode = egl_shader_get_uniform_location((*cursor)->shader , "cbMode");
|
|
|
|
|
|
|
|
(*cursor)->uMousePosMono = egl_shader_get_uniform_location((*cursor)->shaderMono, "mouse" );
|
2018-12-12 07:57:31 +00:00
|
|
|
|
|
|
|
if (!egl_model_init(&(*cursor)->model))
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to initialize the cursor model");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-12 09:08:52 +00:00
|
|
|
egl_model_set_default((*cursor)->model);
|
2020-11-08 19:59:54 +00:00
|
|
|
|
|
|
|
(*cursor)->cbMode = option_get_int("egl", "cbMode");
|
|
|
|
|
2018-12-12 07:57:31 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void egl_cursor_free(EGL_Cursor ** cursor)
|
|
|
|
{
|
|
|
|
if (!*cursor)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LG_LOCK_FREE((*cursor)->lock);
|
|
|
|
if ((*cursor)->data)
|
|
|
|
free((*cursor)->data);
|
|
|
|
|
|
|
|
egl_texture_free(&(*cursor)->texture );
|
|
|
|
egl_texture_free(&(*cursor)->textureMono);
|
|
|
|
egl_shader_free (&(*cursor)->shader );
|
|
|
|
egl_shader_free (&(*cursor)->shaderMono );
|
|
|
|
egl_model_free (&(*cursor)->model );
|
|
|
|
|
|
|
|
free(*cursor);
|
|
|
|
*cursor = NULL;
|
|
|
|
}
|
|
|
|
|
2019-01-01 23:30:19 +00:00
|
|
|
bool egl_cursor_set_shape(EGL_Cursor * cursor, const LG_RendererCursor type, const int width, const int height, const int stride, const uint8_t * data)
|
2018-12-12 07:57:31 +00:00
|
|
|
{
|
|
|
|
LG_LOCK(cursor->lock);
|
|
|
|
|
|
|
|
cursor->type = type;
|
|
|
|
cursor->width = width;
|
|
|
|
cursor->height = (type == LG_CURSOR_MONOCHROME ? height / 2 : height);
|
2019-01-01 23:30:19 +00:00
|
|
|
cursor->stride = stride;
|
2018-12-12 07:57:31 +00:00
|
|
|
|
2019-01-01 23:30:19 +00:00
|
|
|
const size_t size = height * stride;
|
2018-12-12 07:57:31 +00:00
|
|
|
if (size > cursor->dataSize)
|
|
|
|
{
|
|
|
|
if (cursor->data)
|
|
|
|
free(cursor->data);
|
|
|
|
|
|
|
|
cursor->data = (uint8_t *)malloc(size);
|
|
|
|
if (!cursor->data)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to malloc buffer for cursor shape");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
cursor->dataSize = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(cursor->data, data, size);
|
|
|
|
cursor->update = true;
|
|
|
|
|
|
|
|
LG_UNLOCK(cursor->lock);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void egl_cursor_set_size(EGL_Cursor * cursor, const float w, const float h)
|
|
|
|
{
|
|
|
|
cursor->w = w;
|
|
|
|
cursor->h = h;
|
|
|
|
}
|
|
|
|
|
|
|
|
void egl_cursor_set_state(EGL_Cursor * cursor, const bool visible, const float x, const float y)
|
|
|
|
{
|
|
|
|
cursor->visible = visible;
|
|
|
|
cursor->x = x;
|
|
|
|
cursor->y = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void egl_cursor_render(EGL_Cursor * cursor)
|
|
|
|
{
|
|
|
|
if (!cursor->visible)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (cursor->update)
|
|
|
|
{
|
|
|
|
LG_LOCK(cursor->lock);
|
|
|
|
cursor->update = false;
|
|
|
|
|
|
|
|
uint8_t * data = cursor->data;
|
|
|
|
|
|
|
|
switch(cursor->type)
|
|
|
|
{
|
|
|
|
case LG_CURSOR_MASKED_COLOR:
|
2019-10-09 08:48:42 +00:00
|
|
|
// fall through
|
2018-12-12 07:57:31 +00:00
|
|
|
|
|
|
|
case LG_CURSOR_COLOR:
|
|
|
|
{
|
2020-10-29 15:32:25 +00:00
|
|
|
egl_texture_setup(cursor->texture, EGL_PF_BGRA, cursor->width, cursor->height, cursor->stride, false, false);
|
2018-12-12 07:57:31 +00:00
|
|
|
egl_texture_update(cursor->texture, data);
|
|
|
|
egl_model_set_texture(cursor->model, cursor->texture);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LG_CURSOR_MONOCHROME:
|
|
|
|
{
|
|
|
|
uint32_t and[cursor->width * cursor->height];
|
|
|
|
uint32_t xor[cursor->width * cursor->height];
|
|
|
|
|
|
|
|
for(int y = 0; y < cursor->height; ++y)
|
|
|
|
for(int x = 0; x < cursor->width; ++x)
|
|
|
|
{
|
2019-01-01 23:30:19 +00:00
|
|
|
const uint8_t * srcAnd = data + (cursor->stride * y) + (x / 8);
|
|
|
|
const uint8_t * srcXor = srcAnd + cursor->stride * cursor->height;
|
2018-12-12 07:57:31 +00:00
|
|
|
const uint8_t mask = 0x80 >> (x % 8);
|
|
|
|
const uint32_t andMask = (*srcAnd & mask) ? 0xFFFFFFFF : 0xFF000000;
|
|
|
|
const uint32_t xorMask = (*srcXor & mask) ? 0x00FFFFFF : 0x00000000;
|
|
|
|
|
|
|
|
and[y * cursor->width + x] = andMask;
|
|
|
|
xor[y * cursor->width + x] = xorMask;
|
|
|
|
}
|
|
|
|
|
2020-10-29 15:32:25 +00:00
|
|
|
egl_texture_setup (cursor->texture , EGL_PF_BGRA, cursor->width, cursor->height, cursor->width * 4, false, false);
|
|
|
|
egl_texture_setup (cursor->textureMono, EGL_PF_BGRA, cursor->width, cursor->height, cursor->width * 4, false, false);
|
2018-12-12 07:57:31 +00:00
|
|
|
egl_texture_update(cursor->texture , (uint8_t *)and);
|
|
|
|
egl_texture_update(cursor->textureMono, (uint8_t *)xor);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LG_UNLOCK(cursor->lock);
|
|
|
|
}
|
|
|
|
|
2019-10-09 08:48:42 +00:00
|
|
|
glEnable(GL_BLEND);
|
|
|
|
switch(cursor->type)
|
2018-12-12 07:57:31 +00:00
|
|
|
{
|
2019-10-09 08:48:42 +00:00
|
|
|
case LG_CURSOR_MONOCHROME:
|
|
|
|
{
|
|
|
|
egl_shader_use(cursor->shader);
|
|
|
|
glUniform4f(cursor->uMousePos, cursor->x, cursor->y, cursor->w, cursor->h / 2);
|
2020-11-08 19:59:54 +00:00
|
|
|
glUniform1i(cursor->uCBMode , cursor->cbMode);
|
2019-10-09 08:48:42 +00:00
|
|
|
glBlendFunc(GL_ZERO, GL_SRC_COLOR);
|
|
|
|
egl_model_set_texture(cursor->model, cursor->texture);
|
|
|
|
egl_model_render(cursor->model);
|
|
|
|
|
|
|
|
egl_shader_use(cursor->shaderMono);
|
|
|
|
glUniform4f(cursor->uMousePosMono, cursor->x, cursor->y, cursor->w, cursor->h / 2);
|
|
|
|
glBlendFunc(GL_ONE_MINUS_DST_COLOR, GL_ZERO);
|
|
|
|
egl_model_set_texture(cursor->model, cursor->textureMono);
|
|
|
|
egl_model_render(cursor->model);
|
|
|
|
break;
|
|
|
|
}
|
2018-12-12 14:39:52 +00:00
|
|
|
|
2019-10-09 08:48:42 +00:00
|
|
|
case LG_CURSOR_COLOR:
|
|
|
|
{
|
|
|
|
egl_shader_use(cursor->shader);
|
|
|
|
glUniform4f(cursor->uMousePos, cursor->x, cursor->y, cursor->w, cursor->h);
|
2020-11-08 19:59:54 +00:00
|
|
|
glUniform1i(cursor->uCBMode , cursor->cbMode);
|
2019-10-09 08:48:42 +00:00
|
|
|
glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
egl_model_render(cursor->model);
|
|
|
|
break;
|
|
|
|
}
|
2018-12-12 14:39:52 +00:00
|
|
|
|
2019-10-09 08:48:42 +00:00
|
|
|
case LG_CURSOR_MASKED_COLOR:
|
|
|
|
{
|
|
|
|
egl_shader_use(cursor->shaderMono);
|
|
|
|
glUniform4f(cursor->uMousePos, cursor->x, cursor->y, cursor->w, cursor->h);
|
|
|
|
glBlendFunc(GL_ONE_MINUS_DST_COLOR, GL_ZERO);
|
|
|
|
egl_model_render(cursor->model);
|
|
|
|
break;
|
|
|
|
}
|
2018-12-12 07:57:31 +00:00
|
|
|
}
|
2019-10-09 08:48:42 +00:00
|
|
|
glDisable(GL_BLEND);
|
2020-01-17 03:35:08 +00:00
|
|
|
}
|