2014-04-06 18:49:27 +00:00
/* Copyright (C) 2014 by Jacob Alexander
*
* Permission is hereby granted , free of charge , to any person obtaining a copy
* of this software and associated documentation files ( the " Software " ) , to deal
* in the Software without restriction , including without limitation the rights
* to use , copy , modify , merge , publish , distribute , sublicense , and / or sell
* copies of the Software , and to permit persons to whom the Software is
* furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
* LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE .
*/
// ----- Includes -----
// Compiler Includes
# include <Lib/MacroLib.h>
// Project Includes
# include <cli.h>
# include <led.h>
# include <print.h>
# include <scan_loop.h>
# include <output_com.h>
// Keymaps
# include "usb_hid.h"
# include <defaultMap.h>
// Local Includes
# include "macro.h"
// ----- Function Declarations -----
void cliFunc_capList ( char * args ) ;
void cliFunc_capSelect ( char * args ) ;
void cliFunc_lookComb ( char * args ) ;
void cliFunc_lookDefault ( char * args ) ;
void cliFunc_lookPartial ( char * args ) ;
void cliFunc_macroDebug ( char * args ) ;
// ----- Variables -----
2014-04-13 04:13:37 +00:00
// Macro Module command dictionary
char * macroCLIDictName = " Macro Module Commands (Not all commands fully work yet...) " ;
2014-04-06 18:49:27 +00:00
CLIDictItem macroCLIDict [ ] = {
{ " capList " , " Prints an indexed list of all non USB keycode capabilities. " , cliFunc_capList } ,
2014-04-19 18:31:43 +00:00
{ " capSelect " , " Triggers the specified capability. " NL " \t \t \033 [35mU10 \033 [0m USB Code 0x0A, \033 [35mK11 \033 [0m Keyboard Capability 0x0B, \033 [35mS12 \033 [0m Scancode 0x0C " , cliFunc_capSelect } ,
{ " lookComb " , " Do a lookup on the Combined map. " NL " \t \t \033 [35mS10 \033 [0m Scancode 0x0A, \033 [35mU11 \033 [0m USB Code 0x0B " , cliFunc_lookComb } ,
{ " lookDefault " , " Do a lookup on the Default map. " NL " \t \t \033 [35mS10 \033 [0m Scancode 0x0A " , cliFunc_lookDefault } ,
{ " lookPartial " , " Do a lookup on the layered Partial maps. " NL " \t \t \033 [35mS10 \033 [0m Scancode 0x0A, \033 [35mU11 \033 [0m USB Code 0x0B " , cliFunc_lookPartial } ,
2014-04-06 18:49:27 +00:00
{ " macroDebug " , " Disables/Enables sending USB keycodes to the Output Module and prints U/K codes. " , cliFunc_macroDebug } ,
{ 0 , 0 , 0 } // Null entry for dictionary end
} ;
2014-04-06 20:12:31 +00:00
// Macro debug flag - If set, clears the USB Buffers after signalling processing completion
uint8_t macroDebugMode = 0 ;
2014-04-06 18:49:27 +00:00
// ----- Functions -----
inline void Macro_bufferAdd ( uint8_t byte )
{
// Make sure we haven't overflowed the key buffer
// Default function for adding keys to the KeyIndex_Buffer, does a DefaultMap_Lookup
if ( KeyIndex_BufferUsed < KEYBOARD_BUFFER )
{
KeyIndex_Buffer [ KeyIndex_BufferUsed + + ] = DefaultMap_Lookup [ byte ] ;
}
}
inline void Macro_finishWithUSBBuffer ( uint8_t sentKeys )
{
}
inline void Macro_process ( )
{
// Only do one round of macro processing between Output Module timer sends
if ( USBKeys_Sent ! = 0 )
return ;
// Loop through input buffer
for ( uint8_t index = 0 ; index < KeyIndex_BufferUsed ; index + + )
{
// Get the keycode from the buffer
uint8_t key = KeyIndex_Buffer [ index ] ;
// Set the modifier bit if this key is a modifier
if ( key & KEY_LCTRL ) // AND with 0xE0
{
USBKeys_Modifiers | = 1 < < ( key ^ KEY_LCTRL ) ; // Left shift 1 by key XOR 0xE0
// Modifier processed, move on to the next key
continue ;
}
// Too many keys
if ( USBKeys_Sent > = USBKeys_MaxSize )
{
2014-04-06 20:12:31 +00:00
warn_msg ( " USB Key limit reached " ) ;
2014-04-06 18:49:27 +00:00
errorLED ( 1 ) ;
break ;
}
// Allow ignoring keys with 0's
if ( key ! = 0 )
{
USBKeys_Array [ USBKeys_Sent + + ] = key ;
}
else
{
// Key was not mapped
2014-04-06 20:12:31 +00:00
erro_msg ( " Key not mapped... - " ) ;
2014-04-06 18:49:27 +00:00
printHex ( key ) ;
errorLED ( 1 ) ;
}
}
// Signal buffer that we've used it
Scan_finishedWithBuffer ( KeyIndex_BufferUsed ) ;
2014-04-06 20:12:31 +00:00
// If Macro debug mode is set, clear the USB Buffer
if ( macroDebugMode )
{
USBKeys_Modifiers = 0 ;
USBKeys_Sent = 0 ;
}
2014-04-06 18:49:27 +00:00
}
inline void Macro_setup ( )
{
// Register Macro CLI dictionary
CLI_registerDictionary ( macroCLIDict , macroCLIDictName ) ;
2014-04-06 20:12:31 +00:00
// Disable Macro debug mode
macroDebugMode = 0 ;
2014-04-06 18:49:27 +00:00
}
// ----- CLI Command Functions -----
void cliFunc_capList ( char * args )
{
// TODO
}
void cliFunc_capSelect ( char * args )
{
2014-04-06 20:12:31 +00:00
// Parse code from argument
// NOTE: Only first argument is used
char * arg1Ptr ;
char * arg2Ptr ;
CLI_argumentIsolation ( args , & arg1Ptr , & arg2Ptr ) ;
// Depending on the first character, the lookup changes
switch ( arg1Ptr [ 0 ] )
{
// Keyboard Capability
case ' K ' :
// TODO
break ;
// Scancode
case ' S ' :
// Add to the USB Buffer using the DefaultMap lookup
Macro_bufferAdd ( decToInt ( & arg1Ptr [ 1 ] ) ) ;
break ;
// USB Code
case ' U ' :
// Just add the key to the USB Buffer
if ( KeyIndex_BufferUsed < KEYBOARD_BUFFER )
{
KeyIndex_Buffer [ KeyIndex_BufferUsed + + ] = decToInt ( & arg1Ptr [ 1 ] ) ;
}
break ;
}
2014-04-06 18:49:27 +00:00
}
void cliFunc_lookComb ( char * args )
{
2014-04-06 20:12:31 +00:00
// Parse code from argument
// NOTE: Only first argument is used
char * arg1Ptr ;
char * arg2Ptr ;
CLI_argumentIsolation ( args , & arg1Ptr , & arg2Ptr ) ;
// Depending on the first character, the lookup changes
switch ( arg1Ptr [ 0 ] )
{
// Scancode
case ' S ' :
// TODO
break ;
// USB Code
case ' U ' :
// TODO
break ;
}
2014-04-06 18:49:27 +00:00
}
void cliFunc_lookDefault ( char * args )
{
2014-04-06 20:12:31 +00:00
// Parse code from argument
// NOTE: Only first argument is used
char * arg1Ptr ;
char * arg2Ptr ;
CLI_argumentIsolation ( args , & arg1Ptr , & arg2Ptr ) ;
// Depending on the first character, the lookup changes
switch ( arg1Ptr [ 0 ] )
{
// Scancode
case ' S ' :
print ( NL ) ;
printInt8 ( DefaultMap_Lookup [ decToInt ( & arg1Ptr [ 1 ] ) ] ) ;
print ( " " ) ;
printHex ( DefaultMap_Lookup [ decToInt ( & arg1Ptr [ 1 ] ) ] ) ;
break ;
}
2014-04-06 18:49:27 +00:00
}
void cliFunc_lookPartial ( char * args )
{
2014-04-06 20:12:31 +00:00
// Parse code from argument
// NOTE: Only first argument is used
char * arg1Ptr ;
char * arg2Ptr ;
CLI_argumentIsolation ( args , & arg1Ptr , & arg2Ptr ) ;
// Depending on the first character, the lookup changes
switch ( arg1Ptr [ 0 ] )
{
// Scancode
case ' S ' :
// TODO
break ;
// USB Code
case ' U ' :
// TODO
break ;
}
2014-04-06 18:49:27 +00:00
}
void cliFunc_macroDebug ( char * args )
{
2014-04-06 20:12:31 +00:00
// Toggle macro debug mode
macroDebugMode = macroDebugMode ? 0 : 1 ;
print ( NL ) ;
info_msg ( " Macro Debug Mode: " ) ;
printInt8 ( macroDebugMode ) ;
2014-04-06 18:49:27 +00:00
}