2021-06-06 01:26:18 +00:00
|
|
|
/**
|
|
|
|
* Looking Glass
|
2022-01-05 08:42:46 +00:00
|
|
|
* Copyright © 2017-2022 The Looking Glass Authors
|
2021-06-06 01:26:18 +00:00
|
|
|
* https://looking-glass.io
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
2019-03-30 01:26:06 +00:00
|
|
|
|
2021-01-25 08:58:36 +00:00
|
|
|
#include "app.h"
|
|
|
|
|
2019-03-30 01:26:06 +00:00
|
|
|
#include "main.h"
|
2021-01-25 08:58:36 +00:00
|
|
|
#include "core.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "clipboard.h"
|
|
|
|
|
|
|
|
#include "ll.h"
|
|
|
|
#include "kb.h"
|
|
|
|
|
2019-04-11 01:12:59 +00:00
|
|
|
#include "common/debug.h"
|
2021-02-21 14:39:56 +00:00
|
|
|
#include "common/stringutils.h"
|
2021-07-22 07:27:30 +00:00
|
|
|
#include "interface/overlay.h"
|
|
|
|
#include "overlays.h"
|
2021-01-26 10:46:30 +00:00
|
|
|
|
2021-07-08 01:45:54 +00:00
|
|
|
#include "cimgui.h"
|
|
|
|
|
2019-03-30 01:26:06 +00:00
|
|
|
#include <stdarg.h>
|
2021-01-26 10:46:30 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
2019-03-30 01:26:06 +00:00
|
|
|
|
2021-07-23 09:58:33 +00:00
|
|
|
#define ALERT_TIMEOUT 2000000
|
|
|
|
|
2021-01-26 23:40:39 +00:00
|
|
|
bool app_isRunning(void)
|
2019-03-30 01:26:06 +00:00
|
|
|
{
|
2021-01-26 23:40:39 +00:00
|
|
|
return
|
|
|
|
g_state.state == APP_STATE_RUNNING ||
|
|
|
|
g_state.state == APP_STATE_RESTART;
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
2021-05-03 20:35:36 +00:00
|
|
|
bool app_isCaptureMode(void)
|
|
|
|
{
|
|
|
|
return g_cursor.grab;
|
|
|
|
}
|
|
|
|
|
2021-05-04 00:16:51 +00:00
|
|
|
bool app_isCaptureOnlyMode(void)
|
|
|
|
{
|
|
|
|
return g_params.captureInputOnly;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool app_isFormatValid(void)
|
|
|
|
{
|
|
|
|
return g_state.formatValid;
|
|
|
|
}
|
|
|
|
|
2021-08-14 04:18:43 +00:00
|
|
|
bool app_isOverlayMode(void)
|
|
|
|
{
|
|
|
|
return g_state.overlayInput;
|
|
|
|
}
|
|
|
|
|
2021-01-25 08:58:36 +00:00
|
|
|
void app_updateCursorPos(double x, double y)
|
|
|
|
{
|
|
|
|
g_cursor.pos.x = x;
|
|
|
|
g_cursor.pos.y = y;
|
|
|
|
g_cursor.valid = true;
|
2021-07-26 21:27:47 +00:00
|
|
|
|
|
|
|
if (g_state.overlayInput)
|
2021-07-30 01:46:50 +00:00
|
|
|
g_state.io->MousePos = (ImVec2) { x, y };
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void app_handleFocusEvent(bool focused)
|
|
|
|
{
|
|
|
|
g_state.focused = focused;
|
2021-07-31 06:40:14 +00:00
|
|
|
|
2021-07-31 10:51:08 +00:00
|
|
|
// release any imgui buttons/keys if we lost focus
|
2021-07-31 06:40:14 +00:00
|
|
|
if (!focused && g_state.overlayInput)
|
2021-07-31 10:51:08 +00:00
|
|
|
core_resetOverlayInputState();
|
2021-07-31 06:40:14 +00:00
|
|
|
|
2021-01-28 18:13:26 +00:00
|
|
|
if (!core_inputEnabled())
|
2021-05-06 12:24:42 +00:00
|
|
|
{
|
2021-05-28 09:32:26 +00:00
|
|
|
if (!focused && g_params.minimizeOnFocusLoss && app_getFullscreen())
|
2021-05-06 12:24:42 +00:00
|
|
|
g_state.ds->minimize();
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
2021-05-06 12:24:42 +00:00
|
|
|
}
|
2021-01-25 08:58:36 +00:00
|
|
|
|
|
|
|
if (!focused)
|
|
|
|
{
|
|
|
|
core_setGrabQuiet(false);
|
|
|
|
core_setCursorInView(false);
|
2021-02-13 07:19:01 +00:00
|
|
|
|
|
|
|
if (g_params.releaseKeysOnFocusLoss)
|
|
|
|
for (int key = 0; key < KEY_MAX; key++)
|
|
|
|
if (g_state.keyDown[key])
|
|
|
|
app_handleKeyRelease(key);
|
2021-04-29 02:50:43 +00:00
|
|
|
|
2021-07-31 01:16:07 +00:00
|
|
|
g_state.escapeActive = false;
|
|
|
|
|
2021-04-29 02:50:43 +00:00
|
|
|
if (!g_params.showCursorDot)
|
2021-07-29 20:31:07 +00:00
|
|
|
g_state.ds->setPointer(LG_POINTER_NONE);
|
2021-05-06 12:24:42 +00:00
|
|
|
|
|
|
|
if (g_params.minimizeOnFocusLoss)
|
|
|
|
g_state.ds->minimize();
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 13:19:59 +00:00
|
|
|
g_cursor.realign = true;
|
2021-01-25 08:58:36 +00:00
|
|
|
g_state.ds->realignPointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_handleEnterEvent(bool entered)
|
|
|
|
{
|
|
|
|
if (entered)
|
|
|
|
{
|
|
|
|
g_cursor.inWindow = true;
|
2021-01-28 18:13:26 +00:00
|
|
|
if (!core_inputEnabled())
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
|
2021-08-19 13:19:59 +00:00
|
|
|
g_cursor.realign = true;
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_cursor.inWindow = false;
|
|
|
|
core_setCursorInView(false);
|
|
|
|
|
2021-07-31 06:40:14 +00:00
|
|
|
// stop the user being able to drag windows off the screen and work around
|
|
|
|
// the mouse button release being missed due to not being in capture mode.
|
|
|
|
if (g_state.overlayInput)
|
|
|
|
{
|
|
|
|
g_state.io->MouseDown[ImGuiMouseButton_Left ] = false;
|
|
|
|
g_state.io->MouseDown[ImGuiMouseButton_Right ] = false;
|
|
|
|
g_state.io->MouseDown[ImGuiMouseButton_Middle] = false;
|
|
|
|
}
|
|
|
|
|
2021-01-28 18:13:26 +00:00
|
|
|
if (!core_inputEnabled())
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!g_params.alwaysShowCursor)
|
|
|
|
g_cursor.draw = false;
|
|
|
|
g_cursor.redraw = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_clipboardRelease(void)
|
|
|
|
{
|
|
|
|
if (!g_params.clipboardToVM)
|
|
|
|
return;
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
purespice_clipboardRelease();
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
2021-05-30 01:37:15 +00:00
|
|
|
void app_clipboardNotifyTypes(const LG_ClipboardData types[], int count)
|
|
|
|
{
|
2021-06-02 12:09:09 +00:00
|
|
|
if (!g_params.clipboardToVM)
|
|
|
|
return;
|
|
|
|
|
2021-05-30 01:37:15 +00:00
|
|
|
if (count == 0)
|
|
|
|
{
|
2021-12-28 11:03:48 +00:00
|
|
|
purespice_clipboardRelease();
|
2021-05-30 01:37:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
PSDataType conv[count];
|
2021-05-30 01:37:15 +00:00
|
|
|
for(int i = 0; i < count; ++i)
|
|
|
|
conv[i] = cb_lgTypeToSpiceType(types[i]);
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
purespice_clipboardGrab(conv, count);
|
2021-05-30 01:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void app_clipboardNotifySize(const LG_ClipboardData type, size_t size)
|
2021-01-25 08:58:36 +00:00
|
|
|
{
|
|
|
|
if (!g_params.clipboardToVM)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (type == LG_CLIPBOARD_DATA_NONE)
|
|
|
|
{
|
2021-12-28 11:03:48 +00:00
|
|
|
purespice_clipboardRelease();
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_state.cbType = cb_lgTypeToSpiceType(type);
|
|
|
|
g_state.cbChunked = size > 0;
|
|
|
|
g_state.cbXfer = size;
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
purespice_clipboardDataStart(g_state.cbType, size);
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void app_clipboardData(const LG_ClipboardData type, uint8_t * data, size_t size)
|
|
|
|
{
|
|
|
|
if (!g_params.clipboardToVM)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (g_state.cbChunked && size > g_state.cbXfer)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("refusing to send more then cbXfer bytes for chunked xfer");
|
|
|
|
size = g_state.cbXfer;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g_state.cbChunked)
|
2021-12-28 11:03:48 +00:00
|
|
|
purespice_clipboardDataStart(g_state.cbType, size);
|
2021-01-25 08:58:36 +00:00
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
purespice_clipboardData(g_state.cbType, data, (uint32_t)size);
|
2021-01-25 08:58:36 +00:00
|
|
|
g_state.cbXfer -= size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_clipboardRequest(const LG_ClipboardReplyFn replyFn, void * opaque)
|
|
|
|
{
|
|
|
|
if (!g_params.clipboardToLocal)
|
|
|
|
return;
|
|
|
|
|
2021-08-15 22:55:19 +00:00
|
|
|
struct CBRequest * cbr = malloc(sizeof(*cbr));
|
2021-01-25 08:58:36 +00:00
|
|
|
|
|
|
|
cbr->type = g_state.cbType;
|
|
|
|
cbr->replyFn = replyFn;
|
|
|
|
cbr->opaque = opaque;
|
|
|
|
ll_push(g_state.cbRequestList, cbr);
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
purespice_clipboardRequest(g_state.cbType);
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
2021-07-26 21:27:47 +00:00
|
|
|
static int mapSpiceToImGuiButton(uint32_t button)
|
|
|
|
{
|
|
|
|
switch (button)
|
|
|
|
{
|
|
|
|
case 1: // SPICE_MOUSE_BUTTON_LEFT
|
|
|
|
return ImGuiMouseButton_Left;
|
|
|
|
case 2: // SPICE_MOUSE_BUTTON_MIDDLE
|
|
|
|
return ImGuiMouseButton_Middle;
|
|
|
|
case 3: // SPICE_MOUSE_BUTTON_RIGHT
|
|
|
|
return ImGuiMouseButton_Right;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-01-25 08:58:36 +00:00
|
|
|
void app_handleButtonPress(int button)
|
|
|
|
{
|
2021-02-01 22:36:01 +00:00
|
|
|
g_cursor.buttons |= (1U << button);
|
|
|
|
|
2021-07-26 21:27:47 +00:00
|
|
|
if (g_state.overlayInput)
|
|
|
|
{
|
|
|
|
int igButton = mapSpiceToImGuiButton(button);
|
|
|
|
if (igButton != -1)
|
|
|
|
g_state.io->MouseDown[igButton] = true;
|
2021-07-29 09:29:33 +00:00
|
|
|
return;
|
2021-07-26 21:27:47 +00:00
|
|
|
}
|
|
|
|
|
2021-01-28 18:13:26 +00:00
|
|
|
if (!core_inputEnabled() || !g_cursor.inView)
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
if (!purespice_mousePress(button))
|
2021-01-26 10:46:30 +00:00
|
|
|
DEBUG_ERROR("app_handleButtonPress: failed to send message");
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void app_handleButtonRelease(int button)
|
|
|
|
{
|
2021-02-01 22:36:01 +00:00
|
|
|
g_cursor.buttons &= ~(1U << button);
|
|
|
|
|
2021-07-26 21:27:47 +00:00
|
|
|
if (g_state.overlayInput)
|
|
|
|
{
|
|
|
|
int igButton = mapSpiceToImGuiButton(button);
|
|
|
|
if (igButton != -1)
|
|
|
|
g_state.io->MouseDown[igButton] = false;
|
2021-07-29 09:29:33 +00:00
|
|
|
return;
|
2021-07-26 21:27:47 +00:00
|
|
|
}
|
|
|
|
|
2021-01-28 18:13:26 +00:00
|
|
|
if (!core_inputEnabled())
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
if (!purespice_mouseRelease(button))
|
2021-01-26 10:46:30 +00:00
|
|
|
DEBUG_ERROR("app_handleButtonRelease: failed to send message");
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
2021-07-30 11:01:37 +00:00
|
|
|
void app_handleWheelMotion(double motion)
|
|
|
|
{
|
|
|
|
if (g_state.overlayInput)
|
|
|
|
g_state.io->MouseWheel -= motion;
|
|
|
|
}
|
|
|
|
|
2021-01-25 08:58:36 +00:00
|
|
|
void app_handleKeyPress(int sc)
|
|
|
|
{
|
2021-07-31 05:55:58 +00:00
|
|
|
if (!g_state.overlayInput || !g_state.io->WantCaptureKeyboard)
|
2021-01-25 08:58:36 +00:00
|
|
|
{
|
2021-07-31 05:55:58 +00:00
|
|
|
if (sc == g_params.escapeKey && !g_state.escapeActive)
|
|
|
|
{
|
|
|
|
g_state.escapeActive = true;
|
|
|
|
g_state.escapeTime = microtime();
|
|
|
|
g_state.escapeAction = -1;
|
|
|
|
return;
|
|
|
|
}
|
2021-01-25 08:58:36 +00:00
|
|
|
|
2021-07-31 05:55:58 +00:00
|
|
|
if (g_state.escapeActive)
|
|
|
|
{
|
|
|
|
g_state.escapeAction = sc;
|
|
|
|
return;
|
|
|
|
}
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
2021-07-26 21:36:23 +00:00
|
|
|
if (g_state.overlayInput)
|
|
|
|
{
|
2021-07-31 10:51:38 +00:00
|
|
|
if (sc == KEY_ESC)
|
|
|
|
app_setOverlay(false);
|
|
|
|
else
|
|
|
|
g_state.io->KeysDown[sc] = true;
|
2021-07-29 09:29:33 +00:00
|
|
|
return;
|
2021-07-26 21:36:23 +00:00
|
|
|
}
|
|
|
|
|
2021-01-28 18:13:26 +00:00
|
|
|
if (!core_inputEnabled())
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (g_params.ignoreWindowsKeys && (sc == KEY_LEFTMETA || sc == KEY_RIGHTMETA))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!g_state.keyDown[sc])
|
|
|
|
{
|
2021-08-17 08:41:21 +00:00
|
|
|
uint32_t ps2 = linux_to_ps2[sc];
|
2021-01-25 08:58:36 +00:00
|
|
|
if (!ps2)
|
|
|
|
return;
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
if (purespice_keyDown(ps2))
|
2021-01-25 08:58:36 +00:00
|
|
|
g_state.keyDown[sc] = true;
|
|
|
|
else
|
|
|
|
{
|
2021-01-26 10:46:30 +00:00
|
|
|
DEBUG_ERROR("app_handleKeyPress: failed to send message");
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_handleKeyRelease(int sc)
|
|
|
|
{
|
|
|
|
if (g_state.escapeActive)
|
|
|
|
{
|
|
|
|
if (g_state.escapeAction == -1)
|
|
|
|
{
|
2021-07-29 09:29:33 +00:00
|
|
|
if (!g_state.escapeHelp && g_params.useSpiceInput && !g_state.overlayInput)
|
2021-01-25 08:58:36 +00:00
|
|
|
core_setGrab(!g_cursor.grab);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
KeybindHandle handle = g_state.bindings[sc];
|
|
|
|
if (handle)
|
|
|
|
{
|
|
|
|
handle->callback(sc, handle->opaque);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc == g_params.escapeKey)
|
|
|
|
g_state.escapeActive = false;
|
|
|
|
}
|
|
|
|
|
2021-07-26 21:36:23 +00:00
|
|
|
if (g_state.overlayInput)
|
|
|
|
{
|
|
|
|
g_state.io->KeysDown[sc] = false;
|
2021-07-29 09:29:33 +00:00
|
|
|
return;
|
2021-07-26 21:36:23 +00:00
|
|
|
}
|
|
|
|
|
2021-07-31 05:41:21 +00:00
|
|
|
if (!core_inputEnabled())
|
|
|
|
return;
|
|
|
|
|
2021-01-25 08:58:36 +00:00
|
|
|
// avoid sending key up events when we didn't send a down
|
|
|
|
if (!g_state.keyDown[sc])
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (g_params.ignoreWindowsKeys && (sc == KEY_LEFTMETA || sc == KEY_RIGHTMETA))
|
|
|
|
return;
|
|
|
|
|
2021-08-17 08:41:21 +00:00
|
|
|
uint32_t ps2 = linux_to_ps2[sc];
|
2021-01-25 08:58:36 +00:00
|
|
|
if (!ps2)
|
|
|
|
return;
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
if (purespice_keyUp(ps2))
|
2021-01-25 08:58:36 +00:00
|
|
|
g_state.keyDown[sc] = false;
|
|
|
|
else
|
|
|
|
{
|
2021-01-26 10:46:30 +00:00
|
|
|
DEBUG_ERROR("app_handleKeyRelease: failed to send message");
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-14 04:18:43 +00:00
|
|
|
void app_handleKeyboardTyped(const char * typed)
|
|
|
|
{
|
|
|
|
ImGuiIO_AddInputCharactersUTF8(g_state.io, typed);
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_handleKeyboardModifiers(bool ctrl, bool shift, bool alt, bool super)
|
|
|
|
{
|
2021-08-19 19:57:20 +00:00
|
|
|
g_state.modCtrl = ctrl;
|
|
|
|
g_state.modShift = shift;
|
|
|
|
g_state.modAlt = alt;
|
|
|
|
g_state.modSuper = super;
|
2021-08-14 04:18:43 +00:00
|
|
|
}
|
|
|
|
|
2021-08-14 10:14:09 +00:00
|
|
|
void app_handleKeyboardLEDs(bool numLock, bool capsLock, bool scrollLock)
|
|
|
|
{
|
2021-08-15 22:11:36 +00:00
|
|
|
if (!core_inputEnabled())
|
|
|
|
return;
|
|
|
|
|
2021-08-14 10:14:09 +00:00
|
|
|
uint32_t modifiers =
|
|
|
|
(scrollLock ? 1 /* SPICE_SCROLL_LOCK_MODIFIER */ : 0) |
|
|
|
|
(numLock ? 2 /* SPICE_NUM_LOCK_MODIFIER */ : 0) |
|
|
|
|
(capsLock ? 4 /* SPICE_CAPS_LOCK_MODIFIER */ : 0);
|
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
if (!purespice_keyModifiers(modifiers))
|
2021-08-14 10:14:09 +00:00
|
|
|
DEBUG_ERROR("app_handleKeyboardLEDs: failed to send message");
|
|
|
|
}
|
|
|
|
|
2021-01-29 04:02:29 +00:00
|
|
|
void app_handleMouseRelative(double normx, double normy,
|
2021-01-28 18:13:26 +00:00
|
|
|
double rawx, double rawy)
|
2021-01-25 08:58:36 +00:00
|
|
|
{
|
2021-07-29 09:29:33 +00:00
|
|
|
if (g_state.overlayInput)
|
|
|
|
return;
|
|
|
|
|
2021-01-28 18:13:26 +00:00
|
|
|
if (g_cursor.grab)
|
2021-01-25 08:58:36 +00:00
|
|
|
{
|
2021-01-28 18:13:26 +00:00
|
|
|
if (g_params.rawMouse)
|
|
|
|
core_handleMouseGrabbed(rawx, rawy);
|
|
|
|
else
|
|
|
|
core_handleMouseGrabbed(normx, normy);
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
else
|
2021-01-28 18:13:26 +00:00
|
|
|
if (g_cursor.inWindow)
|
|
|
|
core_handleMouseNormal(normx, normy);
|
2021-01-25 08:58:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// On some display servers normal cursor logic does not work due to the lack of
|
|
|
|
// cursor warp support. Instead, we attempt a best-effort emulation which works
|
|
|
|
// with a 1:1 mouse movement patch applied in the guest. For anything fancy, use
|
|
|
|
// capture mode.
|
|
|
|
void app_handleMouseBasic()
|
|
|
|
{
|
|
|
|
/* do not pass mouse events to the guest if we do not have focus */
|
2021-07-29 09:29:33 +00:00
|
|
|
if (!g_cursor.guest.valid || !g_state.haveSrcSize || !g_state.focused || g_state.overlayInput)
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
|
2021-01-28 18:13:26 +00:00
|
|
|
if (!core_inputEnabled())
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
const bool inView =
|
|
|
|
g_cursor.pos.x >= g_state.dstRect.x &&
|
|
|
|
g_cursor.pos.x < g_state.dstRect.x + g_state.dstRect.w &&
|
|
|
|
g_cursor.pos.y >= g_state.dstRect.y &&
|
|
|
|
g_cursor.pos.y < g_state.dstRect.y + g_state.dstRect.h;
|
|
|
|
|
|
|
|
core_setCursorInView(inView);
|
|
|
|
|
[client] spice/wayland: improve cursor tracking logic
One of the major issues with the old tracking code is a data race
between the cursor thread updating g_cursor.guest and the
app_handleMouseBasic function. Specifically, the latter may have
sent mouse input via spice that has not been processed by the guest
and updated g_cursor.guest, but the guest may overwrite g_cursor.guest
to a previous state before the input is processed. This causes some
movements to be doubled. Eventually, the cursor positions will
synchronize, but this nevertheless causes a lot of jitter.
In this commit, we introduce a new field g_cursor.projected, which
is unambiguously the position of the cursor after taking into account
all the input already sent via spice. This is synced up to the guest
cursor upon entering the window and when the host restarts. Afterwards,
all mouse movements will be based on this position. This eliminates
all cursor jitter as far as I could tell.
Also, the cursor is now synced to the host position when exiting
capture mode.
A downside of this commit is that if the 1:1 movement patch is not
correctly applied, the cursor position would be wildly off instead
of simply jittering, but that is an unsupported configuration and
should not matter.
Also unsupported is when an application in guest moves the cursor
programmatically and bypassing spice. When using those applications,
capture mode must be on. Before this commit, we try to move the guest
cursor back to where it should be, but it's inherently fragile and
may lead to scenarios such as wild movements in first-person shooters.
2021-01-21 02:05:50 +00:00
|
|
|
/* translate the current position to guest coordinate space */
|
|
|
|
struct DoublePoint guest;
|
|
|
|
util_localCurToGuest(&guest);
|
2021-01-25 08:58:36 +00:00
|
|
|
|
2021-05-03 19:14:33 +00:00
|
|
|
int x = (int) round(util_clamp(guest.x, 0, g_state.srcSize.x) -
|
|
|
|
g_cursor.projected.x);
|
|
|
|
int y = (int) round(util_clamp(guest.y, 0, g_state.srcSize.y) -
|
|
|
|
g_cursor.projected.y);
|
2021-01-25 08:58:36 +00:00
|
|
|
|
|
|
|
if (!x && !y)
|
|
|
|
return;
|
|
|
|
|
[client] spice/wayland: improve cursor tracking logic
One of the major issues with the old tracking code is a data race
between the cursor thread updating g_cursor.guest and the
app_handleMouseBasic function. Specifically, the latter may have
sent mouse input via spice that has not been processed by the guest
and updated g_cursor.guest, but the guest may overwrite g_cursor.guest
to a previous state before the input is processed. This causes some
movements to be doubled. Eventually, the cursor positions will
synchronize, but this nevertheless causes a lot of jitter.
In this commit, we introduce a new field g_cursor.projected, which
is unambiguously the position of the cursor after taking into account
all the input already sent via spice. This is synced up to the guest
cursor upon entering the window and when the host restarts. Afterwards,
all mouse movements will be based on this position. This eliminates
all cursor jitter as far as I could tell.
Also, the cursor is now synced to the host position when exiting
capture mode.
A downside of this commit is that if the 1:1 movement patch is not
correctly applied, the cursor position would be wildly off instead
of simply jittering, but that is an unsupported configuration and
should not matter.
Also unsupported is when an application in guest moves the cursor
programmatically and bypassing spice. When using those applications,
capture mode must be on. Before this commit, we try to move the guest
cursor back to where it should be, but it's inherently fragile and
may lead to scenarios such as wild movements in first-person shooters.
2021-01-21 02:05:50 +00:00
|
|
|
g_cursor.projected.x += x;
|
|
|
|
g_cursor.projected.y += y;
|
2021-01-25 08:58:36 +00:00
|
|
|
|
2021-12-28 11:03:48 +00:00
|
|
|
if (!purespice_mouseMotion(x, y))
|
2021-01-25 08:58:36 +00:00
|
|
|
DEBUG_ERROR("failed to send mouse motion message");
|
|
|
|
}
|
|
|
|
|
[client] spice/wayland: improve cursor tracking logic
One of the major issues with the old tracking code is a data race
between the cursor thread updating g_cursor.guest and the
app_handleMouseBasic function. Specifically, the latter may have
sent mouse input via spice that has not been processed by the guest
and updated g_cursor.guest, but the guest may overwrite g_cursor.guest
to a previous state before the input is processed. This causes some
movements to be doubled. Eventually, the cursor positions will
synchronize, but this nevertheless causes a lot of jitter.
In this commit, we introduce a new field g_cursor.projected, which
is unambiguously the position of the cursor after taking into account
all the input already sent via spice. This is synced up to the guest
cursor upon entering the window and when the host restarts. Afterwards,
all mouse movements will be based on this position. This eliminates
all cursor jitter as far as I could tell.
Also, the cursor is now synced to the host position when exiting
capture mode.
A downside of this commit is that if the 1:1 movement patch is not
correctly applied, the cursor position would be wildly off instead
of simply jittering, but that is an unsupported configuration and
should not matter.
Also unsupported is when an application in guest moves the cursor
programmatically and bypassing spice. When using those applications,
capture mode must be on. Before this commit, we try to move the guest
cursor back to where it should be, but it's inherently fragile and
may lead to scenarios such as wild movements in first-person shooters.
2021-01-21 02:05:50 +00:00
|
|
|
void app_resyncMouseBasic()
|
|
|
|
{
|
|
|
|
if (!g_cursor.guest.valid)
|
|
|
|
return;
|
|
|
|
g_cursor.projected.x = g_cursor.guest.x + g_cursor.guest.hx;
|
|
|
|
g_cursor.projected.y = g_cursor.guest.y + g_cursor.guest.hy;
|
|
|
|
}
|
|
|
|
|
2021-01-25 08:58:36 +00:00
|
|
|
void app_updateWindowPos(int x, int y)
|
|
|
|
{
|
|
|
|
g_state.windowPos.x = x;
|
|
|
|
g_state.windowPos.y = y;
|
|
|
|
}
|
|
|
|
|
2021-02-21 05:08:52 +00:00
|
|
|
void app_handleResizeEvent(int w, int h, double scale, const struct Border border)
|
2021-01-25 08:58:36 +00:00
|
|
|
{
|
2021-01-25 11:23:53 +00:00
|
|
|
memcpy(&g_state.border, &border, sizeof(border));
|
2021-01-25 08:58:36 +00:00
|
|
|
|
|
|
|
/* don't do anything else if the window dimensions have not changed */
|
2021-02-21 05:08:52 +00:00
|
|
|
if (g_state.windowW == w && g_state.windowH == h && g_state.windowScale == scale)
|
2021-01-25 08:58:36 +00:00
|
|
|
return;
|
|
|
|
|
2021-02-21 05:08:52 +00:00
|
|
|
g_state.windowW = w;
|
|
|
|
g_state.windowH = h;
|
|
|
|
g_state.windowCX = w / 2;
|
|
|
|
g_state.windowCY = h / 2;
|
|
|
|
g_state.windowScale = scale;
|
2021-01-25 08:58:36 +00:00
|
|
|
core_updatePositionInfo();
|
|
|
|
|
2021-01-28 18:13:26 +00:00
|
|
|
if (core_inputEnabled())
|
2021-01-25 08:58:36 +00:00
|
|
|
{
|
|
|
|
/* if the window is moved/resized causing a loss of focus while grabbed, it
|
|
|
|
* makes it impossible to re-focus the window, so we quietly re-enter
|
|
|
|
* capture if we were already in it */
|
|
|
|
if (g_cursor.grab)
|
|
|
|
{
|
|
|
|
core_setGrabQuiet(false);
|
|
|
|
core_setGrabQuiet(true);
|
|
|
|
}
|
|
|
|
core_alignToGuest();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-04 20:47:36 +00:00
|
|
|
void app_invalidateWindow(bool full)
|
2021-07-25 05:29:29 +00:00
|
|
|
{
|
2021-08-04 20:47:36 +00:00
|
|
|
if (full)
|
|
|
|
atomic_store(&g_state.invalidateWindow, true);
|
2021-07-25 05:29:29 +00:00
|
|
|
lgSignalEvent(g_state.frameEvent);
|
|
|
|
}
|
|
|
|
|
2021-01-25 08:58:36 +00:00
|
|
|
void app_handleCloseEvent(void)
|
|
|
|
{
|
|
|
|
if (!g_params.ignoreQuit || !g_cursor.inView)
|
|
|
|
g_state.state = APP_STATE_SHUTDOWN;
|
|
|
|
}
|
2021-01-26 10:46:30 +00:00
|
|
|
|
2021-02-25 23:21:56 +00:00
|
|
|
void app_handleRenderEvent(const uint64_t timeUs)
|
|
|
|
{
|
2021-08-01 08:04:43 +00:00
|
|
|
bool invalidate = false;
|
2021-02-25 23:21:56 +00:00
|
|
|
if (!g_state.escapeActive)
|
|
|
|
{
|
|
|
|
if (g_state.escapeHelp)
|
|
|
|
{
|
|
|
|
g_state.escapeHelp = false;
|
2021-08-01 08:04:43 +00:00
|
|
|
invalidate = true;
|
2021-02-25 23:21:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-05-01 01:44:13 +00:00
|
|
|
if (!g_state.escapeHelp && timeUs - g_state.escapeTime > g_params.helpMenuDelayUs)
|
2021-02-25 23:21:56 +00:00
|
|
|
{
|
|
|
|
g_state.escapeHelp = true;
|
2021-08-01 08:04:43 +00:00
|
|
|
invalidate = true;
|
2021-02-25 23:21:56 +00:00
|
|
|
}
|
|
|
|
}
|
2021-08-01 08:04:43 +00:00
|
|
|
|
|
|
|
if (g_state.alertShow)
|
|
|
|
if (g_state.alertTimeout < timeUs)
|
|
|
|
{
|
|
|
|
g_state.alertShow = false;
|
|
|
|
free(g_state.alertMessage);
|
|
|
|
g_state.alertMessage = NULL;
|
|
|
|
invalidate = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (invalidate)
|
2021-08-04 20:47:36 +00:00
|
|
|
app_invalidateWindow(false);
|
2021-02-25 23:21:56 +00:00
|
|
|
}
|
|
|
|
|
2021-01-26 10:46:30 +00:00
|
|
|
void app_setFullscreen(bool fs)
|
|
|
|
{
|
|
|
|
g_state.ds->setFullscreen(fs);
|
|
|
|
}
|
|
|
|
|
2021-01-27 00:11:53 +00:00
|
|
|
bool app_getFullscreen(void)
|
|
|
|
{
|
|
|
|
return g_state.ds->getFullscreen();
|
|
|
|
}
|
|
|
|
|
2021-01-26 23:40:39 +00:00
|
|
|
bool app_getProp(LG_DSProperty prop, void * ret)
|
|
|
|
{
|
|
|
|
return g_state.ds->getProp(prop, ret);
|
|
|
|
}
|
|
|
|
|
2021-01-27 08:20:13 +00:00
|
|
|
#ifdef ENABLE_EGL
|
2021-01-26 23:40:39 +00:00
|
|
|
EGLDisplay app_getEGLDisplay(void)
|
|
|
|
{
|
|
|
|
return g_state.ds->getEGLDisplay();
|
|
|
|
}
|
|
|
|
|
|
|
|
EGLNativeWindowType app_getEGLNativeWindow(void)
|
|
|
|
{
|
|
|
|
return g_state.ds->getEGLNativeWindow();
|
|
|
|
}
|
|
|
|
|
2021-05-11 20:49:39 +00:00
|
|
|
void app_eglSwapBuffers(EGLDisplay display, EGLSurface surface, const struct Rect * damage, int count)
|
2021-01-26 23:59:10 +00:00
|
|
|
{
|
2021-05-11 20:49:39 +00:00
|
|
|
g_state.ds->eglSwapBuffers(display, surface, damage, count);
|
2021-01-26 23:59:10 +00:00
|
|
|
}
|
2021-01-27 08:20:13 +00:00
|
|
|
#endif
|
2021-01-26 23:59:10 +00:00
|
|
|
|
2021-01-27 20:13:35 +00:00
|
|
|
#ifdef ENABLE_OPENGL
|
2021-01-27 10:27:26 +00:00
|
|
|
LG_DSGLContext app_glCreateContext(void)
|
|
|
|
{
|
|
|
|
return g_state.ds->glCreateContext();
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_glDeleteContext(LG_DSGLContext context)
|
|
|
|
{
|
|
|
|
g_state.ds->glDeleteContext(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_glMakeCurrent(LG_DSGLContext context)
|
|
|
|
{
|
|
|
|
g_state.ds->glMakeCurrent(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_glSetSwapInterval(int interval)
|
|
|
|
{
|
|
|
|
g_state.ds->glSetSwapInterval(interval);
|
|
|
|
}
|
|
|
|
|
2021-01-26 10:46:30 +00:00
|
|
|
void app_glSwapBuffers(void)
|
|
|
|
{
|
|
|
|
g_state.ds->glSwapBuffers();
|
|
|
|
}
|
2021-01-27 20:13:35 +00:00
|
|
|
#endif
|
2021-01-26 23:40:39 +00:00
|
|
|
|
|
|
|
void app_alert(LG_MsgAlert type, const char * fmt, ...)
|
|
|
|
{
|
|
|
|
if (!g_state.lgr || !g_params.showAlerts)
|
|
|
|
return;
|
|
|
|
|
2021-02-21 14:39:56 +00:00
|
|
|
char * buffer;
|
2021-01-26 23:40:39 +00:00
|
|
|
|
2021-02-21 14:39:56 +00:00
|
|
|
va_list args;
|
2021-01-26 23:40:39 +00:00
|
|
|
va_start(args, fmt);
|
2021-02-21 14:39:56 +00:00
|
|
|
valloc_sprintf(&buffer, fmt, args);
|
2021-01-26 23:40:39 +00:00
|
|
|
va_end(args);
|
|
|
|
|
2021-07-23 09:58:33 +00:00
|
|
|
free(g_state.alertMessage);
|
|
|
|
g_state.alertMessage = buffer;
|
|
|
|
g_state.alertTimeout = microtime() + ALERT_TIMEOUT;
|
|
|
|
g_state.alertType = type;
|
|
|
|
g_state.alertShow = true;
|
2021-08-04 20:47:36 +00:00
|
|
|
app_invalidateWindow(false);
|
2021-01-26 23:40:39 +00:00
|
|
|
}
|
|
|
|
|
2021-01-31 03:48:24 +00:00
|
|
|
KeybindHandle app_registerKeybind(int sc, KeybindFn callback, void * opaque, const char * description)
|
2021-01-26 23:40:39 +00:00
|
|
|
{
|
|
|
|
// don't allow duplicate binds
|
|
|
|
if (g_state.bindings[sc])
|
|
|
|
{
|
|
|
|
DEBUG_INFO("Key already bound");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-08-15 22:55:19 +00:00
|
|
|
KeybindHandle handle = malloc(sizeof(*handle));
|
2021-01-26 23:40:39 +00:00
|
|
|
handle->sc = sc;
|
|
|
|
handle->callback = callback;
|
|
|
|
handle->opaque = opaque;
|
|
|
|
|
|
|
|
g_state.bindings[sc] = handle;
|
2021-01-31 03:48:24 +00:00
|
|
|
g_state.keyDescription[sc] = description;
|
2021-01-26 23:40:39 +00:00
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_releaseKeybind(KeybindHandle * handle)
|
|
|
|
{
|
|
|
|
if (!*handle)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_state.bindings[(*handle)->sc] = NULL;
|
|
|
|
free(*handle);
|
|
|
|
*handle = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_releaseAllKeybinds(void)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < KEY_MAX; ++i)
|
|
|
|
if (g_state.bindings[i])
|
|
|
|
{
|
|
|
|
free(g_state.bindings[i]);
|
|
|
|
g_state.bindings[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2021-01-30 09:52:52 +00:00
|
|
|
|
2021-07-29 01:56:50 +00:00
|
|
|
GraphHandle app_registerGraph(const char * name, RingBuffer buffer, float min, float max)
|
2021-07-18 02:31:11 +00:00
|
|
|
{
|
2021-07-29 01:56:50 +00:00
|
|
|
return overlayGraph_register(name, buffer, min, max);
|
2021-07-18 02:31:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void app_unregisterGraph(GraphHandle handle)
|
|
|
|
{
|
2021-07-22 07:27:30 +00:00
|
|
|
overlayGraph_unregister(handle);
|
2021-07-18 02:31:11 +00:00
|
|
|
}
|
|
|
|
|
2021-07-22 07:27:30 +00:00
|
|
|
struct Overlay
|
2021-07-18 02:38:57 +00:00
|
|
|
{
|
2021-07-22 07:27:30 +00:00
|
|
|
const struct LG_OverlayOps * ops;
|
2021-08-04 20:40:06 +00:00
|
|
|
const void * params;
|
2021-07-22 07:27:30 +00:00
|
|
|
void * udata;
|
2021-07-22 09:43:16 +00:00
|
|
|
int lastRectCount;
|
|
|
|
struct Rect lastRects[MAX_OVERLAY_RECTS];
|
2021-07-18 02:38:57 +00:00
|
|
|
};
|
|
|
|
|
2021-08-04 20:40:06 +00:00
|
|
|
void app_registerOverlay(const struct LG_OverlayOps * ops, const void * params)
|
2021-07-18 02:31:11 +00:00
|
|
|
{
|
2021-07-22 07:27:30 +00:00
|
|
|
ASSERT_LG_OVERLAY_VALID(ops);
|
2021-07-18 02:31:11 +00:00
|
|
|
|
2021-08-15 16:18:22 +00:00
|
|
|
struct Overlay * overlay = malloc(sizeof(*overlay));
|
2021-07-22 09:43:16 +00:00
|
|
|
overlay->ops = ops;
|
2021-08-04 20:40:06 +00:00
|
|
|
overlay->params = params;
|
|
|
|
overlay->udata = NULL;
|
2021-07-22 09:43:16 +00:00
|
|
|
overlay->lastRectCount = 0;
|
2021-07-22 07:27:30 +00:00
|
|
|
ll_push(g_state.overlays, overlay);
|
2021-08-04 20:40:06 +00:00
|
|
|
|
|
|
|
if (ops->earlyInit)
|
|
|
|
ops->earlyInit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_initOverlays(void)
|
|
|
|
{
|
|
|
|
struct Overlay * overlay;
|
|
|
|
for (ll_reset(g_state.overlays);
|
|
|
|
ll_walk(g_state.overlays, (void **)&overlay); )
|
|
|
|
{
|
|
|
|
if (!overlay->ops->init(&overlay->udata, overlay->params))
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Overlay `%s` failed to initialize", overlay->ops->name);
|
|
|
|
overlay->ops = NULL;
|
|
|
|
}
|
|
|
|
}
|
2021-07-10 04:21:18 +00:00
|
|
|
}
|
|
|
|
|
2021-07-22 09:43:16 +00:00
|
|
|
static inline void mergeRect(struct Rect * dest, const struct Rect * a, const struct Rect * b)
|
|
|
|
{
|
|
|
|
int x2 = max(a->x + a->w, b->x + b->w);
|
|
|
|
int y2 = max(a->y + a->h, b->y + b->h);
|
|
|
|
|
|
|
|
dest->x = min(a->x, b->x);
|
|
|
|
dest->y = min(a->y, b->y);
|
|
|
|
dest->w = x2 - dest->x;
|
|
|
|
dest->h = y2 - dest->y;
|
|
|
|
}
|
|
|
|
|
2021-07-29 21:36:28 +00:00
|
|
|
static inline LG_DSPointer mapImGuiCursor(ImGuiMouseCursor cursor)
|
|
|
|
{
|
|
|
|
switch (cursor)
|
|
|
|
{
|
|
|
|
case ImGuiMouseCursor_None:
|
|
|
|
return LG_POINTER_NONE;
|
|
|
|
case ImGuiMouseCursor_Arrow:
|
|
|
|
return LG_POINTER_ARROW;
|
|
|
|
case ImGuiMouseCursor_TextInput:
|
|
|
|
return LG_POINTER_INPUT;
|
|
|
|
case ImGuiMouseCursor_ResizeAll:
|
|
|
|
return LG_POINTER_MOVE;
|
|
|
|
case ImGuiMouseCursor_ResizeNS:
|
|
|
|
return LG_POINTER_RESIZE_NS;
|
|
|
|
case ImGuiMouseCursor_ResizeEW:
|
|
|
|
return LG_POINTER_RESIZE_EW;
|
|
|
|
case ImGuiMouseCursor_ResizeNESW:
|
|
|
|
return LG_POINTER_RESIZE_NESW;
|
|
|
|
case ImGuiMouseCursor_ResizeNWSE:
|
|
|
|
return LG_POINTER_RESIZE_NWSE;
|
|
|
|
case ImGuiMouseCursor_Hand:
|
|
|
|
return LG_POINTER_HAND;
|
|
|
|
case ImGuiMouseCursor_NotAllowed:
|
|
|
|
return LG_POINTER_NOT_ALLOWED;
|
|
|
|
default:
|
|
|
|
return LG_POINTER_ARROW;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-01 11:13:59 +00:00
|
|
|
bool app_overlayNeedsRender(void)
|
|
|
|
{
|
|
|
|
struct Overlay * overlay;
|
|
|
|
|
|
|
|
if (g_state.overlayInput)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for (ll_reset(g_state.overlays);
|
|
|
|
ll_walk(g_state.overlays, (void **)&overlay); )
|
|
|
|
{
|
|
|
|
if (!overlay->ops->needs_render)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (overlay->ops->needs_render(overlay->udata, g_state.overlayInput))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-07-22 07:27:30 +00:00
|
|
|
int app_renderOverlay(struct Rect * rects, int maxRects)
|
2021-07-08 01:45:54 +00:00
|
|
|
{
|
2021-07-22 08:33:50 +00:00
|
|
|
int totalRects = 0;
|
|
|
|
bool totalDamage = false;
|
2021-07-22 07:27:30 +00:00
|
|
|
struct Overlay * overlay;
|
2021-07-22 09:43:16 +00:00
|
|
|
struct Rect buffer[MAX_OVERLAY_RECTS];
|
2021-07-17 23:59:37 +00:00
|
|
|
|
2021-08-19 19:57:20 +00:00
|
|
|
g_state.io->KeyCtrl = g_state.modCtrl;
|
|
|
|
g_state.io->KeyShift = g_state.modShift;
|
|
|
|
g_state.io->KeyAlt = g_state.modAlt;
|
|
|
|
g_state.io->KeySuper = g_state.modSuper;
|
|
|
|
|
2021-08-30 10:48:41 +00:00
|
|
|
uint64_t now = nanotime();
|
|
|
|
g_state.io->DeltaTime = (now - g_state.lastImGuiFrame) * 1e-9f;
|
|
|
|
g_state.lastImGuiFrame = now;
|
|
|
|
|
2021-07-22 08:33:50 +00:00
|
|
|
igNewFrame();
|
2021-07-18 10:43:17 +00:00
|
|
|
|
2021-07-29 08:44:55 +00:00
|
|
|
if (g_state.overlayInput)
|
|
|
|
{
|
|
|
|
totalDamage = true;
|
|
|
|
ImDrawList_AddRectFilled(igGetBackgroundDrawListNil(), (ImVec2) { 0.0f , 0.0f },
|
2021-08-30 23:01:30 +00:00
|
|
|
g_state.io->DisplaySize, igGetColorU32Col(ImGuiCol_ModalWindowDimBg, 1.0f), 0, 0);
|
2021-07-29 21:36:28 +00:00
|
|
|
|
2021-07-31 10:32:06 +00:00
|
|
|
// bool test;
|
|
|
|
// igShowDemoWindow(&test);
|
2021-07-29 08:44:55 +00:00
|
|
|
}
|
|
|
|
|
2021-07-22 07:27:30 +00:00
|
|
|
// render the overlays
|
|
|
|
for (ll_reset(g_state.overlays);
|
|
|
|
ll_walk(g_state.overlays, (void **)&overlay); )
|
2021-07-18 10:43:17 +00:00
|
|
|
{
|
2021-07-22 08:33:50 +00:00
|
|
|
const int written =
|
2021-07-31 09:11:40 +00:00
|
|
|
overlay->ops->render(overlay->udata, g_state.overlayInput,
|
|
|
|
buffer, MAX_OVERLAY_RECTS);
|
2021-07-22 08:33:50 +00:00
|
|
|
|
2021-07-30 01:46:50 +00:00
|
|
|
for (int i = 0; i < written; ++i)
|
|
|
|
{
|
|
|
|
buffer[i].x *= g_state.windowScale;
|
|
|
|
buffer[i].y *= g_state.windowScale;
|
|
|
|
buffer[i].w *= g_state.windowScale;
|
|
|
|
buffer[i].h *= g_state.windowScale;
|
|
|
|
}
|
|
|
|
|
2021-07-22 09:43:16 +00:00
|
|
|
// It is an error to run out of rectangles, because we will not be able to
|
|
|
|
// correctly calculate the damage of the next frame.
|
2021-08-13 23:51:36 +00:00
|
|
|
DEBUG_ASSERT(written >= 0);
|
2021-07-18 10:43:17 +00:00
|
|
|
|
2021-07-22 09:43:16 +00:00
|
|
|
const int toAdd = max(written, overlay->lastRectCount);
|
|
|
|
totalDamage |= toAdd > maxRects;
|
|
|
|
|
|
|
|
if (!totalDamage && toAdd)
|
2021-07-22 08:33:50 +00:00
|
|
|
{
|
2021-07-22 09:43:16 +00:00
|
|
|
int i = 0;
|
|
|
|
for (; i < overlay->lastRectCount && i < written; ++i)
|
|
|
|
mergeRect(rects + i, buffer + i, overlay->lastRects + i);
|
|
|
|
|
|
|
|
// only one of the following memcpys will copy non-zero bytes.
|
|
|
|
memcpy(rects + i, buffer + i, (written - i) * sizeof(struct Rect));
|
|
|
|
memcpy(rects + i, overlay->lastRects + i, (overlay->lastRectCount - i) * sizeof(struct Rect));
|
|
|
|
|
|
|
|
rects += toAdd;
|
|
|
|
totalRects += toAdd;
|
|
|
|
maxRects -= toAdd;
|
2021-07-22 08:33:50 +00:00
|
|
|
}
|
2021-07-22 09:43:16 +00:00
|
|
|
|
|
|
|
memcpy(overlay->lastRects, buffer, sizeof(struct Rect) * written);
|
|
|
|
overlay->lastRectCount = written;
|
2021-07-22 07:27:30 +00:00
|
|
|
}
|
2021-07-18 10:43:17 +00:00
|
|
|
|
2021-08-04 00:45:11 +00:00
|
|
|
if (g_state.overlayInput)
|
|
|
|
{
|
|
|
|
ImGuiMouseCursor cursor = igGetMouseCursor();
|
|
|
|
if (cursor != g_state.cursorLast)
|
|
|
|
{
|
|
|
|
g_state.ds->setPointer(mapImGuiCursor(cursor));
|
|
|
|
g_state.cursorLast = cursor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-22 07:27:30 +00:00
|
|
|
igRender();
|
2021-07-18 10:43:17 +00:00
|
|
|
|
2021-07-22 08:33:50 +00:00
|
|
|
return totalDamage ? -1 : totalRects;
|
2021-07-22 07:27:30 +00:00
|
|
|
}
|
2021-07-10 04:21:18 +00:00
|
|
|
|
2021-07-22 07:27:30 +00:00
|
|
|
void app_freeOverlays(void)
|
|
|
|
{
|
|
|
|
struct Overlay * overlay;
|
|
|
|
while(ll_shift(g_state.overlays, (void **)&overlay))
|
|
|
|
{
|
|
|
|
overlay->ops->free(overlay->udata);
|
|
|
|
free(overlay);
|
2021-07-10 04:21:18 +00:00
|
|
|
}
|
2021-07-08 01:45:54 +00:00
|
|
|
}
|
2021-07-31 10:51:38 +00:00
|
|
|
|
|
|
|
void app_setOverlay(bool enable)
|
|
|
|
{
|
2021-08-04 20:03:09 +00:00
|
|
|
static bool wasGrabbed = false;
|
|
|
|
|
2021-07-31 10:51:38 +00:00
|
|
|
if (g_state.overlayInput == enable)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_state.overlayInput = enable;
|
|
|
|
g_state.cursorLast = -2;
|
|
|
|
|
|
|
|
if (g_state.overlayInput)
|
|
|
|
{
|
2021-08-04 20:03:09 +00:00
|
|
|
wasGrabbed = g_cursor.grab;
|
|
|
|
|
2021-07-31 10:51:38 +00:00
|
|
|
g_state.io->ConfigFlags &= ~ImGuiConfigFlags_NoMouse;
|
2021-08-04 20:55:41 +00:00
|
|
|
g_state.io->MousePos = (ImVec2) { g_cursor.pos.x, g_cursor.pos.y };
|
|
|
|
|
2021-07-31 10:51:38 +00:00
|
|
|
core_setGrabQuiet(false);
|
|
|
|
core_setCursorInView(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_state.io->ConfigFlags |= ImGuiConfigFlags_NoMouse;
|
|
|
|
core_resetOverlayInputState();
|
2021-08-04 20:03:09 +00:00
|
|
|
core_setGrabQuiet(wasGrabbed);
|
2021-12-27 00:52:06 +00:00
|
|
|
core_invalidatePointer(true);
|
2021-08-04 20:47:36 +00:00
|
|
|
app_invalidateWindow(false);
|
2021-07-31 10:51:38 +00:00
|
|
|
}
|
|
|
|
}
|
2021-08-04 14:55:51 +00:00
|
|
|
|
|
|
|
void app_overlayConfigRegister(const char * title,
|
2021-08-11 23:04:45 +00:00
|
|
|
void (*callback)(void * udata, int * id), void * udata)
|
2021-08-04 14:55:51 +00:00
|
|
|
{
|
|
|
|
overlayConfig_register(title, callback, udata);
|
|
|
|
}
|
2021-08-11 23:04:45 +00:00
|
|
|
|
|
|
|
void app_overlayConfigRegisterTab(const char * title,
|
|
|
|
void (*callback)(void * udata, int * id), void * udata)
|
|
|
|
{
|
|
|
|
overlayConfig_registerTab(title, callback, udata);
|
|
|
|
}
|