forked from MSXALL/pymsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsound.py
290 lines (217 loc) · 9.43 KB
/
sound.py
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
# (C) 2020 by Folkert van Heusden <[email protected]>
# released under AGPL v3.0
import math
import mido # type: ignore
import os
os.environ['PYGAME_HIDE_SUPPORT_PROMPT'] = 'hide'
import pyaudio # type: ignore
import struct
import sys
import threading
import time
from typing import List
class sound():
T_AY_3_8910 = 0
SCC = 1
def __init__(self, debug):
self.debug = debug
self.ri = 0
self.psg_regs = [ 0 ] * 16
self.prev_reg13 = None
self.scc_regs = [ 0 ] * 256
self.td1 = self.td2 = self.td3 = self.td4 = self.td5 = 0
self.mul_scc_1 = self.mul_scc_2 = self.mul_scc_3 = self.mul_scc_4 = self.mul_scc_5 = 0.0
self.vol_scc_1 = self.vol_scc_2 = self.vol_scc_3 = self.vol_scc_4 = self.vol_scc_5 = 0.0
self.sr = 48000
self.phase1 = self.phase2 = self.phase3 = 0.0
self.f1 = self.f2 = self.f3 = 0
self.l1 = self.l2 = self.l3 = 0
self.channel_on = [ [ 0, 0 ] ] * 16
self.pipein, self.pipeout = os.pipe()
self.lock = threading.Lock()
self.pid = self.start_audio()
super(sound, self).__init__()
def get_ios(self):
return [ [ 0xa2 ] , [ 0xa0, 0xa1 ] ]
def get_name(self):
return 'PSG'
def start_audio(self):
pid = os.fork()
if pid == 0:
self.p = pyaudio.PyAudio()
self.stream = self.p.open(format=self.p.get_format_from_width(2, unsigned=False), channels=1, rate=self.sr, output=True, stream_callback=self.callback)
while True:
type_ = os.read(self.pipein, 1)[0]
if type_ == sound.T_AY_3_8910:
data = os.read(self.pipein, 2)
a = data[0]
if a > 15:
# self.debug('PSG: index out of range %d' % a)
break
v = data[1]
# print('PSG: set reg %d to %d' % (a, v), file=sys.stderr)
with self.lock:
self.psg_regs[a] = v
self.recalc_channels(False)
elif type_ == sound.SCC:
data = os.read(self.pipein, 2)
a = data[0]
v = data[1]
with self.lock:
self.scc_regs[a] = v
self.recalc_scc_channels()
else:
assert False
self.stream.stop_stream()
self.stream.close()
self.p.terminate()
sys.exit(1)
self.mp = mido.open_output()
return pid
def send_midi(self, msg_in: List[int]):
msg = mido.Message.from_bytes(msg_in)
self.mp.send(msg)
def send_midi_prepare(self, ch: int, f: float, v: float, upd_instr: bool) -> None:
now = time.time()
if f == 0:
n = v = 0
else:
n = int(69 + 12 * math.log(f / 440.0))
v = int(v * 127)
if v == 0:
# channel is set to volume 0,
# stop playing note
if self.channel_on[ch][1] != 0:
self.send_midi([ 0x80 + ch, self.channel_on[ch][0], 0 ])
#print('%f] %02x %02x %d' % (now, 0x80 + ch, self.channel_on[ch][0], 0), file=sys.stderr)
self.channel_on[ch] = [ 0, 0 ]
else:
# already a note playing?
if self.channel_on[ch][1] != 0:
# switch it off
self.send_midi([ 0x80 + ch, self.channel_on[ch][0], 0 ])
if self.channel_on[ch][1] == 0 or upd_instr:
# make sure we use the correct instrument
self.mp.send(mido.Message('program_change', program=81 + (self.psg_regs[13] & 15), channel=ch))
self.channel_on[ch] = [ n, v ]
self.send_midi([ 0x90 + ch, n, v ])
def get_scc_reg_s(self, a: int) -> int:
v = self.scc_regs[a]
return -(256 - v) if v & 128 else v
def get_scc_sample(self, o: int, a: float) -> float:
v1 = self.get_scc_reg_s(o + (math.floor(a) & 0x1f))
m1 = a - math.floor(a)
v2 = self.get_scc_reg_s(o + (math.ceil(a) & 0x1f))
m2 = math.ceil(a) - a
return v1 * m2 + v2 * m1
def callback(self, in_data, frame_count, time_info, status):
with self.lock:
self.p1a = 2.0 * math.pi * self.f1 / self.sr
self.p2a = 2.0 * math.pi * self.f2 / self.sr
self.p3a = 2.0 * math.pi * self.f3 / self.sr
b = [ 0 ] * frame_count
out = bytes()
for i in range(0, frame_count):
s = math.sin(self.phase1) * self.l1 + math.sin(self.phase2) * self.l2 + math.sin(self.phase3) * self.l3
s += self.get_scc_sample(0x00, self.td1) * self.vol_scc_1 / 128.0
s += self.get_scc_sample(0x20, self.td2) * self.vol_scc_2 / 128.0
s += self.get_scc_sample(0x40, self.td3) * self.vol_scc_3 / 128.0
s += self.get_scc_sample(0x60, self.td4) * self.vol_scc_4 / 128.0
s += self.get_scc_sample(0x60, self.td5) * self.vol_scc_5 / 128.0
self.td1 += self.mul_scc_1
self.td2 += self.mul_scc_2
self.td3 += self.mul_scc_3
self.td4 += self.mul_scc_4
self.td5 += self.mul_scc_5
word = int(s / 8.0 * 32767)
out += struct.pack('<h', word)
self.phase1 += self.p1a
self.phase2 += self.p2a
self.phase3 += self.p3a
return (out, pyaudio.paContinue)
def set_scc(self, a: int, v: int) -> None:
assert v >= 0 and v <= 255
# print('SCC: set reg %02x to %d' % (a, v), file=sys.stderr)
self.scc_regs[a] = v
packet = ( sound.SCC, a, v )
os.write(self.pipeout, bytearray(packet))
def recalc_scc_channels(self):
nn_1 = ((self.scc_regs[0x81] & 15) << 8) + self.scc_regs[0x80]
nn_2 = ((self.scc_regs[0x83] & 15) << 8) + self.scc_regs[0x82]
nn_3 = ((self.scc_regs[0x85] & 15) << 8) + self.scc_regs[0x84]
nn_4 = ((self.scc_regs[0x87] & 15) << 8) + self.scc_regs[0x86]
nn_5 = ((self.scc_regs[0x89] & 15) << 8) + self.scc_regs[0x88]
freq_1 = 3579545.0 / 32 / (nn_1 if nn_1 > 0 else 1)
freq_2 = 3579545.0 / 32 / (nn_2 if nn_2 > 0 else 1)
freq_3 = 3579545.0 / 32 / (nn_3 if nn_3 > 0 else 1)
freq_4 = 3579545.0 / 32 / (nn_4 if nn_4 > 0 else 1)
freq_5 = 3579545.0 / 32 / (nn_5 if nn_5 > 0 else 1)
self.mul_scc_1 = (freq_1 / self.sr) * 32.0
self.mul_scc_2 = (freq_2 / self.sr) * 32.0
self.mul_scc_3 = (freq_3 / self.sr) * 32.0
self.mul_scc_4 = (freq_4 / self.sr) * 32.0
self.mul_scc_5 = (freq_5 / self.sr) * 32.0
self.vol_scc_1 = (self.scc_regs[0x8a] & 15) / 15.0 if self.scc_regs[0x8f] & 1 else 0
if self.vol_scc_1 == 0:
self.td1 = 0
self.vol_scc_2 = (self.scc_regs[0x8b] & 15) / 15.0 if self.scc_regs[0x8f] & 2 else 0
if self.vol_scc_2 == 0:
self.td2 = 0
self.vol_scc_3 = (self.scc_regs[0x8c] & 15) / 15.0 if self.scc_regs[0x8f] & 4 else 0
if self.vol_scc_3 == 0:
self.td3 = 0
self.vol_scc_4 = (self.scc_regs[0x8d] & 15) / 15.0 if self.scc_regs[0x8f] & 8 else 0
if self.vol_scc_4 == 0:
self.td4 = 0
self.vol_scc_5 = (self.scc_regs[0x8e] & 15) / 15.0 if self.scc_regs[0x8f] & 16 else 0
if self.vol_scc_5 == 0:
self.td5 = 0
def read_io(self, a: int) -> int:
if self.ri == 14:
self.psg_regs[self.ri] |= 63
return self.psg_regs[self.ri]
def write_io(self, a: int, v: int) -> None:
if a == 0xa0:
self.ri = v & 15
elif a == 0xa1:
self.psg_regs[self.ri] = v
self.debug('Sound %02x: %02x (%d)' % (self.ri, v, v))
packet = ( sound.T_AY_3_8910, self.ri, v )
os.write(self.pipeout, bytearray(packet))
self.recalc_channels(True)
def recalc_channels(self, midi: bool) -> None:
# base_freq = 3579545 / 16.0
base_freq = 1789772.5 / 16.0
self.f1 = self.f2 = self.f3 = 0
self.l1 = self.l2 = self.l3 = 0
fi1 = self.psg_regs[0] + ((self.psg_regs[1] & 15) << 8)
if fi1:
self.f1 = base_freq / fi1
fi2 = self.psg_regs[2] + ((self.psg_regs[3] & 15) << 8)
if fi2:
self.f2 = base_freq / fi2
fi3 = self.psg_regs[4] + ((self.psg_regs[5] & 15) << 8)
if fi3:
self.f3 = base_freq / fi3
self.l1 = 1.0 if self.psg_regs[8] & 16 else (self.psg_regs[8] & 15) / 15.0
self.l2 = 1.0 if self.psg_regs[9] & 16 else (self.psg_regs[9] & 15) / 15.0
self.l3 = 1.0 if self.psg_regs[10] & 16 else (self.psg_regs[10] & 15) / 15.0
if self.ri == 8 and self.l1 == 0:
self.phase1 = 0
elif self.ri == 9 and self.l2 == 0:
self.phase2 = 0
elif self.ri == 10 and self.l3 == 0:
self.phase3 = 0
upd_instr = self.prev_reg13 != self.psg_regs[13]
self.prev_reg13 = self.psg_regs[13]
if midi:
self.send_midi_prepare(1, self.f1, self.l1, upd_instr)
self.send_midi_prepare(2, self.f2, self.l2, upd_instr)
self.send_midi_prepare(3, self.f3, self.l3, upd_instr)
def stop(self):
del self.mp
pygame.midi.quite()
os.close(self.pipein)
os.close(self.pipeout)
os.kill(self.pid, signal.SIGKILL)
os.wait()