diff --git a/makefile b/makefile index 719c410..d236fcc 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 SYSTEMDDIR?=/usr/lib/systemd diff --git a/src/classes/CustomEffects.cpp b/src/classes/CustomEffects.cpp new file mode 100644 index 0000000..aee2af5 --- /dev/null +++ b/src/classes/CustomEffects.cpp @@ -0,0 +1,112 @@ +#include "CustomEffects.h" + +#include "Keyboard.h" + +#include +#include +#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 ) ); + } +} + +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::vector< std::function< void( LedKeyboard& ) > >& EffectFunctions ) +{ + 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 threads and wait for them to finish + KeyPressed = true; + for( unsigned int i = 0; i < ThreadList.size(); ++i ) + { + ThreadList[i].join(); + } + + return 0; +} + + +int StartCustomEffects( LedKeyboard& kbd, int argc, char** argv ) +{ + if ( argc < 1 ) + { + // Not enough parameters + return 1; + } + KeyPressed = false; + + // 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 ) + { + 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; + } + } + + return StartEffectsAndWaitForUser( kbd, EffectFunctions ); +} 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__ diff --git a/src/helpers/help.cpp b/src/helpers/help.cpp index c77472f..0b44109 100644 --- a/src/helpers/help.cpp +++ b/src/helpers/help.cpp @@ -36,6 +36,8 @@ namespace help { cout< 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; }