Browse Source

Fixed multi-byte capability arguments.

- Little endian byte conversion required (has to do with struct assignment rather than architecture)
simple
Jacob Alexander 9 years ago
parent
commit
eb5bf66d71
2 changed files with 29 additions and 4 deletions
  1. 12
    2
      examples/md1Map.kll
  2. 17
    2
      kll.py

+ 12
- 2
examples/md1Map.kll View File

@@ -8,8 +8,11 @@ Date = 2014-09-07;


# MOVE THIS SECTION to another file
usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );
layerState => Macro_layerState_capability( layer: 2, state : 1 );
usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );
layerState => Macro_layerState_capability( layer : 2, state : 1 );
layerLatch => Macro_layerLatch_capability( layer : 2 );
layerLock => Macro_layerLock_capability( layer : 2 );
layerShift => Macro_layerShift_capability( layer : 2 );
# END SECTION


@@ -77,3 +80,10 @@ S0x3C : U"Function3"; # Right Blank Key 1
S0x3D : U"Function4"; # Right Blank Key 2
S0x3E : U"BackTick";

# TODO MOVE
# Function Layer Assignments
U"Function1" : layerShift( 1 );
U"Function2" : layerShift( 1 );
U"Function3" : layerShift( 1 );
U"Function4" : layerShift( 1 );


+ 17
- 2
kll.py View File

@@ -107,7 +107,7 @@ def processCommandLineArgs():
defaultFiles = args.default
partialFileSets = args.partial
if defaultFiles is None:
partialFileSets = []
defaultFiles = []
if partialFileSets is None:
partialFileSets = [[]]

@@ -321,6 +321,21 @@ def oneLayerFlatten( items ):

return mainList

# Capability arguments may need to be expanded (e.g. 1 16 bit argument needs to be 2 8 bit arguments for the state machine)
def capArgExpander( items ):
newArgs = []
# For each defined argument in the capability definition
for arg in range( 0, len( capabilities_dict[ items[0] ][1] ) ):
argLen = capabilities_dict[ items[0] ][1][ arg ][1]
num = items[1][ arg ]
byteForm = num.to_bytes( argLen, byteorder='little' ) # XXX Yes, little endian from how the uC structs work

# For each sub-argument, split into byte-sized chunks
for byte in range( 0, argLen ):
newArgs.append( byteForm[ byte ] )

return tuple( [ items[0], tuple( newArgs ) ] )

# Expand ranges of values in the 3rd dimension of the list, to a list of 2nd lists
# i.e. [ sequence, [ combo, [ range ] ] ] --> [ [ sequence, [ combo ] ], <option 2>, <option 3> ]
def optionExpansion( sequences ):
@@ -478,7 +493,7 @@ usbCode_sequence = oneplus( ( usbCode_combo | seqString ) + skip( maybe( comm

# Capabilities
capFunc_arguments = many( number + skip( maybe( comma ) ) ) >> listToTuple
capFunc_elem = name + skip( parenthesis('(') ) + capFunc_arguments + skip( parenthesis(')') ) >> listElem
capFunc_elem = name + skip( parenthesis('(') ) + capFunc_arguments + skip( parenthesis(')') ) >> capArgExpander >> listElem
capFunc_combo = oneplus( ( usbCode_expanded | usbCode_elem | capFunc_elem ) + skip( maybe( plus ) ) ) >> listElem
capFunc_sequence = oneplus( ( capFunc_combo | seqString ) + skip( maybe( comma ) ) ) >> oneLayerFlatten