2019-03-30 01:26:06 +00:00
|
|
|
/*
|
|
|
|
Looking Glass - KVM FrameRelay (KVMFR) Client
|
|
|
|
Copyright (C) 2017-2019 Geoffrey McRae <geoff@hostfission.com>
|
|
|
|
https://looking-glass.hostfission.com
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
|
|
|
|
#include "interface/app.h"
|
|
|
|
#include "dynamic/renderers.h"
|
|
|
|
#include "dynamic/clipboards.h"
|
2020-01-03 04:17:14 +00:00
|
|
|
#include "common/ivshmem.h"
|
2019-03-30 01:26:06 +00:00
|
|
|
|
|
|
|
#include "spice/spice.h"
|
2020-01-09 09:32:42 +00:00
|
|
|
#include <lgmp/client.h>
|
2019-03-30 01:26:06 +00:00
|
|
|
|
|
|
|
struct AppState
|
|
|
|
{
|
|
|
|
bool running;
|
|
|
|
bool ignoreInput;
|
|
|
|
bool escapeActive;
|
|
|
|
SDL_Scancode escapeAction;
|
|
|
|
KeybindHandle bindings[SDL_NUM_SCANCODES];
|
|
|
|
bool keyDown[SDL_NUM_SCANCODES];
|
|
|
|
|
|
|
|
bool haveSrcSize;
|
|
|
|
int windowW, windowH;
|
|
|
|
SDL_Point srcSize;
|
|
|
|
LG_RendererRect dstRect;
|
|
|
|
SDL_Point cursor;
|
|
|
|
bool cursorVisible;
|
|
|
|
bool haveCursorPos;
|
|
|
|
float scaleX, scaleY;
|
|
|
|
float accX, accY;
|
2020-01-10 16:41:44 +00:00
|
|
|
bool serverMode;
|
2019-03-30 01:26:06 +00:00
|
|
|
|
|
|
|
const LG_Renderer * lgr;
|
|
|
|
void * lgrData;
|
|
|
|
bool lgrResize;
|
|
|
|
|
|
|
|
const LG_Clipboard * lgc;
|
|
|
|
SpiceDataType cbType;
|
|
|
|
struct ll * cbRequestList;
|
|
|
|
|
2020-01-03 05:51:24 +00:00
|
|
|
SDL_SysWMinfo wminfo;
|
2019-03-30 01:26:06 +00:00
|
|
|
SDL_Window * window;
|
2020-01-03 04:17:14 +00:00
|
|
|
|
|
|
|
struct IVSHMEM shm;
|
2020-01-09 09:32:42 +00:00
|
|
|
PLGMPClient lgmp;
|
2020-01-10 00:00:46 +00:00
|
|
|
PLGMPClientQueue frameQueue;
|
|
|
|
PLGMPClientQueue pointerQueue;
|
2019-03-30 01:26:06 +00:00
|
|
|
|
|
|
|
uint64_t frameTime;
|
|
|
|
uint64_t lastFrameTime;
|
|
|
|
uint64_t renderTime;
|
|
|
|
uint64_t frameCount;
|
|
|
|
uint64_t renderCount;
|
|
|
|
|
2020-01-03 04:53:44 +00:00
|
|
|
|
|
|
|
uint64_t resizeTimeout;
|
|
|
|
bool resizeDone;
|
|
|
|
|
2019-03-30 01:26:06 +00:00
|
|
|
KeybindHandle kbFS;
|
|
|
|
KeybindHandle kbInput;
|
2019-05-23 19:29:38 +00:00
|
|
|
KeybindHandle kbMouseSensInc;
|
|
|
|
KeybindHandle kbMouseSensDec;
|
2019-05-31 06:39:55 +00:00
|
|
|
KeybindHandle kbCtrlAltFn[12];
|
2019-05-23 19:29:38 +00:00
|
|
|
|
|
|
|
int mouseSens;
|
|
|
|
float sensX, sensY;
|
2019-03-30 01:26:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct AppParams
|
|
|
|
{
|
|
|
|
bool autoResize;
|
|
|
|
bool allowResize;
|
|
|
|
bool keepAspect;
|
2020-01-03 04:53:44 +00:00
|
|
|
bool forceAspect;
|
2019-03-30 01:26:06 +00:00
|
|
|
bool borderless;
|
|
|
|
bool fullscreen;
|
2019-05-26 06:30:24 +00:00
|
|
|
bool maximize;
|
2019-07-01 07:53:12 +00:00
|
|
|
bool minimizeOnFocusLoss;
|
2019-03-30 01:26:06 +00:00
|
|
|
bool center;
|
|
|
|
int x, y;
|
|
|
|
unsigned int w, h;
|
|
|
|
unsigned int fpsLimit;
|
|
|
|
bool showFPS;
|
|
|
|
bool useSpiceInput;
|
|
|
|
bool useSpiceClipboard;
|
2019-05-21 05:03:59 +00:00
|
|
|
const char * spiceHost;
|
2019-03-30 01:26:06 +00:00
|
|
|
unsigned int spicePort;
|
|
|
|
bool clipboardToVM;
|
|
|
|
bool clipboardToLocal;
|
|
|
|
bool scaleMouseInput;
|
|
|
|
bool hideMouse;
|
|
|
|
bool ignoreQuit;
|
2019-05-21 05:03:59 +00:00
|
|
|
bool noScreensaver;
|
2019-03-30 01:26:06 +00:00
|
|
|
bool grabKeyboard;
|
|
|
|
SDL_Scancode escapeKey;
|
2019-05-21 05:03:59 +00:00
|
|
|
bool showAlerts;
|
2019-03-30 01:26:06 +00:00
|
|
|
|
2019-05-22 02:00:06 +00:00
|
|
|
unsigned int cursorPollInterval;
|
|
|
|
unsigned int framePollInterval;
|
|
|
|
|
2019-03-30 01:26:06 +00:00
|
|
|
bool forceRenderer;
|
|
|
|
unsigned int forceRendererIndex;
|
|
|
|
|
2019-05-21 05:03:59 +00:00
|
|
|
const char * windowTitle;
|
2019-05-23 19:29:38 +00:00
|
|
|
int mouseSens;
|
2019-03-30 01:26:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CBRequest
|
|
|
|
{
|
|
|
|
SpiceDataType type;
|
|
|
|
LG_ClipboardReplyFn replyFn;
|
|
|
|
void * opaque;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct KeybindHandle
|
|
|
|
{
|
|
|
|
SDL_Scancode key;
|
|
|
|
SuperEventFn callback;
|
|
|
|
void * opaque;
|
|
|
|
};
|
|
|
|
|
|
|
|
// forwards
|
|
|
|
extern struct AppState state;
|
2019-08-30 01:50:43 +00:00
|
|
|
extern struct AppParams params;
|