From 2f68856cf4b06e2a683bbd1b0d81d45487523577 Mon Sep 17 00:00:00 2001 From: Landrovan <> Date: Fri, 24 Mar 2017 22:20:29 -0400 Subject: [PATCH 1/6] First test for custom effects. --- makefile | 4 ++-- src/main.cpp | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 850dda5..77714c0 100644 --- a/makefile +++ b/makefile @@ -2,10 +2,10 @@ CC=g++ CFLAGS=-Wall -O2 -std=gnu++11 LIB?=hidapi ifeq ($(LIB),libusb) - CPPFLAGS=-Dlibusb + CPPFLAGS=-Dlibusb -lpthread LDFLAGS=-lusb-1.0 else - CPPFLAGS=-Dhidapi + CPPFLAGS=-Dhidapi -lpthread LDFLAGS=-lhidapi-hidraw endif PROGN=g810-led diff --git a/src/main.cpp b/src/main.cpp index bd3dcae..3dfcd55 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -6,6 +6,7 @@ #include "helpers/help.h" #include "helpers/utils.h" #include "classes/Keyboard.h" +#include "classes/CustomEffects.h" int commit(LedKeyboard &kbd) { @@ -247,6 +248,8 @@ int main(int argc, char **argv) { else if (argc > 5 && arg == "-fx") return setFX(kbd, argv[2], argv[3], argv[4], argv[5]); else if (argc > 4 && arg == "-fx") return setFX(kbd, argv[2], argv[3], argv[4]); + else if (argc > 2 && arg == "-cfx") return StartCustomEffects( kbd, argc + 2, argv + 2 ); + else if (argc > 2 && arg == "--startup-mode") return setStartupMode(kbd, argv[2]); else { help::usage(argv[0]); return 1; } From 060030036c69ec2b5b8babfe239eb93a2d635b8c Mon Sep 17 00:00:00 2001 From: Landrovan Date: Fri, 24 Mar 2017 22:20:29 -0400 Subject: [PATCH 2/6] First test for custom effects. --- makefile | 4 ++-- src/main.cpp | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 850dda5..77714c0 100644 --- a/makefile +++ b/makefile @@ -2,10 +2,10 @@ CC=g++ CFLAGS=-Wall -O2 -std=gnu++11 LIB?=hidapi ifeq ($(LIB),libusb) - CPPFLAGS=-Dlibusb + CPPFLAGS=-Dlibusb -lpthread LDFLAGS=-lusb-1.0 else - CPPFLAGS=-Dhidapi + CPPFLAGS=-Dhidapi -lpthread LDFLAGS=-lhidapi-hidraw endif PROGN=g810-led diff --git a/src/main.cpp b/src/main.cpp index bd3dcae..3dfcd55 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -6,6 +6,7 @@ #include "helpers/help.h" #include "helpers/utils.h" #include "classes/Keyboard.h" +#include "classes/CustomEffects.h" int commit(LedKeyboard &kbd) { @@ -247,6 +248,8 @@ int main(int argc, char **argv) { else if (argc > 5 && arg == "-fx") return setFX(kbd, argv[2], argv[3], argv[4], argv[5]); else if (argc > 4 && arg == "-fx") return setFX(kbd, argv[2], argv[3], argv[4]); + else if (argc > 2 && arg == "-cfx") return StartCustomEffects( kbd, argc + 2, argv + 2 ); + else if (argc > 2 && arg == "--startup-mode") return setStartupMode(kbd, argv[2]); else { help::usage(argv[0]); return 1; } From b4ea216a6f228b13a4dc8a9be7fceab15f7d39e5 Mon Sep 17 00:00:00 2001 From: Landrovan Date: Fri, 24 Mar 2017 22:35:10 -0400 Subject: [PATCH 3/6] Forgot to add file --- src/classes/CustomEffects.cpp | 77 +++++++++++++++++++++++++++++++++++ src/classes/CustomEffects.h | 12 ++++++ 2 files changed, 89 insertions(+) create mode 100644 src/classes/CustomEffects.cpp create mode 100644 src/classes/CustomEffects.h diff --git a/src/classes/CustomEffects.cpp b/src/classes/CustomEffects.cpp new file mode 100644 index 0000000..38821fb --- /dev/null +++ b/src/classes/CustomEffects.cpp @@ -0,0 +1,77 @@ +#include "CustomEffects.h" + +#include "Keyboard.h" + +#include +#include +#include + +// Global variables to know when a user activate input +std::atomic< bool > KeyPressed; + +void Test1Effects( LedKeyboard& kbd ) +{ + LedKeyboard::Key key = LedKeyboard::Key::r; + LedKeyboard::Color color; + color.red = 0; + color.green = 0; + color.blue = 0; + + while ( !KeyPressed ) + { + ++color.red; + LedKeyboard::KeyValue keyValue = { key, color }; + if (! kbd.open()) return; + if (! kbd.setKey(keyValue)) return; + if(! kbd.commit()) return; + + //std::cout << "TEST" << std::endl; + std::this_thread::sleep_for ( std::chrono::milliseconds( 10 ) ); + } +} + +int StartEffectsAndWaitForUser( LedKeyboard& kbd ) +{ + // Start the effects on a thread + std::thread lThread( Test1Effects, std::ref( kbd ) ); + + // Wait for user input + std::cout << "Press enter to quit"; + getchar(); + + // Stop the thread and wait for it to finish + KeyPressed = true; + lThread.join(); + + return 0; +} + + +int StartCustomEffects( LedKeyboard& kbd, int argc, char** argv ) +{ + if ( argc < 1 ) + { + // Not enough parameters + return 1; + } + + KeyPressed = false; + std::string Type = argv[0]; + if ( Type == "test1" ) + { + return StartEffectsAndWaitForUser( kbd ); + } + else + { + // No custom effects of this name + std::cout << "No effects of name: " << Type << std::endl; + } + + // First param is the custom effects to create. Convert it to an enum + + /*for ( int i = 0; i < argc; ++i ) + { + std::cout << argv[i] << std::endl; + }*/ + return 0; +} diff --git a/src/classes/CustomEffects.h b/src/classes/CustomEffects.h new file mode 100644 index 0000000..5d212d2 --- /dev/null +++ b/src/classes/CustomEffects.h @@ -0,0 +1,12 @@ +#ifndef __CUSTOM_EFFECTS__ +#define __CUSTOM_EFFECTS__ + +#include + +class LedKeyboard; + +// Start the custom effects and wait for user input before quitting. +// Assume the given arg are ONLY refering to the effects (so the program name and arguments are ommited). +int StartCustomEffects( LedKeyboard& kbd, int argc, char** argv ); + +#endif // __CUSTOM_EFFECTS__ From 33dd0713e106a2dcfe652444c808d3c0693f6a06 Mon Sep 17 00:00:00 2001 From: Landrovan Date: Sat, 25 Mar 2017 07:07:32 -0400 Subject: [PATCH 4/6] New custom effects. --- src/classes/CustomEffects.cpp | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/src/classes/CustomEffects.cpp b/src/classes/CustomEffects.cpp index 38821fb..b96642d 100644 --- a/src/classes/CustomEffects.cpp +++ b/src/classes/CustomEffects.cpp @@ -4,6 +4,7 @@ #include #include +#include #include // Global variables to know when a user activate input @@ -30,10 +31,33 @@ void Test1Effects( LedKeyboard& kbd ) } } -int StartEffectsAndWaitForUser( LedKeyboard& kbd ) +void Test2Effects( LedKeyboard& kbd ) +{ + LedKeyboard::Key key = LedKeyboard::Key::t; + LedKeyboard::Color color; + color.red = 0; + color.green = 0; + color.blue = 0; + + while ( !KeyPressed ) + { + ++color.blue; + LedKeyboard::KeyValue keyValue = { key, color }; + if (! kbd.open()) return; + if (! kbd.setKey(keyValue)) return; + if(! kbd.commit()) return; + + //std::cout << "TEST" << std::endl; + std::this_thread::sleep_for ( std::chrono::milliseconds( 10 ) ); + } +} + +/////////////////////////////////////////////////////////////////////////////////// + +int StartEffectsAndWaitForUser( LedKeyboard& kbd, std::function< void( LedKeyboard& ) > EffectsFunction ) { // Start the effects on a thread - std::thread lThread( Test1Effects, std::ref( kbd ) ); + std::thread lThread( EffectsFunction, std::ref( kbd ) ); // Wait for user input std::cout << "Press enter to quit"; @@ -57,10 +81,8 @@ int StartCustomEffects( LedKeyboard& kbd, int argc, char** argv ) KeyPressed = false; std::string Type = argv[0]; - if ( Type == "test1" ) - { - return StartEffectsAndWaitForUser( kbd ); - } + if ( Type == "test1" ) return StartEffectsAndWaitForUser( kbd, Test1Effects ); + else if ( Type == "test2" ) return StartEffectsAndWaitForUser( kbd, Test2Effects ); else { // No custom effects of this name From 01790b0b1f7dce1503b88aa4da5fd79da4450096 Mon Sep 17 00:00:00 2001 From: Landrovan Date: Sat, 25 Mar 2017 07:23:20 -0400 Subject: [PATCH 5/6] Add possibility to start multiple effects at the same time. --- src/classes/CustomEffects.cpp | 51 ++++++++++++++++++++++------------- src/main.cpp | 2 +- 2 files changed, 33 insertions(+), 20 deletions(-) diff --git a/src/classes/CustomEffects.cpp b/src/classes/CustomEffects.cpp index b96642d..aee2af5 100644 --- a/src/classes/CustomEffects.cpp +++ b/src/classes/CustomEffects.cpp @@ -6,6 +6,7 @@ #include #include #include +#include // Global variables to know when a user activate input std::atomic< bool > KeyPressed; @@ -54,18 +55,31 @@ void Test2Effects( LedKeyboard& kbd ) /////////////////////////////////////////////////////////////////////////////////// -int StartEffectsAndWaitForUser( LedKeyboard& kbd, std::function< void( LedKeyboard& ) > EffectsFunction ) +int StartEffectsAndWaitForUser( LedKeyboard& kbd, std::vector< std::function< void( LedKeyboard& ) > >& EffectFunctions ) { - // Start the effects on a thread - std::thread lThread( EffectsFunction, std::ref( kbd ) ); + if ( EffectFunctions.size() == 0 ) + { + std::cout << "No effects to apply." << std::endl; + return 1; + } + + // Start all the effects on a thread + std::vector< std::thread > ThreadList; + for( unsigned int i = 0; i < EffectFunctions.size(); ++i ) + { + ThreadList.emplace_back( EffectFunctions[i], std::ref( kbd ) ); + } // Wait for user input std::cout << "Press enter to quit"; getchar(); - // Stop the thread and wait for it to finish + // Stop the threads and wait for them to finish KeyPressed = true; - lThread.join(); + for( unsigned int i = 0; i < ThreadList.size(); ++i ) + { + ThreadList[i].join(); + } return 0; } @@ -78,22 +92,21 @@ int StartCustomEffects( LedKeyboard& kbd, int argc, char** argv ) // Not enough parameters return 1; } - KeyPressed = false; - std::string Type = argv[0]; - if ( Type == "test1" ) return StartEffectsAndWaitForUser( kbd, Test1Effects ); - else if ( Type == "test2" ) return StartEffectsAndWaitForUser( kbd, Test2Effects ); - else + + // Each arguments is an effects. Check all the arguments to get the list of all wanted effects + std::vector< std::function< void( LedKeyboard& ) > > EffectFunctions; + for ( int i = 0; i < argc; ++i ) { - // No custom effects of this name - std::cout << "No effects of name: " << Type << std::endl; + std::string Type = argv[i]; + if ( Type == "test1" ) EffectFunctions.emplace_back( Test1Effects ); + else if ( Type == "test2" ) EffectFunctions.emplace_back( Test2Effects ); + else + { + // No custom effects of this name + std::cout << "No effects of name: " << Type << std::endl; + } } - // First param is the custom effects to create. Convert it to an enum - - /*for ( int i = 0; i < argc; ++i ) - { - std::cout << argv[i] << std::endl; - }*/ - return 0; + return StartEffectsAndWaitForUser( kbd, EffectFunctions ); } diff --git a/src/main.cpp b/src/main.cpp index 3dfcd55..355ba09 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -248,7 +248,7 @@ int main(int argc, char **argv) { else if (argc > 5 && arg == "-fx") return setFX(kbd, argv[2], argv[3], argv[4], argv[5]); else if (argc > 4 && arg == "-fx") return setFX(kbd, argv[2], argv[3], argv[4]); - else if (argc > 2 && arg == "-cfx") return StartCustomEffects( kbd, argc + 2, argv + 2 ); + else if (argc > 2 && arg == "-cfx") return StartCustomEffects( kbd, argc - 2, argv + 2 ); else if (argc > 2 && arg == "--startup-mode") return setStartupMode(kbd, argv[2]); From 48b9406d5954f303701eeaef09e2b6cd5cf7cf4f Mon Sep 17 00:00:00 2001 From: Landrovan Date: Sat, 25 Mar 2017 08:24:36 -0400 Subject: [PATCH 6/6] Add custom effects to help. --- src/helpers/help.cpp | 15 +++++++++++++++ src/helpers/help.h | 1 + src/main.cpp | 1 + 3 files changed, 17 insertions(+) diff --git a/src/helpers/help.cpp b/src/helpers/help.cpp index 3492552..12f5569 100644 --- a/src/helpers/help.cpp +++ b/src/helpers/help.cpp @@ -33,6 +33,8 @@ namespace help { cout<