aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthajohns <thajohns@clarkson.edu>2022-02-28 11:16:25 -0500
committerthajohns <thajohns@clarkson.edu>2022-02-28 11:16:25 -0500
commitff702c8fd5361c1530c2623150f79080c4dd1bae (patch)
tree0efc2ced80beb8b11464086cd2c952072336d16c
parentebd8f4b242c1a83a222297aa80b2e5c64580e36d (diff)
added documentation for mapped file structure
-rw-r--r--render.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/render.py b/render.py
index 0030969..2d7a68f 100644
--- a/render.py
+++ b/render.py
@@ -1,5 +1,15 @@
# A visualizer for the Python client (or any other client) rendering to a mapped file
+# The map file format should look like the following C structure:
+# struct mapping {
+# float disp_factor; // scales the response to a note
+# float last_samples[MAP_SAMPLES]; // samples from the waveform being played
+# struct {
+# unsigned long frequency;
+# float amplitude;
+# } values[STREAMS];
+# }
+
import optparse
import mmap
import os