More updates to learn_sounds. I think I have a good system for multiple sound directories now.
This commit is contained in:
parent
e272da1177
commit
5e926fa7eb
110
menu.py
110
menu.py
@ -256,9 +256,10 @@ def learn_sounds(sounds):
|
|||||||
"""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 with up/down arrows
|
||||||
- Play selected sounds
|
- Navigate between sound categories (folders) using Page Up/Page Down or Left/Right arrows
|
||||||
- Return to menu with escape key
|
- Play selected sounds with Enter
|
||||||
|
- Return to menu with Escape
|
||||||
|
|
||||||
Excluded sounds:
|
Excluded sounds:
|
||||||
- Files in folders named 'ambience' (at any level)
|
- Files in folders named 'ambience' (at any level)
|
||||||
@ -274,15 +275,13 @@ def learn_sounds(sounds):
|
|||||||
# Get speech instance
|
# Get speech instance
|
||||||
speech = Speech.get_instance()
|
speech = Speech.get_instance()
|
||||||
|
|
||||||
currentIndex = 0
|
|
||||||
|
|
||||||
# Get list of available sound keys (excluding special sounds)
|
|
||||||
soundKeys = []
|
|
||||||
|
|
||||||
# Define exclusion criteria
|
# Define exclusion criteria
|
||||||
excludedPrefixes = ["game-intro", "music_menu", "_"]
|
excludedPrefixes = ["game-intro", "music_menu", "_"]
|
||||||
excludedDirs = ["ambience", "."]
|
excludedDirs = ["ambience", "."]
|
||||||
|
|
||||||
|
# Organize sounds by directory
|
||||||
|
soundsByDir = {}
|
||||||
|
|
||||||
# Process each sound key in the dictionary
|
# Process each sound key in the dictionary
|
||||||
for soundKey in sounds.keys():
|
for soundKey in sounds.keys():
|
||||||
# Skip if key has any excluded prefix
|
# Skip if key has any excluded prefix
|
||||||
@ -295,57 +294,110 @@ def learn_sounds(sounds):
|
|||||||
# Skip if any part of the path is an excluded directory
|
# 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):
|
if any(part.lower() == dirName.lower() or part.startswith('.') for part in parts for dirName in excludedDirs):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
# Determine the directory
|
||||||
|
if '/' in soundKey:
|
||||||
|
directory = soundKey.split('/')[0]
|
||||||
|
else:
|
||||||
|
directory = 'root' # Root directory sounds
|
||||||
|
|
||||||
# This sound passed all exclusion criteria
|
# Add to sounds by directory
|
||||||
soundKeys.append(soundKey)
|
if directory not in soundsByDir:
|
||||||
|
soundsByDir[directory] = []
|
||||||
|
soundsByDir[directory].append(soundKey)
|
||||||
|
|
||||||
# Sort sound keys alphabetically
|
# Sort each directory's sounds
|
||||||
soundKeys.sort()
|
for directory in soundsByDir:
|
||||||
|
soundsByDir[directory].sort()
|
||||||
# Total number of sound files
|
|
||||||
totalSounds = len(soundKeys)
|
|
||||||
|
|
||||||
# If no sounds found, inform the user and return
|
# If no sounds found, inform the user and return
|
||||||
if totalSounds == 0:
|
if not soundsByDir:
|
||||||
speech.speak("No sounds available to learn.")
|
speech.speak("No sounds available to learn.")
|
||||||
return "menu"
|
return "menu"
|
||||||
|
|
||||||
# Track last spoken index to avoid repetition
|
# Get list of directories in sorted order
|
||||||
|
directories = sorted(soundsByDir.keys())
|
||||||
|
|
||||||
|
# Start with first directory
|
||||||
|
currentDirIndex = 0
|
||||||
|
currentDir = directories[currentDirIndex]
|
||||||
|
currentSoundKeys = soundsByDir[currentDir]
|
||||||
|
currentSoundIndex = 0
|
||||||
|
|
||||||
|
# Display appropriate message based on number of directories
|
||||||
|
if len(directories) > 1:
|
||||||
|
messagebox(f"Starting with {currentDir if currentDir != 'root' else 'root directory'} sounds. Use left and right arrows or page up and page down to navigate categories.")
|
||||||
|
|
||||||
|
# Track last spoken to avoid repetition
|
||||||
lastSpoken = -1
|
lastSpoken = -1
|
||||||
|
lastDir = None
|
||||||
|
|
||||||
# Flag to track when to exit the loop
|
# Flag to track when to exit the loop
|
||||||
returnToMenu = False
|
returnToMenu = False
|
||||||
|
|
||||||
while not returnToMenu:
|
while not returnToMenu:
|
||||||
if currentIndex != lastSpoken:
|
# Announce directory change
|
||||||
# Speak the sound name followed by its position in the list
|
if lastDir != currentDir:
|
||||||
speech.speak(f"{soundKeys[currentIndex]}, {currentIndex + 1} of {totalSounds}")
|
if currentDir == 'root':
|
||||||
lastSpoken = currentIndex
|
speech.speak(f"Root directory sounds. {len(currentSoundKeys)} sounds available.")
|
||||||
|
else:
|
||||||
|
speech.speak(f"{currentDir} sounds. {len(currentSoundKeys)} sounds available.")
|
||||||
|
lastDir = currentDir
|
||||||
|
lastSpoken = -1 # Reset to announce current sound
|
||||||
|
|
||||||
|
# Announce current sound
|
||||||
|
if currentSoundIndex != lastSpoken:
|
||||||
|
totalSounds = len(currentSoundKeys)
|
||||||
|
soundName = currentSoundKeys[currentSoundIndex]
|
||||||
|
# Remove directory prefix if present
|
||||||
|
if '/' in soundName:
|
||||||
|
displayName = '/'.join(soundName.split('/')[1:])
|
||||||
|
else:
|
||||||
|
displayName = soundName
|
||||||
|
|
||||||
|
speech.speak(f"{displayName}, {currentSoundIndex + 1} of {totalSounds}")
|
||||||
|
lastSpoken = currentSoundIndex
|
||||||
|
|
||||||
event = pygame.event.wait()
|
event = pygame.event.wait()
|
||||||
if event.type == pygame.KEYDOWN:
|
if event.type == pygame.KEYDOWN:
|
||||||
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(soundKeys) - 1:
|
# Sound navigation
|
||||||
|
elif event.key in [pygame.K_DOWN, pygame.K_s] and currentSoundIndex < len(currentSoundKeys) - 1:
|
||||||
pygame.mixer.stop()
|
pygame.mixer.stop()
|
||||||
currentIndex += 1
|
currentSoundIndex += 1 # Fixed: Was decreasing instead of increasing
|
||||||
|
|
||||||
if event.key in [pygame.K_UP, pygame.K_w] and currentIndex > 0:
|
elif event.key in [pygame.K_UP, pygame.K_w] and currentSoundIndex > 0:
|
||||||
pygame.mixer.stop()
|
pygame.mixer.stop()
|
||||||
currentIndex -= 1
|
currentSoundIndex -= 1
|
||||||
|
|
||||||
if event.key == pygame.K_RETURN:
|
# Directory navigation
|
||||||
|
elif event.key in [pygame.K_PAGEDOWN, pygame.K_RIGHT] and currentDirIndex < len(directories) - 1: # Fixed: Right moves forward
|
||||||
|
pygame.mixer.stop()
|
||||||
|
currentDirIndex += 1
|
||||||
|
currentDir = directories[currentDirIndex]
|
||||||
|
currentSoundKeys = soundsByDir[currentDir]
|
||||||
|
currentSoundIndex = 0
|
||||||
|
|
||||||
|
elif event.key in [pygame.K_PAGEUP, pygame.K_LEFT] and currentDirIndex > 0: # Fixed: Left moves backward
|
||||||
|
pygame.mixer.stop()
|
||||||
|
currentDirIndex -= 1 # Fixed: Was incrementing instead of decrementing
|
||||||
|
currentDir = directories[currentDirIndex]
|
||||||
|
currentSoundKeys = soundsByDir[currentDir]
|
||||||
|
currentSoundIndex = 0
|
||||||
|
|
||||||
|
# Play sound
|
||||||
|
elif event.key == pygame.K_RETURN:
|
||||||
try:
|
try:
|
||||||
soundName = soundKeys[currentIndex]
|
soundName = currentSoundKeys[currentSoundIndex]
|
||||||
pygame.mixer.stop()
|
pygame.mixer.stop()
|
||||||
sounds[soundName].play()
|
sounds[soundName].play()
|
||||||
except:
|
except:
|
||||||
lastSpoken = -1
|
|
||||||
speech.speak("Could not play sound.")
|
speech.speak("Could not play sound.")
|
||||||
|
|
||||||
event = pygame.event.clear()
|
event = pygame.event.clear()
|
||||||
pygame.event.clear()
|
pygame.event.pump() # Process pygame's internal events
|
||||||
time.sleep(0.001)
|
time.sleep(0.001)
|
||||||
|
|
||||||
return "menu"
|
return "menu"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user