From 005d2fdf909d0552f8c6340d9fc25b3891037c24 Mon Sep 17 00:00:00 2001 From: Grissess Date: Fri, 10 Jul 2015 13:06:51 -0400 Subject: Bugfixes, small features, and better functional voices! --- broadcast.py | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'broadcast.py') diff --git a/broadcast.py b/broadcast.py index 7bd7bd0..a701bd0 100644 --- a/broadcast.py +++ b/broadcast.py @@ -11,8 +11,9 @@ from packet import Packet, CMD, itos parser = optparse.OptionParser() parser.add_option('-t', '--test', dest='test', action='store_true', help='Play a test tone (440, 880) on all clients in sequence (the last overlaps with the first of the next)') parser.add_option('-q', '--quit', dest='quit', action='store_true', help='Instruct all clients to quit') -parser.add_option('-f', '--factor', dest='factor', type='int', help='Rescale time by this factor (0 2: - factor = float(sys.argv[2]) -else: - factor = 1 +factor = options.factor print 'Factor:', factor @@ -86,7 +84,7 @@ if options.test or options.quit: exit() try: - iv = ET.parse(sys.argv[1]).getroot() + iv = ET.parse(args[0]).getroot() except IOError: print 'Bad file' exit() @@ -98,6 +96,10 @@ print len(clients), 'clients' print len(groups), 'groups' class NSThread(threading.Thread): + def wait_for(self, t): + if t <= 0: + return + time.sleep(t) def run(self): nsq, cl = self._Thread__args for note in nsq: @@ -106,9 +108,11 @@ class NSThread(threading.Thread): vel = int(note.get('vel')) dur = factor*float(note.get('dur')) while time.time() - BASETIME < factor*ttime: - time.sleep(factor*ttime - (time.time() - BASETIME)) + self.wait_for(factor*ttime - (time.time() - BASETIME)) s.sendto(str(Packet(CMD.PLAY, int(dur), int((dur*1000000)%1000000), int(440.0 * 2**((pitch-69)/12.0)), vel*2)), cl) - time.sleep(dur) + print (time.time() - BASETIME), cl, ': PLAY', pitch, dur, vel + self.wait_for(dur - ((time.time() - BASETIME) - factor*ttime)) + print '% 6.5f'%(time.time() - BASETIME,), cl, ': DONE' threads = [] for ns in notestreams: -- cgit v1.2.3-70-g09d2