KLL Compiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

kiibohd.py 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. #!/usr/bin/env python3
  2. '''
  3. KLL Kiibohd .h File Emitter
  4. '''
  5. # Copyright (C) 2016 by Jacob Alexander
  6. #
  7. # This file is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This file is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this file. If not, see <http://www.gnu.org/licenses/>.
  19. ### Imports ###
  20. import re
  21. import sys
  22. from datetime import date
  23. from common.emitter import Emitter, TextEmitter
  24. from common.hid_dict import kll_hid_lookup_dictionary
  25. ### Decorators ###
  26. ## Print Decorator Variables
  27. ERROR = '\033[5;1;31mERROR\033[0m:'
  28. WARNING = '\033[5;1;33mWARNING\033[0m:'
  29. ### Classes ###
  30. class Kiibohd( Emitter, TextEmitter ):
  31. '''
  32. Kiibohd .h file emitter for KLL
  33. '''
  34. # List of required capabilities
  35. requiredCapabilities = {
  36. 'CONS' : 'consCtrlOut',
  37. 'NONE' : 'noneOut',
  38. 'SYS' : 'sysCtrlOut',
  39. 'USB' : 'usbKeyOut',
  40. }
  41. def __init__( self, control ):
  42. '''
  43. Emitter initialization
  44. @param control: ControlStage object, used to access data from other stages
  45. '''
  46. Emitter.__init__( self, control )
  47. TextEmitter.__init__( self )
  48. # Defaults
  49. self.map_template = "templates/kiibohdKeymap.h"
  50. self.def_template = "templates/kiibohdDefs.h"
  51. self.map_output = "generatedKeymap.h"
  52. self.def_output = "kll_defs.h"
  53. self.fill_dict = {}
  54. def command_line_args( self, args ):
  55. '''
  56. Group parser for command line arguments
  57. @param args: Name space of processed arguments
  58. '''
  59. self.def_template = args.def_template
  60. self.map_template = args.map_template
  61. self.def_output = args.def_output
  62. self.map_output = args.map_output
  63. def command_line_flags( self, parser ):
  64. '''
  65. Group parser for command line options
  66. @param parser: argparse setup object
  67. '''
  68. # Create new option group
  69. group = parser.add_argument_group('\033[1mKiibohd Emitter Configuration\033[0m')
  70. group.add_argument( '--def-template', type=str, default=self.def_template,
  71. help="Specify KLL define .h file template.\n"
  72. "\033[1mDefault\033[0m: {0}\n".format( self.def_template )
  73. )
  74. group.add_argument( '--map-template', type=str, default=self.map_template,
  75. help="Specify KLL map .h file template.\n"
  76. "\033[1mDefault\033[0m: {0}\n".format( self.map_template )
  77. )
  78. group.add_argument( '--def-output', type=str, default=self.def_output,
  79. help="Specify KLL define .h file output.\n"
  80. "\033[1mDefault\033[0m: {0}\n".format( self.def_output )
  81. )
  82. group.add_argument( '--map-output', type=str, default=self.map_output,
  83. help="Specify KLL map .h file output.\n"
  84. "\033[1mDefault\033[0m: {0}\n".format( self.map_output )
  85. )
  86. def output( self ):
  87. '''
  88. Final Stage of Emitter
  89. Generate desired outputs from templates
  90. '''
  91. # Load define template and generate
  92. self.load_template( self.def_template )
  93. self.generate( self.def_output )
  94. # Load keymap template and generate
  95. self.load_template( self.map_template )
  96. self.generate( self.map_output )
  97. def process( self ):
  98. '''
  99. Emitter Processing
  100. Takes KLL datastructures and Analysis results then populates the fill_dict
  101. The fill_dict is used populate the template files.
  102. '''
  103. # Acquire Datastructures
  104. early_contexts = self.control.stage('DataOrganizationStage').contexts
  105. base_context = self.control.stage('DataFinalizationStage').base_context
  106. default_context = self.control.stage('DataFinalizationStage').default_context
  107. partial_contexts = self.control.stage('DataFinalizationStage').partial_contexts
  108. full_context = self.control.stage('DataFinalizationStage').full_context
  109. # Build string list of compiler arguments
  110. compilerArgs = ""
  111. for arg in sys.argv:
  112. if "--" in arg or ".py" in arg:
  113. compilerArgs += "// {0}\n".format( arg )
  114. else:
  115. compilerArgs += "// {0}\n".format( arg )
  116. # Build a string of modified files, if any
  117. gitChangesStr = "\n"
  118. if len( self.control.git_changes ) > 0:
  119. for gitFile in self.control.git_changes:
  120. gitChangesStr += "// {0}\n".format( gitFile )
  121. else:
  122. gitChangesStr = " None\n"
  123. # Prepare BaseLayout and Layer Info
  124. configLayoutInfo = ""
  125. if 'ConfigurationContext' in early_contexts.keys():
  126. contexts = early_contexts['ConfigurationContext'].query_contexts( 'AssignmentExpression', 'Array' )
  127. for sub in contexts:
  128. name = sub[0].data['Name'].value
  129. configLayoutInfo += "// {0}\n// {1}\n".format( name, sub[1].parent.path )
  130. genericLayoutInfo = ""
  131. if 'GenericContext' in early_contexts.keys():
  132. contexts = early_contexts['GenericContext'].query_contexts( 'AssignmentExpression', 'Array' )
  133. for sub in contexts:
  134. name = sub[0].data['Name'].value
  135. genericLayoutInfo += "// {0}\n// {1}\n".format( name, sub[1].parent.path )
  136. baseLayoutInfo = ""
  137. if 'BaseMapContext' in early_contexts.keys():
  138. contexts = early_contexts['BaseMapContext'].query_contexts( 'AssignmentExpression', 'Array' )
  139. for sub in contexts:
  140. name = sub[0].data['Name'].value
  141. baseLayoutInfo += "// {0}\n// {1}\n".format( name, sub[1].parent.path )
  142. defaultLayerInfo = ""
  143. if 'DefaultMapContext' in early_contexts.keys():
  144. contexts = early_contexts['DefaultMapContext'].query_contexts( 'AssignmentExpression', 'Array' )
  145. for sub in contexts:
  146. name = sub[0].data['Name'].value
  147. defaultLayerInfo += "// {0}\n// {1}\n".format( name, sub[1].parent.path )
  148. partialLayersInfo = ""
  149. partial_context_list = [
  150. ( item[1].layer, item[0] )
  151. for item in early_contexts.items()
  152. if 'PartialMapContext' in item[0]
  153. ]
  154. for layer, tag in sorted( partial_context_list, key=lambda x: x[0] ):
  155. partialLayersInfo += "// Layer {0}\n".format( layer + 1 )
  156. contexts = early_contexts[ tag ].query_contexts( 'AssignmentExpression', 'Array' )
  157. for sub in contexts:
  158. name = sub[0].data['Name'].value
  159. partialLayersInfo += "// {0}\n// {1}\n".format( name, sub[1].parent.path )
  160. ## Information ##
  161. self.fill_dict['Information'] = "// This file was generated by the kll compiler, DO NOT EDIT.\n"
  162. self.fill_dict['Information'] += "// Generation Date: {0}\n".format( date.today() )
  163. self.fill_dict['Information'] += "// KLL Emitter: {0}\n".format(
  164. self.control.stage('CompilerConfigurationStage').emitter
  165. )
  166. self.fill_dict['Information'] += "// KLL Version: {0}\n".format( self.control.version )
  167. self.fill_dict['Information'] += "// KLL Git Changes:{0}".format( gitChangesStr )
  168. self.fill_dict['Information'] += "// Compiler arguments:\n{0}".format( compilerArgs )
  169. self.fill_dict['Information'] += "//\n"
  170. self.fill_dict['Information'] += "// - Configuration File -\n{0}".format( configLayoutInfo )
  171. self.fill_dict['Information'] += "// - Generic Files -\n{0}".format( genericLayoutInfo )
  172. self.fill_dict['Information'] += "// - Base Layer -\n{0}".format( baseLayoutInfo )
  173. self.fill_dict['Information'] += "// - Default Layer -\n{0}".format( defaultLayerInfo )
  174. self.fill_dict['Information'] += "// - Partial Layers -\n{0}".format( partialLayersInfo )
  175. ## Defines ##
  176. self.fill_dict['Defines'] = ""
  177. # Iterate through defines and lookup the variables
  178. defines = full_context.query( 'NameAssociationExpression', 'Define' )
  179. variables = full_context.query( 'AssignmentExpression', 'Variable' )
  180. for dkey, dvalue in sorted( defines.data.items() ):
  181. if dvalue.name in variables.data.keys():
  182. self.fill_dict['Defines'] += "\n#define {0} {1}".format(
  183. dvalue.association,
  184. variables.data[ dvalue.name ].value.replace( '\n', ' \\\n' ),
  185. )
  186. else:
  187. print( "{0} '{1}' not defined...".format( WARNING, dvalue.name ) )
  188. ## Capabilities ##
  189. self.fill_dict['CapabilitiesFuncDecl'] = ""
  190. self.fill_dict['CapabilitiesList'] = "const Capability CapabilitiesList[] = {\n"
  191. self.fill_dict['CapabilitiesIndices'] = "typedef enum CapabilityIndex {\n"
  192. # Keys are pre-sorted
  193. capabilities = full_context.query( 'NameAssociationExpression', 'Capability' )
  194. for dkey, dvalue in sorted( capabilities.data.items() ):
  195. funcName = dvalue.association.name
  196. argByteWidth = dvalue.association.total_arg_bytes()
  197. self.fill_dict['CapabilitiesList'] += "\t{{ {0}, {1} }},\n".format( funcName, argByteWidth )
  198. self.fill_dict['CapabilitiesFuncDecl'] += \
  199. "void {0}( uint8_t state, uint8_t stateType, uint8_t *args );\n".format( funcName )
  200. self.fill_dict['CapabilitiesIndices'] += "\t{0}_index,\n".format( funcName )
  201. self.fill_dict['CapabilitiesList'] += "};"
  202. self.fill_dict['CapabilitiesIndices'] += "} CapabilityIndex;"
  203. return
  204. ## Results Macros ##
  205. self.fill_dict['ResultMacros'] = ""
  206. # Iterate through each of the result macros
  207. for result in range( 0, len( macros.resultsIndexSorted ) ):
  208. self.fill_dict['ResultMacros'] += "Guide_RM( {0} ) = {{ ".format( result )
  209. # Add the result macro capability index guide (including capability arguments)
  210. # See kiibohd controller Macros/PartialMap/kll.h for exact formatting details
  211. for sequence in range( 0, len( macros.resultsIndexSorted[ result ] ) ):
  212. # If the sequence is longer than 1, prepend a sequence spacer
  213. # Needed for USB behaviour, otherwise, repeated keys will not work
  214. if sequence > 0:
  215. # <single element>, <usbCodeSend capability>, <USB Code 0x00>
  216. self.fill_dict['ResultMacros'] += "1, {0}, 0x00, ".format( capabilities.getIndex( self.capabilityLookup('USB') ) )
  217. # For each combo in the sequence, add the length of the combo
  218. self.fill_dict['ResultMacros'] += "{0}, ".format( len( macros.resultsIndexSorted[ result ][ sequence ] ) )
  219. # For each combo, add each of the capabilities used and their arguments
  220. for combo in range( 0, len( macros.resultsIndexSorted[ result ][ sequence ] ) ):
  221. resultItem = macros.resultsIndexSorted[ result ][ sequence ][ combo ]
  222. # Add the capability index
  223. self.fill_dict['ResultMacros'] += "{0}, ".format( capabilities.getIndex( resultItem[0] ) )
  224. # Add each of the arguments of the capability
  225. for arg in range( 0, len( resultItem[1] ) ):
  226. # Special cases
  227. if isinstance( resultItem[1][ arg ], str ):
  228. # If this is a CONSUMER_ element, needs to be split into 2 elements
  229. # AC_ and AL_ are other sections of consumer control
  230. if re.match( r'^(CONSUMER|AC|AL)_', resultItem[1][ arg ] ):
  231. tag = resultItem[1][ arg ].split( '_', 1 )[1]
  232. if '_' in tag:
  233. tag = tag.replace( '_', '' )
  234. try:
  235. lookupNum = kll_hid_lookup_dictionary['ConsCode'][ tag ][1]
  236. except KeyError as err:
  237. print ( "{0} {1} Consumer HID kll bug...please report.".format( ERROR, err ) )
  238. raise
  239. byteForm = lookupNum.to_bytes( 2, byteorder='little' ) # XXX Yes, little endian from how the uC structs work
  240. self.fill_dict['ResultMacros'] += "{0}, {1}, ".format( *byteForm )
  241. continue
  242. # None, fall-through disable
  243. elif resultItem[0] is self.capabilityLookup('NONE'):
  244. continue
  245. self.fill_dict['ResultMacros'] += "{0}, ".format( resultItem[1][ arg ] )
  246. # If sequence is longer than 1, append a sequence spacer at the end of the sequence
  247. # Required by USB to end at sequence without holding the key down
  248. if len( macros.resultsIndexSorted[ result ] ) > 1:
  249. # <single element>, <usbCodeSend capability>, <USB Code 0x00>
  250. self.fill_dict['ResultMacros'] += "1, {0}, 0x00, ".format( capabilities.getIndex( self.capabilityLookup('USB') ) )
  251. # Add list ending 0 and end of list
  252. self.fill_dict['ResultMacros'] += "0 };\n"
  253. self.fill_dict['ResultMacros'] = self.fill_dict['ResultMacros'][:-1] # Remove last newline
  254. ## Result Macro List ##
  255. self.fill_dict['ResultMacroList'] = "const ResultMacro ResultMacroList[] = {\n"
  256. # Iterate through each of the result macros
  257. for result in range( 0, len( macros.resultsIndexSorted ) ):
  258. self.fill_dict['ResultMacroList'] += "\tDefine_RM( {0} ),\n".format( result )
  259. self.fill_dict['ResultMacroList'] += "};"
  260. ## Result Macro Record ##
  261. self.fill_dict['ResultMacroRecord'] = "ResultMacroRecord ResultMacroRecordList[ ResultMacroNum ];"
  262. ## Trigger Macros ##
  263. self.fill_dict['TriggerMacros'] = ""
  264. # Iterate through each of the trigger macros
  265. for trigger in range( 0, len( macros.triggersIndexSorted ) ):
  266. self.fill_dict['TriggerMacros'] += "Guide_TM( {0} ) = {{ ".format( trigger )
  267. # Add the trigger macro scan code guide
  268. # See kiibohd controller Macros/PartialMap/kll.h for exact formatting details
  269. for sequence in range( 0, len( macros.triggersIndexSorted[ trigger ][0] ) ):
  270. # For each combo in the sequence, add the length of the combo
  271. self.fill_dict['TriggerMacros'] += "{0}, ".format( len( macros.triggersIndexSorted[ trigger ][0][ sequence ] ) )
  272. # For each combo, add the key type, key state and scan code
  273. for combo in range( 0, len( macros.triggersIndexSorted[ trigger ][0][ sequence ] ) ):
  274. triggerItemId = macros.triggersIndexSorted[ trigger ][0][ sequence ][ combo ]
  275. # Lookup triggerItem in ScanCodeStore
  276. triggerItemObj = macros.scanCodeStore[ triggerItemId ]
  277. triggerItem = triggerItemObj.offset( macros.interconnectOffset )
  278. # TODO Add support for Analog keys
  279. # TODO Add support for LED states
  280. self.fill_dict['TriggerMacros'] += "0x00, 0x01, 0x{0:02X}, ".format( triggerItem )
  281. # Add list ending 0 and end of list
  282. self.fill_dict['TriggerMacros'] += "0 };\n"
  283. self.fill_dict['TriggerMacros'] = self.fill_dict['TriggerMacros'][ :-1 ] # Remove last newline
  284. ## Trigger Macro List ##
  285. self.fill_dict['TriggerMacroList'] = "const TriggerMacro TriggerMacroList[] = {\n"
  286. # Iterate through each of the trigger macros
  287. for trigger in range( 0, len( macros.triggersIndexSorted ) ):
  288. # Use TriggerMacro Index, and the corresponding ResultMacro Index
  289. self.fill_dict['TriggerMacroList'] += "\tDefine_TM( {0}, {1} ),\n".format( trigger, macros.triggersIndexSorted[ trigger ][1] )
  290. self.fill_dict['TriggerMacroList'] += "};"
  291. ## Trigger Macro Record ##
  292. self.fill_dict['TriggerMacroRecord'] = "TriggerMacroRecord TriggerMacroRecordList[ TriggerMacroNum ];"
  293. ## Max Scan Code ##
  294. self.fill_dict['MaxScanCode'] = "#define MaxScanCode 0x{0:X}".format( macros.overallMaxScanCode )
  295. ## Interconnect ScanCode Offset List ##
  296. self.fill_dict['ScanCodeInterconnectOffsetList'] = "const uint8_t InterconnectOffsetList[] = {\n"
  297. for offset in range( 0, len( macros.interconnectOffset ) ):
  298. self.fill_dict['ScanCodeInterconnectOffsetList'] += "\t0x{0:02X},\n".format( macros.interconnectOffset[ offset ] )
  299. self.fill_dict['ScanCodeInterconnectOffsetList'] += "};"
  300. ## Max Interconnect Nodes ##
  301. self.fill_dict['InterconnectNodeMax'] = "#define InterconnectNodeMax 0x{0:X}\n".format( len( macros.interconnectOffset ) )
  302. ## Default Layer and Default Layer Scan Map ##
  303. self.fill_dict['DefaultLayerTriggerList'] = ""
  304. self.fill_dict['DefaultLayerScanMap'] = "const nat_ptr_t *default_scanMap[] = {\n"
  305. # Iterate over triggerList and generate a C trigger array for the default map and default map array
  306. for triggerList in range( macros.firstScanCode[0], len( macros.triggerList[0] ) ):
  307. # Generate ScanCode index and triggerList length
  308. self.fill_dict['DefaultLayerTriggerList'] += "Define_TL( default, 0x{0:02X} ) = {{ {1}".format( triggerList, len( macros.triggerList[0][ triggerList ] ) )
  309. # Add scanCode trigger list to Default Layer Scan Map
  310. self.fill_dict['DefaultLayerScanMap'] += "default_tl_0x{0:02X}, ".format( triggerList )
  311. # Add each item of the trigger list
  312. for triggerItem in macros.triggerList[0][ triggerList ]:
  313. self.fill_dict['DefaultLayerTriggerList'] += ", {0}".format( triggerItem )
  314. self.fill_dict['DefaultLayerTriggerList'] += " };\n"
  315. self.fill_dict['DefaultLayerTriggerList'] = self.fill_dict['DefaultLayerTriggerList'][:-1] # Remove last newline
  316. self.fill_dict['DefaultLayerScanMap'] = self.fill_dict['DefaultLayerScanMap'][:-2] # Remove last comma and space
  317. self.fill_dict['DefaultLayerScanMap'] += "\n};"
  318. ## Partial Layers and Partial Layer Scan Maps ##
  319. self.fill_dict['PartialLayerTriggerLists'] = ""
  320. self.fill_dict['PartialLayerScanMaps'] = ""
  321. # Iterate over each of the layers, excluding the default layer
  322. for layer in range( 1, len( macros.triggerList ) ):
  323. # Prepare each layer
  324. self.fill_dict['PartialLayerScanMaps'] += "// Partial Layer {0}\n".format( layer )
  325. self.fill_dict['PartialLayerScanMaps'] += "const nat_ptr_t *layer{0}_scanMap[] = {{\n".format( layer )
  326. self.fill_dict['PartialLayerTriggerLists'] += "// Partial Layer {0}\n".format( layer )
  327. # Iterate over triggerList and generate a C trigger array for the layer
  328. for triggerList in range( macros.firstScanCode[ layer ], len( macros.triggerList[ layer ] ) ):
  329. # Generate ScanCode index and triggerList length
  330. self.fill_dict['PartialLayerTriggerLists'] += "Define_TL( layer{0}, 0x{1:02X} ) = {{ {2}".format( layer, triggerList, len( macros.triggerList[ layer ][ triggerList ] ) )
  331. # Add scanCode trigger list to Default Layer Scan Map
  332. self.fill_dict['PartialLayerScanMaps'] += "layer{0}_tl_0x{1:02X}, ".format( layer, triggerList )
  333. # Add each item of the trigger list
  334. for trigger in macros.triggerList[ layer ][ triggerList ]:
  335. self.fill_dict['PartialLayerTriggerLists'] += ", {0}".format( trigger )
  336. self.fill_dict['PartialLayerTriggerLists'] += " };\n"
  337. self.fill_dict['PartialLayerTriggerLists'] += "\n"
  338. self.fill_dict['PartialLayerScanMaps'] = self.fill_dict['PartialLayerScanMaps'][:-2] # Remove last comma and space
  339. self.fill_dict['PartialLayerScanMaps'] += "\n};\n\n"
  340. self.fill_dict['PartialLayerTriggerLists'] = self.fill_dict['PartialLayerTriggerLists'][:-2] # Remove last 2 newlines
  341. self.fill_dict['PartialLayerScanMaps'] = self.fill_dict['PartialLayerScanMaps'][:-2] # Remove last 2 newlines
  342. ## Layer Index List ##
  343. self.fill_dict['LayerIndexList'] = "const Layer LayerIndex[] = {\n"
  344. # Iterate over each layer, adding it to the list
  345. for layer in range( 0, len( macros.triggerList ) ):
  346. # Lookup first scancode in map
  347. firstScanCode = macros.firstScanCode[ layer ]
  348. # Generate stacked name
  349. stackName = ""
  350. if '*NameStack' in variables.layerVariables[ layer ].keys():
  351. for name in range( 0, len( variables.layerVariables[ layer ]['*NameStack'] ) ):
  352. stackName += "{0} + ".format( variables.layerVariables[ layer ]['*NameStack'][ name ] )
  353. stackName = stackName[:-3]
  354. # Default map is a special case, always the first index
  355. if layer == 0:
  356. self.fill_dict['LayerIndexList'] += '\tLayer_IN( default_scanMap, "D: {1}", 0x{0:02X} ),\n'.format( firstScanCode, stackName )
  357. else:
  358. self.fill_dict['LayerIndexList'] += '\tLayer_IN( layer{0}_scanMap, "{0}: {2}", 0x{1:02X} ),\n'.format( layer, firstScanCode, stackName )
  359. self.fill_dict['LayerIndexList'] += "};"
  360. ## Layer State ##
  361. self.fill_dict['LayerState'] = "uint8_t LayerState[ LayerNum ];"