Fixed indentation error.

This commit is contained in:
Storm Dragon 2025-03-11 21:01:19 -04:00
parent e35c826b05
commit a20da7df8c

134
menu.py
View File

@ -155,78 +155,78 @@ class Menu:
elif selection == "exit": elif selection == "exit":
self.game.exit_game() self.game.exit_game()
def learn_sounds(self): def learn_sounds(self):
"""Interactive menu for learning game sounds. """Interactive menu for learning game sounds.
Allows users to: Allows users to:
- Navigate through available sounds - Navigate through available sounds
- Play selected sounds - Play selected sounds
- Return to menu with escape key - Return to menu with escape key
Returns: Returns:
str: "menu" if user exits with escape str: "menu" if user exits with escape
""" """
try: try:
self.game.sound.currentBgm.pause() self.game.sound.currentBgm.pause()
except: except:
pass pass
# Get list of available sounds, excluding music and ambiance directories # Get list of available sounds, excluding music and ambiance directories
soundList = self.game.sound.get_sound_list() soundList = self.game.sound.get_sound_list()
if not soundList: if not soundList:
self.game.speech.speak("No sounds available to learn.") self.game.speech.speak("No sounds available to learn.")
return "menu"
# Sort sounds by name
soundList.sort()
self.currentIndex = 0
validKeys = [
pyglet.window.key.ESCAPE,
pyglet.window.key.RETURN,
pyglet.window.key.UP,
pyglet.window.key.DOWN,
pyglet.window.key.W,
pyglet.window.key.S
]
# Speak initial instructions
self.game.speech.speak("Learn game sounds. Use up and down arrow keys or W/S to navigate, Enter to play sound, Escape to exit.")
# Speak initial sound name
soundName = soundList[self.currentIndex]
displayName = soundName.replace("/", " in folder ")
self.game.speech.speak(f"Sound 1 of {len(soundList)}: {displayName}")
while True:
key, _ = self.game.wait(validKeys)
if key == pyglet.window.key.ESCAPE:
try:
self.game.sound.currentBgm.play()
except:
pass
return "menu" return "menu"
if key in [pyglet.window.key.DOWN, pyglet.window.key.S]: # Sort sounds by name
if self.currentIndex < len(soundList) - 1: soundList.sort()
self.game.sound.stop_all_sounds()
self.currentIndex += 1 self.currentIndex = 0
soundName = soundList[self.currentIndex]
displayName = soundName.replace("/", " in folder ")
self.game.speech.speak(f"Sound {self.currentIndex + 1} of {len(soundList)}: {displayName}")
if key in [pyglet.window.key.UP, pyglet.window.key.W]: validKeys = [
if self.currentIndex > 0: pyglet.window.key.ESCAPE,
self.game.sound.stop_all_sounds() pyglet.window.key.RETURN,
self.currentIndex -= 1 pyglet.window.key.UP,
soundName = soundList[self.currentIndex] pyglet.window.key.DOWN,
displayName = soundName.replace("/", " in folder ") pyglet.window.key.W,
self.game.speech.speak(f"Sound {self.currentIndex + 1} of {len(soundList)}: {displayName}") pyglet.window.key.S
]
# Speak initial instructions
self.game.speech.speak("Learn game sounds. Use up and down arrow keys or W/S to navigate, Enter to play sound, Escape to exit.")
if key == pyglet.window.key.RETURN: # Speak initial sound name
soundName = soundList[self.currentIndex] soundName = soundList[self.currentIndex]
self.game.sound.stop_all_sounds() displayName = soundName.replace("/", " in folder ")
self.game.sound.play_sound(soundName) self.game.speech.speak(f"Sound 1 of {len(soundList)}: {displayName}")
while True:
key, _ = self.game.wait(validKeys)
if key == pyglet.window.key.ESCAPE:
try:
self.game.sound.currentBgm.play()
except:
pass
return "menu"
if key in [pyglet.window.key.DOWN, pyglet.window.key.S]:
if self.currentIndex < len(soundList) - 1:
self.game.sound.stop_all_sounds()
self.currentIndex += 1
soundName = soundList[self.currentIndex]
displayName = soundName.replace("/", " in folder ")
self.game.speech.speak(f"Sound {self.currentIndex + 1} of {len(soundList)}: {displayName}")
if key in [pyglet.window.key.UP, pyglet.window.key.W]:
if self.currentIndex > 0:
self.game.sound.stop_all_sounds()
self.currentIndex -= 1
soundName = soundList[self.currentIndex]
displayName = soundName.replace("/", " in folder ")
self.game.speech.speak(f"Sound {self.currentIndex + 1} of {len(soundList)}: {displayName}")
if key == pyglet.window.key.RETURN:
soundName = soundList[self.currentIndex]
self.game.sound.stop_all_sounds()
self.game.sound.play_sound(soundName)