Learn sound now tells you which item in the list you are on.
This commit is contained in:
parent
2c34f31a82
commit
619cb5508a
9
menu.py
9
menu.py
@ -278,6 +278,12 @@ def learn_sounds(sounds):
|
|||||||
and (f.split('.')[0].lower() not in ["game-intro", "music_menu"])
|
and (f.split('.')[0].lower() not in ["game-intro", "music_menu"])
|
||||||
and (not f.lower().startswith("_"))]
|
and (not f.lower().startswith("_"))]
|
||||||
|
|
||||||
|
# Sort the sound files alphabetically
|
||||||
|
soundFiles.sort()
|
||||||
|
|
||||||
|
# Total number of sound files
|
||||||
|
totalSounds = len(soundFiles)
|
||||||
|
|
||||||
# Track last spoken index to avoid repetition
|
# Track last spoken index to avoid repetition
|
||||||
lastSpoken = -1
|
lastSpoken = -1
|
||||||
|
|
||||||
@ -286,7 +292,8 @@ def learn_sounds(sounds):
|
|||||||
|
|
||||||
while not returnToMenu:
|
while not returnToMenu:
|
||||||
if currentIndex != lastSpoken:
|
if currentIndex != lastSpoken:
|
||||||
speech.speak(soundFiles[currentIndex][:-4])
|
# Speak the sound name followed by its position in the list
|
||||||
|
speech.speak(f"{soundFiles[currentIndex][:-4]}, {currentIndex + 1} of {totalSounds}")
|
||||||
lastSpoken = currentIndex
|
lastSpoken = currentIndex
|
||||||
|
|
||||||
event = pygame.event.wait()
|
event = pygame.event.wait()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user