Updated the keybinding fix part of the program.

This commit is contained in:
Storm Dragon 2025-03-25 15:12:20 -04:00
parent 432a55308f
commit b17f1c0672

View File

@ -874,20 +874,42 @@ class DoomLauncher(QMainWindow):
changesNeeded = False changesNeeded = False
# Standard controls that should be consistent
standardControls = { standardControls = {
'attack': 'Ctrl', 'attack': '+attack',
'altattack': 'Alt', 'altattack': '+altattack',
'use': 'Space', 'use': '+use',
'turn180': 'X' 'crouch': '+crouch',
'turn180': 'turn180',
'jump': '+jump'
} }
# Standard key bindings
standardKeys = {
'Ctrl': '+attack',
'Alt': '+altattack',
'Space': '+use',
'C': '+crouch',
'X': 'turn180',
'J': '+jump'
}
# Arrow key setup for aiming
arrowControls = {
'UpArrow': '+forward',
'DownArrow': '+back',
'LeftArrow': '+left',
'RightArrow': '+right'
}
# Accessibility controls that need to be in special sections
tobyAccessibilityControls = { tobyAccessibilityControls = {
'E': 'pukename TurnCompass 1', # Turn compass right 'E': 'pukename TurnCompass 1',
'R': 'pukename TurnCompass 0', # Turn compass left 'R': 'pukename TurnCompass 0',
'Q': 'pukename CompassScript', # Compass script 'Q': 'pukename CompassScript',
';': 'netevent Toby_CheckLevelStats', # Check level stats ';': 'netevent Toby_CheckLevelStats',
"'": 'toby_proximity_toggle_keybind', # Toggle proximity detector "'": 'toby_proximity_toggle_keybind',
'Z': '+toby_snap_to_target_keybind' # Target snap function 'Z': '+toby_snap_to_target_keybind'
} }
# Map section prefixes to their control sections # Map section prefixes to their control sections
@ -908,22 +930,83 @@ class DoomLauncher(QMainWindow):
continue continue
# Check if we're in any Bindings section # Fix main bindings in each game's Bindings section
if currentSection and '.Bindings' in currentSection and '=' in line: if currentSection and currentSection.endswith('.Bindings') and not any(x in currentSection for x in ['Double', 'Automap', 'CompassMod', 'TargetSnap', 'CheckMod', 'ProximityDetector']) and '=' in line:
key, binding = line.split('=', 1) key, binding = line.split('=', 1)
key = key.strip() key = key.strip()
binding = binding.strip() binding = binding.strip()
# Check if this line defines a binding we want to change # Fix the turn180 command specifically (should not have + prefix)
for control, standardKey in standardControls.items(): if binding == '+turn180':
if binding == f"+{control}" and key != standardKey: configLines[i] = f"{key}=turn180\n"
# This is a binding we want to fix
configLines[i] = f"{standardKey}=+{control}\n"
changesNeeded = True changesNeeded = True
print(f"Fixed {control} binding in {currentSection} from {key} to {standardKey}")
# Check for the Toby accessibility controls across all game types # Check if standard keys have correct bindings
# For each game prefix, check if it has the correct CompassMod.Bindings, etc. if key in standardKeys and binding != standardKeys[key]:
configLines[i] = f"{key}={standardKeys[key]}\n"
changesNeeded = True
print(f"Fixed {key} binding to {standardKeys[key]} in {currentSection}")
# Remove E=+use binding (this should be in CompassMod section)
if key == "E" and binding == "+use":
configLines[i] = f"# {line} # Removed by Toby Launcher\n"
changesNeeded = True
print(f"Removed E=+use binding in {currentSection}")
# Fix arrow key controls
for arrowKey, arrowBinding in arrowControls.items():
if key == arrowKey and binding != arrowBinding:
configLines[i] = f"{arrowKey}={arrowBinding}\n"
changesNeeded = True
print(f"Fixed {arrowKey} in {currentSection} to {arrowBinding}")
# Make sure all arrow key controls exist in main binding sections
for prefix, sections in controlSections.items():
mainBindingSection = f"{prefix}.Bindings"
# Find the index of the main binding section
mainSectionIndex = -1
for i, line in enumerate(configLines):
if line.strip() == f"[{mainBindingSection}]":
mainSectionIndex = i
break
if mainSectionIndex == -1:
continue # Skip if section not found
# Find the end of the section
nextSectionIdx = next((j for j in range(mainSectionIndex+1, len(configLines)) if configLines[j].strip().startswith('[')), len(configLines))
# Check existing bindings in this section
existingBindings = {}
existingKeys = {}
for i in range(mainSectionIndex+1, nextSectionIdx):
line = configLines[i].strip()
if '=' in line and not line.startswith('#'):
key, binding = line.split('=', 1)
key = key.strip()
binding = binding.strip()
existingBindings[binding] = key
existingKeys[key] = binding
# Add missing standard key bindings
missingKeys = []
for key, binding in standardKeys.items():
if key not in existingKeys:
missingKeys.append(f"{key}={binding}\n")
# Add missing arrow controls
for arrowKey, arrowBinding in arrowControls.items():
if arrowKey not in existingKeys:
missingKeys.append(f"{arrowKey}={arrowBinding}\n")
# Insert missing controls at the end of the section
if missingKeys:
configLines[nextSectionIdx:nextSectionIdx] = missingKeys
changesNeeded = True
print(f"Added missing standard controls to {mainBindingSection}")
# Now check for the Toby accessibility controls across all game types
for prefix, sections in controlSections.items(): for prefix, sections in controlSections.items():
mainBindingSection = f"{prefix}.Bindings" mainBindingSection = f"{prefix}.Bindings"
compassModSection = f"{prefix}.CompassMod.Bindings" compassModSection = f"{prefix}.CompassMod.Bindings"
@ -948,117 +1031,116 @@ class DoomLauncher(QMainWindow):
print(f"Added {compassModSection} section") print(f"Added {compassModSection} section")
break break
if proximitySection not in sections: # Check if ProximityDetector section needs the apostrophe key binding
# Need to add this section proximityFound = False
for i, line in enumerate(configLines):
if line.strip() == f"[{proximitySection}]":
proximityFound = True
# Find the start and end of this section
sectionStart = i
sectionEnd = next((j for j in range(i+1, len(configLines)) if configLines[j].strip().startswith('[')), len(configLines))
# Check if the section has the apostrophe binding
hasApostrophe = False
for j in range(sectionStart+1, sectionEnd):
if configLines[j].strip().startswith("'="):
hasApostrophe = True
break
if not hasApostrophe:
# Add the apostrophe binding right after the section header
configLines.insert(sectionStart+1, "'=toby_proximity_toggle_keybind\n")
changesNeeded = True
print(f"Added apostrophe key binding to {proximitySection}")
break
# If ProximityDetector section doesn't exist, create it
if not proximityFound:
for i, line in enumerate(configLines): for i, line in enumerate(configLines):
if line.strip() == f"[{mainBindingSection}]": if line.strip() == f"[{mainBindingSection}]":
# Find the next section # Find the next section
nextSectionIdx = next((j for j in range(i+1, len(configLines)) if configLines[j].strip().startsWith('[')), len(configLines)) nextSectionIdx = next((j for j in range(i+1, len(configLines)) if configLines[j].strip().startswith('[')), len(configLines))
# Insert the new section before the next section # Insert the new section
configLines.insert(nextSectionIdx, f"\n[{proximitySection}]\n") configLines.insert(nextSectionIdx, f"\n[{proximitySection}]\n")
configLines.insert(nextSectionIdx+1, "'=toby_proximity_toggle_keybind\n\n") configLines.insert(nextSectionIdx+1, "'=toby_proximity_toggle_keybind\n\n")
changesNeeded = True changesNeeded = True
print(f"Added {proximitySection} section") print(f"Added {proximitySection} section with apostrophe key binding")
break break
if checkModSection not in sections: # Check if TargetSnap section needs the Z key binding
# Need to add this section targetSnapFound = False
for i, line in enumerate(configLines): for i, line in enumerate(configLines):
if line.strip() == f"[{mainBindingSection}]": if line.strip() == f"[{targetSnapSection}]":
# Find the next section targetSnapFound = True
nextSectionIdx = next((j for j in range(i+1, len(configLines)) if configLines[j].strip().startswith('[')), len(configLines))
# Insert the new section before the next section # Find the start and end of this section
configLines.insert(nextSectionIdx, f"\n[{checkModSection}]\n") sectionStart = i
configLines.insert(nextSectionIdx+1, "U=netevent Toby_CheckCoordinates\n") sectionEnd = next((j for j in range(i+1, len(configLines)) if configLines[j].strip().startswith('[')), len(configLines))
configLines.insert(nextSectionIdx+2, "H=netevent Toby_CheckHealth\n")
configLines.insert(nextSectionIdx+3, "N=netevent Toby_CheckArmor\n") # Check if the section has the Z binding
configLines.insert(nextSectionIdx+4, "B=netevent Toby_CheckAmmo\n") hasZKey = False
configLines.insert(nextSectionIdx+5, "K=netevent Toby_CheckKeys\n") for j in range(sectionStart+1, sectionEnd):
configLines.insert(nextSectionIdx+6, "I=netevent Toby_CheckCurrentItem\n") if configLines[j].strip().startswith("Z="):
configLines.insert(nextSectionIdx+7, ";=netevent Toby_CheckLevelStats\n\n") hasZKey = True
break
if not hasZKey:
# Add the Z binding right after the section header
configLines.insert(sectionStart+1, "Z=+toby_snap_to_target_keybind\n")
changesNeeded = True changesNeeded = True
print(f"Added {checkModSection} section") print(f"Added Z key binding to {targetSnapSection}")
break break
# Check if the target snap section exists, create it if not # If TargetSnap section doesn't exist, create it
if targetSnapSection not in sections: if not targetSnapFound:
# Need to add this section
for i, line in enumerate(configLines): for i, line in enumerate(configLines):
if line.strip() == f"[{mainBindingSection}]": if line.strip() == f"[{mainBindingSection}]":
# Find the next section # Find the next section
nextSectionIdx = next((j for j in range(i+1, len(configLines)) if configLines[j].strip().startswith('[')), len(configLines)) nextSectionIdx = next((j for j in range(i+1, len(configLines)) if configLines[j].strip().startswith('[')), len(configLines))
# Insert the new section before the next section # Insert the new section
configLines.insert(nextSectionIdx, f"\n[{targetSnapSection}]\n") configLines.insert(nextSectionIdx, f"\n[{targetSnapSection}]\n")
configLines.insert(nextSectionIdx+1, "Z=+toby_snap_to_target_keybind\n\n") configLines.insert(nextSectionIdx+1, "Z=+toby_snap_to_target_keybind\n\n")
changesNeeded = True changesNeeded = True
print(f"Added {targetSnapSection} section with Z key binding") print(f"Added {targetSnapSection} section with Z key binding")
break break
# Check if accessibility keys are correctly set in existing sections # Check for missing bindings in sections that do exist
currentSection = None if checkModSection in sections:
# Extract all keys in the CheckMod section
checkModStart = -1
checkModEnd = -1
for i, line in enumerate(configLines): for i, line in enumerate(configLines):
line = line.strip() if line.strip() == f"[{checkModSection}]":
checkModStart = i
checkModEnd = next((j for j in range(i+1, len(configLines)) if configLines[j].strip().startswith('[')), len(configLines))
break
# Detect section headers if checkModStart != -1:
if line.startswith('[') and line.endswith(']'): # Check for semicolon and N keys
currentSection = line[1:-1] hasNKey = False
continue hasSemicolonKey = False
# Process compass mod bindings for i in range(checkModStart+1, checkModEnd):
if currentSection == compassModSection and '=' in line: line = configLines[i].strip()
key, binding = line.split('=', 1) if line.startswith("N="):
key = key.strip() hasNKey = True
binding = binding.strip() elif line.startswith(";="):
hasSemicolonKey = True
# Check E and R keys for compass functions # Add missing keys
if key == 'E' and binding != 'pukename TurnCompass 1': if not hasNKey:
configLines[i] = "E=pukename TurnCompass 1\n" configLines.insert(checkModEnd-1, "N=netevent Toby_CheckArmor\n")
changesNeeded = True changesNeeded = True
print(f"Fixed E key in {compassModSection}") print(f"Added N key binding to {checkModSection}")
elif key == 'R' and binding != 'pukename TurnCompass 0':
configLines[i] = "R=pukename TurnCompass 0\n" if not hasSemicolonKey:
configLines.insert(checkModEnd-1, ";=netevent Toby_CheckLevelStats\n")
changesNeeded = True changesNeeded = True
print(f"Fixed R key in {compassModSection}") print(f"Added semicolon key binding to {checkModSection}")
elif key == 'Q' and binding != 'pukename CompassScript':
configLines[i] = "Q=pukename CompassScript\n"
changesNeeded = True
print(f"Fixed Q key in {compassModSection}")
# Process proximity detector bindings
if currentSection == proximitySection and '=' in line:
key, binding = line.split('=', 1)
key = key.strip()
binding = binding.strip()
# Check apostrophe key for proximity toggle
if key == "'" and binding != 'toby_proximity_toggle_keybind':
configLines[i] = "'=toby_proximity_toggle_keybind\n"
changesNeeded = True
print(f"Fixed ' key in {proximitySection}")
# Process check mod bindings
if currentSection == checkModSection and '=' in line:
key, binding = line.split('=', 1)
key = key.strip()
binding = binding.strip()
# Check semicolon key for level stats
if key == ";" and binding != 'netevent Toby_CheckLevelStats':
configLines[i] = ";=netevent Toby_CheckLevelStats\n"
changesNeeded = True
print(f"Fixed ; key in {checkModSection}")
# Process target snap bindings
if currentSection == targetSnapSection and '=' in line:
key, binding = line.split('=', 1)
key = key.strip()
binding = binding.strip()
# Check Z key for target snap function
if key == "Z" and binding != '+toby_snap_to_target_keybind':
configLines[i] = "Z=+toby_snap_to_target_keybind\n"
changesNeeded = True
print(f"Fixed Z key in {targetSnapSection}")
# Write the config if needed # Write the config if needed
if changesNeeded: if changesNeeded: