mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 09:10:30 +08:00
196 lines
5.1 KiB
C++
196 lines
5.1 KiB
C++
/*****************************************************************************
|
|
# #
|
|
# KVMD - The main Pi-KVM daemon. #
|
|
# #
|
|
# Copyright (C) 2018-2021 Maxim Devaev <mdevaev@gmail.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 3 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, see <https://www.gnu.org/licenses/>. #
|
|
# #
|
|
*****************************************************************************/
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include <HID-Project.h>
|
|
|
|
#ifdef AUM
|
|
# include "../aum.h"
|
|
#endif
|
|
#include "keymap.h"
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
#ifdef HID_USB_CHECK_ENDPOINT
|
|
// https://github.com/arduino/ArduinoCore-avr/blob/2f67c916f6ab6193c404eebe22efe901e0f9542d/cores/arduino/USBCore.cpp#L249
|
|
// https://sourceforge.net/p/arduinomidilib/svn/41/tree/branch/3.1/Teensy/teensy_core/usb_midi/usb_api.cpp#l103
|
|
# ifdef AUM
|
|
# define CHECK_AUM_USB { if (!aumIsUsbConnected()) { return offline; } }
|
|
# else
|
|
# define CHECK_AUM_USB
|
|
# endif
|
|
# define CLS_GET_OFFLINE_AS(_hid) \
|
|
uint8_t getOfflineAs(uint8_t offline) { \
|
|
CHECK_AUM_USB; \
|
|
uint8_t ep = _hid.getPluggedEndpoint(); \
|
|
uint8_t intr_state = SREG; \
|
|
cli(); \
|
|
UENUM = ep & 7; \
|
|
bool rw_allowed = UEINTX & (1 << RWAL); \
|
|
SREG = intr_state; \
|
|
if (rw_allowed) { \
|
|
return 0; \
|
|
} \
|
|
return offline; \
|
|
}
|
|
# define CHECK_HID_EP { if (getOfflineAs(1)) return; }
|
|
|
|
#else
|
|
# define CLS_GET_OFFLINE_AS(_hid) \
|
|
uint8_t getOfflineAs(uint8_t offline) { \
|
|
return 0; \
|
|
}
|
|
# define CHECK_HID_EP
|
|
|
|
#endif
|
|
|
|
class UsbKeyboard {
|
|
public:
|
|
UsbKeyboard() {}
|
|
|
|
void begin() {
|
|
_kbd.begin();
|
|
}
|
|
|
|
void clear() {
|
|
_kbd.releaseAll();
|
|
}
|
|
|
|
void sendKey(uint8_t code, bool state) {
|
|
CHECK_HID_EP;
|
|
KeyboardKeycode usb_code = keymapUsb(code);
|
|
if (usb_code != KEY_ERROR_UNDEFINED) {
|
|
if (state) _kbd.press(usb_code);
|
|
else _kbd.release(usb_code);
|
|
}
|
|
}
|
|
|
|
CLS_GET_OFFLINE_AS(_kbd)
|
|
|
|
uint8_t getLedsAs(uint8_t caps, uint8_t scroll, uint8_t num) {
|
|
uint8_t leds = _kbd.getLeds();
|
|
uint8_t result = 0;
|
|
if (leds & LED_CAPS_LOCK) result |= caps;
|
|
if (leds & LED_SCROLL_LOCK) result |= scroll;
|
|
if (leds & LED_NUM_LOCK) result |= num;
|
|
return result;
|
|
}
|
|
|
|
private:
|
|
BootKeyboard_ _kbd;
|
|
};
|
|
|
|
#define CLS_SEND_BUTTONS \
|
|
void sendButtons( \
|
|
bool left_select, bool left_state, \
|
|
bool right_select, bool right_state, \
|
|
bool middle_select, bool middle_state, \
|
|
bool up_select, bool up_state, \
|
|
bool down_select, bool down_state \
|
|
) { \
|
|
if (left_select) _sendButton(MOUSE_LEFT, left_state); \
|
|
if (right_select) _sendButton(MOUSE_RIGHT, right_state); \
|
|
if (middle_select) _sendButton(MOUSE_MIDDLE, middle_state); \
|
|
if (up_select) _sendButton(MOUSE_PREV, up_state); \
|
|
if (down_select) _sendButton(MOUSE_NEXT, down_state); \
|
|
}
|
|
|
|
class UsbMouseAbsolute {
|
|
public:
|
|
UsbMouseAbsolute() {}
|
|
|
|
void begin() {
|
|
_mouse.begin();
|
|
}
|
|
|
|
void clear() {
|
|
_mouse.releaseAll();
|
|
}
|
|
|
|
CLS_SEND_BUTTONS
|
|
|
|
void sendMove(int x, int y) {
|
|
CHECK_HID_EP;
|
|
_mouse.moveTo(x, y);
|
|
}
|
|
|
|
void sendWheel(int delta_y) {
|
|
// delta_x is not supported by hid-project now
|
|
CHECK_HID_EP;
|
|
_mouse.move(0, 0, delta_y);
|
|
}
|
|
|
|
CLS_GET_OFFLINE_AS(_mouse)
|
|
|
|
private:
|
|
SingleAbsoluteMouse_ _mouse;
|
|
|
|
void _sendButton(uint8_t button, bool state) {
|
|
CHECK_HID_EP;
|
|
if (state) _mouse.press(button);
|
|
else _mouse.release(button);
|
|
}
|
|
};
|
|
|
|
class UsbMouseRelative {
|
|
public:
|
|
UsbMouseRelative() {}
|
|
|
|
void begin() {
|
|
_mouse.begin();
|
|
}
|
|
|
|
void clear() {
|
|
_mouse.releaseAll();
|
|
}
|
|
|
|
CLS_SEND_BUTTONS
|
|
|
|
void sendRelative(int x, int y) {
|
|
CHECK_HID_EP;
|
|
_mouse.move(x, y, 0);
|
|
}
|
|
|
|
void sendWheel(int delta_y) {
|
|
// delta_x is not supported by hid-project now
|
|
CHECK_HID_EP;
|
|
_mouse.move(0, 0, delta_y);
|
|
}
|
|
|
|
CLS_GET_OFFLINE_AS(_mouse)
|
|
|
|
private:
|
|
BootMouse_ _mouse;
|
|
|
|
void _sendButton(uint8_t button, bool state) {
|
|
CHECK_HID_EP;
|
|
if (state) _mouse.press(button);
|
|
else _mouse.release(button);
|
|
}
|
|
};
|
|
|
|
#undef CLS_SEND_BUTTONS
|
|
#undef CLS_GET_OFFLINE_AS
|
|
#undef CHECK_HID_EP
|