X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=helpers%2Faction.py;h=69ae96fb8581b5f0bc0006d7841394e37ec87500;hb=29597680758e4924aa71fc021465189e153f2016;hp=97873a0029d8e24e8a93b239174b305ab76bdd65;hpb=ba9ea93a0f52178d24a606fddc2acc5dc85b7ff2;p=perso%2FImmae%2FProjets%2FPython%2FMusicSampler.git diff --git a/helpers/action.py b/helpers/action.py index 97873a0..69ae96f 100644 --- a/helpers/action.py +++ b/helpers/action.py @@ -8,6 +8,7 @@ class Action: 'play', 'stop', 'stop_all_actions', + 'unpause', 'volume', 'wait', ] @@ -23,13 +24,13 @@ class Action: def ready(self): if 'music' in self.arguments: - return self.arguments['music'].loaded + return self.arguments['music'].check_is_loaded() else: return True def run(self): print(self.description()) - return getattr(self, self.action)(**self.arguments) + getattr(self, self.action)(**self.arguments) def description(self): return getattr(self, self.action + "_print")(**self.arguments) @@ -37,62 +38,77 @@ class Action: def command(self, command = "", **kwargs): pass - def pause(self, music = None, **kwargs): + def music_list(self, music): if music is not None: - music.pause() + return [music] else: - pygame.mixer.pause() + return self.key.parent.open_files.values() + + def pause(self, music = None, **kwargs): + for music in self.music_list(music): + if music.is_loaded_playing(): + music.pause() + + def unpause(self, music = None, **kwargs): + for music in self.music_list(music): + if music.is_loaded_paused(): + music.unpause() def play(self, music = None, fade_in = 0, start_at = 0, restart_if_running = False, volume = 100, **kwargs): if music is not None: if restart_if_running: - if music.is_playing(): + if music.is_not_stopped(): music.stop() music.play(volume = volume, fade_in = fade_in, start_at = start_at) else: - if not music.is_playing(): + if not music.is_not_stopped(): music.play(volume = volume, fade_in = fade_in, start_at = start_at) - else: - pygame.mixer.unpause() def stop(self, music = None, fade_out = 0, **kwargs): - if music is not None: - music.stop(fade_out = fade_out) - else: - if fade_out > 0: - pygame.fadeout(fade_out * 1000) - else: - pygame.mixer.stop() + for music in self.music_list(music): + if music.is_loaded_paused() or music.is_loaded_playing(): + music.stop(fade_out = fade_out) def stop_all_actions(self, **kwargs): - self.key.mapping.stop_all_running() + self.key.parent.stop_all_running() def volume(self, music = None, value = 100, **kwargs): if music is not None: music.set_volume(value) else: + # FIXME: todo pass - def wait(self, duration = 0, **kwargs): + def wait(self, duration = 0, music = None, **kwargs): # FIXME: Make it stoppable # http://stackoverflow.com/questions/29082268/python-time-sleep-vs-event-wait - time.sleep(duration) + if music is None: + time.sleep(duration) + else: + # TODO + music.wait_end() def command_print(self, command = "", **kwargs): return "running command {}".format(command) def pause_print(self, music = None, **kwargs): if music is not None: - return "pausing {}".format(music.filename) + return "pausing « {} »".format(music.name) else: return "pausing all musics" + def unpause_print(self, music = None, **kwargs): + if music is not None: + return "unpausing « {} »".format(music.name) + else: + return "unpausing all musics" + def play_print(self, music = None, fade_in = 0, start_at = 0, restart_if_running = False, volume = 100, **kwargs): message = "starting " if music is not None: - message += music.filename + message += "« {} »".format(music.name) else: message += "music" @@ -112,9 +128,9 @@ class Action: def stop_print(self, music = None, fade_out = 0, **kwargs): if music is not None: if fade_out == 0: - return "stopping music {}".format(music.filename) + return "stopping music « {} »".format(music.name) else: - return "stopping music {} with {}s fadeout".format(music.filename, fade_out) + return "stopping music « {} » with {}s fadeout".format(music.name, fade_out) else: if fade_out == 0: return "stopping all musics" @@ -126,7 +142,7 @@ class Action: def volume_print(self, music = None, value = 100, **kwargs): if music is not None: - return "setting volume of {} to {}%".format(music.filename, value) + return "setting volume of « {} » to {}%".format(music.name, value) else: return "setting volume to {}%".format(value)