2017-12-05 09:33:05 +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>
|
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
|
|
|
|
2019-03-30 01:26:06 +00:00
|
|
|
#include "app.h"
|
2019-04-11 01:12:59 +00:00
|
|
|
#include "common/KVMFR.h"
|
2019-10-01 13:17:20 +00:00
|
|
|
#include "common/framebuffer.h"
|
2018-07-27 22:41:15 +00:00
|
|
|
|
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 && \
|
2017-12-17 11:21:59 +00:00
|
|
|
(x)->create && \
|
2017-12-12 15:22:47 +00:00
|
|
|
(x)->initialize && \
|
|
|
|
(x)->deinitialize && \
|
2020-08-11 04:30:44 +00:00
|
|
|
(x)->on_restart && \
|
2017-12-12 15:22:47 +00:00
|
|
|
(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 && \
|
2018-05-28 22:57:09 +00:00
|
|
|
(x)->on_alert && \
|
2018-07-28 04:49:37 +00:00
|
|
|
(x)->render_startup && \
|
2018-11-19 18:26:51 +00:00
|
|
|
(x)->render && \
|
|
|
|
(x)->update_fps)
|
2017-12-05 09:33:05 +00:00
|
|
|
|
|
|
|
typedef struct LG_RendererParams
|
|
|
|
{
|
2018-11-19 17:38:11 +00:00
|
|
|
// TTF_Font * font;
|
|
|
|
// TTF_Font * alertFont;
|
2017-12-17 11:21:59 +00:00
|
|
|
bool showFPS;
|
2020-07-19 04:29:29 +00:00
|
|
|
bool quickSplash;
|
2017-12-05 09:33:05 +00:00
|
|
|
}
|
|
|
|
LG_RendererParams;
|
|
|
|
|
|
|
|
typedef struct LG_RendererFormat
|
|
|
|
{
|
2018-07-27 22:41:15 +00:00
|
|
|
FrameType type; // frame type
|
|
|
|
unsigned int width; // image width
|
|
|
|
unsigned int height; // image height
|
|
|
|
unsigned int stride; // scanline width (zero if compresed)
|
|
|
|
unsigned int pitch; // scanline bytes (or compressed size)
|
|
|
|
unsigned int bpp; // bits per pixel (zero if compressed)
|
2017-12-05 09:33:05 +00:00
|
|
|
}
|
|
|
|
LG_RendererFormat;
|
|
|
|
|
|
|
|
typedef struct LG_RendererRect
|
|
|
|
{
|
2018-07-19 13:32:42 +00:00
|
|
|
bool valid;
|
2017-12-05 09:33:05 +00:00
|
|
|
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;
|
|
|
|
|
2019-05-21 05:03:59 +00:00
|
|
|
// returns the friendly name of the renderer
|
|
|
|
typedef const char * (* LG_RendererGetName)();
|
|
|
|
|
|
|
|
// called pre-creation to allow the renderer to register any options it might have
|
|
|
|
typedef void (* LG_RendererSetup)();
|
|
|
|
|
2020-10-12 08:43:29 +00:00
|
|
|
typedef bool (* LG_RendererCreate )(void ** opaque, const LG_RendererParams params);
|
|
|
|
typedef bool (* LG_RendererInitialize )(void * opaque, Uint32 * sdlFlags);
|
|
|
|
typedef void (* LG_RendererDeInitialize )(void * opaque);
|
|
|
|
typedef void (* LG_RendererOnRestart )(void * opaque);
|
|
|
|
typedef void (* LG_RendererOnResize )(void * opaque, const int width, const int height, const LG_RendererRect destRect);
|
|
|
|
typedef bool (* LG_RendererOnMouseShape )(void * opaque, const LG_RendererCursor cursor, const int width, const int height, const int pitch, const uint8_t * data);
|
|
|
|
typedef bool (* LG_RendererOnMouseEvent )(void * opaque, const bool visible , const int x, const int y);
|
|
|
|
typedef bool (* LG_RendererOnFrameFormat)(void * opaque, const LG_RendererFormat format);
|
|
|
|
typedef bool (* LG_RendererOnFrame )(void * opaque, const FrameBuffer * frame);
|
|
|
|
typedef void (* LG_RendererOnAlert )(void * opaque, const LG_MsgAlert alert, const char * message, bool ** closeFlag);
|
|
|
|
typedef bool (* LG_RendererRender )(void * opaque, SDL_Window *window);
|
|
|
|
typedef void (* LG_RendererUpdateFPS )(void * opaque, const float avgUPS, const float avgFPS);
|
2017-12-05 09:33:05 +00:00
|
|
|
|
|
|
|
typedef struct LG_Renderer
|
|
|
|
{
|
|
|
|
LG_RendererGetName get_name;
|
2019-05-21 05:03:59 +00:00
|
|
|
LG_RendererSetup setup;
|
|
|
|
|
2020-10-12 08:43:29 +00:00
|
|
|
LG_RendererCreate create;
|
|
|
|
LG_RendererInitialize initialize;
|
|
|
|
LG_RendererDeInitialize deinitialize;
|
|
|
|
LG_RendererOnRestart on_restart;
|
|
|
|
LG_RendererOnResize on_resize;
|
|
|
|
LG_RendererOnMouseShape on_mouse_shape;
|
|
|
|
LG_RendererOnMouseEvent on_mouse_event;
|
|
|
|
LG_RendererOnFrameFormat on_frame_format;
|
|
|
|
LG_RendererOnFrame on_frame;
|
|
|
|
LG_RendererOnAlert on_alert;
|
|
|
|
LG_RendererRender render_startup;
|
|
|
|
LG_RendererRender render;
|
|
|
|
LG_RendererUpdateFPS update_fps;
|
2017-12-05 09:33:05 +00:00
|
|
|
}
|
2020-05-21 01:44:56 +00:00
|
|
|
LG_Renderer;
|