1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
|
# A simple client that generates sine waves via python-pyaudio
import signal
import pyaudio
import sys
import socket
import time
import math
import struct
import socket
import optparse
import array
import random
import threading
import thread
from packet import Packet, CMD, stoi
parser = optparse.OptionParser()
parser.add_option('-t', '--test', dest='test', action='store_true', help='Play a test sequence (440,<rest>,880,440), then exit')
parser.add_option('-g', '--generator', dest='generator', default='math.sin', help='Set the generator (to a Python expression)')
parser.add_option('--generators', dest='generators', action='store_true', help='Show the list of generators, then exit')
parser.add_option('-u', '--uid', dest='uid', default='', help='Set the UID (identifier) of this client in the network')
parser.add_option('-p', '--port', dest='port', type='int', default=13676, help='Set the port to listen on')
parser.add_option('-r', '--rate', dest='rate', type='int', default=44100, help='Set the sample rate of the audio device')
parser.add_option('-V', '--volume', dest='volume', type='float', default=1.0, help='Set the volume factor (>1 distorts, <1 attenuates)')
parser.add_option('-G', '--gui', dest='gui', default='', help='set a GUI to use')
parser.add_option('--pg-fullscreen', dest='fullscreen', action='store_true', help='Use a full-screen video mode')
parser.add_option('--pg-samp-width', dest='samp_width', type='int', help='Set the width of the sample pane (by default display width / 2)')
parser.add_option('--pg-bgr-width', dest='bgr_width', type='int', help='Set the width of the bargraph pane (by default display width / 2)')
parser.add_option('--pg-height', dest='height', type='int', help='Set the height of the window or full-screen video mode')
options, args = parser.parse_args()
PORT = options.port
STREAMS = 1
IDENT = 'TONE'
UID = options.uid
LAST_SAMP = 0
LAST_SAMPLES = []
FREQ = 0
PHASE = 0
RATE = options.rate
FPB = 64
Z_SAMP = '\x00\x00\x00\x00'
MAX = 0x7fffffff
AMP = MAX
MIN = -0x80000000
def lin_interp(frm, to, p):
return p*to + (1-p)*frm
# GUIs
GUIs = {}
def GUI(f):
GUIs[f.__name__] = f
return f
@GUI
def pygame_notes():
import pygame
import pygame.gfxdraw
pygame.init()
dispinfo = pygame.display.Info()
DISP_WIDTH = 640
DISP_HEIGHT = 480
if dispinfo.current_h > 0 and dispinfo.current_w > 0:
DISP_WIDTH = dispinfo.current_w
DISP_HEIGHT = dispinfo.current_h
SAMP_WIDTH = DISP_WIDTH / 2
if options.samp_width > 0:
SAMP_WIDTH = options.samp_width
BGR_WIDTH = DISP_WIDTH / 2
if options.bgr_width > 0:
BGR_WIDTH = options.bgr_width
HEIGHT = DISP_HEIGHT
if options.height > 0:
HEIGHT = options.height
flags = 0
if options.fullscreen:
flags |= pygame.FULLSCREEN
disp = pygame.display.set_mode((SAMP_WIDTH + BGR_WIDTH, HEIGHT), flags)
WIDTH, HEIGHT = disp.get_size()
SAMP_WIDTH = WIDTH / 2
BGR_WIDTH = WIDTH - SAMP_WIDTH
PFAC = HEIGHT / 128.0
sampwin = pygame.Surface((SAMP_WIDTH, HEIGHT))
lastsy = HEIGHT / 2
clock = pygame.time.Clock()
while True:
if FREQ > 0:
try:
pitch = 12 * math.log(FREQ / 440.0, 2) + 69
except ValueError:
pitch = 0
else:
pitch = 0
col = [int((AMP / MAX) * 255)] * 3
disp.fill((0, 0, 0), (BGR_WIDTH, 0, SAMP_WIDTH, HEIGHT))
disp.scroll(-1, 0)
disp.fill(col, (BGR_WIDTH - 1, HEIGHT - pitch * PFAC - PFAC, 1, PFAC))
sampwin.scroll(-len(LAST_SAMPLES), 0)
x = max(0, SAMP_WIDTH - len(LAST_SAMPLES))
sampwin.fill((0, 0, 0), (x, 0, SAMP_WIDTH - x, HEIGHT))
for i in LAST_SAMPLES:
sy = int((float(i) / MAX) * (HEIGHT / 2) + (HEIGHT / 2))
pygame.gfxdraw.line(sampwin, x - 1, lastsy, x, sy, (0, 255, 0))
x += 1
lastsy = sy
del LAST_SAMPLES[:]
#w, h = SAMP_WIDTH, HEIGHT
#pts = [(BGR_WIDTH, HEIGHT / 2), (w + BGR_WIDTH, HEIGHT / 2)]
#x = w + BGR_WIDTH
#for i in reversed(LAST_SAMPLES):
# pts.insert(1, (x, int((h / 2) + (float(i) / MAX) * (h / 2))))
# x -= 1
# if x < BGR_WIDTH:
# break
#if len(pts) > 2:
# pygame.gfxdraw.aapolygon(disp, pts, [0, 255, 0])
disp.blit(sampwin, (BGR_WIDTH, 0))
pygame.display.flip()
for ev in pygame.event.get():
if ev.type == pygame.KEYDOWN:
if ev.key == pygame.K_ESCAPE:
thread.interrupt_main()
pygame.quit()
exit()
elif ev.type == pygame.QUIT:
thread.interrupt_main()
pygame.quit()
exit()
clock.tick(60)
# Generator functions--should be cyclic within [0, 2*math.pi) and return [-1, 1]
GENERATORS = [{'name': 'math.sin', 'args': None, 'desc': 'Sine function'},
{'name':'math.cos', 'args': None, 'desc': 'Cosine function'}]
def generator(desc=None, args=None):
def inner(f, desc=desc, args=args):
if desc is None:
desc = f.__doc__
GENERATORS.append({'name': f.__name__, 'desc': desc, 'args': args})
return f
return inner
@generator('Simple triangle wave (peaks/troughs at pi/2, 3pi/2)')
def tri_wave(theta):
if theta < math.pi/2:
return lin_interp(0, 1, theta/(math.pi/2))
elif theta < 3*math.pi/2:
return lin_interp(1, -1, (theta-math.pi/2)/math.pi)
else:
return lin_interp(-1, 0, (theta-3*math.pi/2)/(math.pi/2))
@generator('Saw wave (line from (0, 1) to (2pi, -1))')
def saw_wave(theta):
return lin_interp(1, -1, theta/(math.pi * 2))
@generator('Simple square wave (piecewise 1 at x<pi, 0 else)')
def square_wave(theta):
if theta < math.pi:
return 1
else:
return -1
@generator('Random (noise) generator')
def noise(theta):
return random.random() * 2 - 1
@generator('File generator', '(<file>[, <bits=8>[, <signed=True>[, <0=linear interp (default), 1=nearest>[, <swapbytes=False>]]]])')
class file_samp(object):
LINEAR = 0
NEAREST = 1
TYPES = {8: 'B', 16: 'H', 32: 'L'}
def __init__(self, fname, bits=8, signed=True, samp=LINEAR, swab=False):
tp = self.TYPES[bits]
if signed:
tp = tp.lower()
self.max = float((2 << bits) - 1)
self.buffer = array.array(tp)
self.buffer.fromstring(open(fname, 'rb').read())
if swab:
self.buffer.byteswap()
self.samp = samp
def __call__(self, theta):
norm = theta / (2*math.pi)
if self.samp == self.LINEAR:
v = norm*len(self.buffer)
l = int(math.floor(v))
h = int(math.ceil(v))
if l == h:
return self.buffer[l]/self.max
if h >= len(self.buffer):
h = 0
return lin_interp(self.buffer[l], self.buffer[h], v-l)/self.max
elif self.samp == self.NEAREST:
return self.buffer[int(math.ceil(norm*len(self.buffer) - 0.5))]/self.max
@generator('Harmonics generator (adds overtones at f, 2f, 3f, 4f, etc.)', '(<generator>, <amplitude of f>, <amp 2f>, <amp 3f>, ...)')
class harmonic(object):
def __init__(self, gen, *spectrum):
self.gen = gen
self.spectrum = spectrum
def __call__(self, theta):
return max(-1, min(1, sum([amp*self.gen((i+1)*theta % (2*math.pi)) for i, amp in enumerate(self.spectrum)])))
@generator('General harmonics generator (adds arbitrary overtones)', '(<generator>, <factor of f>, <amplitude>, <factor>, <amplitude>, ...)')
class genharmonic(object):
def __init__(self, gen, *harmonics):
self.gen = gen
self.harmonics = zip(harmonics[::2], harmonics[1::2])
def __call__(self, theta):
return max(-1, min(1, sum([amp * self.gen(i * theta % (2*math.pi)) for i, amp in self.harmonics])))
@generator('Mix generator', '(<generator>[, <amp>], [<generator>[, <amp>], [...]])')
class mixer(object):
def __init__(self, *specs):
self.pairs = []
i = 0
while i < len(specs):
if i+1 < len(specs) and isinstance(specs[i+1], (float, int)):
pair = (specs[i], specs[i+1])
i += 2
else:
pair = (specs[i], None)
i += 1
self.pairs.append(pair)
tamp = 1 - min(1, sum([amp for gen, amp in self.pairs if amp is not None]))
parts = float(len([None for gen, amp in self.pairs if amp is None]))
for idx, pair in enumerate(self.pairs):
if pair[1] is None:
self.pairs[idx] = (pair[0], tamp / parts)
def __call__(self, theta):
return max(-1, min(1, sum([amp*gen(theta) for gen, amp in self.pairs])))
@generator('Phase offset generator (in radians; use math.pi)', '(<generator>, <offset>)')
class phase_off(object):
def __init__(self, gen, offset):
self.gen = gen
self.offset = offset
def __call__(self, theta):
return self.gen((theta + self.offset) % (2*math.pi))
if options.generators:
for item in GENERATORS:
print item['name'],
if item['args'] is not None:
print item['args'],
print '--', item['desc']
exit()
#generator = math.sin
#generator = tri_wave
#generator = square_wave
generator = eval(options.generator)
def sigalrm(sig, frm):
global FREQ
FREQ = 0
def lin_seq(frm, to, cnt):
step = (to-frm)/float(cnt)
samps = [0]*cnt
for i in xrange(cnt):
p = i / float(cnt-1)
samps[i] = int(lin_interp(frm, to, p))
return samps
def samps(freq, phase, cnt):
global RATE, AMP
samps = [0]*cnt
for i in xrange(cnt):
samps[i] = int(AMP * max(-1, min(1, options.volume*generator((phase + 2 * math.pi * freq * i / RATE) % (2*math.pi)))))
return samps, (phase + 2 * math.pi * freq * cnt / RATE) % (2*math.pi)
def to_data(samps):
return struct.pack('i'*len(samps), *samps)
def gen_data(data, frames, time, status):
global FREQ, PHASE, Z_SAMP, LAST_SAMP, LAST_SAMPLES
if FREQ == 0:
PHASE = 0
if LAST_SAMP == 0:
if options.gui:
LAST_SAMPLES.extend([0]*frames)
return (Z_SAMP*frames, pyaudio.paContinue)
fdata = lin_seq(LAST_SAMP, 0, frames)
if options.gui:
LAST_SAMPLES.extend(fdata)
LAST_SAMP = fdata[-1]
return (to_data(fdata), pyaudio.paContinue)
fdata, PHASE = samps(FREQ, PHASE, frames)
if options.gui:
LAST_SAMPLES.extend(fdata)
LAST_SAMP = fdata[-1]
return (to_data(fdata), pyaudio.paContinue)
pa = pyaudio.PyAudio()
stream = pa.open(rate=RATE, channels=1, format=pyaudio.paInt32, output=True, frames_per_buffer=FPB, stream_callback=gen_data)
if options.gui:
guithread = threading.Thread(target=GUIs[options.gui])
guithread.setDaemon(True)
guithread.start()
if options.test:
FREQ = 440
time.sleep(1)
FREQ = 0
time.sleep(1)
FREQ = 880
time.sleep(1)
FREQ = 440
time.sleep(2)
exit()
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.bind(('', PORT))
signal.signal(signal.SIGALRM, sigalrm)
while True:
data = ''
while not data:
try:
data, cli = sock.recvfrom(4096)
except socket.error:
pass
pkt = Packet.FromStr(data)
print 'From', cli, 'command', pkt.cmd
if pkt.cmd == CMD.KA:
pass
elif pkt.cmd == CMD.PING:
sock.sendto(data, cli)
elif pkt.cmd == CMD.QUIT:
break
elif pkt.cmd == CMD.PLAY:
dur = pkt.data[0]+pkt.data[1]/1000000.0
FREQ = pkt.data[2]
AMP = MAX * (pkt.data[3]/255.0)
signal.setitimer(signal.ITIMER_REAL, dur)
elif pkt.cmd == CMD.CAPS:
data = [0] * 8
data[0] = STREAMS
data[1] = stoi(IDENT)
for i in xrange(len(UID)/4):
data[i+2] = stoi(UID[4*i:4*(i+1)])
sock.sendto(str(Packet(CMD.CAPS, *data)), cli)
else:
print 'Unknown cmd', pkt.cmd
|