diff options
author | Grissess <grissess@nexusg.org> | 2016-09-13 01:08:34 -0400 |
---|---|---|
committer | Grissess <grissess@nexusg.org> | 2016-09-13 01:08:34 -0400 |
commit | 4f3cee39bde8b6e90758d499af85710ce4436136 (patch) | |
tree | 8eb3246d822643c2f1ef6eda4c9ea4e30008ab40 /drums.py | |
parent | bab20d4625ddddad7911d548edca12cc0ea93c6b (diff) |
Small fixes to handling of obligate polyphones
...that is now my new favorite phrase :)
Diffstat (limited to 'drums.py')
-rw-r--r-- | drums.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,7 +7,7 @@ import cStringIO as StringIO import array import time -from packet import Packet, CMD, stoi +from packet import Packet, CMD, stoi, OBLIGATE_POLYPHONE parser = optparse.OptionParser() parser.add_option('-t', '--test', dest='test', action='store_true', help='As a test, play all samples then exit') @@ -161,12 +161,12 @@ while True: dframes = max(dframes, rframes) if not options.cut: dframes = rframes * ((dframes + rframes - 1) / rframes) - amp = max(min(pkt.as_float(3), 1.0), 0.0) + amp = max(min(options.volume * pkt.as_float(3), 1.0), 0.0) PLAYING.add(SampleReader(rdata, dframes * 4, amp)) #signal.setitimer(signal.ITIMER_REAL, dur) elif pkt.cmd == CMD.CAPS: data = [0] * 8 - data[0] = 255 # XXX More ports? Less? + data[0] = OBLIGATE_POLYPHONE data[1] = stoi(IDENT) for i in xrange(len(options.uid)/4 + 1): data[i+2] = stoi(options.uid[4*i:4*(i+1)]) |