wip: refactor pt.19: 22 errors

This commit is contained in:
🪞👃🪞 2024-11-11 15:18:56 +01:00
parent 2be2c8aca2
commit 914c2d6c09
12 changed files with 78 additions and 61 deletions

2
Cargo.lock generated
View file

@ -2701,6 +2701,7 @@ dependencies = [
name = "tek_snd" name = "tek_snd"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"livi",
"tek_api", "tek_api",
"tek_core", "tek_core",
] ]
@ -2714,6 +2715,7 @@ dependencies = [
"symphonia", "symphonia",
"tek_api", "tek_api",
"tek_core", "tek_core",
"tek_snd",
"vst", "vst",
"wavers", "wavers",
"winit", "winit",

View file

@ -61,18 +61,18 @@ impl MIDIPlayer {
], ],
}) })
} }
fn is_rolling (&self) -> bool { pub fn is_rolling (&self) -> bool {
*self.clock.playing.read().unwrap() == Some(TransportState::Rolling) *self.clock.playing.read().unwrap() == Some(TransportState::Rolling)
} }
fn has_midi_inputs (&self) -> bool { pub fn has_midi_inputs (&self) -> bool {
self.midi_inputs.len() > 0 self.midi_inputs.len() > 0
} }
fn has_midi_outputs (&self) -> bool { pub fn has_midi_outputs (&self) -> bool {
self.midi_outputs.len() > 0 self.midi_outputs.len() > 0
} }
/// Clear the section of the output buffer that we will be using, /// Clear the section of the output buffer that we will be using,
/// emitting "all notes off" at start of buffer if requested. /// emitting "all notes off" at start of buffer if requested.
fn clear (&mut self, scope: &ProcessScope, force_reset: bool) { pub fn clear (&mut self, scope: &ProcessScope, force_reset: bool) {
for frame in &mut self.midi_chunk[0..scope.n_frames() as usize] { for frame in &mut self.midi_chunk[0..scope.n_frames() as usize] {
frame.clear(); frame.clear();
} }
@ -80,7 +80,7 @@ impl MIDIPlayer {
all_notes_off(&mut self.midi_chunk); self.reset = false; all_notes_off(&mut self.midi_chunk); self.reset = false;
} }
} }
fn play (&mut self, scope: &ProcessScope) -> bool { pub fn play (&mut self, scope: &ProcessScope) -> bool {
let mut next = false; let mut next = false;
// Write MIDI events from currently playing phrase (if any) to MIDI output buffer // Write MIDI events from currently playing phrase (if any) to MIDI output buffer
if self.is_rolling() { if self.is_rolling() {
@ -138,7 +138,7 @@ impl MIDIPlayer {
} }
next next
} }
fn switchover (&mut self, scope: &ProcessScope) { pub fn switchover (&mut self, scope: &ProcessScope) {
if self.is_rolling() { if self.is_rolling() {
let sample0 = scope.last_frame_time() as usize; let sample0 = scope.last_frame_time() as usize;
//let samples = scope.n_frames() as usize; //let samples = scope.n_frames() as usize;
@ -163,7 +163,7 @@ impl MIDIPlayer {
} }
} }
} }
fn record (&mut self, scope: &ProcessScope) { pub fn record (&mut self, scope: &ProcessScope) {
let sample0 = scope.last_frame_time() as usize; let sample0 = scope.last_frame_time() as usize;
if let (true, Some((started, phrase))) = (self.is_rolling(), &self.phrase) { if let (true, Some((started, phrase))) = (self.is_rolling(), &self.phrase) {
let start = started.sample.get() as usize; let start = started.sample.get() as usize;
@ -199,7 +199,7 @@ impl MIDIPlayer {
// TODO switch to next phrase and record into it // TODO switch to next phrase and record into it
} }
} }
fn monitor (&mut self, scope: &ProcessScope) { pub fn monitor (&mut self, scope: &ProcessScope) {
let mut notes_in = self.notes_in.write().unwrap(); let mut notes_in = self.notes_in.write().unwrap();
for input in self.midi_inputs.iter() { for input in self.midi_inputs.iter() {
for (sample, event, bytes) in parse_midi_input(input.iter(scope)) { for (sample, event, bytes) in parse_midi_input(input.iter(scope)) {
@ -210,7 +210,7 @@ impl MIDIPlayer {
} }
} }
} }
fn write (&mut self, scope: &ProcessScope) { pub fn write (&mut self, scope: &ProcessScope) {
let samples = scope.n_frames() as usize; let samples = scope.n_frames() as usize;
for port in self.midi_outputs.iter_mut() { for port in self.midi_outputs.iter_mut() {
let writer = &mut port.writer(scope); let writer = &mut port.writer(scope);

View file

@ -6,3 +6,4 @@ version = "0.1.0"
[dependencies] [dependencies]
tek_core = { path = "../tek_core" } tek_core = { path = "../tek_core" }
tek_api = { path = "../tek_api" } tek_api = { path = "../tek_api" }
livi = "0.7.4"

View file

@ -5,5 +5,8 @@ pub(crate) use tek_core::midly::{*, live::LiveEvent, num::u7};
submod! { submod! {
snd_arrange snd_arrange
snd_mixer snd_mixer
snd_plugin
snd_sampler snd_sampler
snd_sequencer
snd_transport
} }

View file

@ -13,7 +13,7 @@ impl From<&Arc<RwLock<Arrangement>>> for ArrangementAudio {
impl Audio for ArrangementAudio { impl Audio for ArrangementAudio {
#[inline] fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control { #[inline] fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control {
for track in self.model.write().unwrap().tracks.iter_mut() { for track in self.model.write().unwrap().tracks.iter_mut() {
if track.player.process(client, scope) == Control::Quit { if MIDIPlayerAudio::from(&mut track.player).process(client, scope) == Control::Quit {
return Control::Quit return Control::Quit
} }
} }

View file

@ -1,18 +1,17 @@
use crate::*; use crate::*;
pub struct PluginAudio { pub struct PluginAudio(Arc<RwLock<Plugin>>);
model: Arc<RwLock<Plugin>>
}
impl From<&Arc<RwLock<Plugin>>> for PluginAudio { impl From<&Arc<RwLock<Plugin>>> for PluginAudio {
fn from (model: &Arc<RwLock<Plugin>>) -> Self { fn from (model: &Arc<RwLock<Plugin>>) -> Self {
Self { model: model.clone() } Self(model.clone())
} }
} }
impl Audio for PluginAudio { impl Audio for PluginAudio {
fn process (&mut self, _: &Client, scope: &ProcessScope) -> Control { fn process (&mut self, _: &Client, scope: &ProcessScope) -> Control {
match self.plugin.as_mut() { let state = &mut*self.0.write().unwrap();
match state.plugin.as_mut() {
Some(PluginKind::LV2(LV2Plugin { Some(PluginKind::LV2(LV2Plugin {
features, features,
ref mut instance, ref mut instance,
@ -21,7 +20,7 @@ impl Audio for PluginAudio {
})) => { })) => {
let urid = features.midi_urid(); let urid = features.midi_urid();
input_buffer.clear(); input_buffer.clear();
for port in self.midi_ins.iter() { for port in state.midi_ins.iter() {
let mut atom = ::livi::event::LV2AtomSequence::new( let mut atom = ::livi::event::LV2AtomSequence::new(
&features, &features,
scope.n_frames() as usize scope.n_frames() as usize
@ -39,7 +38,7 @@ impl Audio for PluginAudio {
input_buffer.push(atom); input_buffer.push(atom);
} }
let mut outputs = vec![]; let mut outputs = vec![];
for _ in self.midi_outs.iter() { for _ in state.midi_outs.iter() {
outputs.push(::livi::event::LV2AtomSequence::new( outputs.push(::livi::event::LV2AtomSequence::new(
&features, &features,
scope.n_frames() as usize scope.n_frames() as usize
@ -48,8 +47,8 @@ impl Audio for PluginAudio {
let ports = ::livi::EmptyPortConnections::new() let ports = ::livi::EmptyPortConnections::new()
.with_atom_sequence_inputs(input_buffer.iter()) .with_atom_sequence_inputs(input_buffer.iter())
.with_atom_sequence_outputs(outputs.iter_mut()) .with_atom_sequence_outputs(outputs.iter_mut())
.with_audio_inputs(self.audio_ins.iter().map(|o|o.as_slice(scope))) .with_audio_inputs(state.audio_ins.iter().map(|o|o.as_slice(scope)))
.with_audio_outputs(self.audio_outs.iter_mut().map(|o|o.as_mut_slice(scope))); .with_audio_outputs(state.audio_outs.iter_mut().map(|o|o.as_mut_slice(scope)));
unsafe { unsafe {
instance.run(scope.n_frames() as usize, ports).unwrap() instance.run(scope.n_frames() as usize, ports).unwrap()
}; };

View file

@ -1,51 +1,50 @@
use crate::*; use crate::*;
pub struct SequencerAudio { pub struct SequencerAppAudio<'a>(&'a mut Transport, &'a mut MIDIPlayer);
transport: Arc<RwLock<Transport>>,
player: Arc<RwLock<MIDIPlayer>>,
}
/// JACK process callback for sequencer app /// JACK process callback for sequencer app
impl Audio for SequencerAudio { impl<'a> Audio for SequencerAppAudio<'a> {
fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control { fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control {
self.transport.write().unwrap().process(client, scope); if TransportAudio::from(&mut*self.0).process(client, scope) == Control::Quit {
self.player.write().unwrap().process(client, scope); return Control::Quit
}
if MIDIPlayerAudio::from(&mut*self.1).process(client, scope) == Control::Quit {
return Control::Quit
}
Control::Continue Control::Continue
} }
} }
pub struct MIDIPlayerAudio { pub struct MIDIPlayerAudio<'a>(&'a mut MIDIPlayer);
model: Arc<RwLock<MIDIPlayer>>
}
impl From<&Arc<RwLock<MIDIPlayer>>> for MIDIPlayerAudio { impl<'a> From<&'a mut MIDIPlayer> for MIDIPlayerAudio<'a> {
fn from (model: &Arc<RwLock<MIDIPlayer>>) -> Self { fn from (model: &'a mut MIDIPlayer) -> Self {
Self { model: model.clone() } Self(model)
} }
} }
/// JACK process callback for a sequencer's phrase player/recorder. /// JACK process callback for a sequencer's phrase player/recorder.
impl Audio for MIDIPlayer { impl<'a> Audio for MIDIPlayerAudio<'a> {
fn process (&mut self, _: &Client, scope: &ProcessScope) -> Control { fn process (&mut self, _: &Client, scope: &ProcessScope) -> Control {
let has_midi_outputs = self.has_midi_outputs(); let has_midi_outputs = self.0.has_midi_outputs();
let has_midi_inputs = self.has_midi_inputs(); let has_midi_inputs = self.0.has_midi_inputs();
// Clear output buffer(s) // Clear output buffer(s)
self.clear(scope, false); self.0.clear(scope, false);
// Write chunk of phrase to output, handle switchover // Write chunk of phrase to output, handle switchover
if self.play(scope) { if self.0.play(scope) {
self.switchover(scope); self.0.switchover(scope);
} }
if has_midi_inputs { if has_midi_inputs {
if self.recording || self.monitoring { if self.0.recording || self.0.monitoring {
// Record and/or monitor input // Record and/or monitor input
self.record(scope) self.0.record(scope)
} else if has_midi_outputs && self.monitoring { } else if has_midi_outputs && self.0.monitoring {
// Monitor input to output // Monitor input to output
self.monitor(scope) self.0.monitor(scope)
} }
} }
// Write to output port(s) // Write to output port(s)
self.write(scope); self.0.write(scope);
Control::Continue Control::Continue
} }
} }

View file

@ -1,24 +1,23 @@
use crate::*; use crate::*;
pub struct TransportAudio { pub struct TransportAudio<'a>(&'a mut Transport);
model: Transport
}
impl From<&Arc<RwLock<Transport>>> for TransportAudio { impl<'a> From<&'a mut Transport> for TransportAudio<'a> {
fn from (model: &Arc<RwLock<Transport>>) -> Self { fn from (model: &'a mut Transport) -> Self {
Self { model: model.clone() } Self(model)
} }
} }
impl Audio for Transport { impl<'a> Audio for TransportAudio<'a> {
fn process (&mut self, _: &Client, scope: &ProcessScope) -> Control { fn process (&mut self, _: &Client, scope: &ProcessScope) -> Control {
let times = scope.cycle_times().unwrap(); let state = &mut self.0;
let times = scope.cycle_times().unwrap();
let CycleTimes { current_frames, current_usecs, next_usecs: _, period_usecs: _ } = times; let CycleTimes { current_frames, current_usecs, next_usecs: _, period_usecs: _ } = times;
let _chunk_size = scope.n_frames() as usize; let _chunk_size = scope.n_frames() as usize;
let transport = self.transport.query().unwrap(); let transport = state.transport.query().unwrap();
self.clock.current.sample.set(transport.pos.frame() as f64); state.clock.current.sample.set(transport.pos.frame() as f64);
let mut playing = self.clock.playing.write().unwrap(); let mut playing = state.clock.playing.write().unwrap();
let mut started = self.clock.started.write().unwrap(); let mut started = state.clock.started.write().unwrap();
if *playing != Some(transport.state) { if *playing != Some(transport.state) {
match transport.state { match transport.state {
TransportState::Rolling => { TransportState::Rolling => {
@ -34,7 +33,7 @@ impl Audio for Transport {
if *playing == Some(TransportState::Stopped) { if *playing == Some(TransportState::Stopped) {
*started = None; *started = None;
} }
self.clock.current.update_from_usec(match *started { state.clock.current.update_from_usec(match *started {
Some((_, usecs)) => current_usecs as f64 - usecs as f64, Some((_, usecs)) => current_usecs as f64 - usecs as f64,
None => 0. None => 0.
}); });

View file

@ -6,6 +6,7 @@ version = "0.1.0"
[dependencies] [dependencies]
tek_core = { path = "../tek_core" } tek_core = { path = "../tek_core" }
tek_api = { path = "../tek_api" } tek_api = { path = "../tek_api" }
tek_snd = { path = "../tek_snd" }
livi = "0.7.4" livi = "0.7.4"
suil-rs = { path = "../suil" } suil-rs = { path = "../suil" }

View file

@ -55,15 +55,19 @@ where
{ {
type Engine = Tui; type Engine = Tui;
fn content (&self) -> impl Widget<Engine = Tui> { fn content (&self) -> impl Widget<Engine = Tui> {
let menus = self.menu_bar.as_ref().map_or_else(
||&[] as &[Menu<_, _, _>],
|m|m.menus.as_slice()
);
Split::down( Split::down(
if self.menu_bar.is_some() { 1 } else { 0 }, if self.menu_bar.is_some() { 1 } else { 0 },
row!(menu in self.menu_bar.menus.iter() => { row!(menu in menus.iter() => {
row!(" ", menu.title.as_str(), " ") row!(" ", menu.title.as_str(), " ")
}), }),
Split::up( Split::up(
if self.status_bar.is_some() { 1 } else { 0 }, if self.status_bar.is_some() { 1 } else { 0 },
widget(&self.status_bar), widget(&self.status_bar),
self.ui widget(&self.ui)
) )
) )
} }

View file

@ -336,10 +336,18 @@ pub(crate) fn keys_vert () -> Buffer {
cell.set_fg(Color::White); cell.set_fg(Color::White);
cell.set_bg(Color::White); cell.set_bg(Color::White);
}, },
2 => if y % 6 == 0 { cell.set_char('C'); }, 2 => if y % 6 == 0 {
3 => if y % 6 == 0 { cell.set_symbol(NTH_OCTAVE[(y / 6) as usize]); }, cell.set_char('C');
},
3 => if y % 6 == 0 {
cell.set_symbol(NTH_OCTAVE[(y / 6) as usize]);
},
_ => {} _ => {}
} }
}); });
buffer buffer
} }
const NTH_OCTAVE: [&'static str; 11] = [
"-2", "-1", "0", "1", "2", "3", "4", "5", "6", "7", "8",
];

View file

@ -1,7 +1,8 @@
use crate::*; use crate::*;
use std::cmp::PartialEq; use std::cmp::PartialEq;
/// Root level object for standalone `tek_sequencer` /// Root level object for standalone `tek_sequencer`.
/// Also embeddable, in which case the `player` is used for preview.
pub struct SequencerView<E: Engine> { pub struct SequencerView<E: Engine> {
/// Controls the JACK transport. /// Controls the JACK transport.
pub transport: TransportView<E>, pub transport: TransportView<E>,