Initial (overdue) commit

TODO:
- enable dynamic loading of button labels and actions
This commit is contained in:
2020-08-27 17:21:17 -07:00
parent 6e83bfb9c5
commit c5b61eee0a
42 changed files with 2739 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
def get_labels():
return [['Speed Boost','75% Throttle','Full Stop','Full Reverse'],
['Hardpoints','Cargo Bay','Fuel Scoop','Landing Gear'],
['Drop Chaff','Shield Cell','Heat Sink','ECM'],
['Frameshift','Supercruise','Run Silent','Toggle Lights']]
def get_keys():
return {'Speed Boost':'j','75% Throttle':'\\','Full Stop':'x','Full Reverse':'p',
'Hardpoints':'u','Cargo Bay':'l','Fuel Scoop':'j','Landing Gear':'home',
'Drop Chaff':'7','Shield Cell':'8','Heat Sink':'9','ECM':'0',
'Frameshift':'j','Supercruise':'k','Run Silent':'m','Toggle Lights':'n'}