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
use std::{
convert::TryFrom,
error::Error,
fmt::{self, Display, Formatter},
hash::Hash,
sync::mpsc::{self, Receiver, Sender},
};
use mpsc::SendError;
use tune::{
note::Note,
pitch::{Pitch, Ratio},
tuner::{AccessKeyResult, GroupByNote, JitTuner, PoolingMode, RegisterKeyResult},
};
pub fn create<K: Copy + Eq + Hash>(
synth: fluidlite::Synth,
polyphony: u8,
) -> (Xenth, XenthControl<K>) {
let num_real_channels = synth.count_midi_channels();
for channel in 0..num_real_channels {
synth
.create_key_tuning(127, 127, "fluid-xenth-dynamic-tuning", &[0.0; 128])
.unwrap();
synth.activate_tuning(channel, 127, 127, true).unwrap();
}
let tuners = (0..(num_real_channels / u32::from(polyphony)))
.map(|_| JitTuner::new(GroupByNote, PoolingMode::Stop, usize::from(polyphony)))
.collect();
let (sender, receiver) = mpsc::channel();
let xenth = Xenth { synth, receiver };
let xenth_control = XenthControl {
tuners,
polyphony,
sender,
};
(xenth, xenth_control)
}
pub struct Xenth {
synth: fluidlite::Synth,
receiver: Receiver<Command>,
}
impl Xenth {
pub fn write<S: fluidlite::IsSamples>(&self, audio_buffer: S) -> fluidlite::Status {
self.flush_commands()?;
self.synth.write(audio_buffer)
}
pub fn flush_commands(&self) -> fluidlite::Status {
for command in self.receiver.try_iter() {
command(&self.synth)?;
}
Ok(())
}
}
pub struct XenthControl<K> {
tuners: Vec<JitTuner<K, GroupByNote>>,
polyphony: u8,
sender: Sender<Command>,
}
impl<K: Copy + Eq + Hash> XenthControl<K> {
pub fn note_on(
&mut self,
xen_channel: u8,
key: K,
pitch: Pitch,
velocity: u8,
) -> SendCommandResult {
let offset = usize::from(xen_channel) * usize::from(self.polyphony);
match self.tuners[usize::from(xen_channel)].register_key(key, pitch) {
RegisterKeyResult::Accepted {
channel,
stopped_note,
started_note,
detuning,
} => {
if let Some(stopped_note) = stopped_note.and_then(Note::checked_midi_number) {
self.send_command(move |s| {
s.note_off(
u32::try_from(channel + offset).unwrap(),
u32::from(stopped_note),
)
})?;
}
if let Some(started_note) = started_note.checked_midi_number() {
let detuning_in_fluid_format =
(Ratio::from_semitones(started_note).stretched_by(detuning)).as_cents();
self.send_command(move |s| {
s.tune_notes(
127,
127,
[u32::from(started_note)],
[detuning_in_fluid_format],
true,
)?;
s.note_on(
u32::try_from(channel + offset).unwrap(),
u32::from(started_note),
u32::from(velocity),
)?;
Ok(())
})?;
}
}
RegisterKeyResult::Rejected => {}
}
Ok(())
}
pub fn note_off(&mut self, xen_channel: u8, key: &K) -> SendCommandResult {
let offset = usize::from(xen_channel) * usize::from(self.polyphony);
match self.tuners[usize::from(xen_channel)].deregister_key(key) {
AccessKeyResult::Found {
channel,
found_note,
} => {
if let Some(found_note) = found_note.checked_midi_number() {
self.send_command(move |s| {
let _ = s.note_off(
u32::try_from(channel + offset).unwrap(),
u32::from(found_note),
);
Ok(())
})?;
}
}
AccessKeyResult::NotFound => {}
}
Ok(())
}
pub fn key_pressure(&self, xen_channel: u8, key: &K, pressure: u8) -> SendCommandResult {
let offset = usize::from(xen_channel) * usize::from(self.polyphony);
match self.tuners[usize::from(xen_channel)].access_key(key) {
AccessKeyResult::Found {
channel,
found_note,
} => {
if let Some(found_note) = found_note.checked_midi_number() {
self.send_command(move |s| {
s.key_pressure(
u32::try_from(channel + offset).unwrap(),
u32::from(found_note),
u32::from(pressure),
)
})?;
}
}
AccessKeyResult::NotFound => {}
}
Ok(())
}
pub fn send_command(
&self,
command: impl FnOnce(&fluidlite::Synth) -> fluidlite::Status + Send + 'static,
) -> SendCommandResult {
Ok(self.sender.send(Box::new(command))?)
}
pub fn send_channel_command(
&self,
xen_channel: u8,
mut command: impl FnMut(&fluidlite::Synth, u32) -> fluidlite::Status + Send + 'static,
) -> SendCommandResult {
let real_channels = (xen_channel * self.polyphony)..(xen_channel + 1) * self.polyphony;
self.send_command(move |s| {
for channel in real_channels {
command(s, u32::from(channel))?;
}
Ok(())
})
}
}
pub type SendCommandResult = Result<(), SendCommandError>;
#[derive(Copy, Clone, Debug)]
pub struct SendCommandError;
impl Display for SendCommandError {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
write!(
f,
"The receiving Xenth instance has been torn down. Is the audio thread still alive?"
)
}
}
impl<T> From<SendError<T>> for SendCommandError {
fn from(_: SendError<T>) -> Self {
SendCommandError
}
}
impl Error for SendCommandError {}
type Command = Box<dyn FnOnce(&fluidlite::Synth) -> fluidlite::Status + Send>;