mirror of
https://github.com/gnif/LookingGlass.git
synced 2026-08-09 16:51:31 +00:00
Replace raw HID report forwarding with typed absolute mouse, relative mouse, and keyboard messages. Expose absolute and relative modes as separate Mouse collections because Windows MouHID requires one X/Y motion mode per mouse device.
108 lines
3.1 KiB
C
108 lines
3.1 KiB
C
/**
|
|
* Looking Glass
|
|
* Copyright © 2017-2026 The Looking Glass Authors
|
|
* 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
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
static constexpr wchar_t LG_INPUT_PIPE_NAME[] =
|
|
L"\\\\.\\pipe\\LookingGlassIDDInput";
|
|
|
|
static constexpr uint32_t LG_INPUT_PIPE_MAGIC = 0x5049474c;
|
|
static constexpr uint16_t LG_INPUT_PIPE_VERSION = 2;
|
|
static constexpr size_t LG_INPUT_PIPE_MAX_PAYLOAD_SIZE = 64;
|
|
static constexpr uint8_t LG_INPUT_MOUSE_BUTTON_MASK = 0x1f;
|
|
static constexpr uint16_t LG_INPUT_MOUSE_ABSOLUTE_MAX = 32767;
|
|
static constexpr int8_t LG_INPUT_MOUSE_WHEEL_MIN = -127;
|
|
static constexpr size_t LG_INPUT_KEYBOARD_KEY_COUNT = 6;
|
|
static constexpr uint8_t LG_INPUT_KEYBOARD_USAGE_MAX = 0xe7;
|
|
|
|
enum LGInputMouseButton : uint8_t
|
|
{
|
|
LG_INPUT_MOUSE_BUTTON_LEFT = 1 << 0,
|
|
LG_INPUT_MOUSE_BUTTON_RIGHT = 1 << 1,
|
|
LG_INPUT_MOUSE_BUTTON_MIDDLE = 1 << 2,
|
|
LG_INPUT_MOUSE_BUTTON_BACK = 1 << 3,
|
|
LG_INPUT_MOUSE_BUTTON_FORWARD = 1 << 4,
|
|
};
|
|
|
|
enum LGInputKeyboardModifier : uint8_t
|
|
{
|
|
LG_INPUT_KEYBOARD_MODIFIER_LEFT_CONTROL = 1 << 0,
|
|
LG_INPUT_KEYBOARD_MODIFIER_LEFT_SHIFT = 1 << 1,
|
|
LG_INPUT_KEYBOARD_MODIFIER_LEFT_ALT = 1 << 2,
|
|
LG_INPUT_KEYBOARD_MODIFIER_LEFT_GUI = 1 << 3,
|
|
LG_INPUT_KEYBOARD_MODIFIER_RIGHT_CONTROL = 1 << 4,
|
|
LG_INPUT_KEYBOARD_MODIFIER_RIGHT_SHIFT = 1 << 5,
|
|
LG_INPUT_KEYBOARD_MODIFIER_RIGHT_ALT = 1 << 6,
|
|
LG_INPUT_KEYBOARD_MODIFIER_RIGHT_GUI = 1 << 7,
|
|
};
|
|
|
|
enum LGInputPipeMessageType : uint16_t
|
|
{
|
|
LG_INPUT_PIPE_MESSAGE_MOUSE_ABSOLUTE = 1,
|
|
LG_INPUT_PIPE_MESSAGE_MOUSE_RELATIVE = 2,
|
|
LG_INPUT_PIPE_MESSAGE_KEYBOARD = 3,
|
|
};
|
|
|
|
#pragma pack(push, 1)
|
|
struct LGInputPipeMouseRelative
|
|
{
|
|
uint8_t buttons;
|
|
int16_t deltaX;
|
|
int16_t deltaY;
|
|
int8_t wheel;
|
|
};
|
|
|
|
struct LGInputPipeMouseAbsolute
|
|
{
|
|
uint8_t buttons;
|
|
uint16_t x;
|
|
uint16_t y;
|
|
int8_t wheel;
|
|
};
|
|
|
|
struct LGInputPipeKeyboard
|
|
{
|
|
uint8_t modifiers;
|
|
uint8_t keys[LG_INPUT_KEYBOARD_KEY_COUNT];
|
|
};
|
|
|
|
struct LGInputPipeMessage
|
|
{
|
|
uint32_t magic;
|
|
uint16_t version;
|
|
uint16_t type;
|
|
uint32_t payloadSize;
|
|
uint64_t sequence;
|
|
uint8_t payload[LG_INPUT_PIPE_MAX_PAYLOAD_SIZE];
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(sizeof(LGInputPipeMouseRelative) == 6,
|
|
"LGInputPipeMouseRelative wire layout changed");
|
|
static_assert(sizeof(LGInputPipeMouseAbsolute) == 6,
|
|
"LGInputPipeMouseAbsolute wire layout changed");
|
|
static_assert(sizeof(LGInputPipeKeyboard) == 7,
|
|
"LGInputPipeKeyboard wire layout changed");
|
|
static_assert(sizeof(LGInputPipeMessage) == 84,
|
|
"LGInputPipeMessage wire layout changed");
|