2019-11-08 17:10:30 -07: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.
|
|
|
|
*
|
|
|
|
* g++ mouse_m908.cpp -o mouse_m908 -lusb-1.0
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <array>
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
2020-05-11 08:49:58 -06:00
|
|
|
#include <fstream>
|
2019-11-08 17:10:30 -07:00
|
|
|
#include <exception>
|
2020-02-07 20:34:17 -07:00
|
|
|
#include <regex>
|
2019-11-08 17:10:30 -07:00
|
|
|
#include <getopt.h>
|
|
|
|
|
2020-07-12 12:35:13 -06:00
|
|
|
#include "include/rd_mouse.h"
|
2020-04-08 07:39:30 -06:00
|
|
|
#include "include/load_config.h"
|
2019-11-08 17:10:30 -07:00
|
|
|
#include "include/print_help.cpp"
|
|
|
|
|
2020-05-02 08:50:55 -06:00
|
|
|
// this is the default version string
|
|
|
|
// the version string gets overwritten by the makefile
|
|
|
|
#ifndef VERSION_STRING
|
|
|
|
#define VERSION_STRING "no version defined during compilation"
|
|
|
|
#endif
|
2020-04-08 07:10:02 -06:00
|
|
|
|
|
|
|
// this function checks its arguments and opens the mouse accordingly
|
|
|
|
// (with vid and pid or with bus and device)
|
2020-07-12 14:02:29 -06:00
|
|
|
template< typename T >int open_mouse_wrapper( T &m, const bool flag_bus, const bool flag_device,
|
2020-04-08 07:10:02 -06:00
|
|
|
const std::string &string_bus, const std::string &string_device ){
|
|
|
|
|
2020-05-14 09:24:36 -06:00
|
|
|
int open_return = 0; // open_mouse() return value
|
|
|
|
|
2020-04-08 07:10:02 -06:00
|
|
|
if( flag_bus != flag_device ){ // improper arguments
|
|
|
|
|
|
|
|
std::cout << "Missing argument, --bus and --device must be used together.\n";
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
} else if( flag_bus && flag_device ){ // open with bus and device
|
|
|
|
|
|
|
|
if( !std::regex_match( string_bus, std::regex("[0-9]+") ) ||
|
|
|
|
!std::regex_match( string_device, std::regex("[0-9]+") ) ){
|
|
|
|
|
|
|
|
std::cout << "Wrong argument, expected number.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-05-14 09:24:36 -06:00
|
|
|
open_return = m.open_mouse_bus_device( stoi(string_bus), stoi(string_device) );
|
2020-04-08 07:10:02 -06:00
|
|
|
|
|
|
|
} else{ // open with vid and pid
|
|
|
|
|
2020-05-14 09:24:36 -06:00
|
|
|
open_return = m.open_mouse();
|
2020-04-08 07:10:02 -06:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-14 09:24:36 -06:00
|
|
|
// Could not open → print message
|
|
|
|
if( open_return != 0 ){
|
|
|
|
std::cout << "Couldn't open mouse.\n";
|
|
|
|
std::cout << "- Check hardware and permissions (maybe you need to be root?)\n";
|
|
|
|
std::cout << "- Try with or without the --kernel-driver option\n";
|
2020-07-12 14:02:29 -06:00
|
|
|
std::cout << "- Try with the --model option\n";
|
2020-05-14 09:24:36 -06:00
|
|
|
std::cout << "- Try with the --bus and --device options\n";
|
|
|
|
std::cout << "If nothing works please report this as a bug.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-04-08 07:10:02 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-07-12 14:02:29 -06:00
|
|
|
// function to perform all actions on the mouse
|
|
|
|
template< typename T > int perform_actions(
|
|
|
|
bool flag_config, bool flag_profile, bool flag_macro, bool flag_number,
|
|
|
|
bool flag_bus, bool flag_device, bool flag_kernel_driver,
|
|
|
|
bool flag_dump_settings, bool flag_read_settings,
|
|
|
|
std::string string_config, std::string string_profile, std::string string_macro,
|
|
|
|
std::string string_number, std::string string_bus, std::string string_device,
|
|
|
|
std::string string_dump, std::string string_read );
|
|
|
|
|
2019-11-08 17:10:30 -07:00
|
|
|
int main( int argc, char **argv ){
|
|
|
|
|
2020-05-02 08:50:55 -06:00
|
|
|
// if no arguments: print help
|
|
|
|
if( argc == 1 ){
|
|
|
|
print_help();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-08 17:10:30 -07:00
|
|
|
//command line options
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"help", no_argument, 0, 'h'},
|
|
|
|
{"config", required_argument, 0, 'c'},
|
|
|
|
{"profile", required_argument, 0, 'p'},
|
2019-12-07 17:52:41 -07:00
|
|
|
{"macro", required_argument, 0, 'm'},
|
|
|
|
{"number", required_argument, 0, 'n'},
|
2019-12-12 19:02:46 -07:00
|
|
|
//{"repeat", required_argument, 0, 'r'},
|
2020-02-07 20:34:17 -07:00
|
|
|
{"bus", required_argument, 0, 'b'},
|
|
|
|
{"device", required_argument, 0, 'd'},
|
2020-02-08 14:54:45 -07:00
|
|
|
{"kernel-driver", no_argument, 0, 'k'},
|
2020-05-02 08:50:55 -06:00
|
|
|
{"version", no_argument, 0, 'v'},
|
2020-05-11 08:49:58 -06:00
|
|
|
{"dump", required_argument, 0, 'D'},
|
|
|
|
{"read", required_argument, 0, 'R'},
|
2020-07-12 14:02:29 -06:00
|
|
|
{"model", required_argument, 0, 'M'},
|
2019-11-08 17:10:30 -07:00
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool flag_config = false, flag_profile = false;
|
2019-12-07 17:52:41 -07:00
|
|
|
bool flag_macro = false, flag_number = false;
|
2020-02-07 20:34:17 -07:00
|
|
|
bool flag_bus = false, flag_device = false;
|
2020-02-08 14:54:45 -07:00
|
|
|
bool flag_kernel_driver = false;
|
2020-05-02 08:50:55 -06:00
|
|
|
bool flag_version = false;
|
2020-05-09 14:33:14 -06:00
|
|
|
bool flag_dump_settings = false;
|
2020-05-09 15:36:23 -06:00
|
|
|
bool flag_read_settings = false;
|
2019-12-12 19:02:46 -07:00
|
|
|
//bool flag_repeat;
|
2020-05-09 14:33:14 -06:00
|
|
|
|
2019-11-08 17:10:30 -07:00
|
|
|
std::string string_config, string_profile;
|
2019-12-07 17:52:41 -07:00
|
|
|
std::string string_macro, string_number;
|
2019-12-12 19:02:46 -07:00
|
|
|
//std::string string_repeat;
|
2020-02-07 20:34:17 -07:00
|
|
|
std::string string_bus, string_device;
|
2020-05-11 08:49:58 -06:00
|
|
|
std::string string_dump, string_read;
|
2020-07-12 14:02:29 -06:00
|
|
|
std::string string_model = "908";
|
2019-11-08 17:10:30 -07:00
|
|
|
|
|
|
|
//parse command line options
|
|
|
|
int c, option_index = 0;
|
2020-07-12 14:02:29 -06:00
|
|
|
while( (c = getopt_long( argc, argv, "hc:p:m:n:b:d:kvD:R:M:",
|
2019-11-08 17:10:30 -07:00
|
|
|
long_options, &option_index ) ) != -1 ){
|
|
|
|
|
|
|
|
switch( c ){
|
|
|
|
case 'h':
|
|
|
|
print_help();
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
flag_config = true;
|
|
|
|
string_config = optarg;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
flag_profile = true;
|
|
|
|
string_profile = optarg;
|
|
|
|
break;
|
2019-12-07 17:52:41 -07:00
|
|
|
case 'm':
|
|
|
|
flag_macro = true;
|
|
|
|
string_macro = optarg;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
flag_number = true;
|
|
|
|
string_number = optarg;
|
|
|
|
break;
|
2020-02-07 20:34:17 -07:00
|
|
|
case 'b':
|
|
|
|
flag_bus = true;
|
|
|
|
string_bus = optarg;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
flag_device = true;
|
|
|
|
string_device = optarg;
|
|
|
|
break;
|
2019-12-12 19:02:46 -07:00
|
|
|
//case 'r':
|
|
|
|
// flag_repeat = true;
|
|
|
|
// string_repeat = optarg;
|
|
|
|
// break;
|
2020-02-08 14:54:45 -07:00
|
|
|
case 'k':
|
|
|
|
flag_kernel_driver = true;
|
|
|
|
break;
|
2020-05-02 08:50:55 -06:00
|
|
|
case 'v':
|
|
|
|
flag_version = true;
|
|
|
|
break;
|
2020-05-09 14:33:14 -06:00
|
|
|
case 'D':
|
|
|
|
flag_dump_settings = true;
|
2020-05-11 08:49:58 -06:00
|
|
|
string_dump = optarg;
|
2020-05-09 14:33:14 -06:00
|
|
|
break;
|
2020-05-09 15:36:23 -06:00
|
|
|
case 'R':
|
|
|
|
flag_read_settings = true;
|
2020-05-11 08:49:58 -06:00
|
|
|
string_read = optarg;
|
2020-05-09 15:36:23 -06:00
|
|
|
break;
|
2020-07-12 14:02:29 -06:00
|
|
|
case 'M':
|
|
|
|
string_model = optarg;
|
|
|
|
break;
|
2019-11-08 17:10:30 -07:00
|
|
|
case '?':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 08:50:55 -06:00
|
|
|
// print version if requested
|
|
|
|
if( flag_version )
|
|
|
|
std::cout << "Version: " << VERSION_STRING << "\n";
|
|
|
|
|
2020-07-12 14:02:29 -06:00
|
|
|
// parse model → call perform_actions()
|
|
|
|
if( string_model == "908" ){
|
|
|
|
|
|
|
|
return perform_actions< mouse_m908 >(
|
|
|
|
flag_config, flag_profile, flag_macro, flag_number,
|
|
|
|
flag_bus, flag_device, flag_kernel_driver,
|
|
|
|
flag_dump_settings, flag_read_settings,
|
|
|
|
string_config, string_profile, string_macro,
|
|
|
|
string_number, string_bus, string_device,
|
|
|
|
string_dump, string_read );
|
|
|
|
|
|
|
|
}else if( string_model == "709" ){
|
|
|
|
|
|
|
|
return perform_actions< mouse_m709 >(
|
|
|
|
flag_config, flag_profile, flag_macro, flag_number,
|
|
|
|
flag_bus, flag_device, flag_kernel_driver,
|
|
|
|
flag_dump_settings, flag_read_settings,
|
|
|
|
string_config, string_profile, string_macro,
|
|
|
|
string_number, string_bus, string_device,
|
|
|
|
string_dump, string_read );
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
|
|
|
std::cout << "Unknown model, valid options are:\n";
|
|
|
|
std::cout << "709\n908\n";
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template< typename T > int perform_actions(
|
|
|
|
bool flag_config, bool flag_profile, bool flag_macro, bool flag_number,
|
|
|
|
bool flag_bus, bool flag_device, bool flag_kernel_driver,
|
|
|
|
bool flag_dump_settings, bool flag_read_settings,
|
|
|
|
std::string string_config, std::string string_profile, std::string string_macro,
|
|
|
|
std::string string_number, std::string string_bus, std::string string_device,
|
|
|
|
std::string string_dump, std::string string_read ){
|
|
|
|
|
|
|
|
// create mouse object
|
|
|
|
T m;
|
|
|
|
|
|
|
|
// set whether to detach kernel driver
|
|
|
|
m.set_detach_kernel_driver( !flag_kernel_driver );
|
|
|
|
|
2020-05-09 14:33:14 -06:00
|
|
|
// read settings and dump raw data
|
|
|
|
if( flag_dump_settings ){
|
|
|
|
|
|
|
|
// open mouse
|
|
|
|
if( open_mouse_wrapper( m, flag_bus, flag_device, string_bus, string_device ) != 0 ){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-05-11 08:49:58 -06:00
|
|
|
// dump to file or cout
|
|
|
|
if( string_dump != "-" ){
|
|
|
|
std::ofstream out( string_dump );
|
|
|
|
|
|
|
|
if( out.is_open() ){
|
|
|
|
// dump settings
|
|
|
|
m.dump_settings( out );
|
|
|
|
|
|
|
|
out.close();
|
|
|
|
} else{
|
|
|
|
std::cout << "Couldn't open " << string_dump << "\n";
|
|
|
|
}
|
|
|
|
} else{
|
|
|
|
m.dump_settings( std::cout );
|
|
|
|
}
|
|
|
|
|
2020-05-09 14:33:14 -06:00
|
|
|
|
|
|
|
m.close_mouse();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-11 08:49:58 -06:00
|
|
|
// read settings and print in .ini format
|
2020-05-09 15:36:23 -06:00
|
|
|
if( flag_read_settings ){
|
|
|
|
|
|
|
|
// open mouse
|
|
|
|
if( open_mouse_wrapper( m, flag_bus, flag_device, string_bus, string_device ) != 0 ){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-05-11 08:49:58 -06:00
|
|
|
// dump to file or cout
|
|
|
|
if( string_read != "-" ){
|
|
|
|
std::ofstream out( string_read );
|
|
|
|
|
|
|
|
if( out.is_open() ){
|
|
|
|
// read settings
|
|
|
|
m.read_and_print_settings( out );
|
|
|
|
|
|
|
|
out.close();
|
|
|
|
} else{
|
|
|
|
std::cout << "Couldn't open " << string_read << "\n";
|
|
|
|
}
|
|
|
|
} else{
|
|
|
|
m.read_and_print_settings( std::cout );
|
|
|
|
}
|
2020-05-09 15:36:23 -06:00
|
|
|
|
|
|
|
m.close_mouse();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-02 08:50:55 -06:00
|
|
|
// load and write config
|
2019-11-08 17:10:30 -07:00
|
|
|
if( flag_config ){
|
|
|
|
try{
|
2020-02-10 07:24:46 -07:00
|
|
|
|
|
|
|
simple_ini_parser pt;
|
|
|
|
if( pt.read_ini( string_config ) != 0 ){
|
|
|
|
std::cout << "Could not open configuration file.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2019-11-08 17:10:30 -07:00
|
|
|
|
2020-04-08 07:10:02 -06:00
|
|
|
// lookup table int → profile enum
|
2020-07-12 12:35:13 -06:00
|
|
|
std::array< mouse_m908::rd_profile, 5 > profile_lut = { mouse_m908::profile_1, mouse_m908::profile_2, mouse_m908::profile_3, mouse_m908::profile_4, mouse_m908::profile_5 };
|
2019-11-08 17:10:30 -07:00
|
|
|
|
2020-04-08 07:10:02 -06:00
|
|
|
//parse config file
|
|
|
|
for( int i = 1; i < 6; i++ ){
|
2020-02-07 20:34:17 -07:00
|
|
|
|
2020-04-08 07:10:02 -06:00
|
|
|
if( pt.get("profile"+std::to_string(i)+".lightmode", "") == "breathing" ){ m.set_lightmode( profile_lut[i-1], mouse_m908::lightmode_breathing ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".lightmode", "") == "rainbow" ){ m.set_lightmode( profile_lut[i-1], mouse_m908::lightmode_rainbow ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".lightmode", "") == "static" ){ m.set_lightmode( profile_lut[i-1], mouse_m908::lightmode_static ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".lightmode", "") == "wave" ){ m.set_lightmode( profile_lut[i-1], mouse_m908::lightmode_wave ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".lightmode", "") == "alternating" ){ m.set_lightmode( profile_lut[i-1], mouse_m908::lightmode_alternating ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".lightmode", "") == "reactive" ){ m.set_lightmode( profile_lut[i-1], mouse_m908::lightmode_reactive ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".lightmode", "") == "flashing" ){ m.set_lightmode( profile_lut[i-1], mouse_m908::lightmode_flashing ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".lightmode", "") == "off" ){ m.set_lightmode( profile_lut[i-1], mouse_m908::lightmode_off ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".color", "").length() == 6 ){
|
|
|
|
m.set_color( profile_lut[i-1],
|
|
|
|
{(uint8_t)stoi( pt.get("profile"+std::to_string(i)+".color", "").substr(0,2), 0, 16),
|
|
|
|
(uint8_t)stoi( pt.get("profile"+std::to_string(i)+".color", "").substr(2,2), 0, 16),
|
|
|
|
(uint8_t)stoi( pt.get("profile"+std::to_string(i)+".color", "").substr(4,2), 0, 16)} );
|
2020-02-07 20:34:17 -07:00
|
|
|
}
|
2020-04-08 07:10:02 -06:00
|
|
|
if( pt.get("profile"+std::to_string(i)+".brightness", "").length() != 0 ){
|
|
|
|
m.set_brightness( profile_lut[i-1], (uint8_t)stoi( pt.get("profile"+std::to_string(i)+".brightness", ""), 0, 16) );
|
2020-02-07 20:34:17 -07:00
|
|
|
}
|
2020-04-08 07:10:02 -06:00
|
|
|
if( pt.get("profile"+std::to_string(i)+".speed", "").length() != 0 ){
|
|
|
|
m.set_speed( profile_lut[i-1], (uint8_t)stoi( pt.get("profile"+std::to_string(i)+".speed", ""), 0, 16) );
|
|
|
|
}
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".scrollspeed", "").length() != 0 ){
|
|
|
|
m.set_scrollspeed( profile_lut[i-1], (uint8_t)stoi( pt.get("profile"+std::to_string(i)+".scrollspeed", ""), 0, 16) );
|
2020-02-07 20:34:17 -07:00
|
|
|
}
|
2020-04-08 07:10:02 -06:00
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi1_enable", "") == "0" ){ m.set_dpi_enable( profile_lut[i-1], 0, false ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi2_enable", "") == "0" ){ m.set_dpi_enable( profile_lut[i-1], 1, false ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi3_enable", "") == "0" ){ m.set_dpi_enable( profile_lut[i-1], 2, false ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi4_enable", "") == "0" ){ m.set_dpi_enable( profile_lut[i-1], 3, false ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi5_enable", "") == "0" ){ m.set_dpi_enable( profile_lut[i-1], 4, false ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi1", "").length() != 0 ){ m.set_dpi( profile_lut[i-1], 0, (uint8_t)stoi( pt.get("profile"+std::to_string(i)+".dpi1", ""), 0, 16) ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi2", "").length() != 0 ){ m.set_dpi( profile_lut[i-1], 1, (uint8_t)stoi( pt.get("profile"+std::to_string(i)+".dpi2", ""), 0, 16) ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi3", "").length() != 0 ){ m.set_dpi( profile_lut[i-1], 2, (uint8_t)stoi( pt.get("profile"+std::to_string(i)+".dpi3", ""), 0, 16) ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi4", "").length() != 0 ){ m.set_dpi( profile_lut[i-1], 3, (uint8_t)stoi( pt.get("profile"+std::to_string(i)+".dpi4", ""), 0, 16) ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".dpi5", "").length() != 0 ){ m.set_dpi( profile_lut[i-1], 4, (uint8_t)stoi( pt.get("profile"+std::to_string(i)+".dpi5", ""), 0, 16) ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".report_rate", "") == "125" ){ m.set_report_rate( profile_lut[i-1], mouse_m908::r_125Hz ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".report_rate", "") == "250" ){ m.set_report_rate( profile_lut[i-1], mouse_m908::r_250Hz ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".report_rate", "") == "500" ){ m.set_report_rate( profile_lut[i-1], mouse_m908::r_500Hz ); }
|
|
|
|
if( pt.get("profile"+std::to_string(i)+".report_rate", "") == "1000" ){ m.set_report_rate( profile_lut[i-1], mouse_m908::r_1000Hz ); }
|
2020-02-07 20:34:17 -07:00
|
|
|
|
2020-07-12 14:48:41 -06:00
|
|
|
// button mapping
|
2020-07-20 12:28:10 -06:00
|
|
|
for( auto key : m.button_names() ){
|
2020-07-12 14:48:41 -06:00
|
|
|
if( pt.get("profile"+std::to_string(i)+"."+key.second, "").length() != 0 ){ m.set_key_mapping( profile_lut[i-1], key.first, pt.get("profile"+std::to_string(i)+"."+key.second, "") ); }
|
|
|
|
}
|
|
|
|
|
2019-11-08 17:10:30 -07:00
|
|
|
}
|
|
|
|
|
2020-04-08 07:10:02 -06:00
|
|
|
// open mouse
|
|
|
|
if( open_mouse_wrapper( m, flag_bus, flag_device, string_bus, string_device ) != 0 ){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-02-07 20:34:17 -07:00
|
|
|
// write settings
|
2019-11-08 17:10:30 -07:00
|
|
|
m.write_settings();
|
|
|
|
|
|
|
|
m.close_mouse();
|
|
|
|
} catch( std::exception& e ){
|
|
|
|
std::cerr << "Error: " << e.what() << "\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-02-07 20:34:17 -07:00
|
|
|
// change active profile
|
2019-11-08 17:10:30 -07:00
|
|
|
if( flag_profile ){
|
|
|
|
|
2020-02-07 20:34:17 -07:00
|
|
|
|
|
|
|
// set profile
|
2020-02-07 20:46:27 -07:00
|
|
|
if( !std::regex_match( string_profile, std::regex("[1-5]") ) ){
|
|
|
|
|
|
|
|
std::cout << "Wrong argument, expected 1-5.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-11-08 17:10:30 -07:00
|
|
|
if( string_profile == "1" ){ m.set_profile( mouse_m908::profile_1 ); }
|
|
|
|
if( string_profile == "2" ){ m.set_profile( mouse_m908::profile_2 ); }
|
|
|
|
if( string_profile == "3" ){ m.set_profile( mouse_m908::profile_3 ); }
|
|
|
|
if( string_profile == "4" ){ m.set_profile( mouse_m908::profile_4 ); }
|
|
|
|
if( string_profile == "5" ){ m.set_profile( mouse_m908::profile_5 ); }
|
|
|
|
|
2020-02-07 20:34:17 -07:00
|
|
|
|
|
|
|
// open mouse
|
2020-04-08 07:10:02 -06:00
|
|
|
if( open_mouse_wrapper( m, flag_bus, flag_device, string_bus, string_device ) != 0 ){
|
2019-11-08 17:10:30 -07:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-02-07 20:34:17 -07:00
|
|
|
// write profile
|
2019-11-08 17:10:30 -07:00
|
|
|
m.write_profile();
|
|
|
|
|
|
|
|
m.close_mouse();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-13 11:28:09 -06:00
|
|
|
// send all macros
|
|
|
|
if( flag_macro && !flag_number ){
|
|
|
|
|
|
|
|
// load macros
|
|
|
|
int r = m.set_all_macros( string_macro );
|
|
|
|
if( r != 0 ){
|
|
|
|
std::cout << "Couldn't load macros\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// open mouse
|
|
|
|
if( open_mouse_wrapper( m, flag_bus, flag_device, string_bus, string_device ) != 0 ){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// write macros
|
|
|
|
for( int i = 1; i < 16; i++ )
|
|
|
|
m.write_macro(i);
|
|
|
|
|
|
|
|
|
|
|
|
m.close_mouse();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// send individual macro
|
2019-12-07 17:52:41 -07:00
|
|
|
if( flag_macro && flag_number ){
|
|
|
|
|
2020-02-07 20:46:27 -07:00
|
|
|
|
|
|
|
// set macro and macro slot (number)
|
2019-12-07 17:52:41 -07:00
|
|
|
int r;
|
2020-02-07 20:46:27 -07:00
|
|
|
int number;
|
2019-12-07 17:52:41 -07:00
|
|
|
|
2020-02-07 20:46:27 -07:00
|
|
|
if( std::regex_match( string_number, std::regex("[0-9]+") ) ){
|
|
|
|
number = (int)stoi(string_number);
|
|
|
|
} else{
|
2020-02-10 07:24:46 -07:00
|
|
|
std::cout << "Wrong argument, expected 1-15.\n";
|
2020-02-07 20:46:27 -07:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( number < 1 || number > 15 ){
|
|
|
|
std::cout << "Wrong argument, expected 1-15.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2019-12-07 17:52:41 -07:00
|
|
|
|
|
|
|
r = m.set_macro( number, string_macro );
|
|
|
|
if( r != 0 ){
|
|
|
|
std::cout << "Couldn't load macro\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-02-07 20:34:17 -07:00
|
|
|
// open mouse
|
2020-04-08 07:10:02 -06:00
|
|
|
if( open_mouse_wrapper( m, flag_bus, flag_device, string_bus, string_device ) != 0 ){
|
2019-12-07 17:52:41 -07:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-02-07 20:34:17 -07:00
|
|
|
// write macro
|
2019-12-07 17:52:41 -07:00
|
|
|
m.write_macro(number);
|
|
|
|
|
2020-04-08 07:10:02 -06:00
|
|
|
// Repeating macros appear to be broken (in the official software as well),
|
|
|
|
// so this option is disabled for now.
|
|
|
|
// If you want to try it out, uncomment the next section and the
|
|
|
|
// appropriate lines in the commandline options section
|
2019-12-12 19:02:46 -07:00
|
|
|
/*if( flag_repeat ){
|
|
|
|
int repeat = (int)stoi(string_repeat);
|
|
|
|
r = m.set_macro_repeat( number, repeat );
|
|
|
|
if( r != 0 ){
|
|
|
|
std::cout << "Invalid repeats\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
m.write_macro_repeat( number );
|
|
|
|
}*/
|
|
|
|
|
2019-12-07 17:52:41 -07:00
|
|
|
m.close_mouse();
|
|
|
|
|
2020-05-13 11:28:09 -06:00
|
|
|
} else if( !flag_macro && flag_number ){
|
2020-02-07 20:34:17 -07:00
|
|
|
std::cout << "Misssing option, --macro and --number must be used together.\n";
|
2019-12-07 17:52:41 -07:00
|
|
|
}
|
|
|
|
|
2019-11-08 17:10:30 -07:00
|
|
|
return 0;
|
|
|
|
}
|