2017-12-05 09:33:05 +00:00
|
|
|
/*
|
|
|
|
Looking Glass - KVM FrameRelay (KVMFR) Client
|
|
|
|
Copyright (C) 2017 Geoffrey McRae <geoff@hostfission.com>
|
2017-12-11 17:30:47 +00:00
|
|
|
https://looking-glass.hostfission.com
|
2017-12-05 09:33:05 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
the 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include <SDL2/SDL.h>
|
2017-12-14 11:05:32 +00:00
|
|
|
#include <SDL2/SDL_ttf.h>
|
2017-12-05 09:33:05 +00:00
|
|
|
|
|
|
|
#define IS_LG_RENDERER_VALID(x) \
|
2017-12-12 15:22:47 +00:00
|
|
|
((x)->get_name && \
|
|
|
|
(x)->initialize && \
|
2017-12-14 06:42:16 +00:00
|
|
|
(x)->configure && \
|
|
|
|
(x)->deconfigure && \
|
2017-12-12 15:22:47 +00:00
|
|
|
(x)->deinitialize && \
|
|
|
|
(x)->is_compatible && \
|
|
|
|
(x)->on_resize && \
|
2017-12-12 16:08:13 +00:00
|
|
|
(x)->on_mouse_shape && \
|
2017-12-12 15:22:47 +00:00
|
|
|
(x)->on_mouse_event && \
|
2017-12-05 09:33:05 +00:00
|
|
|
(x)->render)
|
|
|
|
|
|
|
|
typedef struct LG_RendererParams
|
|
|
|
{
|
2017-12-14 06:42:16 +00:00
|
|
|
TTF_Font * font;
|
|
|
|
bool showFPS;
|
|
|
|
bool resample;
|
2017-12-15 05:19:47 +00:00
|
|
|
bool vsync;
|
2017-12-05 09:33:05 +00:00
|
|
|
}
|
|
|
|
LG_RendererParams;
|
|
|
|
|
|
|
|
typedef struct LG_RendererFormat
|
|
|
|
{
|
|
|
|
unsigned int width; // image width
|
|
|
|
unsigned int height; // image height
|
|
|
|
unsigned int stride; // scanline width
|
|
|
|
unsigned int pitch; // scanline bytes
|
|
|
|
unsigned int bpp; // bits per pixel
|
|
|
|
}
|
|
|
|
LG_RendererFormat;
|
|
|
|
|
|
|
|
typedef struct LG_RendererRect
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
unsigned int w;
|
|
|
|
unsigned int h;
|
|
|
|
}
|
|
|
|
LG_RendererRect;
|
|
|
|
|
2017-12-12 16:08:13 +00:00
|
|
|
typedef enum LG_RendererCursor
|
|
|
|
{
|
|
|
|
LG_CURSOR_COLOR ,
|
|
|
|
LG_CURSOR_MONOCHROME ,
|
|
|
|
LG_CURSOR_MASKED_COLOR
|
|
|
|
}
|
|
|
|
LG_RendererCursor;
|
|
|
|
|
2017-12-12 15:22:47 +00:00
|
|
|
typedef const char * (* LG_RendererGetName )();
|
2017-12-14 06:42:16 +00:00
|
|
|
typedef bool (* LG_RendererInitialize )(void ** opaque, const LG_RendererParams params, Uint32 * sdlFlags);
|
|
|
|
typedef bool (* LG_RendererConfigure )(void * opaque, SDL_Window *window, const LG_RendererFormat format);
|
|
|
|
typedef void (* LG_RendererDeConfigure )(void * opaque);
|
2017-12-12 15:22:47 +00:00
|
|
|
typedef void (* LG_RendererDeInitialize )(void * opaque);
|
|
|
|
typedef bool (* LG_RendererIsCompatible )(void * opaque, const LG_RendererFormat format);
|
|
|
|
typedef void (* LG_RendererOnResize )(void * opaque, const int width, const int height, const LG_RendererRect destRect);
|
2017-12-12 17:49:43 +00:00
|
|
|
typedef bool (* LG_RendererOnMouseShape )(void * opaque, const LG_RendererCursor cursor, const int width, const int height, const int pitch, const uint8_t * data);
|
2017-12-12 15:22:47 +00:00
|
|
|
typedef bool (* LG_RendererOnMouseEvent )(void * opaque, const bool visible , const int x, const int y);
|
2017-12-13 23:06:22 +00:00
|
|
|
typedef bool (* LG_RendererOnFrameEvent )(void * opaque, const uint8_t * data);
|
2017-12-12 15:22:47 +00:00
|
|
|
typedef bool (* LG_RendererRender )(void * opaque);
|
2017-12-05 09:33:05 +00:00
|
|
|
|
|
|
|
typedef struct LG_Renderer
|
|
|
|
{
|
|
|
|
LG_RendererGetName get_name;
|
|
|
|
LG_RendererInitialize initialize;
|
2017-12-14 06:42:16 +00:00
|
|
|
LG_RendererConfigure configure;
|
|
|
|
LG_RendererDeConfigure deconfigure;
|
2017-12-05 09:33:05 +00:00
|
|
|
LG_RendererDeInitialize deinitialize;
|
|
|
|
LG_RendererIsCompatible is_compatible;
|
2017-12-10 14:31:52 +00:00
|
|
|
LG_RendererOnResize on_resize;
|
2017-12-12 16:08:13 +00:00
|
|
|
LG_RendererOnMouseShape on_mouse_shape;
|
2017-12-12 15:22:47 +00:00
|
|
|
LG_RendererOnMouseEvent on_mouse_event;
|
|
|
|
LG_RendererOnFrameEvent on_frame_event;
|
2017-12-05 09:33:05 +00:00
|
|
|
LG_RendererRender render;
|
|
|
|
}
|
2017-12-15 05:19:47 +00:00
|
|
|
LG_Renderer;
|