From 3a478d15d518b73f0bebe87eb4722e08cfc68668 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 17 Mar 2025 21:12:29 -0400 Subject: [PATCH] Instead of implementing sound changes in one huge go, I'm going to try smaller approaches. Now play_sound has an optional loop parameter set to false by default for backwards compatibility. --- sound.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/sound.py b/sound.py index e395af1..bf01427 100644 --- a/sound.py +++ b/sound.py @@ -80,7 +80,7 @@ class Sound: except Exception as e: print(f"Error loading sounds: {e}") - def play_sound(self, soundName, volume=1.0): + def play_sound(self, soundName, volume=1.0, loop=False): """Play a sound with current volume settings applied. Args: @@ -94,7 +94,10 @@ class Sound: return None sound = self.sounds[soundName] - channel = sound.play() + if loop: + channel = sound.play(-1) + else: + channel = sound.play() if channel: channel.set_volume(volume * self.volumeService.get_sfx_volume()) return channel @@ -494,7 +497,7 @@ def calculate_volume_and_pan(playerPos, objPos): return volume, left, right -def play_sound(sound, volume=1.0): +def play_sound(sound, volume=1.0, loop=False): """Play a sound with current volume settings applied. Args: @@ -504,7 +507,10 @@ def play_sound(sound, volume=1.0): Returns: pygame.mixer.Channel: The channel the sound is playing on """ - channel = sound.play() + if loop: + channel = sound.play(-1) + else: + channel = sound.play() if channel: channel.set_volume(volume * volumeService.get_sfx_volume()) return channel