|
|
|
@ -63,17 +63,20 @@ fn run<T>(device: &cpal::Device, config: &cpal::StreamConfig) -> Result<(), anyh |
|
|
|
|
|
|
|
|
|
// Produce a sinusoid of maximum amplitude.
|
|
|
|
|
|
|
|
|
|
let ins1 = Instrument::new(vec![ |
|
|
|
|
let mut alt_synth = Instrument::new(vec![ |
|
|
|
|
HarmonicOscillator::new(1.0, 1.0), |
|
|
|
|
HarmonicOscillator::new(0.5, 5.0), |
|
|
|
|
], sr); |
|
|
|
|
alt_synth.set_balance_imm(0.3); |
|
|
|
|
|
|
|
|
|
let ins2 = Instrument::new(vec![ |
|
|
|
|
let mut bas_synth = Instrument::new(vec![ |
|
|
|
|
HarmonicOscillator::new(1.0, 1.0), |
|
|
|
|
HarmonicOscillator::new(0.5, 5.0), |
|
|
|
|
], sr); |
|
|
|
|
bas_synth.set_intrinsic_gain(0.5); |
|
|
|
|
bas_synth.set_baance_imm(-0.3); |
|
|
|
|
|
|
|
|
|
let mut orch = Orchestra::new(vec![ins1, ins2], sr); |
|
|
|
|
let mut orch = Orchestra::new(vec![alt_synth, bas_synth], sr); |
|
|
|
|
orch.normalize(true); |
|
|
|
|
|
|
|
|
|
let handle = Arc::new(parking_lot::RwLock::new(orch)); |
|
|
|
@ -265,6 +268,50 @@ fn run<T>(device: &cpal::Device, config: &cpal::StreamConfig) -> Result<(), anyh |
|
|
|
|
(4, B4), |
|
|
|
|
(2, G4X), |
|
|
|
|
(4, E4), |
|
|
|
|
(2, A4),// end of 1st line
|
|
|
|
|
|
|
|
|
|
(4, C5), |
|
|
|
|
(2, D5), |
|
|
|
|
(3, E5), (1, F5X), (2, E5), |
|
|
|
|
|
|
|
|
|
(4, D5), |
|
|
|
|
(2, B4), |
|
|
|
|
(3, G4), (1, A4), (2, B4), |
|
|
|
|
|
|
|
|
|
(3, C5), (1, B4), (2, A4), |
|
|
|
|
(3, G4X), (1, F4X), (2, G4X), |
|
|
|
|
|
|
|
|
|
(6, A4), |
|
|
|
|
(6, A4),// end of 2nd line
|
|
|
|
|
|
|
|
|
|
(6, G5), |
|
|
|
|
(3, G5), (1, F5X), (2, E5), |
|
|
|
|
|
|
|
|
|
(4, D5), |
|
|
|
|
(2, B4), |
|
|
|
|
(3, G4), (1, A4), (2, B4), |
|
|
|
|
|
|
|
|
|
(4, C5), |
|
|
|
|
(2, A4), |
|
|
|
|
(3, A4), (1, G4X), (2, A4), |
|
|
|
|
|
|
|
|
|
(4, B4), |
|
|
|
|
(2, G4X), |
|
|
|
|
(6, E4),// end of 3rd line
|
|
|
|
|
|
|
|
|
|
(6, G5), |
|
|
|
|
(3, G5), (1, F5X), (2, E5), |
|
|
|
|
|
|
|
|
|
(4, D5), |
|
|
|
|
(2, B4), |
|
|
|
|
(3, G4), (1, A4), (2, B4), |
|
|
|
|
|
|
|
|
|
(3, C5), (1, B4), (2, A4), |
|
|
|
|
(2, G4X), (2, F4X), (2, G4X), |
|
|
|
|
|
|
|
|
|
(6, A4), |
|
|
|
|
(4, A4),// end of 4th line
|
|
|
|
|
(2, -1), |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
// Bass line, must be kept in sync with alt. Insert -1 notes for padding where needed.
|
|
|
|
@ -275,13 +322,50 @@ fn run<T>(device: &cpal::Device, config: &cpal::StreamConfig) -> Result<(), anyh |
|
|
|
|
(6, C4), |
|
|
|
|
|
|
|
|
|
(6, G3), |
|
|
|
|
(6, G4), |
|
|
|
|
(6, G3), |
|
|
|
|
|
|
|
|
|
(6, A3), |
|
|
|
|
(6, A4), |
|
|
|
|
(6, A3), |
|
|
|
|
|
|
|
|
|
(6, E3), |
|
|
|
|
(6, E4), |
|
|
|
|
(6, E3),// end of 1st line
|
|
|
|
|
|
|
|
|
|
(6, A3), |
|
|
|
|
(6, C4), |
|
|
|
|
|
|
|
|
|
(6, G3), |
|
|
|
|
(6, E3), |
|
|
|
|
|
|
|
|
|
(6, A3), |
|
|
|
|
(6, E3), |
|
|
|
|
|
|
|
|
|
(6, A3), |
|
|
|
|
(6, A3),// end of 2nd line
|
|
|
|
|
|
|
|
|
|
(6, C4), |
|
|
|
|
(6, C4), |
|
|
|
|
|
|
|
|
|
(6, G3), |
|
|
|
|
(6, G3), |
|
|
|
|
|
|
|
|
|
(6, A3), |
|
|
|
|
(6, A3), |
|
|
|
|
|
|
|
|
|
(6, E3), |
|
|
|
|
(6, E3), // end of line 3
|
|
|
|
|
|
|
|
|
|
(6, C4), |
|
|
|
|
(6, C4), |
|
|
|
|
|
|
|
|
|
(6, G3), |
|
|
|
|
(6, E3), |
|
|
|
|
|
|
|
|
|
(6, A3), |
|
|
|
|
(6, E3), |
|
|
|
|
|
|
|
|
|
(6, A3), |
|
|
|
|
(4, A3), // end of line 4
|
|
|
|
|
(2, -1), |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
const D_ONOFF: Duration = Duration::from_millis(10); |
|
|
|
@ -300,22 +384,38 @@ fn run<T>(device: &cpal::Device, config: &cpal::StreamConfig) -> Result<(), anyh |
|
|
|
|
ticks_alt = *len; |
|
|
|
|
if *key >= 0 { |
|
|
|
|
let f = key2freq(*key); |
|
|
|
|
wg.instruments[0].fade_amp(1.0, D_ONOFF); |
|
|
|
|
//wg.instruments[0].fade_amp(1.0, D_ONOFF);
|
|
|
|
|
|
|
|
|
|
wg.instruments[0].set_amp2_imm(0.0); |
|
|
|
|
wg.instruments[0].fade_amp2(1.0, D_ONOFF); |
|
|
|
|
wg.instruments[0].set_amp_imm(1.0); |
|
|
|
|
wg.instruments[0].set_freq_imm(f); |
|
|
|
|
wg.instruments[0].fade_amp(0.0, Duration::from_secs_f32((60.0/bpm) / 16.0) * *len); |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
wg.instruments[0].fade_amp(0.0, D_ONOFF); |
|
|
|
|
wg.instruments[0].fade_amp2(0.0, D_ONOFF); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if ticks_bass == 0 { |
|
|
|
|
if let Some((len, key)) = bass_iter.next() { |
|
|
|
|
ticks_bass = len - 1; |
|
|
|
|
ticks_bass = *len; |
|
|
|
|
if *key >= 0 { |
|
|
|
|
let f = key2freq(*key); |
|
|
|
|
wg.instruments[1].fade_amp(0.5, D_ONOFF); |
|
|
|
|
//wg.instruments[1].fade_amp(1.0, D_ONOFF);
|
|
|
|
|
// wg.instruments[1].set_amp_imm(1.0);
|
|
|
|
|
// wg.instruments[1].fade_amp(0.0, Duration::from_secs_f32((60.0/bpm) / 16.0) * *len);
|
|
|
|
|
// wg.instruments[1].set_freq_imm(f);
|
|
|
|
|
|
|
|
|
|
wg.instruments[1].set_amp2_imm(0.0); |
|
|
|
|
wg.instruments[1].fade_amp2(1.0, D_ONOFF); |
|
|
|
|
wg.instruments[1].set_amp_imm(1.0); |
|
|
|
|
wg.instruments[1].set_freq_imm(f); |
|
|
|
|
wg.instruments[1].fade_amp(0.0, Duration::from_secs_f32((60.0/bpm) / 16.0) * *len); |
|
|
|
|
} else { |
|
|
|
|
wg.instruments[1].fade_amp(0.0, D_ONOFF); |
|
|
|
|
wg.instruments[1].fade_amp2(0.0, D_ONOFF); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|