Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1710 lines
62KB

  1. /*
  2. * Carla FluidSynth Plugin
  3. * Copyright (C) 2011-2014 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #include "CarlaPluginInternal.hpp"
  18. #include "CarlaEngine.hpp"
  19. #ifdef HAVE_FLUIDSYNTH
  20. #include "CarlaMathUtils.hpp"
  21. #include "juce_core.h"
  22. #include <fluidsynth.h>
  23. #if (FLUIDSYNTH_VERSION_MAJOR >= 1 && FLUIDSYNTH_VERSION_MINOR >= 1 && FLUIDSYNTH_VERSION_MICRO >= 4)
  24. # define FLUIDSYNTH_VERSION_NEW_API
  25. #endif
  26. #define FLUID_DEFAULT_POLYPHONY 64
  27. using juce::String;
  28. using juce::StringArray;
  29. CARLA_BACKEND_START_NAMESPACE
  30. // -----------------------------------------------------
  31. class FluidSynthPlugin : public CarlaPlugin
  32. {
  33. public:
  34. FluidSynthPlugin(CarlaEngine* const engine, const uint id, const bool use16Outs)
  35. : CarlaPlugin(engine, id),
  36. kUse16Outs(use16Outs),
  37. fSettings(nullptr),
  38. fSynth(nullptr),
  39. fSynthId(0),
  40. fAudio16Buffers(nullptr),
  41. fLabel(nullptr)
  42. {
  43. carla_debug("FluidSynthPlugin::FluidSynthPlugin(%p, %i, %s)", engine, id, bool2str(use16Outs));
  44. FloatVectorOperations::clear(fParamBuffers, FluidSynthParametersMax);
  45. carla_fill<int32_t>(fCurMidiProgs, 0, MAX_MIDI_CHANNELS);
  46. // create settings
  47. fSettings = new_fluid_settings();
  48. CARLA_SAFE_ASSERT_RETURN(fSettings != nullptr,);
  49. // define settings
  50. fluid_settings_setint(fSettings, "synth.audio-channels", use16Outs ? 16 : 1);
  51. fluid_settings_setint(fSettings, "synth.audio-groups", use16Outs ? 16 : 1);
  52. fluid_settings_setnum(fSettings, "synth.sample-rate", pData->engine->getSampleRate());
  53. //fluid_settings_setnum(fSettings, "synth.cpu-cores", 2);
  54. fluid_settings_setint(fSettings, "synth.parallel-render", 1);
  55. fluid_settings_setint(fSettings, "synth.threadsafe-api", 0);
  56. // create synth
  57. fSynth = new_fluid_synth(fSettings);
  58. CARLA_SAFE_ASSERT_RETURN(fSynth != nullptr,);
  59. #ifdef FLUIDSYNTH_VERSION_NEW_API
  60. fluid_synth_set_sample_rate(fSynth, (float)pData->engine->getSampleRate());
  61. #endif
  62. // set default values
  63. fluid_synth_set_reverb_on(fSynth, 1);
  64. fluid_synth_set_reverb(fSynth, FLUID_REVERB_DEFAULT_ROOMSIZE, FLUID_REVERB_DEFAULT_DAMP, FLUID_REVERB_DEFAULT_WIDTH, FLUID_REVERB_DEFAULT_LEVEL);
  65. fluid_synth_set_chorus_on(fSynth, 1);
  66. fluid_synth_set_chorus(fSynth, FLUID_CHORUS_DEFAULT_N, FLUID_CHORUS_DEFAULT_LEVEL, FLUID_CHORUS_DEFAULT_SPEED, FLUID_CHORUS_DEFAULT_DEPTH, FLUID_CHORUS_DEFAULT_TYPE);
  67. fluid_synth_set_polyphony(fSynth, FLUID_DEFAULT_POLYPHONY);
  68. fluid_synth_set_gain(fSynth, 1.0f);
  69. for (int i=0; i < MAX_MIDI_CHANNELS; ++i)
  70. fluid_synth_set_interp_method(fSynth, i, FLUID_INTERP_DEFAULT);
  71. }
  72. ~FluidSynthPlugin() override
  73. {
  74. carla_debug("FluidSynthPlugin::~FluidSynthPlugin()");
  75. pData->singleMutex.lock();
  76. pData->masterMutex.lock();
  77. if (pData->client != nullptr && pData->client->isActive())
  78. pData->client->deactivate();
  79. if (pData->active)
  80. {
  81. deactivate();
  82. pData->active = false;
  83. }
  84. if (fSynth != nullptr)
  85. {
  86. delete_fluid_synth(fSynth);
  87. fSynth = nullptr;
  88. }
  89. if (fSettings != nullptr)
  90. {
  91. delete_fluid_settings(fSettings);
  92. fSettings = nullptr;
  93. }
  94. if (fLabel != nullptr)
  95. {
  96. delete[] fLabel;
  97. fLabel = nullptr;
  98. }
  99. clearBuffers();
  100. }
  101. // -------------------------------------------------------------------
  102. // Information (base)
  103. PluginType getType() const noexcept override
  104. {
  105. return PLUGIN_SF2;
  106. }
  107. PluginCategory getCategory() const noexcept override
  108. {
  109. return PLUGIN_CATEGORY_SYNTH;
  110. }
  111. // -------------------------------------------------------------------
  112. // Information (count)
  113. uint32_t getParameterScalePointCount(const uint32_t parameterId) const noexcept override
  114. {
  115. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0);
  116. switch (parameterId)
  117. {
  118. case FluidSynthChorusType:
  119. return 2;
  120. case FluidSynthInterpolation:
  121. return 4;
  122. default:
  123. return 0;
  124. }
  125. }
  126. // -------------------------------------------------------------------
  127. // Information (current data)
  128. // nothing
  129. // -------------------------------------------------------------------
  130. // Information (per-plugin data)
  131. uint getOptionsAvailable() const noexcept override
  132. {
  133. uint options = 0x0;
  134. options |= PLUGIN_OPTION_MAP_PROGRAM_CHANGES;
  135. options |= PLUGIN_OPTION_SEND_CONTROL_CHANGES;
  136. options |= PLUGIN_OPTION_SEND_CHANNEL_PRESSURE;
  137. options |= PLUGIN_OPTION_SEND_PITCHBEND;
  138. options |= PLUGIN_OPTION_SEND_ALL_SOUND_OFF;
  139. return options;
  140. }
  141. float getParameterValue(const uint32_t parameterId) const noexcept override
  142. {
  143. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0.0f);
  144. return fParamBuffers[parameterId];
  145. }
  146. float getParameterScalePointValue(const uint32_t parameterId, const uint32_t scalePointId) const noexcept override
  147. {
  148. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0.0f);
  149. CARLA_SAFE_ASSERT_RETURN(scalePointId < getParameterScalePointCount(parameterId), 0.0f);
  150. switch (parameterId)
  151. {
  152. case FluidSynthChorusType:
  153. switch (scalePointId)
  154. {
  155. case 0:
  156. return FLUID_CHORUS_MOD_SINE;
  157. case 1:
  158. return FLUID_CHORUS_MOD_TRIANGLE;
  159. default:
  160. return FLUID_CHORUS_DEFAULT_TYPE;
  161. }
  162. case FluidSynthInterpolation:
  163. switch (scalePointId)
  164. {
  165. case 0:
  166. return FLUID_INTERP_NONE;
  167. case 1:
  168. return FLUID_INTERP_LINEAR;
  169. case 2:
  170. return FLUID_INTERP_4THORDER;
  171. case 3:
  172. return FLUID_INTERP_7THORDER;
  173. default:
  174. return FLUID_INTERP_DEFAULT;
  175. }
  176. default:
  177. return 0.0f;
  178. }
  179. }
  180. void getLabel(char* const strBuf) const noexcept override
  181. {
  182. if (fLabel != nullptr)
  183. {
  184. std::strncpy(strBuf, fLabel, STR_MAX);
  185. return;
  186. }
  187. CarlaPlugin::getLabel(strBuf);
  188. }
  189. void getMaker(char* const strBuf) const noexcept override
  190. {
  191. std::strncpy(strBuf, "FluidSynth SF2 engine", STR_MAX);
  192. }
  193. void getCopyright(char* const strBuf) const noexcept override
  194. {
  195. std::strncpy(strBuf, "GNU GPL v2+", STR_MAX);
  196. }
  197. void getRealName(char* const strBuf) const noexcept override
  198. {
  199. getLabel(strBuf);
  200. }
  201. void getParameterName(const uint32_t parameterId, char* const strBuf) const noexcept override
  202. {
  203. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  204. switch (parameterId)
  205. {
  206. case FluidSynthReverbOnOff:
  207. std::strncpy(strBuf, "Reverb On/Off", STR_MAX);
  208. return;
  209. case FluidSynthReverbRoomSize:
  210. std::strncpy(strBuf, "Reverb Room Size", STR_MAX);
  211. return;
  212. case FluidSynthReverbDamp:
  213. std::strncpy(strBuf, "Reverb Damp", STR_MAX);
  214. return;
  215. case FluidSynthReverbLevel:
  216. std::strncpy(strBuf, "Reverb Level", STR_MAX);
  217. return;
  218. case FluidSynthReverbWidth:
  219. std::strncpy(strBuf, "Reverb Width", STR_MAX);
  220. return;
  221. case FluidSynthChorusOnOff:
  222. std::strncpy(strBuf, "Chorus On/Off", STR_MAX);
  223. return;
  224. case FluidSynthChorusNr:
  225. std::strncpy(strBuf, "Chorus Voice Count", STR_MAX);
  226. return;
  227. case FluidSynthChorusLevel:
  228. std::strncpy(strBuf, "Chorus Level", STR_MAX);
  229. return;
  230. case FluidSynthChorusSpeedHz:
  231. std::strncpy(strBuf, "Chorus Speed", STR_MAX);
  232. return;
  233. case FluidSynthChorusDepthMs:
  234. std::strncpy(strBuf, "Chorus Depth", STR_MAX);
  235. return;
  236. case FluidSynthChorusType:
  237. std::strncpy(strBuf, "Chorus Type", STR_MAX);
  238. return;
  239. case FluidSynthPolyphony:
  240. std::strncpy(strBuf, "Polyphony", STR_MAX);
  241. return;
  242. case FluidSynthInterpolation:
  243. std::strncpy(strBuf, "Interpolation", STR_MAX);
  244. return;
  245. case FluidSynthVoiceCount:
  246. std::strncpy(strBuf, "Voice Count", STR_MAX);
  247. return;
  248. }
  249. CarlaPlugin::getParameterName(parameterId, strBuf);
  250. }
  251. void getParameterUnit(const uint32_t parameterId, char* const strBuf) const noexcept override
  252. {
  253. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  254. switch (parameterId)
  255. {
  256. case FluidSynthChorusSpeedHz:
  257. std::strncpy(strBuf, "Hz", STR_MAX);
  258. return;
  259. case FluidSynthChorusDepthMs:
  260. std::strncpy(strBuf, "ms", STR_MAX);
  261. return;
  262. }
  263. CarlaPlugin::getParameterUnit(parameterId, strBuf);
  264. }
  265. void getParameterScalePointLabel(const uint32_t parameterId, const uint32_t scalePointId, char* const strBuf) const noexcept override
  266. {
  267. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  268. CARLA_SAFE_ASSERT_RETURN(scalePointId < getParameterScalePointCount(parameterId),);
  269. switch (parameterId)
  270. {
  271. case FluidSynthChorusType:
  272. switch (scalePointId)
  273. {
  274. case 0:
  275. std::strncpy(strBuf, "Sine wave", STR_MAX);
  276. return;
  277. case 1:
  278. std::strncpy(strBuf, "Triangle wave", STR_MAX);
  279. return;
  280. }
  281. case FluidSynthInterpolation:
  282. switch (scalePointId)
  283. {
  284. case 0:
  285. std::strncpy(strBuf, "None", STR_MAX);
  286. return;
  287. case 1:
  288. std::strncpy(strBuf, "Straight-line", STR_MAX);
  289. return;
  290. case 2:
  291. std::strncpy(strBuf, "Fourth-order", STR_MAX);
  292. return;
  293. case 3:
  294. std::strncpy(strBuf, "Seventh-order", STR_MAX);
  295. return;
  296. }
  297. }
  298. CarlaPlugin::getParameterScalePointLabel(parameterId, scalePointId, strBuf);
  299. }
  300. // -------------------------------------------------------------------
  301. // Set data (state)
  302. void prepareForSave() override
  303. {
  304. char strBuf[STR_MAX+1];
  305. std::snprintf(strBuf, STR_MAX, "%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i", fCurMidiProgs[0], fCurMidiProgs[1], fCurMidiProgs[2], fCurMidiProgs[3],
  306. fCurMidiProgs[4], fCurMidiProgs[5], fCurMidiProgs[6], fCurMidiProgs[7],
  307. fCurMidiProgs[8], fCurMidiProgs[9], fCurMidiProgs[10], fCurMidiProgs[11],
  308. fCurMidiProgs[12], fCurMidiProgs[13], fCurMidiProgs[14], fCurMidiProgs[15]);
  309. CarlaPlugin::setCustomData(CUSTOM_DATA_TYPE_STRING, "midiPrograms", strBuf, false);
  310. }
  311. // -------------------------------------------------------------------
  312. // Set data (internal stuff)
  313. #ifndef BUILD_BRIDGE
  314. void setCtrlChannel(const int8_t channel, const bool sendOsc, const bool sendCallback) noexcept override
  315. {
  316. if (channel >= 0 && channel < MAX_MIDI_CHANNELS)
  317. pData->midiprog.current = fCurMidiProgs[channel];
  318. CarlaPlugin::setCtrlChannel(channel, sendOsc, sendCallback);
  319. }
  320. #endif
  321. // -------------------------------------------------------------------
  322. // Set data (plugin-specific stuff)
  323. void setParameterValue(const uint32_t parameterId, const float value, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept override
  324. {
  325. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  326. const float fixedValue(pData->param.getFixedValue(parameterId, value));
  327. fParamBuffers[parameterId] = fixedValue;
  328. {
  329. const ScopedSingleProcessLocker spl(this, (sendGui || sendOsc || sendCallback));
  330. switch (parameterId)
  331. {
  332. case FluidSynthReverbOnOff:
  333. try {
  334. fluid_synth_set_reverb_on(fSynth, (fixedValue > 0.5f) ? 1 : 0);
  335. } catch(...) {}
  336. break;
  337. case FluidSynthReverbRoomSize:
  338. case FluidSynthReverbDamp:
  339. case FluidSynthReverbLevel:
  340. case FluidSynthReverbWidth:
  341. try {
  342. fluid_synth_set_reverb(fSynth, fParamBuffers[FluidSynthReverbRoomSize], fParamBuffers[FluidSynthReverbDamp], fParamBuffers[FluidSynthReverbWidth], fParamBuffers[FluidSynthReverbLevel]);
  343. } catch(...) {}
  344. break;
  345. case FluidSynthChorusOnOff:
  346. try {
  347. fluid_synth_set_chorus_on(fSynth, (value > 0.5f) ? 1 : 0);
  348. } catch(...) {}
  349. break;
  350. case FluidSynthChorusNr:
  351. case FluidSynthChorusLevel:
  352. case FluidSynthChorusSpeedHz:
  353. case FluidSynthChorusDepthMs:
  354. case FluidSynthChorusType:
  355. try {
  356. fluid_synth_set_chorus(fSynth, (int)fParamBuffers[FluidSynthChorusNr], fParamBuffers[FluidSynthChorusLevel], fParamBuffers[FluidSynthChorusSpeedHz], fParamBuffers[FluidSynthChorusDepthMs], (int)fParamBuffers[FluidSynthChorusType]);
  357. } catch(...) {}
  358. break;
  359. case FluidSynthPolyphony:
  360. try {
  361. fluid_synth_set_polyphony(fSynth, (int)value);
  362. } catch(...) {}
  363. break;
  364. case FluidSynthInterpolation:
  365. for (int i=0; i < MAX_MIDI_CHANNELS; ++i)
  366. {
  367. try {
  368. fluid_synth_set_interp_method(fSynth, i, (int)value);
  369. }
  370. catch(...) {
  371. break;
  372. }
  373. }
  374. break;
  375. default:
  376. break;
  377. }
  378. }
  379. CarlaPlugin::setParameterValue(parameterId, value, sendGui, sendOsc, sendCallback);
  380. }
  381. void setCustomData(const char* const type, const char* const key, const char* const value, const bool sendGui) override
  382. {
  383. CARLA_SAFE_ASSERT_RETURN(fSynth != nullptr,);
  384. CARLA_SAFE_ASSERT_RETURN(type != nullptr && type[0] != '\0',);
  385. CARLA_SAFE_ASSERT_RETURN(key != nullptr && key[0] != '\0',);
  386. CARLA_SAFE_ASSERT_RETURN(value != nullptr && value[0] != '\0',);
  387. carla_debug("FluidSynthPlugin::setCustomData(%s, \"%s\", \"%s\", %s)", type, key, value, bool2str(sendGui));
  388. if (std::strcmp(type, CUSTOM_DATA_TYPE_STRING) != 0)
  389. return carla_stderr2("FluidSynthPlugin::setCustomData(\"%s\", \"%s\", \"%s\", %s) - type is not string", type, key, value, bool2str(sendGui));
  390. if (std::strcmp(key, "midiPrograms") != 0)
  391. return carla_stderr2("FluidSynthPlugin::setCustomData(\"%s\", \"%s\", \"%s\", %s) - type is not string", type, key, value, bool2str(sendGui));
  392. StringArray midiProgramList(StringArray::fromTokens(value, ":", ""));
  393. if (midiProgramList.size() == MAX_MIDI_CHANNELS)
  394. {
  395. uint8_t channel = 0;
  396. for (String *it=midiProgramList.begin(), *end=midiProgramList.end(); it != end; ++it)
  397. {
  398. const int index(it->getIntValue());
  399. if (index >= 0 && index < static_cast<int>(pData->midiprog.count))
  400. {
  401. const uint32_t bank = pData->midiprog.data[index].bank;
  402. const uint32_t program = pData->midiprog.data[index].program;
  403. fluid_synth_program_select(fSynth, channel, fSynthId, bank, program);
  404. fCurMidiProgs[channel] = index;
  405. if (pData->ctrlChannel == static_cast<int32_t>(channel))
  406. {
  407. pData->midiprog.current = index;
  408. pData->engine->callback(ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED, pData->id, index, 0, 0.0f, nullptr);
  409. }
  410. }
  411. ++channel;
  412. }
  413. CARLA_SAFE_ASSERT(channel == MAX_MIDI_CHANNELS);
  414. }
  415. CarlaPlugin::setCustomData(type, key, value, sendGui);
  416. }
  417. void setMidiProgram(const int32_t index, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept override
  418. {
  419. CARLA_SAFE_ASSERT_RETURN(fSynth != nullptr,);
  420. CARLA_SAFE_ASSERT_RETURN(index >= -1 && index < static_cast<int32_t>(pData->midiprog.count),);
  421. if (index >= 0 && pData->ctrlChannel >= 0 && pData->ctrlChannel < MAX_MIDI_CHANNELS)
  422. {
  423. const uint32_t bank = pData->midiprog.data[index].bank;
  424. const uint32_t program = pData->midiprog.data[index].program;
  425. //const ScopedSingleProcessLocker spl(this, (sendGui || sendOsc || sendCallback));
  426. try {
  427. fluid_synth_program_select(fSynth, pData->ctrlChannel, fSynthId, bank, program);
  428. } catch(...) {}
  429. fCurMidiProgs[pData->ctrlChannel] = index;
  430. }
  431. CarlaPlugin::setMidiProgram(index, sendGui, sendOsc, sendCallback);
  432. }
  433. // -------------------------------------------------------------------
  434. // Set ui stuff
  435. // nothing
  436. // -------------------------------------------------------------------
  437. // Plugin state
  438. void reload() override
  439. {
  440. CARLA_SAFE_ASSERT_RETURN(pData->engine != nullptr,);
  441. CARLA_SAFE_ASSERT_RETURN(fSynth != nullptr,);
  442. carla_debug("FluidSynthPlugin::reload() - start");
  443. const EngineProcessMode processMode(pData->engine->getProccessMode());
  444. // Safely disable plugin for reload
  445. const ScopedDisabler sd(this);
  446. if (pData->active)
  447. deactivate();
  448. clearBuffers();
  449. uint32_t aOuts, params;
  450. aOuts = kUse16Outs ? 32 : 2;
  451. params = FluidSynthParametersMax;
  452. pData->audioOut.createNew(aOuts);
  453. pData->param.createNew(params, false);
  454. const uint portNameSize(pData->engine->getMaxPortNameSize());
  455. CarlaString portName;
  456. // ---------------------------------------
  457. // Audio Outputs
  458. if (kUse16Outs)
  459. {
  460. for (uint32_t i=0; i < 32; ++i)
  461. {
  462. portName.clear();
  463. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  464. {
  465. portName = pData->name;
  466. portName += ":";
  467. }
  468. portName += "out-";
  469. if ((i+2)/2 < 9)
  470. portName += "0";
  471. portName += CarlaString((i+2)/2);
  472. if (i % 2 == 0)
  473. portName += "L";
  474. else
  475. portName += "R";
  476. portName.truncate(portNameSize);
  477. pData->audioOut.ports[i].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, false);
  478. pData->audioOut.ports[i].rindex = i;
  479. }
  480. fAudio16Buffers = new float*[aOuts];
  481. for (uint32_t i=0; i < aOuts; ++i)
  482. fAudio16Buffers[i] = nullptr;
  483. }
  484. else
  485. {
  486. // out-left
  487. portName.clear();
  488. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  489. {
  490. portName = pData->name;
  491. portName += ":";
  492. }
  493. portName += "out-left";
  494. portName.truncate(portNameSize);
  495. pData->audioOut.ports[0].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, false);
  496. pData->audioOut.ports[0].rindex = 0;
  497. // out-right
  498. portName.clear();
  499. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  500. {
  501. portName = pData->name;
  502. portName += ":";
  503. }
  504. portName += "out-right";
  505. portName.truncate(portNameSize);
  506. pData->audioOut.ports[1].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, false);
  507. pData->audioOut.ports[1].rindex = 1;
  508. }
  509. // ---------------------------------------
  510. // Event Input
  511. {
  512. portName.clear();
  513. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  514. {
  515. portName = pData->name;
  516. portName += ":";
  517. }
  518. portName += "events-in";
  519. portName.truncate(portNameSize);
  520. pData->event.portIn = (CarlaEngineEventPort*)pData->client->addPort(kEnginePortTypeEvent, portName, true);
  521. }
  522. // ---------------------------------------
  523. // Event Output
  524. {
  525. portName.clear();
  526. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  527. {
  528. portName = pData->name;
  529. portName += ":";
  530. }
  531. portName += "events-out";
  532. portName.truncate(portNameSize);
  533. pData->event.portOut = (CarlaEngineEventPort*)pData->client->addPort(kEnginePortTypeEvent, portName, false);
  534. }
  535. // ---------------------------------------
  536. // Parameters
  537. {
  538. int j;
  539. // ----------------------
  540. j = FluidSynthReverbOnOff;
  541. pData->param.data[j].type = PARAMETER_INPUT;
  542. pData->param.data[j].hints = PARAMETER_IS_ENABLED /*| PARAMETER_IS_AUTOMABLE*/ | PARAMETER_IS_BOOLEAN;
  543. pData->param.data[j].index = j;
  544. pData->param.data[j].rindex = j;
  545. pData->param.ranges[j].min = 0.0f;
  546. pData->param.ranges[j].max = 1.0f;
  547. pData->param.ranges[j].def = 1.0f;
  548. pData->param.ranges[j].step = 1.0f;
  549. pData->param.ranges[j].stepSmall = 1.0f;
  550. pData->param.ranges[j].stepLarge = 1.0f;
  551. // ----------------------
  552. j = FluidSynthReverbRoomSize;
  553. pData->param.data[j].type = PARAMETER_INPUT;
  554. pData->param.data[j].hints = PARAMETER_IS_ENABLED /*| PARAMETER_IS_AUTOMABLE*/;
  555. pData->param.data[j].index = j;
  556. pData->param.data[j].rindex = j;
  557. pData->param.ranges[j].min = 0.0f;
  558. pData->param.ranges[j].max = 1.2f;
  559. pData->param.ranges[j].def = FLUID_REVERB_DEFAULT_ROOMSIZE;
  560. pData->param.ranges[j].step = 0.01f;
  561. pData->param.ranges[j].stepSmall = 0.0001f;
  562. pData->param.ranges[j].stepLarge = 0.1f;
  563. // ----------------------
  564. j = FluidSynthReverbDamp;
  565. pData->param.data[j].type = PARAMETER_INPUT;
  566. pData->param.data[j].hints = PARAMETER_IS_ENABLED /*| PARAMETER_IS_AUTOMABLE*/;
  567. pData->param.data[j].index = j;
  568. pData->param.data[j].rindex = j;
  569. pData->param.ranges[j].min = 0.0f;
  570. pData->param.ranges[j].max = 1.0f;
  571. pData->param.ranges[j].def = FLUID_REVERB_DEFAULT_DAMP;
  572. pData->param.ranges[j].step = 0.01f;
  573. pData->param.ranges[j].stepSmall = 0.0001f;
  574. pData->param.ranges[j].stepLarge = 0.1f;
  575. // ----------------------
  576. j = FluidSynthReverbLevel;
  577. pData->param.data[j].type = PARAMETER_INPUT;
  578. pData->param.data[j].hints = PARAMETER_IS_ENABLED /*| PARAMETER_IS_AUTOMABLE*/;
  579. pData->param.data[j].index = j;
  580. pData->param.data[j].rindex = j;
  581. pData->param.data[j].midiCC = MIDI_CONTROL_REVERB_SEND_LEVEL;
  582. pData->param.ranges[j].min = 0.0f;
  583. pData->param.ranges[j].max = 1.0f;
  584. pData->param.ranges[j].def = FLUID_REVERB_DEFAULT_LEVEL;
  585. pData->param.ranges[j].step = 0.01f;
  586. pData->param.ranges[j].stepSmall = 0.0001f;
  587. pData->param.ranges[j].stepLarge = 0.1f;
  588. // ----------------------
  589. j = FluidSynthReverbWidth;
  590. pData->param.data[j].type = PARAMETER_INPUT;
  591. pData->param.data[j].hints = PARAMETER_IS_ENABLED /*| PARAMETER_IS_AUTOMABLE*/;
  592. pData->param.data[j].index = j;
  593. pData->param.data[j].rindex = j;
  594. pData->param.ranges[j].min = 0.0f;
  595. pData->param.ranges[j].max = 10.0f; // should be 100, but that sounds too much
  596. pData->param.ranges[j].def = FLUID_REVERB_DEFAULT_WIDTH;
  597. pData->param.ranges[j].step = 0.01f;
  598. pData->param.ranges[j].stepSmall = 0.0001f;
  599. pData->param.ranges[j].stepLarge = 0.1f;
  600. // ----------------------
  601. j = FluidSynthChorusOnOff;
  602. pData->param.data[j].type = PARAMETER_INPUT;
  603. pData->param.data[j].hints = PARAMETER_IS_ENABLED | PARAMETER_IS_BOOLEAN;
  604. pData->param.data[j].index = j;
  605. pData->param.data[j].rindex = j;
  606. pData->param.ranges[j].min = 0.0f;
  607. pData->param.ranges[j].max = 1.0f;
  608. pData->param.ranges[j].def = 1.0f;
  609. pData->param.ranges[j].step = 1.0f;
  610. pData->param.ranges[j].stepSmall = 1.0f;
  611. pData->param.ranges[j].stepLarge = 1.0f;
  612. // ----------------------
  613. j = FluidSynthChorusNr;
  614. pData->param.data[j].type = PARAMETER_INPUT;
  615. pData->param.data[j].hints = PARAMETER_IS_ENABLED | PARAMETER_IS_INTEGER;
  616. pData->param.data[j].index = j;
  617. pData->param.data[j].rindex = j;
  618. pData->param.ranges[j].min = 0.0f;
  619. pData->param.ranges[j].max = 99.0f;
  620. pData->param.ranges[j].def = FLUID_CHORUS_DEFAULT_N;
  621. pData->param.ranges[j].step = 1.0f;
  622. pData->param.ranges[j].stepSmall = 1.0f;
  623. pData->param.ranges[j].stepLarge = 10.0f;
  624. // ----------------------
  625. j = FluidSynthChorusLevel;
  626. pData->param.data[j].type = PARAMETER_INPUT;
  627. pData->param.data[j].hints = PARAMETER_IS_ENABLED;
  628. pData->param.data[j].index = j;
  629. pData->param.data[j].rindex = j;
  630. pData->param.ranges[j].min = 0.0f;
  631. pData->param.ranges[j].max = 10.0f;
  632. pData->param.ranges[j].def = FLUID_CHORUS_DEFAULT_LEVEL;
  633. pData->param.ranges[j].step = 0.01f;
  634. pData->param.ranges[j].stepSmall = 0.0001f;
  635. pData->param.ranges[j].stepLarge = 0.1f;
  636. // ----------------------
  637. j = FluidSynthChorusSpeedHz;
  638. pData->param.data[j].type = PARAMETER_INPUT;
  639. pData->param.data[j].hints = PARAMETER_IS_ENABLED;
  640. pData->param.data[j].index = j;
  641. pData->param.data[j].rindex = j;
  642. pData->param.ranges[j].min = 0.29f;
  643. pData->param.ranges[j].max = 5.0f;
  644. pData->param.ranges[j].def = FLUID_CHORUS_DEFAULT_SPEED;
  645. pData->param.ranges[j].step = 0.01f;
  646. pData->param.ranges[j].stepSmall = 0.0001f;
  647. pData->param.ranges[j].stepLarge = 0.1f;
  648. // ----------------------
  649. j = FluidSynthChorusDepthMs;
  650. pData->param.data[j].type = PARAMETER_INPUT;
  651. pData->param.data[j].hints = PARAMETER_IS_ENABLED;
  652. pData->param.data[j].index = j;
  653. pData->param.data[j].rindex = j;
  654. pData->param.ranges[j].min = 0.0f;
  655. pData->param.ranges[j].max = float(2048.0 * 1000.0 / pData->engine->getSampleRate()); // FIXME?
  656. pData->param.ranges[j].def = FLUID_CHORUS_DEFAULT_DEPTH;
  657. pData->param.ranges[j].step = 0.01f;
  658. pData->param.ranges[j].stepSmall = 0.0001f;
  659. pData->param.ranges[j].stepLarge = 0.1f;
  660. // ----------------------
  661. j = FluidSynthChorusType;
  662. pData->param.data[j].type = PARAMETER_INPUT;
  663. pData->param.data[j].hints = PARAMETER_IS_ENABLED | PARAMETER_IS_INTEGER | PARAMETER_USES_SCALEPOINTS;
  664. pData->param.data[j].index = j;
  665. pData->param.data[j].rindex = j;
  666. pData->param.ranges[j].min = FLUID_CHORUS_MOD_SINE;
  667. pData->param.ranges[j].max = FLUID_CHORUS_MOD_TRIANGLE;
  668. pData->param.ranges[j].def = FLUID_CHORUS_DEFAULT_TYPE;
  669. pData->param.ranges[j].step = 1.0f;
  670. pData->param.ranges[j].stepSmall = 1.0f;
  671. pData->param.ranges[j].stepLarge = 1.0f;
  672. // ----------------------
  673. j = FluidSynthPolyphony;
  674. pData->param.data[j].type = PARAMETER_INPUT;
  675. pData->param.data[j].hints = PARAMETER_IS_ENABLED | PARAMETER_IS_INTEGER;
  676. pData->param.data[j].index = j;
  677. pData->param.data[j].rindex = j;
  678. pData->param.ranges[j].min = 1.0f;
  679. pData->param.ranges[j].max = 512.0f; // max theoric is 65535
  680. pData->param.ranges[j].def = (float)fluid_synth_get_polyphony(fSynth);
  681. pData->param.ranges[j].step = 1.0f;
  682. pData->param.ranges[j].stepSmall = 1.0f;
  683. pData->param.ranges[j].stepLarge = 10.0f;
  684. // ----------------------
  685. j = FluidSynthInterpolation;
  686. pData->param.data[j].type = PARAMETER_INPUT;
  687. pData->param.data[j].hints = PARAMETER_IS_ENABLED | PARAMETER_IS_INTEGER | PARAMETER_USES_SCALEPOINTS;
  688. pData->param.data[j].index = j;
  689. pData->param.data[j].rindex = j;
  690. pData->param.ranges[j].min = FLUID_INTERP_NONE;
  691. pData->param.ranges[j].max = FLUID_INTERP_HIGHEST;
  692. pData->param.ranges[j].def = FLUID_INTERP_DEFAULT;
  693. pData->param.ranges[j].step = 1.0f;
  694. pData->param.ranges[j].stepSmall = 1.0f;
  695. pData->param.ranges[j].stepLarge = 1.0f;
  696. // ----------------------
  697. j = FluidSynthVoiceCount;
  698. pData->param.data[j].type = PARAMETER_OUTPUT;
  699. pData->param.data[j].hints = PARAMETER_IS_ENABLED | PARAMETER_IS_AUTOMABLE | PARAMETER_IS_INTEGER;
  700. pData->param.data[j].index = j;
  701. pData->param.data[j].rindex = j;
  702. pData->param.ranges[j].min = 0.0f;
  703. pData->param.ranges[j].max = 65535.0f;
  704. pData->param.ranges[j].def = 0.0f;
  705. pData->param.ranges[j].step = 1.0f;
  706. pData->param.ranges[j].stepSmall = 1.0f;
  707. pData->param.ranges[j].stepLarge = 1.0f;
  708. for (j=0; j<FluidSynthParametersMax; ++j)
  709. fParamBuffers[j] = pData->param.ranges[j].def;
  710. }
  711. // ---------------------------------------
  712. // plugin hints
  713. pData->hints = 0x0;
  714. pData->hints |= PLUGIN_IS_SYNTH;
  715. pData->hints |= PLUGIN_CAN_VOLUME;
  716. if (! kUse16Outs)
  717. pData->hints |= PLUGIN_CAN_BALANCE;
  718. // extra plugin hints
  719. pData->extraHints = 0x0;
  720. pData->extraHints |= PLUGIN_EXTRA_HINT_HAS_MIDI_IN;
  721. pData->extraHints |= PLUGIN_EXTRA_HINT_USES_MULTI_PROGS;
  722. if (kUse16Outs)
  723. pData->extraHints |= PLUGIN_EXTRA_HINT_CAN_RUN_RACK;
  724. bufferSizeChanged(pData->engine->getBufferSize());
  725. reloadPrograms(true);
  726. if (pData->active)
  727. activate();
  728. carla_debug("FluidSynthPlugin::reload() - end");
  729. }
  730. void reloadPrograms(const bool doInit) override
  731. {
  732. carla_debug("FluidSynthPlugin::reloadPrograms(%s)", bool2str(doInit));
  733. // save drum info in case we have one program for it
  734. bool hasDrums = false;
  735. uint32_t drumIndex, drumProg;
  736. drumIndex = drumProg = 0;
  737. // Delete old programs
  738. pData->midiprog.clear();
  739. // Query new programs
  740. uint32_t count = 0;
  741. if (fluid_sfont_t* const f_sfont = fluid_synth_get_sfont_by_id(fSynth, fSynthId))
  742. {
  743. fluid_preset_t f_preset;
  744. // initial check to know how many midi-programs we have
  745. f_sfont->iteration_start(f_sfont);
  746. while (f_sfont->iteration_next(f_sfont, &f_preset))
  747. ++count;
  748. // sound kits must always have at least 1 midi-program
  749. CARLA_SAFE_ASSERT_RETURN(count > 0,);
  750. pData->midiprog.createNew(count);
  751. // Update data
  752. int tmp;
  753. uint32_t i = 0;
  754. f_sfont->iteration_start(f_sfont);
  755. for (; f_sfont->iteration_next(f_sfont, &f_preset);)
  756. {
  757. CARLA_SAFE_ASSERT_BREAK(i < count);
  758. tmp = f_preset.get_banknum(&f_preset);
  759. pData->midiprog.data[i].bank = (tmp >= 0) ? static_cast<uint32_t>(tmp) : 0;
  760. tmp = f_preset.get_num(&f_preset);
  761. pData->midiprog.data[i].program = (tmp >= 0) ? static_cast<uint32_t>(tmp) : 0;
  762. pData->midiprog.data[i].name = carla_strdup(f_preset.get_name(&f_preset));
  763. if (pData->midiprog.data[i].bank == 128 && ! hasDrums)
  764. {
  765. hasDrums = true;
  766. drumIndex = i;
  767. drumProg = pData->midiprog.data[i].program;
  768. }
  769. ++i;
  770. }
  771. }
  772. else
  773. {
  774. // failing means 0 midi-programs, it shouldn't happen!
  775. carla_safe_assert("fluid_sfont_t* const f_sfont = fluid_synth_get_sfont_by_id(fSynth, fSynthId)", __FILE__, __LINE__);
  776. return;
  777. }
  778. #ifndef BUILD_BRIDGE
  779. // Update OSC Names
  780. if (pData->engine->isOscControlRegistered())
  781. {
  782. pData->engine->oscSend_control_set_midi_program_count(pData->id, count);
  783. for (uint32_t i=0; i < count; ++i)
  784. pData->engine->oscSend_control_set_midi_program_data(pData->id, i, pData->midiprog.data[i].bank, pData->midiprog.data[i].program, pData->midiprog.data[i].name);
  785. }
  786. #endif
  787. if (doInit)
  788. {
  789. fluid_synth_program_reset(fSynth);
  790. // select first program, or 128 for ch10
  791. for (int i=0; i < MAX_MIDI_CHANNELS && i != 9; ++i)
  792. {
  793. #ifdef FLUIDSYNTH_VERSION_NEW_API
  794. fluid_synth_set_channel_type(fSynth, i, CHANNEL_TYPE_MELODIC);
  795. #endif
  796. fluid_synth_program_select(fSynth, i, fSynthId, pData->midiprog.data[0].bank, pData->midiprog.data[0].program);
  797. fCurMidiProgs[i] = 0;
  798. }
  799. if (hasDrums)
  800. {
  801. #ifdef FLUIDSYNTH_VERSION_NEW_API
  802. fluid_synth_set_channel_type(fSynth, 9, CHANNEL_TYPE_DRUM);
  803. #endif
  804. fluid_synth_program_select(fSynth, 9, fSynthId, 128, drumProg);
  805. fCurMidiProgs[9] = static_cast<int32_t>(drumIndex);
  806. }
  807. else
  808. {
  809. #ifdef FLUIDSYNTH_VERSION_NEW_API
  810. fluid_synth_set_channel_type(fSynth, 9, CHANNEL_TYPE_MELODIC);
  811. #endif
  812. fluid_synth_program_select(fSynth, 9, fSynthId, pData->midiprog.data[0].bank, pData->midiprog.data[0].program);
  813. fCurMidiProgs[9] = 0;
  814. }
  815. pData->midiprog.current = 0;
  816. }
  817. else
  818. {
  819. pData->engine->callback(ENGINE_CALLBACK_RELOAD_PROGRAMS, pData->id, 0, 0, 0.0f, nullptr);
  820. }
  821. }
  822. // -------------------------------------------------------------------
  823. // Plugin processing
  824. void process(float** const, float** const outBuffer, const uint32_t frames) override
  825. {
  826. // --------------------------------------------------------------------------------------------------------
  827. // Check if active
  828. if (! pData->active)
  829. {
  830. // disable any output sound
  831. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  832. FloatVectorOperations::clear(outBuffer[i], static_cast<int>(frames));
  833. return;
  834. }
  835. // --------------------------------------------------------------------------------------------------------
  836. // Check if needs reset
  837. if (pData->needsReset)
  838. {
  839. if (pData->options & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  840. {
  841. for (int i=0; i < MAX_MIDI_CHANNELS; ++i)
  842. {
  843. #ifdef FLUIDSYNTH_VERSION_NEW_API
  844. fluid_synth_all_notes_off(fSynth, i);
  845. fluid_synth_all_sounds_off(fSynth, i);
  846. #else
  847. fluid_synth_cc(fSynth, i, MIDI_CONTROL_ALL_SOUND_OFF, 0);
  848. fluid_synth_cc(fSynth, i, MIDI_CONTROL_ALL_NOTES_OFF, 0);
  849. #endif
  850. }
  851. }
  852. else if (pData->ctrlChannel >= 0 && pData->ctrlChannel < MAX_MIDI_CHANNELS)
  853. {
  854. for (int i=0; i < MAX_MIDI_NOTE; ++i)
  855. fluid_synth_noteoff(fSynth, pData->ctrlChannel, i);
  856. }
  857. pData->needsReset = false;
  858. }
  859. // --------------------------------------------------------------------------------------------------------
  860. // Event Input and Processing
  861. {
  862. // ----------------------------------------------------------------------------------------------------
  863. // MIDI Input (External)
  864. if (pData->extNotes.mutex.tryLock())
  865. {
  866. for (RtLinkedList<ExternalMidiNote>::Itenerator it = pData->extNotes.data.begin(); it.valid(); it.next())
  867. {
  868. const ExternalMidiNote& note(it.getValue());
  869. CARLA_SAFE_ASSERT_CONTINUE(note.channel >= 0 && note.channel < MAX_MIDI_CHANNELS);
  870. if (note.velo > 0)
  871. fluid_synth_noteon(fSynth, note.channel, note.note, note.velo);
  872. else
  873. fluid_synth_noteoff(fSynth,note.channel, note.note);
  874. }
  875. pData->extNotes.data.clear();
  876. pData->extNotes.mutex.unlock();
  877. } // End of MIDI Input (External)
  878. // ----------------------------------------------------------------------------------------------------
  879. // Event Input (System)
  880. #ifndef BUILD_BRIDGE
  881. bool allNotesOffSent = false;
  882. #endif
  883. uint32_t time, nEvents = pData->event.portIn->getEventCount();
  884. uint32_t timeOffset = 0;
  885. uint32_t nextBankIds[MAX_MIDI_CHANNELS] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0 };
  886. if (pData->midiprog.current >= 0 && pData->midiprog.count > 0 && pData->ctrlChannel >= 0 && pData->ctrlChannel < MAX_MIDI_CHANNELS)
  887. nextBankIds[pData->ctrlChannel] = pData->midiprog.data[pData->midiprog.current].bank;
  888. for (uint32_t i=0; i < nEvents; ++i)
  889. {
  890. const EngineEvent& event(pData->event.portIn->getEvent(i));
  891. time = event.time;
  892. CARLA_SAFE_ASSERT_CONTINUE(time < frames);
  893. CARLA_SAFE_ASSERT_BREAK(time >= timeOffset);
  894. if (time > timeOffset)
  895. {
  896. if (processSingle(outBuffer, time - timeOffset, timeOffset))
  897. {
  898. timeOffset = time;
  899. if (pData->midiprog.current >= 0 && pData->midiprog.count > 0 && pData->ctrlChannel >= 0 && pData->ctrlChannel < MAX_MIDI_CHANNELS)
  900. nextBankIds[pData->ctrlChannel] = pData->midiprog.data[pData->midiprog.current].bank;
  901. }
  902. }
  903. // Control change
  904. switch (event.type)
  905. {
  906. case kEngineEventTypeNull:
  907. break;
  908. case kEngineEventTypeControl:
  909. {
  910. const EngineControlEvent& ctrlEvent = event.ctrl;
  911. switch (ctrlEvent.type)
  912. {
  913. case kEngineControlEventTypeNull:
  914. break;
  915. case kEngineControlEventTypeParameter:
  916. {
  917. #ifndef BUILD_BRIDGE
  918. // Control backend stuff
  919. if (event.channel == pData->ctrlChannel)
  920. {
  921. float value;
  922. if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0)
  923. {
  924. value = ctrlEvent.value;
  925. setDryWet(value, false, false);
  926. pData->postponeRtEvent(kPluginPostRtEventParameterChange, PARAMETER_DRYWET, 0, value);
  927. }
  928. if (MIDI_IS_CONTROL_CHANNEL_VOLUME(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_VOLUME) != 0)
  929. {
  930. value = ctrlEvent.value*127.0f/100.0f;
  931. setVolume(value, false, false);
  932. pData->postponeRtEvent(kPluginPostRtEventParameterChange, PARAMETER_VOLUME, 0, value);
  933. }
  934. if (MIDI_IS_CONTROL_BALANCE(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_BALANCE) != 0)
  935. {
  936. float left, right;
  937. value = ctrlEvent.value/0.5f - 1.0f;
  938. if (value < 0.0f)
  939. {
  940. left = -1.0f;
  941. right = (value*2.0f)+1.0f;
  942. }
  943. else if (value > 0.0f)
  944. {
  945. left = (value*2.0f)-1.0f;
  946. right = 1.0f;
  947. }
  948. else
  949. {
  950. left = -1.0f;
  951. right = 1.0f;
  952. }
  953. setBalanceLeft(left, false, false);
  954. setBalanceRight(right, false, false);
  955. pData->postponeRtEvent(kPluginPostRtEventParameterChange, PARAMETER_BALANCE_LEFT, 0, left);
  956. pData->postponeRtEvent(kPluginPostRtEventParameterChange, PARAMETER_BALANCE_RIGHT, 0, right);
  957. }
  958. }
  959. // Control plugin parameters
  960. for (uint32_t k=0; k < pData->param.count; ++k)
  961. {
  962. if (pData->param.data[k].midiChannel != event.channel)
  963. continue;
  964. if (pData->param.data[k].midiCC != ctrlEvent.param)
  965. continue;
  966. if (pData->param.data[k].hints != PARAMETER_INPUT)
  967. continue;
  968. if ((pData->param.data[k].hints & PARAMETER_IS_AUTOMABLE) == 0)
  969. continue;
  970. float value;
  971. if (pData->param.data[k].hints & PARAMETER_IS_BOOLEAN)
  972. {
  973. value = (ctrlEvent.value < 0.5f) ? pData->param.ranges[k].min : pData->param.ranges[k].max;
  974. }
  975. else
  976. {
  977. value = pData->param.ranges[k].getUnnormalizedValue(ctrlEvent.value);
  978. if (pData->param.data[k].hints & PARAMETER_IS_INTEGER)
  979. value = std::rint(value);
  980. }
  981. setParameterValue(k, value, false, false, false);
  982. pData->postponeRtEvent(kPluginPostRtEventParameterChange, static_cast<int32_t>(k), 0, value);
  983. }
  984. #endif
  985. if ((pData->options & PLUGIN_OPTION_SEND_CONTROL_CHANGES) != 0 && ctrlEvent.param <= 0x5F)
  986. {
  987. fluid_synth_cc(fSynth, event.channel, ctrlEvent.param, int(ctrlEvent.value*127.0f));
  988. }
  989. break;
  990. }
  991. case kEngineControlEventTypeMidiBank:
  992. if (event.channel < MAX_MIDI_CHANNELS && (pData->options & PLUGIN_OPTION_MAP_PROGRAM_CHANGES) != 0)
  993. nextBankIds[event.channel] = ctrlEvent.param;
  994. break;
  995. case kEngineControlEventTypeMidiProgram:
  996. if (event.channel < MAX_MIDI_CHANNELS && (pData->options & PLUGIN_OPTION_MAP_PROGRAM_CHANGES) != 0)
  997. {
  998. const uint32_t bankId(nextBankIds[event.channel]);
  999. const uint32_t progId(ctrlEvent.param);
  1000. for (uint32_t k=0; k < pData->midiprog.count; ++k)
  1001. {
  1002. if (pData->midiprog.data[k].bank == bankId && pData->midiprog.data[k].program == progId)
  1003. {
  1004. fluid_synth_program_select(fSynth, event.channel, fSynthId, bankId, progId);
  1005. fCurMidiProgs[event.channel] = static_cast<int32_t>(k);
  1006. if (event.channel == pData->ctrlChannel)
  1007. pData->postponeRtEvent(kPluginPostRtEventMidiProgramChange, static_cast<int32_t>(k), 0, 0.0f);
  1008. break;
  1009. }
  1010. }
  1011. }
  1012. break;
  1013. case kEngineControlEventTypeAllSoundOff:
  1014. if (pData->options & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1015. {
  1016. #ifdef FLUIDSYNTH_VERSION_NEW_API
  1017. fluid_synth_all_sounds_off(fSynth, event.channel);
  1018. #else
  1019. fluid_synth_cc(fSynth, event.channel, MIDI_CONTROL_ALL_SOUND_OFF, 0);
  1020. #endif
  1021. }
  1022. break;
  1023. case kEngineControlEventTypeAllNotesOff:
  1024. if (pData->options & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1025. {
  1026. #ifndef BUILD_BRIDGE
  1027. if (event.channel == pData->ctrlChannel && ! allNotesOffSent)
  1028. {
  1029. allNotesOffSent = true;
  1030. sendMidiAllNotesOffToCallback();
  1031. }
  1032. #endif
  1033. #ifdef FLUIDSYNTH_VERSION_NEW_API
  1034. fluid_synth_all_notes_off(fSynth, event.channel);
  1035. #else
  1036. fluid_synth_cc(fSynth, event.channel, MIDI_CONTROL_ALL_NOTES_OFF, 0);
  1037. #endif
  1038. }
  1039. break;
  1040. }
  1041. break;
  1042. }
  1043. case kEngineEventTypeMidi:
  1044. {
  1045. const EngineMidiEvent& midiEvent(event.midi);
  1046. uint8_t status = uint8_t(MIDI_GET_STATUS_FROM_DATA(midiEvent.data));
  1047. uint8_t channel = event.channel;
  1048. // Fix bad note-off
  1049. if (MIDI_IS_STATUS_NOTE_ON(status) && midiEvent.data[2] == 0)
  1050. status = MIDI_STATUS_NOTE_OFF;
  1051. if (MIDI_IS_STATUS_NOTE_OFF(status))
  1052. {
  1053. const uint8_t note = midiEvent.data[1];
  1054. fluid_synth_noteoff(fSynth, channel, note);
  1055. pData->postponeRtEvent(kPluginPostRtEventNoteOff, channel, note, 0.0f);
  1056. }
  1057. else if (MIDI_IS_STATUS_NOTE_ON(status))
  1058. {
  1059. const uint8_t note = midiEvent.data[1];
  1060. const uint8_t velo = midiEvent.data[2];
  1061. fluid_synth_noteon(fSynth, channel, note, velo);
  1062. pData->postponeRtEvent(kPluginPostRtEventNoteOn, channel, note, velo);
  1063. }
  1064. else if (MIDI_IS_STATUS_POLYPHONIC_AFTERTOUCH(status) && (pData->options & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH) != 0)
  1065. {
  1066. //const uint8_t note = midiEvent.data[1];
  1067. //const uint8_t pressure = midiEvent.data[2];
  1068. // TODO, not in fluidsynth API
  1069. }
  1070. else if (MIDI_IS_STATUS_CONTROL_CHANGE(status) && (pData->options & PLUGIN_OPTION_SEND_CONTROL_CHANGES) != 0)
  1071. {
  1072. const uint8_t control = midiEvent.data[1];
  1073. const uint8_t value = midiEvent.data[2];
  1074. fluid_synth_cc(fSynth, channel, control, value);
  1075. }
  1076. else if (MIDI_IS_STATUS_CHANNEL_PRESSURE(status) && (pData->options & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE) != 0)
  1077. {
  1078. const uint8_t pressure = midiEvent.data[1];
  1079. fluid_synth_channel_pressure(fSynth, channel, pressure);;
  1080. }
  1081. else if (MIDI_IS_STATUS_PITCH_WHEEL_CONTROL(status) && (pData->options & PLUGIN_OPTION_SEND_PITCHBEND) != 0)
  1082. {
  1083. const uint8_t lsb = midiEvent.data[1];
  1084. const uint8_t msb = midiEvent.data[2];
  1085. const int value = ((msb << 7) | lsb);
  1086. fluid_synth_pitch_bend(fSynth, channel, value);
  1087. }
  1088. break;
  1089. }
  1090. }
  1091. }
  1092. pData->postRtEvents.trySplice();
  1093. if (frames > timeOffset)
  1094. processSingle(outBuffer, frames - timeOffset, timeOffset);
  1095. } // End of Event Input and Processing
  1096. #ifndef BUILD_BRIDGE
  1097. // --------------------------------------------------------------------------------------------------------
  1098. // Control Output
  1099. {
  1100. uint32_t k = FluidSynthVoiceCount;
  1101. fParamBuffers[k] = float(fluid_synth_get_active_voice_count(fSynth));
  1102. pData->param.ranges[k].fixValue(fParamBuffers[k]);
  1103. if (pData->param.data[k].midiCC > 0)
  1104. {
  1105. float value(pData->param.ranges[k].getNormalizedValue(fParamBuffers[k]));
  1106. pData->event.portOut->writeControlEvent(0, pData->param.data[k].midiChannel, kEngineControlEventTypeParameter, static_cast<uint16_t>(pData->param.data[k].midiCC), value);
  1107. }
  1108. } // End of Control Output
  1109. #endif
  1110. }
  1111. bool processSingle(float** const outBuffer, const uint32_t frames, const uint32_t timeOffset)
  1112. {
  1113. CARLA_SAFE_ASSERT_RETURN(outBuffer != nullptr, false);
  1114. CARLA_SAFE_ASSERT_RETURN(frames > 0, false);
  1115. // --------------------------------------------------------------------------------------------------------
  1116. // Try lock, silence otherwise
  1117. if (pData->engine->isOffline())
  1118. {
  1119. pData->singleMutex.lock();
  1120. }
  1121. else if (! pData->singleMutex.tryLock())
  1122. {
  1123. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1124. {
  1125. for (uint32_t k=0; k < frames; ++k)
  1126. outBuffer[i][k+timeOffset] = 0.0f;
  1127. }
  1128. return false;
  1129. }
  1130. // --------------------------------------------------------------------------------------------------------
  1131. // Fill plugin buffers and Run plugin
  1132. if (kUse16Outs)
  1133. {
  1134. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1135. FloatVectorOperations::clear(fAudio16Buffers[i], static_cast<int>(frames));
  1136. // FIXME use '32' or '16' instead of outs
  1137. fluid_synth_process(fSynth, static_cast<int>(frames), 0, nullptr, static_cast<int>(pData->audioOut.count), fAudio16Buffers);
  1138. }
  1139. else
  1140. fluid_synth_write_float(fSynth, static_cast<int>(frames), outBuffer[0] + timeOffset, 0, 1, outBuffer[1] + timeOffset, 0, 1);
  1141. #ifndef BUILD_BRIDGE
  1142. // --------------------------------------------------------------------------------------------------------
  1143. // Post-processing (volume and balance)
  1144. {
  1145. // note - balance not possible with kUse16Outs, so we can safely skip fAudioOutBuffers
  1146. const bool doVolume = (pData->hints & PLUGIN_CAN_VOLUME) > 0 && pData->postProc.volume != 1.0f;
  1147. const bool doBalance = (pData->hints & PLUGIN_CAN_BALANCE) > 0 && (pData->postProc.balanceLeft != -1.0f || pData->postProc.balanceRight != 1.0f);
  1148. float oldBufLeft[doBalance ? frames : 1];
  1149. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1150. {
  1151. // Balance
  1152. if (doBalance)
  1153. {
  1154. if (i % 2 == 0)
  1155. FloatVectorOperations::copy(oldBufLeft, outBuffer[i]+timeOffset, static_cast<int>(frames));
  1156. float balRangeL = (pData->postProc.balanceLeft + 1.0f)/2.0f;
  1157. float balRangeR = (pData->postProc.balanceRight + 1.0f)/2.0f;
  1158. for (uint32_t k=0; k < frames; ++k)
  1159. {
  1160. if (i % 2 == 0)
  1161. {
  1162. // left
  1163. outBuffer[i][k+timeOffset] = oldBufLeft[k] * (1.0f - balRangeL);
  1164. outBuffer[i][k+timeOffset] += outBuffer[i+1][k+timeOffset] * (1.0f - balRangeR);
  1165. }
  1166. else
  1167. {
  1168. // right
  1169. outBuffer[i][k+timeOffset] = outBuffer[i][k+timeOffset] * balRangeR;
  1170. outBuffer[i][k+timeOffset] += oldBufLeft[k] * balRangeL;
  1171. }
  1172. }
  1173. }
  1174. // Volume
  1175. if (kUse16Outs)
  1176. {
  1177. for (uint32_t k=0; k < frames; ++k)
  1178. outBuffer[i][k+timeOffset] = fAudio16Buffers[i][k] * pData->postProc.volume;
  1179. }
  1180. else if (doVolume)
  1181. {
  1182. for (uint32_t k=0; k < frames; ++k)
  1183. outBuffer[i][k+timeOffset] *= pData->postProc.volume;
  1184. }
  1185. }
  1186. } // End of Post-processing
  1187. #else
  1188. if (kUse16Outs)
  1189. {
  1190. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1191. {
  1192. for (uint32_t k=0; k < frames; ++k)
  1193. outBuffer[i][k+timeOffset] = fAudio16Buffers[i][k];
  1194. }
  1195. }
  1196. #endif
  1197. // --------------------------------------------------------------------------------------------------------
  1198. pData->singleMutex.unlock();
  1199. return true;
  1200. }
  1201. void bufferSizeChanged(const uint32_t newBufferSize) override
  1202. {
  1203. if (! kUse16Outs)
  1204. return;
  1205. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1206. {
  1207. if (fAudio16Buffers[i] != nullptr)
  1208. delete[] fAudio16Buffers[i];
  1209. fAudio16Buffers[i] = new float[newBufferSize];
  1210. }
  1211. }
  1212. void sampleRateChanged(const double newSampleRate) override
  1213. {
  1214. CARLA_SAFE_ASSERT_RETURN(fSettings != nullptr,);
  1215. fluid_settings_setnum(fSettings, "synth.sample-rate", newSampleRate);
  1216. #ifdef FLUIDSYNTH_VERSION_NEW_API
  1217. CARLA_SAFE_ASSERT_RETURN(fSynth != nullptr,);
  1218. fluid_synth_set_sample_rate(fSynth, float(newSampleRate));
  1219. #endif
  1220. }
  1221. // -------------------------------------------------------------------
  1222. // Plugin buffers
  1223. void clearBuffers() noexcept override
  1224. {
  1225. carla_debug("FluidSynthPlugin::clearBuffers() - start");
  1226. if (fAudio16Buffers != nullptr)
  1227. {
  1228. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1229. {
  1230. if (fAudio16Buffers[i] != nullptr)
  1231. {
  1232. delete[] fAudio16Buffers[i];
  1233. fAudio16Buffers[i] = nullptr;
  1234. }
  1235. }
  1236. delete[] fAudio16Buffers;
  1237. fAudio16Buffers = nullptr;
  1238. }
  1239. CarlaPlugin::clearBuffers();
  1240. carla_debug("FluidSynthPlugin::clearBuffers() - end");
  1241. }
  1242. // -------------------------------------------------------------------
  1243. const void* getExtraStuff() const noexcept override
  1244. {
  1245. static const char xtrue[] = "true";
  1246. static const char xfalse[] = "false";
  1247. return kUse16Outs ? xtrue : xfalse;
  1248. }
  1249. // -------------------------------------------------------------------
  1250. bool init(const char* const filename, const char* const name, const char* const label)
  1251. {
  1252. CARLA_SAFE_ASSERT_RETURN(pData->engine != nullptr, false);
  1253. // ---------------------------------------------------------------
  1254. // first checks
  1255. if (pData->client != nullptr)
  1256. {
  1257. pData->engine->setLastError("Plugin client is already registered");
  1258. return false;
  1259. }
  1260. if (fSynth == nullptr)
  1261. {
  1262. pData->engine->setLastError("null synth");
  1263. return false;
  1264. }
  1265. if (filename == nullptr || filename[0] == '\0')
  1266. {
  1267. pData->engine->setLastError("null filename");
  1268. return false;
  1269. }
  1270. if (label == nullptr || label[0] == '\0')
  1271. {
  1272. pData->engine->setLastError("null label");
  1273. return false;
  1274. }
  1275. // ---------------------------------------------------------------
  1276. // open soundfont
  1277. const int synthId(fluid_synth_sfload(fSynth, filename, 0));
  1278. if (synthId < 0)
  1279. {
  1280. pData->engine->setLastError("Failed to load SoundFont file");
  1281. return false;
  1282. }
  1283. fSynthId = static_cast<uint>(synthId);
  1284. // ---------------------------------------------------------------
  1285. // get info
  1286. CarlaString label2(label);
  1287. if (kUse16Outs && ! label2.endsWith(" (16 outs)"))
  1288. label2 += " (16 outs)";
  1289. fLabel = label2.dup();
  1290. pData->filename = carla_strdup(filename);
  1291. if (name != nullptr && name[0] != '\0')
  1292. pData->name = pData->engine->getUniquePluginName(name);
  1293. else
  1294. pData->name = pData->engine->getUniquePluginName(label);
  1295. // ---------------------------------------------------------------
  1296. // register client
  1297. pData->client = pData->engine->addClient(this);
  1298. if (pData->client == nullptr || ! pData->client->isOk())
  1299. {
  1300. pData->engine->setLastError("Failed to register plugin client");
  1301. return false;
  1302. }
  1303. // ---------------------------------------------------------------
  1304. // set default options
  1305. pData->options = 0x0;
  1306. pData->options |= PLUGIN_OPTION_MAP_PROGRAM_CHANGES;
  1307. pData->options |= PLUGIN_OPTION_SEND_CHANNEL_PRESSURE;
  1308. pData->options |= PLUGIN_OPTION_SEND_PITCHBEND;
  1309. pData->options |= PLUGIN_OPTION_SEND_ALL_SOUND_OFF;
  1310. return true;
  1311. }
  1312. private:
  1313. enum FluidSynthInputParameters {
  1314. FluidSynthReverbOnOff = 0,
  1315. FluidSynthReverbRoomSize = 1,
  1316. FluidSynthReverbDamp = 2,
  1317. FluidSynthReverbLevel = 3,
  1318. FluidSynthReverbWidth = 4,
  1319. FluidSynthChorusOnOff = 5,
  1320. FluidSynthChorusNr = 6,
  1321. FluidSynthChorusLevel = 7,
  1322. FluidSynthChorusSpeedHz = 8,
  1323. FluidSynthChorusDepthMs = 9,
  1324. FluidSynthChorusType = 10,
  1325. FluidSynthPolyphony = 11,
  1326. FluidSynthInterpolation = 12,
  1327. FluidSynthVoiceCount = 13,
  1328. FluidSynthParametersMax = 14
  1329. };
  1330. const bool kUse16Outs;
  1331. fluid_settings_t* fSettings;
  1332. fluid_synth_t* fSynth;
  1333. uint fSynthId;
  1334. float** fAudio16Buffers;
  1335. float fParamBuffers[FluidSynthParametersMax];
  1336. int32_t fCurMidiProgs[MAX_MIDI_CHANNELS];
  1337. const char* fLabel;
  1338. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(FluidSynthPlugin)
  1339. };
  1340. CARLA_BACKEND_END_NAMESPACE
  1341. #endif // HAVE_FLUIDSYNTH
  1342. CARLA_BACKEND_START_NAMESPACE
  1343. // -------------------------------------------------------------------------------------------------------------------
  1344. CarlaPlugin* CarlaPlugin::newFluidSynth(const Initializer& init, const bool use16Outs)
  1345. {
  1346. carla_debug("CarlaPlugin::newFluidSynth({%p, \"%s\", \"%s\", \"%s\", " P_INT64 "}, %s)", init.engine, init.filename, init.name, init.label, init.uniqueId, bool2str(use16Outs));
  1347. #ifdef HAVE_FLUIDSYNTH
  1348. if (init.engine->getProccessMode() == ENGINE_PROCESS_MODE_CONTINUOUS_RACK && use16Outs)
  1349. {
  1350. init.engine->setLastError("Carla's rack mode can only work with Stereo modules, please choose the 2-channel only SoundFont version");
  1351. return nullptr;
  1352. }
  1353. if (! fluid_is_soundfont(init.filename))
  1354. {
  1355. init.engine->setLastError("Requested file is not a valid SoundFont");
  1356. return nullptr;
  1357. }
  1358. FluidSynthPlugin* const plugin(new FluidSynthPlugin(init.engine, init.id, use16Outs));
  1359. if (! plugin->init(init.filename, init.name, init.label))
  1360. {
  1361. delete plugin;
  1362. return nullptr;
  1363. }
  1364. plugin->reload();
  1365. return plugin;
  1366. #else
  1367. init.engine->setLastError("fluidsynth support not available");
  1368. return nullptr;
  1369. // unused
  1370. (void)use16Outs;
  1371. #endif
  1372. }
  1373. CarlaPlugin* CarlaPlugin::newFileSF2(const Initializer& init, const bool use16Outs)
  1374. {
  1375. carla_debug("CarlaPlugin::newFileSF2({%p, \"%s\", \"%s\", \"%s\"}, %s)", init.engine, init.filename, init.name, init.label, bool2str(use16Outs));
  1376. #ifdef HAVE_FLUIDSYNTH
  1377. return newFluidSynth(init, use16Outs);
  1378. #else
  1379. init.engine->setLastError("SF2 support not available");
  1380. return nullptr;
  1381. // unused
  1382. (void)use16Outs;
  1383. #endif
  1384. }
  1385. // -------------------------------------------------------------------------------------------------------------------
  1386. CARLA_BACKEND_END_NAMESPACE