learn_sounds needed updating too. Hopefully this attempt works.
This commit is contained in:
parent
1bb9e18ea2
commit
e272da1177
51
menu.py
51
menu.py
@ -260,6 +260,11 @@ def learn_sounds(sounds):
|
|||||||
- Play selected sounds
|
- Play selected sounds
|
||||||
- Return to menu with escape key
|
- Return to menu with escape key
|
||||||
|
|
||||||
|
Excluded sounds:
|
||||||
|
- Files in folders named 'ambience' (at any level)
|
||||||
|
- Files in any directory starting with '.'
|
||||||
|
- Files starting with 'game-intro', 'music_menu', or '_'
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
sounds (dict): Dictionary of available sound objects
|
sounds (dict): Dictionary of available sound objects
|
||||||
|
|
||||||
@ -271,18 +276,39 @@ def learn_sounds(sounds):
|
|||||||
|
|
||||||
currentIndex = 0
|
currentIndex = 0
|
||||||
|
|
||||||
# Get list of available sounds, excluding special sounds
|
# Get list of available sound keys (excluding special sounds)
|
||||||
soundFiles = [f for f in listdir("sounds/")
|
soundKeys = []
|
||||||
if isfile(join("sounds/", f))
|
|
||||||
and (f.split('.')[1].lower() in ["ogg", "wav"])
|
|
||||||
and (f.split('.')[0].lower() not in ["game-intro", "music_menu"])
|
|
||||||
and (not f.lower().startswith("_"))]
|
|
||||||
|
|
||||||
# Sort the sound files alphabetically
|
# Define exclusion criteria
|
||||||
soundFiles.sort()
|
excludedPrefixes = ["game-intro", "music_menu", "_"]
|
||||||
|
excludedDirs = ["ambience", "."]
|
||||||
|
|
||||||
|
# Process each sound key in the dictionary
|
||||||
|
for soundKey in sounds.keys():
|
||||||
|
# Skip if key has any excluded prefix
|
||||||
|
if any(soundKey.lower().startswith(prefix.lower()) for prefix in excludedPrefixes):
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Split key into path parts
|
||||||
|
parts = soundKey.split('/')
|
||||||
|
|
||||||
|
# Skip if any part of the path is an excluded directory
|
||||||
|
if any(part.lower() == dirName.lower() or part.startswith('.') for part in parts for dirName in excludedDirs):
|
||||||
|
continue
|
||||||
|
|
||||||
|
# This sound passed all exclusion criteria
|
||||||
|
soundKeys.append(soundKey)
|
||||||
|
|
||||||
|
# Sort sound keys alphabetically
|
||||||
|
soundKeys.sort()
|
||||||
|
|
||||||
# Total number of sound files
|
# Total number of sound files
|
||||||
totalSounds = len(soundFiles)
|
totalSounds = len(soundKeys)
|
||||||
|
|
||||||
|
# If no sounds found, inform the user and return
|
||||||
|
if totalSounds == 0:
|
||||||
|
speech.speak("No sounds available to learn.")
|
||||||
|
return "menu"
|
||||||
|
|
||||||
# Track last spoken index to avoid repetition
|
# Track last spoken index to avoid repetition
|
||||||
lastSpoken = -1
|
lastSpoken = -1
|
||||||
@ -293,7 +319,7 @@ def learn_sounds(sounds):
|
|||||||
while not returnToMenu:
|
while not returnToMenu:
|
||||||
if currentIndex != lastSpoken:
|
if currentIndex != lastSpoken:
|
||||||
# Speak the sound name followed by its position in the list
|
# Speak the sound name followed by its position in the list
|
||||||
speech.speak(f"{soundFiles[currentIndex][:-4]}, {currentIndex + 1} of {totalSounds}")
|
speech.speak(f"{soundKeys[currentIndex]}, {currentIndex + 1} of {totalSounds}")
|
||||||
lastSpoken = currentIndex
|
lastSpoken = currentIndex
|
||||||
|
|
||||||
event = pygame.event.wait()
|
event = pygame.event.wait()
|
||||||
@ -301,7 +327,7 @@ def learn_sounds(sounds):
|
|||||||
if event.key == pygame.K_ESCAPE:
|
if event.key == pygame.K_ESCAPE:
|
||||||
returnToMenu = True
|
returnToMenu = True
|
||||||
|
|
||||||
if event.key in [pygame.K_DOWN, pygame.K_s] and currentIndex < len(soundFiles) - 1:
|
if event.key in [pygame.K_DOWN, pygame.K_s] and currentIndex < len(soundKeys) - 1:
|
||||||
pygame.mixer.stop()
|
pygame.mixer.stop()
|
||||||
currentIndex += 1
|
currentIndex += 1
|
||||||
|
|
||||||
@ -311,7 +337,7 @@ def learn_sounds(sounds):
|
|||||||
|
|
||||||
if event.key == pygame.K_RETURN:
|
if event.key == pygame.K_RETURN:
|
||||||
try:
|
try:
|
||||||
soundName = soundFiles[currentIndex][:-4]
|
soundName = soundKeys[currentIndex]
|
||||||
pygame.mixer.stop()
|
pygame.mixer.stop()
|
||||||
sounds[soundName].play()
|
sounds[soundName].play()
|
||||||
except:
|
except:
|
||||||
@ -319,6 +345,7 @@ def learn_sounds(sounds):
|
|||||||
speech.speak("Could not play sound.")
|
speech.speak("Could not play sound.")
|
||||||
|
|
||||||
event = pygame.event.clear()
|
event = pygame.event.clear()
|
||||||
|
pygame.event.clear()
|
||||||
time.sleep(0.001)
|
time.sleep(0.001)
|
||||||
|
|
||||||
return "menu"
|
return "menu"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user