X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=helpers%2Faction.py;h=aff61e701f76ecc72721436e5bb315aab7cf557c;hb=8612c5f8bb0fc9529bc489a6719654d4474db6d5;hp=a68de90e5f1348934804d08c2a194fac14133eb1;hpb=be27763f8be0f647cbe17ecee8c782901ce2cede;p=perso%2FImmae%2FProjets%2FPython%2FMusicSampler.git diff --git a/helpers/action.py b/helpers/action.py index a68de90..aff61e7 100644 --- a/helpers/action.py +++ b/helpers/action.py @@ -8,6 +8,7 @@ class Action: 'play', 'stop', 'stop_all_actions', + 'unpause', 'volume', 'wait', ] @@ -28,8 +29,12 @@ class Action: return True def run(self): - print(getattr(self, self.action + "_print")(**self.arguments)) - return getattr(self, self.action)(**self.arguments) + print(self.description()) + getattr(self, self.action)(**self.arguments) + #pygame.event.post(pygame.event.Event(pygame.USEREVENT)) + + def description(self): + return getattr(self, self.action + "_print")(**self.arguments) def command(self, command = "", **kwargs): pass @@ -40,42 +45,72 @@ class Action: else: pygame.mixer.pause() + def unpause(self, music = None, **kwargs): + if music is not None: + music.unpause() + else: + pygame.mixer.unpause() + def play(self, music = None, fade_in = 0, start_at = 0, restart_if_running = False, volume = 100, **kwargs): if music is not None: - music.play() + if restart_if_running: + if music.is_playing(): + music.stop() + music.play(volume = volume, fade_in = fade_in, start_at = start_at) + else: + if not music.is_playing(): + 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() + music.stop(fade_out = fade_out) else: - pygame.mixer.stop() + if fade_out > 0: + pygame.mixer.fadeout(int(fade_out * 1000)) + else: + pygame.mixer.stop() 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): - pass + if music is not None: + music.set_volume(value) + else: + pass - def wait(self, duration = 0, **kwargs): - time.sleep(duration) + def wait(self, duration = 0, music = None, **kwargs): + # FIXME: Make it stoppable + # http://stackoverflow.com/questions/29082268/python-time-sleep-vs-event-wait + 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" @@ -95,21 +130,21 @@ 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" else: return "stopping all musics with {}s fadeout".format(fade_out) - def stop_all_actions_print(self): + def stop_all_actions_print(self, **kwargs): return "stopping all actions" - def volume_print(self, music = None, value = 100, *kwargs): + 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)