Fixed some sound I forgot to exclude when refactoring this code.
This commit is contained in:
parent
0d9764abd9
commit
4aa3475ac4
32
sound.py
32
sound.py
@ -93,21 +93,37 @@ class Sound:
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"Error loading sounds: {e}")
|
print(f"Error loading sounds: {e}")
|
||||||
|
|
||||||
def get_sound_list(self, excludeDirs=None):
|
def get_sound_list(self, excludeDirs=None, includeSpecial=False):
|
||||||
"""Get a list of available sounds, optionally excluding certain directories.
|
"""Get a list of available sounds, optionally excluding certain directories and special sounds.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
excludeDirs (list): List of directory names to exclude
|
excludeDirs (list): List of directory names to exclude
|
||||||
|
includeSpecial (bool): Whether to include special sounds (logo, music_menu, etc.)
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
list: List of sound keys
|
list: List of sound keys
|
||||||
"""
|
"""
|
||||||
if excludeDirs is None:
|
if excludeDirs is None:
|
||||||
excludeDirs = self.excludedLearnDirs
|
excludeDirs = self.excludedLearnDirs
|
||||||
|
|
||||||
# Filter sounds based on their directories
|
# Special sound names to exclude unless specifically requested
|
||||||
return [key for key, directory in self.soundDirectories.items()
|
specialSounds = ["music_menu", "logo", "game-intro"]
|
||||||
if directory not in excludeDirs]
|
|
||||||
|
# Filter sounds based on their directories and special names
|
||||||
|
filtered_sounds = []
|
||||||
|
for key, directory in self.soundDirectories.items():
|
||||||
|
# Skip sounds in excluded directories
|
||||||
|
if directory in excludeDirs:
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Skip special sounds unless specifically requested
|
||||||
|
basename = key.split('/')[-1] # Get the filename without directory
|
||||||
|
if not includeSpecial and (basename in specialSounds or basename.startswith('_')):
|
||||||
|
continue
|
||||||
|
|
||||||
|
filtered_sounds.append(key)
|
||||||
|
|
||||||
|
return filtered_sounds
|
||||||
|
|
||||||
def play_bgm(self, music_file):
|
def play_bgm(self, music_file):
|
||||||
"""Play background music with proper volume.
|
"""Play background music with proper volume.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user