mouse_m908/include/rd_mouse.h

144 lines
4 KiB
C
Raw Normal View History

2020-07-12 12:35:13 -06: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 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*/
//main class
#ifndef RD_MOUSE
#define RD_MOUSE
2020-08-29 08:29:48 -06:00
#include <libusb.h>
2020-07-12 12:35:13 -06:00
#include <map>
#include <array>
#include <string>
#include <algorithm>
#include <exception>
#include <regex>
#include <fstream>
#include <sstream>
#include <utility>
#include <iostream>
#include <iomanip>
2020-08-14 11:33:57 -06:00
#include <string>
2020-07-12 12:35:13 -06:00
/**
* This class is used as a base for the different models
2020-07-12 12:50:00 -06:00
*
* Global constants (e.g. keyboard keycodes) and universal functions
* should be placed in this class.
*
2020-07-12 12:35:13 -06:00
*/
class rd_mouse{
public:
// enums
/// The available profiles
enum rd_profile{
profile_1 = 0,
profile_2 = 1,
profile_3 = 2,
profile_4 = 3,
profile_5 = 4,
};
/// The available led modes
enum rd_lightmode{
lightmode_breathing,
lightmode_rainbow,
lightmode_static,
lightmode_wave,
lightmode_alternating,
lightmode_reactive,
lightmode_flashing,
lightmode_off,
};
/// The available USB report rates (polling rates)
enum rd_report_rate{
r_125Hz,
r_250Hz,
r_500Hz,
r_1000Hz
};
2020-08-14 11:33:57 -06:00
/** \brief Detects supported mice
* In the case of multiple connected mice, only the first will be detected
* \return The model name of the mouse, empty string if no mouse was found
*/
static std::string detect();
2020-08-29 08:29:48 -06:00
/// Set whether to try to detach the kernel driver when opening the mouse
void set_detach_kernel_driver( bool detach_kernel_driver ){
_i_detach_kernel_driver = detach_kernel_driver;
}
/// Get _i_detach_kernel_driver
bool get_detach_kernel_driver(){ return _i_detach_kernel_driver; }
2020-07-12 12:35:13 -06:00
protected:
//setting min and max values
static const uint8_t _c_scrollspeed_min, _c_scrollspeed_max;
static const uint8_t _c_brightness_min, _c_brightness_max;
static const uint8_t _c_speed_min, _c_speed_max;
static const uint8_t _c_level_min, _c_level_max;
static const uint8_t _c_dpi_min, _c_dpi_max;
//mapping of button names to values
/// Values/keycodes of mouse buttons and special button functions
static std::map< std::string, std::array<uint8_t, 3> > _c_keycodes;
/// Values of keyboard modifiers
static const std::map< std::string, uint8_t > _c_keyboard_modifier_values;
/// Values/keycodes of keyboard keys
static std::map< std::string, uint8_t > _c_keyboard_key_values;
2020-08-29 08:29:48 -06:00
//usb device handling
/// libusb device handle
libusb_device_handle* _i_handle;
/// whether to detach kernel driver
bool _i_detach_kernel_driver = true;
/// set by open_mouse for close_mouse
bool _i_detached_driver_0 = false;
/// set by open_mouse for close_mouse
bool _i_detached_driver_1 = false;
/// set by open_mouse for close_mouse
bool _i_detached_driver_2 = false;
/** \brief Init libusb and open the mouse by its USB VID and PID
* \return 0 if successful
*/
int _i_open_mouse( const uint16_t vid, const uint16_t pid );
/** \brief Init libusb and open the mouse by the USB bus and device adress
* \return 0 if successful
*/
int _i_open_mouse_bus_device( const uint8_t bus, const uint8_t device );
/** \brief Close the mouse and libusb
* \return 0 if successful (always at the moment)
*/
int _i_close_mouse();
2020-07-12 12:35:13 -06:00
};
// include header files for the individual models
2020-07-12 12:35:13 -06:00
#include "m908/mouse_m908.h"
#include "m709/mouse_m709.h"
2020-07-31 10:41:47 -06:00
#include "m711/mouse_m711.h"
2020-08-29 09:00:34 -06:00
#include "m715/mouse_m715.h"
2020-07-12 12:35:13 -06:00
#endif