aboutsummaryrefslogtreecommitdiff
path: root/client.py
diff options
context:
space:
mode:
authorGrissess <grissess@nexusg.org>2016-09-12 11:52:50 -0400
committerGrissess <grissess@nexusg.org>2016-09-12 11:52:50 -0400
commitbab20d4625ddddad7911d548edca12cc0ea93c6b (patch)
tree2a48ef4c45c0578700cdaf7275e5abf74215001c /client.py
parent33d49cd847ab06c6912a216cc3b4ff8a549145b1 (diff)
DRUM SUPPORT!
Diffstat (limited to 'client.py')
-rw-r--r--client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/client.py b/client.py
index 8bd41a4..855fb4b 100644
--- a/client.py
+++ b/client.py
@@ -294,7 +294,7 @@ if options.numpy:
def samps(freq, amp, phase, cnt):
samps = numpy.ndarray((cnt,), numpy.int32)
pvel = 2 * math.pi * freq / RATE
- fac = amp / float(STREAMS)
+ fac = options.volume * amp / float(STREAMS)
for i in xrange(cnt):
samps[i] = fac * max(-1, min(1, generator(phase)))
phase = (phase + pvel) % (2 * math.pi)
@@ -414,7 +414,7 @@ while True:
data = [0] * 8
data[0] = STREAMS
data[1] = stoi(IDENT)
- for i in xrange(len(UID)/4):
+ for i in xrange(len(UID)/4 + 1):
data[i+2] = stoi(UID[4*i:4*(i+1)])
sock.sendto(str(Packet(CMD.CAPS, *data)), cli)
elif pkt.cmd == CMD.PCM: