spessasynth_core 3.26.5 → 3.26.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/soundfont/basic_soundfont/generator.js +9 -1
- package/src/synthetizer/audio_engine/engine_components/controller_tables.js +6 -5
- package/src/synthetizer/audio_engine/engine_components/dynamic_modulator_system.js +95 -0
- package/src/synthetizer/audio_engine/engine_components/midi_audio_channel.js +11 -10
- package/src/synthetizer/audio_engine/engine_components/stereo_panner.js +2 -2
- package/src/synthetizer/audio_engine/engine_components/voice.js +6 -2
- package/src/synthetizer/audio_engine/engine_methods/controller_control/reset_controllers.js +2 -1
- package/src/synthetizer/audio_engine/engine_methods/data_entry/data_entry_coarse.js +20 -21
- package/src/synthetizer/audio_engine/engine_methods/note_on.js +28 -8
- package/src/synthetizer/audio_engine/engine_methods/render_voice.js +18 -11
- package/src/synthetizer/audio_engine/engine_methods/stopping_notes/kill_note.js +3 -0
- package/src/synthetizer/audio_engine/engine_methods/stopping_notes/note_off.js +2 -1
- package/src/synthetizer/audio_engine/engine_methods/system_exclusive.js +442 -173
- package/src/synthetizer/audio_engine/engine_methods/tuning_control/channel_pressure.js +1 -0
- package/src/synthetizer/audio_engine/main_processor.js +11 -0
|
@@ -10,6 +10,7 @@ import { computeModulators } from "../../engine_components/compute_modulator.js"
|
|
|
10
10
|
export function channelPressure(pressure)
|
|
11
11
|
{
|
|
12
12
|
this.midiControllers[NON_CC_INDEX_OFFSET + modulatorSources.channelPressure] = pressure << 7;
|
|
13
|
+
this.updateChannelTuning();
|
|
13
14
|
this.voices.forEach(v =>
|
|
14
15
|
computeModulators(
|
|
15
16
|
v,
|
|
@@ -233,6 +233,17 @@ class SpessaSynthProcessor
|
|
|
233
233
|
*/
|
|
234
234
|
chorusGain = 1;
|
|
235
235
|
|
|
236
|
+
/**
|
|
237
|
+
* Set via system exclusive
|
|
238
|
+
* @type {number}
|
|
239
|
+
*/
|
|
240
|
+
reverbSend = 1;
|
|
241
|
+
/**
|
|
242
|
+
* Set via system exclusive
|
|
243
|
+
* @type {number}
|
|
244
|
+
*/
|
|
245
|
+
chorusSend = 1;
|
|
246
|
+
|
|
236
247
|
/**
|
|
237
248
|
* Maximum number of voices allowed at once
|
|
238
249
|
* @type {number}
|