aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2019-11-16 00:41:19 -0500
committerGraham Northup <grissess@nexusg.org>2019-11-16 00:41:19 -0500
commit5b8b17790594117d74a80ead56f727aee3705fbf (patch)
treec0674807616e8dc816f9096a451e6b2a7cbe16ea
parent964ff690b2d82293b057397da482e2071d3827aa (diff)
Fix signal rendering part
-rw-r--r--client.py1
-rw-r--r--render.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/client.py b/client.py
index 3a7588f..c2d027e 100644
--- a/client.py
+++ b/client.py
@@ -254,6 +254,7 @@ def mapped():
mapping[:fixfmtsz] = struct.pack(fixfmt, (DRIFT_FACTOR - 1.0) if QUEUED_PCM else 0.0)
mapping[fixfmtsz:fixfmtsz+sigfmtsz] = struct.pack(sigfmt, *(float(LAST_SAMPLES[i])/MAX if i < len(LAST_SAMPLES) else 0.0 for i in xrange(ms)))
mapping[fixfmtsz+sigfmtsz:] = struct.pack(strfmt, *unzip2((FREQS[i], float(AMPS[i])/MAX) for i in xrange(STREAMS)))
+ del LAST_SAMPLES[:]
time.sleep(stm)
# Generator functions--should be cyclic within [0, 2*math.pi) and return [-1, 1]
diff --git a/render.py b/render.py
index d890cc0..914af4b 100644
--- a/render.py
+++ b/render.py
@@ -117,7 +117,7 @@ while True:
sampwin.fill((0, 0, 0), (0, 0, SAMP_WIDTH, HEIGHT))
x = 0
for i in LAST_SAMPLES:
- sy = int(AMP * HALFH + HALFH)
+ sy = int(i * HALFH + HALFH)
pygame.gfxdraw.line(sampwin, x - 1, lastsy, x, sy, (0, 255, 0))
x += 1
lastsy = sy