From 63ba5a8dc2aa4ec3e6f203b0ba4db249ecf0b00e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 27 Jul 2016 21:33:09 +0200 Subject: Rename helpers to music_sampler --- helpers/actions/stop.py | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 helpers/actions/stop.py (limited to 'helpers/actions/stop.py') diff --git a/helpers/actions/stop.py b/helpers/actions/stop.py deleted file mode 100644 index 88cc66d..0000000 --- a/helpers/actions/stop.py +++ /dev/null @@ -1,42 +0,0 @@ -def run(action, music=None, fade_out=0, wait=False, - set_wait_id=None, **kwargs): - previous = None - for music in action.music_list(music): - if music.is_loaded_paused() or music.is_loaded_playing(): - if previous is not None: - previous.stop(fade_out=fade_out) - previous = music - else: - music.stop(fade_out=fade_out) - - if previous is not None: - action.waiting_music = previous - previous.stop( - fade_out=fade_out, - wait=wait, - set_wait_id=set_wait_id) - -def description(action, music=None, fade_out=0, wait=False, - set_wait_id=None, **kwargs): - - message = "stopping " - if music is not None: - message += "music « {} »".format(music.name) - else: - message += "all musics" - - if fade_out > 0: - message += " with {}s fadeout".format(fade_out) - if wait: - if set_wait_id is not None: - message += " (waiting the end of fadeout, with id {})"\ - .format(set_wait_id) - else: - message += " (waiting the end of fadeout)" - - return message - -def interrupt(action, music=None, fade_out=0, wait=False, - set_wait_id=None, **kwargs): - if action.waiting_music is not None: - action.waiting_music.wait_event.set() -- cgit v1.2.3