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.

2684 lines
94KB

  1. /*
  2. * Carla Native Plugin
  3. * Copyright (C) 2012-2018 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. #include "CarlaMathUtils.hpp"
  20. #include "CarlaNative.h"
  21. #include "water/text/StringArray.h"
  22. using water::jmax;
  23. using water::String;
  24. using water::StringArray;
  25. CARLA_EXTERN_C
  26. std::size_t carla_getNativePluginCount() noexcept;
  27. CARLA_EXTERN_C
  28. const NativePluginDescriptor* carla_getNativePluginDescriptor(const std::size_t index) noexcept;
  29. // -----------------------------------------------------------------------
  30. static LinkedList<const NativePluginDescriptor*> gPluginDescriptors;
  31. void carla_register_native_plugin(const NativePluginDescriptor* desc)
  32. {
  33. gPluginDescriptors.append(desc);
  34. }
  35. // -----------------------------------------------------------------------
  36. static
  37. class NativePluginInitializer
  38. {
  39. public:
  40. NativePluginInitializer() noexcept
  41. : fNeedsInit(true) {}
  42. ~NativePluginInitializer() noexcept
  43. {
  44. gPluginDescriptors.clear();
  45. }
  46. void initIfNeeded() noexcept
  47. {
  48. if (! fNeedsInit)
  49. return;
  50. fNeedsInit = false;
  51. try {
  52. carla_register_all_native_plugins();
  53. } CARLA_SAFE_EXCEPTION("carla_register_all_native_plugins")
  54. }
  55. private:
  56. bool fNeedsInit;
  57. } sPluginInitializer;
  58. // -----------------------------------------------------------------------
  59. std::size_t carla_getNativePluginCount() noexcept
  60. {
  61. sPluginInitializer.initIfNeeded();
  62. return gPluginDescriptors.count();
  63. }
  64. const NativePluginDescriptor* carla_getNativePluginDescriptor(const std::size_t index) noexcept
  65. {
  66. sPluginInitializer.initIfNeeded();
  67. return gPluginDescriptors.getAt(index, nullptr);
  68. }
  69. // -----------------------------------------------------------------------
  70. CARLA_BACKEND_START_NAMESPACE
  71. // -------------------------------------------------------------------
  72. // Fallback data
  73. static const CustomData kCustomDataFallback = { nullptr, nullptr, nullptr };
  74. static const EngineEvent kNullEngineEvent = { kEngineEventTypeNull, 0, 0, {} };
  75. // -----------------------------------------------------------------------
  76. struct NativePluginMidiOutData {
  77. uint32_t count;
  78. uint32_t* indexes;
  79. CarlaEngineEventPort** ports;
  80. NativePluginMidiOutData() noexcept
  81. : count(0),
  82. indexes(nullptr),
  83. ports(nullptr) {}
  84. ~NativePluginMidiOutData() noexcept
  85. {
  86. CARLA_SAFE_ASSERT_INT(count == 0, count);
  87. CARLA_SAFE_ASSERT(indexes == nullptr);
  88. CARLA_SAFE_ASSERT(ports == nullptr);
  89. }
  90. bool createNew(const uint32_t newCount)
  91. {
  92. CARLA_SAFE_ASSERT_INT(count == 0, count);
  93. CARLA_SAFE_ASSERT_RETURN(indexes == nullptr, false);
  94. CARLA_SAFE_ASSERT_RETURN(ports == nullptr, false);
  95. CARLA_SAFE_ASSERT_RETURN(newCount > 0, false);
  96. indexes = new uint32_t[newCount];
  97. ports = new CarlaEngineEventPort*[newCount];
  98. count = newCount;
  99. carla_zeroStructs(indexes, newCount);
  100. carla_zeroStructs(ports, newCount);
  101. return true;
  102. }
  103. void clear() noexcept
  104. {
  105. if (ports != nullptr)
  106. {
  107. for (uint32_t i=0; i < count; ++i)
  108. {
  109. if (ports[i] != nullptr)
  110. {
  111. delete ports[i];
  112. ports[i] = nullptr;
  113. }
  114. }
  115. delete[] ports;
  116. ports = nullptr;
  117. }
  118. if (indexes != nullptr)
  119. {
  120. delete[] indexes;
  121. indexes = nullptr;
  122. }
  123. count = 0;
  124. }
  125. void initBuffers() const noexcept
  126. {
  127. for (uint32_t i=0; i < count; ++i)
  128. {
  129. if (ports[i] != nullptr)
  130. ports[i]->initBuffer();
  131. }
  132. }
  133. CARLA_DECLARE_NON_COPY_STRUCT(NativePluginMidiOutData)
  134. };
  135. struct NativePluginMidiInData : NativePluginMidiOutData {
  136. struct MultiPortData {
  137. uint32_t cachedEventCount;
  138. uint32_t usedIndex;
  139. };
  140. MultiPortData* multiportData;
  141. NativePluginMidiInData() noexcept
  142. : NativePluginMidiOutData(),
  143. multiportData(nullptr) {}
  144. ~NativePluginMidiInData() noexcept
  145. {
  146. CARLA_SAFE_ASSERT(multiportData == nullptr);
  147. }
  148. bool createNew(const uint32_t newCount)
  149. {
  150. if (! NativePluginMidiOutData::createNew(newCount))
  151. return false;
  152. multiportData = new MultiPortData[newCount];
  153. carla_zeroStructs(multiportData, newCount);
  154. return true;
  155. }
  156. void clear() noexcept
  157. {
  158. if (multiportData != nullptr)
  159. {
  160. delete[] multiportData;
  161. multiportData = nullptr;
  162. }
  163. NativePluginMidiOutData::clear();
  164. }
  165. void initBuffers(CarlaEngineEventPort* const port) const noexcept
  166. {
  167. if (count == 1)
  168. {
  169. CARLA_SAFE_ASSERT_RETURN(port != nullptr,);
  170. carla_zeroStruct(multiportData[0]);
  171. multiportData[0].cachedEventCount = port->getEventCount();
  172. return;
  173. }
  174. for (uint32_t i=0; i < count; ++i)
  175. {
  176. carla_zeroStruct(multiportData[i]);
  177. if (ports[i] != nullptr)
  178. {
  179. ports[i]->initBuffer();
  180. multiportData[i].cachedEventCount = ports[i]->getEventCount();
  181. }
  182. }
  183. }
  184. CARLA_DECLARE_NON_COPY_STRUCT(NativePluginMidiInData)
  185. };
  186. // -----------------------------------------------------
  187. class CarlaPluginNative : public CarlaPlugin
  188. {
  189. public:
  190. CarlaPluginNative(CarlaEngine* const engine, const uint id)
  191. : CarlaPlugin(engine, id),
  192. fHandle(nullptr),
  193. fHandle2(nullptr),
  194. fHost(),
  195. fDescriptor(nullptr),
  196. fIsProcessing(false),
  197. fIsOffline(false),
  198. fIsUiAvailable(false),
  199. fIsUiVisible(false),
  200. fAudioInBuffers(nullptr),
  201. fAudioOutBuffers(nullptr),
  202. fMidiEventInCount(0),
  203. fMidiEventOutCount(0),
  204. fCurBufferSize(engine->getBufferSize()),
  205. fCurSampleRate(engine->getSampleRate()),
  206. fMidiIn(),
  207. fMidiOut(),
  208. fTimeInfo()
  209. {
  210. carla_debug("CarlaPluginNative::CarlaPluginNative(%p, %i)", engine, id);
  211. carla_fill(fCurMidiProgs, 0, MAX_MIDI_CHANNELS);
  212. carla_zeroStructs(fMidiInEvents, kPluginMaxMidiEvents);
  213. carla_zeroStructs(fMidiOutEvents, kPluginMaxMidiEvents);
  214. carla_zeroStruct(fTimeInfo);
  215. fHost.handle = this;
  216. fHost.resourceDir = carla_strdup(engine->getOptions().resourceDir);
  217. fHost.uiName = nullptr;
  218. fHost.uiParentId = engine->getOptions().frontendWinId;
  219. fHost.get_buffer_size = carla_host_get_buffer_size;
  220. fHost.get_sample_rate = carla_host_get_sample_rate;
  221. fHost.is_offline = carla_host_is_offline;
  222. fHost.get_time_info = carla_host_get_time_info;
  223. fHost.write_midi_event = carla_host_write_midi_event;
  224. fHost.ui_parameter_changed = carla_host_ui_parameter_changed;
  225. fHost.ui_custom_data_changed = carla_host_ui_custom_data_changed;
  226. fHost.ui_closed = carla_host_ui_closed;
  227. fHost.ui_open_file = carla_host_ui_open_file;
  228. fHost.ui_save_file = carla_host_ui_save_file;
  229. fHost.dispatcher = carla_host_dispatcher;
  230. }
  231. ~CarlaPluginNative() override
  232. {
  233. carla_debug("CarlaPluginNative::~CarlaPluginNative()");
  234. // close UI
  235. if (pData->hints & PLUGIN_HAS_CUSTOM_UI)
  236. {
  237. if (fIsUiVisible && fDescriptor != nullptr && fDescriptor->ui_show != nullptr && fHandle != nullptr)
  238. fDescriptor->ui_show(fHandle, false);
  239. #ifndef BUILD_BRIDGE
  240. pData->transientTryCounter = 0;
  241. #endif
  242. }
  243. pData->singleMutex.lock();
  244. pData->masterMutex.lock();
  245. if (pData->client != nullptr && pData->client->isActive())
  246. pData->client->deactivate();
  247. CARLA_ASSERT(! fIsProcessing);
  248. if (pData->active)
  249. {
  250. deactivate();
  251. pData->active = false;
  252. }
  253. if (fDescriptor != nullptr)
  254. {
  255. if (fDescriptor->cleanup != nullptr)
  256. {
  257. if (fHandle != nullptr)
  258. fDescriptor->cleanup(fHandle);
  259. if (fHandle2 != nullptr)
  260. fDescriptor->cleanup(fHandle2);
  261. }
  262. fHandle = nullptr;
  263. fHandle2 = nullptr;
  264. fDescriptor = nullptr;
  265. }
  266. if (fHost.resourceDir != nullptr)
  267. {
  268. delete[] fHost.resourceDir;
  269. fHost.resourceDir = nullptr;
  270. }
  271. if (fHost.uiName != nullptr)
  272. {
  273. delete[] fHost.uiName;
  274. fHost.uiName = nullptr;
  275. }
  276. clearBuffers();
  277. }
  278. // -------------------------------------------------------------------
  279. // Information (base)
  280. PluginType getType() const noexcept override
  281. {
  282. return PLUGIN_INTERNAL;
  283. }
  284. PluginCategory getCategory() const noexcept override
  285. {
  286. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, PLUGIN_CATEGORY_NONE);
  287. return static_cast<PluginCategory>(fDescriptor->category);
  288. }
  289. // -------------------------------------------------------------------
  290. // Information (count)
  291. uint32_t getMidiInCount() const noexcept override
  292. {
  293. return fMidiIn.count;
  294. }
  295. uint32_t getMidiOutCount() const noexcept override
  296. {
  297. return fMidiOut.count;
  298. }
  299. uint32_t getParameterScalePointCount(const uint32_t parameterId) const noexcept override
  300. {
  301. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, 0);
  302. CARLA_SAFE_ASSERT_RETURN(fDescriptor->get_parameter_info != nullptr, 0);
  303. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr, 0);
  304. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0);
  305. // FIXME - try
  306. if (const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId))
  307. return param->scalePointCount;
  308. carla_safe_assert("const Parameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId)", __FILE__, __LINE__);
  309. return 0;
  310. }
  311. // -------------------------------------------------------------------
  312. // Information (current data)
  313. // nothing
  314. // -------------------------------------------------------------------
  315. // Information (per-plugin data)
  316. uint getOptionsAvailable() const noexcept override
  317. {
  318. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, 0x0);
  319. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr, 0x0);
  320. bool hasMidiProgs = false;
  321. if (fDescriptor->get_midi_program_count != nullptr)
  322. {
  323. try {
  324. hasMidiProgs = fDescriptor->get_midi_program_count(fHandle) > 0;
  325. } catch (...) {}
  326. }
  327. uint options = 0x0;
  328. // can't disable fixed buffers if required by the plugin
  329. if ((fDescriptor->hints & NATIVE_PLUGIN_NEEDS_FIXED_BUFFERS) == 0x0)
  330. options |= PLUGIN_OPTION_FIXED_BUFFERS;
  331. // can't disable forced stereo if enabled in the engine
  332. if (pData->engine->getOptions().forceStereo)
  333. pass();
  334. // if inputs or outputs are just 1, then yes we can force stereo
  335. else if (pData->audioIn.count == 1 || pData->audioOut.count == 1 || fHandle2 != nullptr)
  336. options |= PLUGIN_OPTION_FORCE_STEREO;
  337. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_CONTROL_CHANGES)
  338. options |= PLUGIN_OPTION_SEND_CONTROL_CHANGES;
  339. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_CHANNEL_PRESSURE)
  340. options |= PLUGIN_OPTION_SEND_CHANNEL_PRESSURE;
  341. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_NOTE_AFTERTOUCH)
  342. options |= PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH;
  343. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_PITCHBEND)
  344. options |= PLUGIN_OPTION_SEND_PITCHBEND;
  345. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_ALL_SOUND_OFF)
  346. options |= PLUGIN_OPTION_SEND_ALL_SOUND_OFF;
  347. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_PROGRAM_CHANGES)
  348. options |= PLUGIN_OPTION_SEND_PROGRAM_CHANGES;
  349. else if (hasMidiProgs)
  350. options |= PLUGIN_OPTION_MAP_PROGRAM_CHANGES;
  351. return options;
  352. }
  353. float getParameterValue(const uint32_t parameterId) const noexcept override
  354. {
  355. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, 0.0f);
  356. CARLA_SAFE_ASSERT_RETURN(fDescriptor->get_parameter_value != nullptr, 0.0f);
  357. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr, 0.0f);
  358. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0.0f);
  359. // FIXME - try
  360. return fDescriptor->get_parameter_value(fHandle, parameterId);
  361. }
  362. float getParameterScalePointValue(const uint32_t parameterId, const uint32_t scalePointId) const noexcept override
  363. {
  364. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, 0.0f);
  365. CARLA_SAFE_ASSERT_RETURN(fDescriptor->get_parameter_info != nullptr, 0.0f);
  366. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr, 0.0f);
  367. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0.0f);
  368. // FIXME - try
  369. if (const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId))
  370. {
  371. CARLA_SAFE_ASSERT_RETURN(scalePointId < param->scalePointCount, 0.0f);
  372. const NativeParameterScalePoint* scalePoint(&param->scalePoints[scalePointId]);
  373. return scalePoint->value;
  374. }
  375. carla_safe_assert("const Parameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId)", __FILE__, __LINE__);
  376. return 0.0f;
  377. }
  378. void getLabel(char* const strBuf) const noexcept override
  379. {
  380. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  381. if (fDescriptor->label != nullptr)
  382. {
  383. std::strncpy(strBuf, fDescriptor->label, STR_MAX);
  384. return;
  385. }
  386. CarlaPlugin::getLabel(strBuf);
  387. }
  388. void getMaker(char* const strBuf) const noexcept override
  389. {
  390. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  391. if (fDescriptor->maker != nullptr)
  392. {
  393. std::strncpy(strBuf, fDescriptor->maker, STR_MAX);
  394. return;
  395. }
  396. CarlaPlugin::getMaker(strBuf);
  397. }
  398. void getCopyright(char* const strBuf) const noexcept override
  399. {
  400. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  401. if (fDescriptor->copyright != nullptr)
  402. {
  403. std::strncpy(strBuf, fDescriptor->copyright, STR_MAX);
  404. return;
  405. }
  406. CarlaPlugin::getCopyright(strBuf);
  407. }
  408. void getRealName(char* const strBuf) const noexcept override
  409. {
  410. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  411. if (fDescriptor->name != nullptr)
  412. {
  413. std::strncpy(strBuf, fDescriptor->name, STR_MAX);
  414. return;
  415. }
  416. CarlaPlugin::getRealName(strBuf);
  417. }
  418. void getParameterName(const uint32_t parameterId, char* const strBuf) const noexcept override
  419. {
  420. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  421. CARLA_SAFE_ASSERT_RETURN(fDescriptor->get_parameter_info != nullptr,);
  422. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  423. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  424. // FIXME - try
  425. if (const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId))
  426. {
  427. if (param->name != nullptr)
  428. {
  429. std::strncpy(strBuf, param->name, STR_MAX);
  430. return;
  431. }
  432. carla_safe_assert("param->name != nullptr", __FILE__, __LINE__);
  433. return CarlaPlugin::getParameterName(parameterId, strBuf);
  434. }
  435. carla_safe_assert("const Parameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId)", __FILE__, __LINE__);
  436. CarlaPlugin::getParameterName(parameterId, strBuf);
  437. }
  438. void getParameterUnit(const uint32_t parameterId, char* const strBuf) const noexcept override
  439. {
  440. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  441. CARLA_SAFE_ASSERT_RETURN(fDescriptor->get_parameter_info != nullptr,);
  442. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  443. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  444. // FIXME - try
  445. if (const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId))
  446. {
  447. if (param->unit != nullptr)
  448. {
  449. std::strncpy(strBuf, param->unit, STR_MAX);
  450. return;
  451. }
  452. return CarlaPlugin::getParameterUnit(parameterId, strBuf);
  453. }
  454. carla_safe_assert("const Parameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId)", __FILE__, __LINE__);
  455. CarlaPlugin::getParameterUnit(parameterId, strBuf);
  456. }
  457. void getParameterScalePointLabel(const uint32_t parameterId, const uint32_t scalePointId, char* const strBuf) const noexcept override
  458. {
  459. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  460. CARLA_SAFE_ASSERT_RETURN(fDescriptor->get_parameter_info != nullptr,);
  461. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  462. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  463. // FIXME - try
  464. if (const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId))
  465. {
  466. CARLA_SAFE_ASSERT_RETURN(scalePointId < param->scalePointCount,);
  467. const NativeParameterScalePoint* scalePoint(&param->scalePoints[scalePointId]);
  468. if (scalePoint->label != nullptr)
  469. {
  470. std::strncpy(strBuf, scalePoint->label, STR_MAX);
  471. return;
  472. }
  473. carla_safe_assert("scalePoint->label != nullptr", __FILE__, __LINE__);
  474. return CarlaPlugin::getParameterScalePointLabel(parameterId, scalePointId, strBuf);
  475. }
  476. carla_safe_assert("const Parameter* const param = fDescriptor->get_parameter_info(fHandle, parameterId)", __FILE__, __LINE__);
  477. CarlaPlugin::getParameterScalePointLabel(parameterId, scalePointId, strBuf);
  478. }
  479. // -------------------------------------------------------------------
  480. // Set data (state)
  481. void prepareForSave() override
  482. {
  483. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  484. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  485. if (pData->midiprog.count > 0 && fDescriptor->category == NATIVE_PLUGIN_CATEGORY_SYNTH)
  486. {
  487. char strBuf[STR_MAX+1];
  488. std::snprintf(strBuf, STR_MAX, "%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i:%i",
  489. fCurMidiProgs[0], fCurMidiProgs[1], fCurMidiProgs[2], fCurMidiProgs[3],
  490. fCurMidiProgs[4], fCurMidiProgs[5], fCurMidiProgs[6], fCurMidiProgs[7],
  491. fCurMidiProgs[8], fCurMidiProgs[9], fCurMidiProgs[10], fCurMidiProgs[11],
  492. fCurMidiProgs[12], fCurMidiProgs[13], fCurMidiProgs[14], fCurMidiProgs[15]);
  493. strBuf[STR_MAX] = '\0';
  494. CarlaPlugin::setCustomData(CUSTOM_DATA_TYPE_STRING, "midiPrograms", strBuf, false);
  495. }
  496. if (fDescriptor == nullptr || fDescriptor->get_state == nullptr || (fDescriptor->hints & NATIVE_PLUGIN_USES_STATE) == 0)
  497. return;
  498. if (char* data = fDescriptor->get_state(fHandle))
  499. {
  500. CarlaPlugin::setCustomData(CUSTOM_DATA_TYPE_CHUNK, "State", data, false);
  501. std::free(data);
  502. }
  503. }
  504. // -------------------------------------------------------------------
  505. // Set data (internal stuff)
  506. void setName(const char* const newName) override
  507. {
  508. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  509. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  510. CARLA_SAFE_ASSERT_RETURN(newName != nullptr && newName[0] != '\0',);
  511. char uiName[std::strlen(newName)+6+1];
  512. std::strcpy(uiName, newName);
  513. std::strcat(uiName, " (GUI)");
  514. if (fHost.uiName != nullptr)
  515. delete[] fHost.uiName;
  516. fHost.uiName = carla_strdup(uiName);
  517. if (fDescriptor->dispatcher != nullptr && fIsUiVisible)
  518. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_UI_NAME_CHANGED, 0, 0, uiName, 0.0f);
  519. CarlaPlugin::setName(newName);
  520. }
  521. void setCtrlChannel(const int8_t channel, const bool sendOsc, const bool sendCallback) noexcept override
  522. {
  523. if (channel >= 0 && channel < MAX_MIDI_CHANNELS && pData->midiprog.count > 0)
  524. pData->midiprog.current = fCurMidiProgs[channel];
  525. CarlaPlugin::setCtrlChannel(channel, sendOsc, sendCallback);
  526. }
  527. // -------------------------------------------------------------------
  528. // Set data (plugin-specific stuff)
  529. void setParameterValue(const uint32_t parameterId, const float value, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept override
  530. {
  531. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  532. CARLA_SAFE_ASSERT_RETURN(fDescriptor->set_parameter_value != nullptr,);
  533. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  534. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  535. const float fixedValue(pData->param.getFixedValue(parameterId, value));
  536. // FIXME - try
  537. fDescriptor->set_parameter_value(fHandle, parameterId, fixedValue);
  538. if (fHandle2 != nullptr)
  539. fDescriptor->set_parameter_value(fHandle2, parameterId, fixedValue);
  540. CarlaPlugin::setParameterValue(parameterId, fixedValue, sendGui, sendOsc, sendCallback);
  541. }
  542. void setParameterValueRT(const uint32_t parameterId, const float value) noexcept override
  543. {
  544. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  545. CARLA_SAFE_ASSERT_RETURN(fDescriptor->set_parameter_value != nullptr,);
  546. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  547. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  548. const float fixedValue(pData->param.getFixedValue(parameterId, value));
  549. // FIXME - try
  550. fDescriptor->set_parameter_value(fHandle, parameterId, fixedValue);
  551. if (fHandle2 != nullptr)
  552. fDescriptor->set_parameter_value(fHandle2, parameterId, fixedValue);
  553. CarlaPlugin::setParameterValueRT(parameterId, fixedValue);
  554. }
  555. void setCustomData(const char* const type, const char* const key, const char* const value, const bool sendGui) override
  556. {
  557. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  558. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  559. CARLA_SAFE_ASSERT_RETURN(type != nullptr && type[0] != '\0',);
  560. CARLA_SAFE_ASSERT_RETURN(key != nullptr && key[0] != '\0',);
  561. CARLA_SAFE_ASSERT_RETURN(value != nullptr,);
  562. carla_debug("CarlaPluginNative::setCustomData(%s, %s, %s, %s)", type, key, value, bool2str(sendGui));
  563. if (std::strcmp(type, CUSTOM_DATA_TYPE_PROPERTY) == 0)
  564. return CarlaPlugin::setCustomData(type, key, value, sendGui);
  565. if (std::strcmp(type, CUSTOM_DATA_TYPE_STRING) != 0 && std::strcmp(type, CUSTOM_DATA_TYPE_CHUNK) != 0)
  566. return carla_stderr2("CarlaPluginNative::setCustomData(\"%s\", \"%s\", \"%s\", %s) - type is invalid", type, key, value, bool2str(sendGui));
  567. if (std::strcmp(type, CUSTOM_DATA_TYPE_CHUNK) == 0)
  568. {
  569. if (fDescriptor->set_state != nullptr && (fDescriptor->hints & NATIVE_PLUGIN_USES_STATE) != 0)
  570. {
  571. const ScopedSingleProcessLocker spl(this, true);
  572. fDescriptor->set_state(fHandle, value);
  573. if (fHandle2 != nullptr)
  574. fDescriptor->set_state(fHandle2, value);
  575. }
  576. }
  577. else if (std::strcmp(key, "midiPrograms") == 0 && fDescriptor->set_midi_program != nullptr)
  578. {
  579. StringArray midiProgramList(StringArray::fromTokens(value, ":", ""));
  580. if (midiProgramList.size() == MAX_MIDI_CHANNELS)
  581. {
  582. uint8_t channel = 0;
  583. for (String *it=midiProgramList.begin(), *end=midiProgramList.end(); it != end; ++it)
  584. {
  585. const int index(it->getIntValue());
  586. if (index >= 0 && index < static_cast<int>(pData->midiprog.count))
  587. {
  588. const uint32_t bank = pData->midiprog.data[index].bank;
  589. const uint32_t program = pData->midiprog.data[index].program;
  590. fDescriptor->set_midi_program(fHandle, channel, bank, program);
  591. if (fHandle2 != nullptr)
  592. fDescriptor->set_midi_program(fHandle2, channel, bank, program);
  593. fCurMidiProgs[channel] = index;
  594. if (pData->ctrlChannel == static_cast<int32_t>(channel))
  595. {
  596. pData->midiprog.current = index;
  597. pData->engine->callback(ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED, pData->id, index, 0, 0.0f, nullptr);
  598. }
  599. }
  600. ++channel;
  601. }
  602. CARLA_SAFE_ASSERT(channel == MAX_MIDI_CHANNELS);
  603. }
  604. }
  605. else
  606. {
  607. if (fDescriptor->set_custom_data != nullptr)
  608. {
  609. fDescriptor->set_custom_data(fHandle, key, value);
  610. if (fHandle2 != nullptr)
  611. fDescriptor->set_custom_data(fHandle2, key, value);
  612. }
  613. if (sendGui && fIsUiVisible && fDescriptor->ui_set_custom_data != nullptr)
  614. fDescriptor->ui_set_custom_data(fHandle, key, value);
  615. }
  616. CarlaPlugin::setCustomData(type, key, value, sendGui);
  617. }
  618. void setMidiProgram(const int32_t index, const bool sendGui, const bool sendOsc, const bool sendCallback, const bool doingInit) noexcept override
  619. {
  620. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  621. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  622. CARLA_SAFE_ASSERT_RETURN(index >= -1 && index < static_cast<int32_t>(pData->midiprog.count),);
  623. CARLA_SAFE_ASSERT_RETURN(sendGui || sendOsc || sendCallback || doingInit,);
  624. // TODO, put into check below
  625. if ((pData->hints & PLUGIN_IS_SYNTH) != 0 && (pData->ctrlChannel < 0 || pData->ctrlChannel >= MAX_MIDI_CHANNELS))
  626. return CarlaPlugin::setMidiProgram(index, sendGui, sendOsc, sendCallback, doingInit);
  627. if (index >= 0)
  628. {
  629. const uint8_t channel = uint8_t((pData->ctrlChannel >= 0 && pData->ctrlChannel < MAX_MIDI_CHANNELS) ? pData->ctrlChannel : 0);
  630. const uint32_t bank = pData->midiprog.data[index].bank;
  631. const uint32_t program = pData->midiprog.data[index].program;
  632. const ScopedSingleProcessLocker spl(this, (sendGui || sendOsc || sendCallback));
  633. try {
  634. fDescriptor->set_midi_program(fHandle, channel, bank, program);
  635. } catch(...) {}
  636. if (fHandle2 != nullptr)
  637. {
  638. try {
  639. fDescriptor->set_midi_program(fHandle2, channel, bank, program);
  640. } catch(...) {}
  641. }
  642. fCurMidiProgs[channel] = index;
  643. }
  644. CarlaPlugin::setMidiProgram(index, sendGui, sendOsc, sendCallback, doingInit);
  645. }
  646. void setMidiProgramRT(const uint32_t index) noexcept override
  647. {
  648. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  649. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  650. CARLA_SAFE_ASSERT_RETURN(index < pData->midiprog.count,);
  651. // TODO, put into check below
  652. if ((pData->hints & PLUGIN_IS_SYNTH) != 0 && (pData->ctrlChannel < 0 || pData->ctrlChannel >= MAX_MIDI_CHANNELS))
  653. return CarlaPlugin::setMidiProgramRT(index);
  654. const uint8_t channel = uint8_t((pData->ctrlChannel >= 0 && pData->ctrlChannel < MAX_MIDI_CHANNELS) ? pData->ctrlChannel : 0);
  655. const uint32_t bank = pData->midiprog.data[index].bank;
  656. const uint32_t program = pData->midiprog.data[index].program;
  657. try {
  658. fDescriptor->set_midi_program(fHandle, channel, bank, program);
  659. } catch(...) {}
  660. if (fHandle2 != nullptr)
  661. {
  662. try {
  663. fDescriptor->set_midi_program(fHandle2, channel, bank, program);
  664. } catch(...) {}
  665. }
  666. fCurMidiProgs[channel] = index;
  667. CarlaPlugin::setMidiProgramRT(index);
  668. }
  669. // -------------------------------------------------------------------
  670. // Set ui stuff
  671. void showCustomUI(const bool yesNo) override
  672. {
  673. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  674. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  675. if (fDescriptor->ui_show == nullptr)
  676. return;
  677. fIsUiAvailable = true;
  678. fDescriptor->ui_show(fHandle, yesNo);
  679. // UI might not be available, see NATIVE_HOST_OPCODE_UI_UNAVAILABLE
  680. if (yesNo && ! fIsUiAvailable)
  681. return;
  682. fIsUiVisible = yesNo;
  683. if (! yesNo)
  684. {
  685. #ifndef BUILD_BRIDGE
  686. pData->transientTryCounter = 0;
  687. #endif
  688. return;
  689. }
  690. #ifndef BUILD_BRIDGE
  691. if ((fDescriptor->hints & NATIVE_PLUGIN_USES_PARENT_ID) == 0 && std::strstr(fDescriptor->label, "file") == nullptr)
  692. pData->tryTransient();
  693. #endif
  694. if (fDescriptor->ui_set_custom_data != nullptr)
  695. {
  696. for (LinkedList<CustomData>::Itenerator it = pData->custom.begin2(); it.valid(); it.next())
  697. {
  698. const CustomData& cData(it.getValue(kCustomDataFallback));
  699. CARLA_SAFE_ASSERT_CONTINUE(cData.isValid());
  700. if (std::strcmp(cData.type, CUSTOM_DATA_TYPE_STRING) == 0 && std::strcmp(cData.key, "midiPrograms") != 0)
  701. fDescriptor->ui_set_custom_data(fHandle, cData.key, cData.value);
  702. }
  703. }
  704. if (fDescriptor->ui_set_midi_program != nullptr && pData->midiprog.current >= 0 && pData->midiprog.count > 0)
  705. {
  706. const int32_t index = pData->midiprog.current;
  707. const uint8_t channel = uint8_t((pData->ctrlChannel >= 0 && pData->ctrlChannel < MAX_MIDI_CHANNELS) ? pData->ctrlChannel : 0);
  708. const uint32_t bank = pData->midiprog.data[index].bank;
  709. const uint32_t program = pData->midiprog.data[index].program;
  710. fDescriptor->ui_set_midi_program(fHandle, channel, bank, program);
  711. }
  712. if (fDescriptor->ui_set_parameter_value != nullptr)
  713. {
  714. for (uint32_t i=0; i < pData->param.count; ++i)
  715. fDescriptor->ui_set_parameter_value(fHandle, i, fDescriptor->get_parameter_value(fHandle, i));
  716. }
  717. }
  718. void uiIdle() override
  719. {
  720. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  721. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  722. if (fIsUiVisible && fDescriptor->ui_idle != nullptr)
  723. fDescriptor->ui_idle(fHandle);
  724. CarlaPlugin::uiIdle();
  725. }
  726. // -------------------------------------------------------------------
  727. // Plugin state
  728. void reload() override
  729. {
  730. CARLA_SAFE_ASSERT_RETURN(pData->engine != nullptr,);
  731. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  732. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  733. carla_debug("CarlaPluginNative::reload() - start");
  734. const EngineProcessMode processMode(pData->engine->getProccessMode());
  735. // Safely disable plugin for reload
  736. const ScopedDisabler sd(this);
  737. if (pData->active)
  738. deactivate();
  739. clearBuffers();
  740. const float sampleRate((float)pData->engine->getSampleRate());
  741. uint32_t aIns, aOuts, mIns, mOuts, params, j;
  742. bool forcedStereoIn, forcedStereoOut;
  743. forcedStereoIn = forcedStereoOut = false;
  744. bool needsCtrlIn, needsCtrlOut;
  745. needsCtrlIn = needsCtrlOut = false;
  746. aIns = fDescriptor->audioIns;
  747. aOuts = fDescriptor->audioOuts;
  748. mIns = fDescriptor->midiIns;
  749. mOuts = fDescriptor->midiOuts;
  750. params = (fDescriptor->get_parameter_count != nullptr && fDescriptor->get_parameter_info != nullptr) ? fDescriptor->get_parameter_count(fHandle) : 0;
  751. if ((pData->options & PLUGIN_OPTION_FORCE_STEREO) != 0 && (aIns == 1 || aOuts == 1) && mIns <= 1 && mOuts <= 1)
  752. {
  753. if (fHandle2 == nullptr)
  754. fHandle2 = fDescriptor->instantiate(&fHost);
  755. if (fHandle2 != nullptr)
  756. {
  757. if (aIns == 1)
  758. {
  759. aIns = 2;
  760. forcedStereoIn = true;
  761. }
  762. if (aOuts == 1)
  763. {
  764. aOuts = 2;
  765. forcedStereoOut = true;
  766. }
  767. }
  768. }
  769. if (aIns > 0)
  770. {
  771. pData->audioIn.createNew(aIns);
  772. fAudioInBuffers = new float*[aIns];
  773. for (uint32_t i=0; i < aIns; ++i)
  774. fAudioInBuffers[i] = nullptr;
  775. }
  776. if (aOuts > 0)
  777. {
  778. pData->audioOut.createNew(aOuts);
  779. fAudioOutBuffers = new float*[aOuts];
  780. needsCtrlIn = true;
  781. for (uint32_t i=0; i < aOuts; ++i)
  782. fAudioOutBuffers[i] = nullptr;
  783. }
  784. if (mIns > 0)
  785. {
  786. fMidiIn.createNew(mIns);
  787. needsCtrlIn = (mIns == 1);
  788. }
  789. if (mOuts > 0)
  790. {
  791. fMidiOut.createNew(mOuts);
  792. needsCtrlOut = (mOuts == 1);
  793. }
  794. if (params > 0)
  795. {
  796. pData->param.createNew(params, true);
  797. }
  798. const uint portNameSize(pData->engine->getMaxPortNameSize());
  799. CarlaString portName;
  800. // Audio Ins
  801. for (j=0; j < aIns; ++j)
  802. {
  803. portName.clear();
  804. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  805. {
  806. portName = pData->name;
  807. portName += ":";
  808. }
  809. if (aIns > 1 && ! forcedStereoIn)
  810. {
  811. portName += "input_";
  812. portName += CarlaString(j+1);
  813. }
  814. else
  815. portName += "input";
  816. portName.truncate(portNameSize);
  817. pData->audioIn.ports[j].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, true, j);
  818. pData->audioIn.ports[j].rindex = j;
  819. if (forcedStereoIn)
  820. {
  821. portName += "_2";
  822. pData->audioIn.ports[1].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, true, 1);
  823. pData->audioIn.ports[1].rindex = j;
  824. break;
  825. }
  826. }
  827. // Audio Outs
  828. for (j=0; j < aOuts; ++j)
  829. {
  830. portName.clear();
  831. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  832. {
  833. portName = pData->name;
  834. portName += ":";
  835. }
  836. if (aOuts > 1 && ! forcedStereoOut)
  837. {
  838. portName += "output_";
  839. portName += CarlaString(j+1);
  840. }
  841. else
  842. portName += "output";
  843. portName.truncate(portNameSize);
  844. pData->audioOut.ports[j].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, false, j);
  845. pData->audioOut.ports[j].rindex = j;
  846. if (forcedStereoOut)
  847. {
  848. portName += "_2";
  849. pData->audioOut.ports[1].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, false, 1);
  850. pData->audioOut.ports[1].rindex = j;
  851. break;
  852. }
  853. }
  854. // MIDI Input (only if multiple)
  855. if (mIns > 1)
  856. {
  857. for (j=0; j < mIns; ++j)
  858. {
  859. portName.clear();
  860. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  861. {
  862. portName = pData->name;
  863. portName += ":";
  864. }
  865. portName += "midi-in_";
  866. portName += CarlaString(j+1);
  867. portName.truncate(portNameSize);
  868. fMidiIn.ports[j] = (CarlaEngineEventPort*)pData->client->addPort(kEnginePortTypeEvent, portName, true, j);
  869. fMidiIn.indexes[j] = j;
  870. }
  871. pData->event.portIn = fMidiIn.ports[0];
  872. }
  873. // MIDI Output (only if multiple)
  874. if (mOuts > 1)
  875. {
  876. for (j=0; j < mOuts; ++j)
  877. {
  878. portName.clear();
  879. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  880. {
  881. portName = pData->name;
  882. portName += ":";
  883. }
  884. portName += "midi-out_";
  885. portName += CarlaString(j+1);
  886. portName.truncate(portNameSize);
  887. fMidiOut.ports[j] = (CarlaEngineEventPort*)pData->client->addPort(kEnginePortTypeEvent, portName, false, j);
  888. fMidiOut.indexes[j] = j;
  889. }
  890. pData->event.portOut = fMidiOut.ports[0];
  891. }
  892. for (j=0; j < params; ++j)
  893. {
  894. const NativeParameter* const paramInfo(fDescriptor->get_parameter_info(fHandle, j));
  895. CARLA_SAFE_ASSERT_CONTINUE(paramInfo != nullptr);
  896. pData->param.data[j].type = PARAMETER_UNKNOWN;
  897. pData->param.data[j].index = static_cast<int32_t>(j);
  898. pData->param.data[j].rindex = static_cast<int32_t>(j);
  899. float min, max, def, step, stepSmall, stepLarge;
  900. // min value
  901. min = paramInfo->ranges.min;
  902. // max value
  903. max = paramInfo->ranges.max;
  904. if (min > max)
  905. max = min;
  906. else if (max < min)
  907. min = max;
  908. if (carla_isEqual(min, max))
  909. {
  910. carla_stderr2("WARNING - Broken plugin parameter '%s': max == min", paramInfo->name);
  911. max = min + 0.1f;
  912. }
  913. // default value
  914. def = paramInfo->ranges.def;
  915. if (def < min)
  916. def = min;
  917. else if (def > max)
  918. def = max;
  919. if (paramInfo->hints & NATIVE_PARAMETER_USES_SAMPLE_RATE)
  920. {
  921. min *= sampleRate;
  922. max *= sampleRate;
  923. def *= sampleRate;
  924. pData->param.data[j].hints |= PARAMETER_USES_SAMPLERATE;
  925. }
  926. if (paramInfo->hints & NATIVE_PARAMETER_IS_BOOLEAN)
  927. {
  928. step = max - min;
  929. stepSmall = step;
  930. stepLarge = step;
  931. pData->param.data[j].hints |= PARAMETER_IS_BOOLEAN;
  932. }
  933. else if (paramInfo->hints & NATIVE_PARAMETER_IS_INTEGER)
  934. {
  935. step = 1.0f;
  936. stepSmall = 1.0f;
  937. stepLarge = 10.0f;
  938. pData->param.data[j].hints |= PARAMETER_IS_INTEGER;
  939. }
  940. else
  941. {
  942. float range = max - min;
  943. step = range/100.0f;
  944. stepSmall = range/1000.0f;
  945. stepLarge = range/10.0f;
  946. }
  947. if (paramInfo->hints & NATIVE_PARAMETER_IS_OUTPUT)
  948. {
  949. pData->param.data[j].type = PARAMETER_OUTPUT;
  950. needsCtrlOut = true;
  951. }
  952. else
  953. {
  954. pData->param.data[j].type = PARAMETER_INPUT;
  955. needsCtrlIn = true;
  956. }
  957. // extra parameter hints
  958. if (paramInfo->hints & NATIVE_PARAMETER_IS_ENABLED)
  959. pData->param.data[j].hints |= PARAMETER_IS_ENABLED;
  960. if (paramInfo->hints & NATIVE_PARAMETER_IS_AUTOMABLE)
  961. pData->param.data[j].hints |= PARAMETER_IS_AUTOMABLE;
  962. if (paramInfo->hints & NATIVE_PARAMETER_IS_LOGARITHMIC)
  963. pData->param.data[j].hints |= PARAMETER_IS_LOGARITHMIC;
  964. if (paramInfo->hints & NATIVE_PARAMETER_USES_SCALEPOINTS)
  965. pData->param.data[j].hints |= PARAMETER_USES_SCALEPOINTS;
  966. pData->param.ranges[j].min = min;
  967. pData->param.ranges[j].max = max;
  968. pData->param.ranges[j].def = def;
  969. pData->param.ranges[j].step = step;
  970. pData->param.ranges[j].stepSmall = stepSmall;
  971. pData->param.ranges[j].stepLarge = stepLarge;
  972. }
  973. if (needsCtrlIn || mIns == 1)
  974. {
  975. portName.clear();
  976. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  977. {
  978. portName = pData->name;
  979. portName += ":";
  980. }
  981. portName += "events-in";
  982. portName.truncate(portNameSize);
  983. pData->event.portIn = (CarlaEngineEventPort*)pData->client->addPort(kEnginePortTypeEvent, portName, true, 0);
  984. }
  985. if (needsCtrlOut || mOuts == 1)
  986. {
  987. portName.clear();
  988. if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
  989. {
  990. portName = pData->name;
  991. portName += ":";
  992. }
  993. portName += "events-out";
  994. portName.truncate(portNameSize);
  995. pData->event.portOut = (CarlaEngineEventPort*)pData->client->addPort(kEnginePortTypeEvent, portName, false, 0);
  996. }
  997. if (forcedStereoIn || forcedStereoOut)
  998. pData->options |= PLUGIN_OPTION_FORCE_STEREO;
  999. else
  1000. pData->options &= ~PLUGIN_OPTION_FORCE_STEREO;
  1001. // plugin hints
  1002. pData->hints = 0x0;
  1003. if (aOuts > 0 && (aIns == aOuts || aIns == 1))
  1004. pData->hints |= PLUGIN_CAN_DRYWET;
  1005. if (aOuts > 0)
  1006. pData->hints |= PLUGIN_CAN_VOLUME;
  1007. if (aOuts >= 2 && aOuts % 2 == 0)
  1008. pData->hints |= PLUGIN_CAN_BALANCE;
  1009. // native plugin hints
  1010. if (fDescriptor->hints & NATIVE_PLUGIN_IS_RTSAFE)
  1011. pData->hints |= PLUGIN_IS_RTSAFE;
  1012. if (fDescriptor->hints & NATIVE_PLUGIN_IS_SYNTH)
  1013. pData->hints |= PLUGIN_IS_SYNTH;
  1014. if (fDescriptor->hints & NATIVE_PLUGIN_HAS_UI)
  1015. pData->hints |= PLUGIN_HAS_CUSTOM_UI;
  1016. if (fDescriptor->hints & NATIVE_PLUGIN_NEEDS_FIXED_BUFFERS)
  1017. pData->hints |= PLUGIN_NEEDS_FIXED_BUFFERS;
  1018. if (fDescriptor->hints & NATIVE_PLUGIN_NEEDS_UI_MAIN_THREAD)
  1019. pData->hints |= PLUGIN_NEEDS_UI_MAIN_THREAD;
  1020. if (fDescriptor->hints & NATIVE_PLUGIN_USES_MULTI_PROGS)
  1021. pData->hints |= PLUGIN_USES_MULTI_PROGS;
  1022. // extra plugin hints
  1023. pData->extraHints = 0x0;
  1024. bufferSizeChanged(pData->engine->getBufferSize());
  1025. reloadPrograms(true);
  1026. if (pData->active)
  1027. activate();
  1028. carla_debug("CarlaPluginNative::reload() - end");
  1029. }
  1030. void reloadPrograms(const bool doInit) override
  1031. {
  1032. carla_debug("CarlaPluginNative::reloadPrograms(%s)", bool2str(doInit));
  1033. uint32_t i, oldCount = pData->midiprog.count;
  1034. const int32_t current = pData->midiprog.current;
  1035. // Delete old programs
  1036. pData->midiprog.clear();
  1037. // Query new programs
  1038. uint32_t count = 0;
  1039. if (fDescriptor->get_midi_program_count != nullptr && fDescriptor->get_midi_program_info != nullptr && fDescriptor->set_midi_program != nullptr)
  1040. count = fDescriptor->get_midi_program_count(fHandle);
  1041. if (count > 0)
  1042. {
  1043. pData->midiprog.createNew(count);
  1044. // Update data
  1045. for (i=0; i < count; ++i)
  1046. {
  1047. const NativeMidiProgram* const mpDesc(fDescriptor->get_midi_program_info(fHandle, i));
  1048. CARLA_SAFE_ASSERT_CONTINUE(mpDesc != nullptr);
  1049. pData->midiprog.data[i].bank = mpDesc->bank;
  1050. pData->midiprog.data[i].program = mpDesc->program;
  1051. pData->midiprog.data[i].name = carla_strdup(mpDesc->name);
  1052. }
  1053. }
  1054. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1055. // Update OSC Names
  1056. if (pData->engine->isOscControlRegistered() && pData->id < pData->engine->getCurrentPluginCount())
  1057. {
  1058. pData->engine->oscSend_control_set_midi_program_count(pData->id, count);
  1059. for (i=0; i < count; ++i)
  1060. 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);
  1061. }
  1062. #endif
  1063. if (doInit)
  1064. {
  1065. if (count > 0)
  1066. setMidiProgram(0, false, false, false, true);
  1067. }
  1068. else
  1069. {
  1070. // Check if current program is invalid
  1071. bool programChanged = false;
  1072. if (count == oldCount+1)
  1073. {
  1074. // one midi program added, probably created by user
  1075. pData->midiprog.current = static_cast<int32_t>(oldCount);
  1076. programChanged = true;
  1077. }
  1078. else if (current < 0 && count > 0)
  1079. {
  1080. // programs exist now, but not before
  1081. pData->midiprog.current = 0;
  1082. programChanged = true;
  1083. }
  1084. else if (current >= 0 && count == 0)
  1085. {
  1086. // programs existed before, but not anymore
  1087. pData->midiprog.current = -1;
  1088. programChanged = true;
  1089. }
  1090. else if (current >= static_cast<int32_t>(count))
  1091. {
  1092. // current midi program > count
  1093. pData->midiprog.current = 0;
  1094. programChanged = true;
  1095. }
  1096. else
  1097. {
  1098. // no change
  1099. pData->midiprog.current = current;
  1100. }
  1101. if (programChanged)
  1102. setMidiProgram(pData->midiprog.current, true, true, true, false);
  1103. pData->engine->callback(ENGINE_CALLBACK_RELOAD_PROGRAMS, pData->id, 0, 0, 0.0f, nullptr);
  1104. }
  1105. }
  1106. // -------------------------------------------------------------------
  1107. // Plugin processing
  1108. void activate() noexcept override
  1109. {
  1110. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1111. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1112. if (fDescriptor->activate != nullptr)
  1113. {
  1114. try {
  1115. fDescriptor->activate(fHandle);
  1116. } catch(...) {}
  1117. if (fHandle2 != nullptr)
  1118. {
  1119. try {
  1120. fDescriptor->activate(fHandle2);
  1121. } catch(...) {}
  1122. }
  1123. }
  1124. }
  1125. void deactivate() noexcept override
  1126. {
  1127. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1128. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1129. if (fDescriptor->deactivate != nullptr)
  1130. {
  1131. try {
  1132. fDescriptor->deactivate(fHandle);
  1133. } catch(...) {}
  1134. if (fHandle2 != nullptr)
  1135. {
  1136. try {
  1137. fDescriptor->deactivate(fHandle2);
  1138. } catch(...) {}
  1139. }
  1140. }
  1141. }
  1142. const EngineEvent& findNextEvent(const uint32_t index)
  1143. {
  1144. if (fMidiIn.count == 1)
  1145. {
  1146. if (index >= fMidiIn.multiportData[0].cachedEventCount)
  1147. return kNullEngineEvent;
  1148. return pData->event.portIn->getEvent(index);
  1149. }
  1150. uint32_t lowestSampleTime = 9999999;
  1151. uint32_t portMatching = 0;
  1152. bool found = false;
  1153. // process events in order for multiple ports
  1154. for (uint32_t m=0; m < fMidiIn.count; ++m)
  1155. {
  1156. CarlaEngineEventPort* const eventPort(fMidiIn.ports[m]);
  1157. NativePluginMidiInData::MultiPortData& multiportData(fMidiIn.multiportData[m]);
  1158. if (multiportData.usedIndex == multiportData.cachedEventCount)
  1159. continue;
  1160. const EngineEvent& event(eventPort->getEventUnchecked(multiportData.usedIndex));
  1161. if (event.time < lowestSampleTime)
  1162. {
  1163. lowestSampleTime = event.time;
  1164. portMatching = m;
  1165. found = true;
  1166. }
  1167. }
  1168. if (found)
  1169. {
  1170. CarlaEngineEventPort* const eventPort(fMidiIn.ports[portMatching]);
  1171. NativePluginMidiInData::MultiPortData& multiportData(fMidiIn.multiportData[portMatching]);
  1172. return eventPort->getEvent(multiportData.usedIndex++);
  1173. }
  1174. return kNullEngineEvent;
  1175. }
  1176. void process(const float** const audioIn, float** const audioOut, const float** const, float** const, const uint32_t frames) override
  1177. {
  1178. // --------------------------------------------------------------------------------------------------------
  1179. // Check if active
  1180. if (! pData->active)
  1181. {
  1182. // disable any output sound
  1183. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1184. carla_zeroFloats(audioOut[i], frames);
  1185. return;
  1186. }
  1187. fMidiEventInCount = fMidiEventOutCount = 0;
  1188. carla_zeroStructs(fMidiInEvents, kPluginMaxMidiEvents);
  1189. carla_zeroStructs(fMidiOutEvents, kPluginMaxMidiEvents);
  1190. // --------------------------------------------------------------------------------------------------------
  1191. // Check if needs reset
  1192. if (pData->needsReset)
  1193. {
  1194. if (pData->options & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1195. {
  1196. fMidiEventInCount = MAX_MIDI_CHANNELS*2;
  1197. for (uint8_t k=0, i=MAX_MIDI_CHANNELS; k < MAX_MIDI_CHANNELS; ++k)
  1198. {
  1199. fMidiInEvents[k].data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (k & MIDI_CHANNEL_BIT));
  1200. fMidiInEvents[k].data[1] = MIDI_CONTROL_ALL_NOTES_OFF;
  1201. fMidiInEvents[k].data[2] = 0;
  1202. fMidiInEvents[k].size = 3;
  1203. fMidiInEvents[k+i].data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (k & MIDI_CHANNEL_BIT));
  1204. fMidiInEvents[k+i].data[1] = MIDI_CONTROL_ALL_SOUND_OFF;
  1205. fMidiInEvents[k+i].data[2] = 0;
  1206. fMidiInEvents[k+i].size = 3;
  1207. }
  1208. }
  1209. else if (pData->ctrlChannel >= 0 && pData->ctrlChannel < MAX_MIDI_CHANNELS)
  1210. {
  1211. fMidiEventInCount = MAX_MIDI_NOTE;
  1212. for (uint8_t k=0; k < MAX_MIDI_NOTE; ++k)
  1213. {
  1214. fMidiInEvents[k].data[0] = uint8_t(MIDI_STATUS_NOTE_OFF | (pData->ctrlChannel & MIDI_CHANNEL_BIT));
  1215. fMidiInEvents[k].data[1] = k;
  1216. fMidiInEvents[k].data[2] = 0;
  1217. fMidiInEvents[k].size = 3;
  1218. }
  1219. }
  1220. pData->needsReset = false;
  1221. }
  1222. // --------------------------------------------------------------------------------------------------------
  1223. // Set TimeInfo
  1224. const EngineTimeInfo& timeInfo(pData->engine->getTimeInfo());
  1225. fTimeInfo.playing = timeInfo.playing;
  1226. fTimeInfo.frame = timeInfo.frame;
  1227. fTimeInfo.usecs = timeInfo.usecs;
  1228. if (timeInfo.bbt.valid)
  1229. {
  1230. fTimeInfo.bbt.valid = true;
  1231. fTimeInfo.bbt.bar = timeInfo.bbt.bar;
  1232. fTimeInfo.bbt.beat = timeInfo.bbt.beat;
  1233. fTimeInfo.bbt.tick = timeInfo.bbt.tick;
  1234. fTimeInfo.bbt.barStartTick = timeInfo.bbt.barStartTick;
  1235. fTimeInfo.bbt.beatsPerBar = timeInfo.bbt.beatsPerBar;
  1236. fTimeInfo.bbt.beatType = timeInfo.bbt.beatType;
  1237. fTimeInfo.bbt.ticksPerBeat = timeInfo.bbt.ticksPerBeat;
  1238. fTimeInfo.bbt.beatsPerMinute = timeInfo.bbt.beatsPerMinute;
  1239. }
  1240. else
  1241. {
  1242. fTimeInfo.bbt.valid = false;
  1243. }
  1244. // --------------------------------------------------------------------------------------------------------
  1245. // Event Input and Processing
  1246. if (pData->event.portIn != nullptr)
  1247. {
  1248. // ----------------------------------------------------------------------------------------------------
  1249. // MIDI Input (External)
  1250. if (pData->extNotes.mutex.tryLock())
  1251. {
  1252. ExternalMidiNote note = { 0, 0, 0 };
  1253. for (; fMidiEventInCount < kPluginMaxMidiEvents && ! pData->extNotes.data.isEmpty();)
  1254. {
  1255. note = pData->extNotes.data.getFirst(note, true);
  1256. CARLA_SAFE_ASSERT_CONTINUE(note.channel >= 0 && note.channel < MAX_MIDI_CHANNELS);
  1257. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1258. nativeEvent.data[0] = uint8_t((note.velo > 0 ? MIDI_STATUS_NOTE_ON : MIDI_STATUS_NOTE_OFF) | (note.channel & MIDI_CHANNEL_BIT));
  1259. nativeEvent.data[1] = note.note;
  1260. nativeEvent.data[2] = note.velo;
  1261. nativeEvent.size = 3;
  1262. }
  1263. pData->extNotes.mutex.unlock();
  1264. } // End of MIDI Input (External)
  1265. // ----------------------------------------------------------------------------------------------------
  1266. // Event Input (System)
  1267. #ifndef BUILD_BRIDGE
  1268. bool allNotesOffSent = false;
  1269. #endif
  1270. bool sampleAccurate = (pData->options & PLUGIN_OPTION_FIXED_BUFFERS) == 0;
  1271. uint32_t startTime = 0;
  1272. uint32_t timeOffset = 0;
  1273. uint32_t nextBankId;
  1274. if (pData->midiprog.current >= 0 && pData->midiprog.count > 0)
  1275. nextBankId = pData->midiprog.data[pData->midiprog.current].bank;
  1276. else
  1277. nextBankId = 0;
  1278. for (uint32_t i=0;; ++i)
  1279. {
  1280. const EngineEvent& event(findNextEvent(i));
  1281. if (event.type == kEngineEventTypeNull)
  1282. break;
  1283. uint32_t eventTime = event.time;
  1284. CARLA_SAFE_ASSERT_UINT2_CONTINUE(eventTime < frames, eventTime, frames);
  1285. if (eventTime < timeOffset)
  1286. {
  1287. carla_stderr2("Timing error, eventTime:%u < timeOffset:%u for '%s'",
  1288. eventTime, timeOffset, pData->name);
  1289. eventTime = timeOffset;
  1290. }
  1291. if (sampleAccurate && eventTime > timeOffset)
  1292. {
  1293. if (processSingle(audioIn, audioOut, eventTime - timeOffset, timeOffset))
  1294. {
  1295. startTime = 0;
  1296. timeOffset = eventTime;
  1297. if (pData->midiprog.current >= 0 && pData->midiprog.count > 0)
  1298. nextBankId = pData->midiprog.data[pData->midiprog.current].bank;
  1299. else
  1300. nextBankId = 0;
  1301. if (fMidiEventInCount > 0)
  1302. {
  1303. carla_zeroStructs(fMidiInEvents, fMidiEventInCount);
  1304. fMidiEventInCount = 0;
  1305. }
  1306. if (fMidiEventOutCount > 0)
  1307. {
  1308. carla_zeroStructs(fMidiOutEvents, fMidiEventOutCount);
  1309. fMidiEventOutCount = 0;
  1310. }
  1311. }
  1312. else
  1313. startTime += timeOffset;
  1314. }
  1315. // Control change
  1316. switch (event.type)
  1317. {
  1318. case kEngineEventTypeNull:
  1319. break;
  1320. case kEngineEventTypeControl: {
  1321. const EngineControlEvent& ctrlEvent = event.ctrl;
  1322. switch (ctrlEvent.type)
  1323. {
  1324. case kEngineControlEventTypeNull:
  1325. break;
  1326. case kEngineControlEventTypeParameter: {
  1327. #ifndef BUILD_BRIDGE
  1328. // Control backend stuff
  1329. if (event.channel == pData->ctrlChannel)
  1330. {
  1331. float value;
  1332. if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) > 0)
  1333. {
  1334. value = ctrlEvent.value;
  1335. setDryWetRT(value);
  1336. }
  1337. if (MIDI_IS_CONTROL_CHANNEL_VOLUME(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_VOLUME) > 0)
  1338. {
  1339. value = ctrlEvent.value*127.0f/100.0f;
  1340. setVolumeRT(value);
  1341. }
  1342. if (MIDI_IS_CONTROL_BALANCE(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_BALANCE) > 0)
  1343. {
  1344. float left, right;
  1345. value = ctrlEvent.value/0.5f - 1.0f;
  1346. if (value < 0.0f)
  1347. {
  1348. left = -1.0f;
  1349. right = (value*2.0f)+1.0f;
  1350. }
  1351. else if (value > 0.0f)
  1352. {
  1353. left = (value*2.0f)-1.0f;
  1354. right = 1.0f;
  1355. }
  1356. else
  1357. {
  1358. left = -1.0f;
  1359. right = 1.0f;
  1360. }
  1361. setBalanceLeftRT(left);
  1362. setBalanceRightRT(right);
  1363. }
  1364. }
  1365. #endif
  1366. // Control plugin parameters
  1367. for (uint32_t k=0; k < pData->param.count; ++k)
  1368. {
  1369. if (pData->param.data[k].midiChannel != event.channel)
  1370. continue;
  1371. if (pData->param.data[k].midiCC != ctrlEvent.param)
  1372. continue;
  1373. if (pData->param.data[k].type != PARAMETER_INPUT)
  1374. continue;
  1375. if ((pData->param.data[k].hints & PARAMETER_IS_AUTOMABLE) == 0)
  1376. continue;
  1377. float value;
  1378. if (pData->param.data[k].hints & PARAMETER_IS_BOOLEAN)
  1379. {
  1380. value = (ctrlEvent.value < 0.5f) ? pData->param.ranges[k].min : pData->param.ranges[k].max;
  1381. }
  1382. else
  1383. {
  1384. if (pData->param.data[k].hints & PARAMETER_IS_LOGARITHMIC)
  1385. value = pData->param.ranges[k].getUnnormalizedLogValue(ctrlEvent.value);
  1386. else
  1387. value = pData->param.ranges[k].getUnnormalizedValue(ctrlEvent.value);
  1388. if (pData->param.data[k].hints & PARAMETER_IS_INTEGER)
  1389. value = std::rint(value);
  1390. }
  1391. setParameterValueRT(k, value);
  1392. }
  1393. if ((pData->options & PLUGIN_OPTION_SEND_CONTROL_CHANGES) != 0 && ctrlEvent.param < MAX_MIDI_CONTROL)
  1394. {
  1395. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1396. continue;
  1397. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1398. carla_zeroStruct(nativeEvent);
  1399. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1400. nativeEvent.data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1401. nativeEvent.data[1] = uint8_t(ctrlEvent.param);
  1402. nativeEvent.data[2] = uint8_t(ctrlEvent.value*127.0f);
  1403. nativeEvent.size = 3;
  1404. }
  1405. break;
  1406. } // case kEngineControlEventTypeParameter
  1407. case kEngineControlEventTypeMidiBank:
  1408. if (pData->options & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  1409. {
  1410. if (event.channel == pData->ctrlChannel)
  1411. nextBankId = ctrlEvent.param;
  1412. }
  1413. else if (pData->options & PLUGIN_OPTION_SEND_PROGRAM_CHANGES)
  1414. {
  1415. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1416. continue;
  1417. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1418. carla_zeroStruct(nativeEvent);
  1419. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1420. nativeEvent.data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1421. nativeEvent.data[1] = MIDI_CONTROL_BANK_SELECT;
  1422. nativeEvent.data[2] = uint8_t(ctrlEvent.param);
  1423. nativeEvent.size = 3;
  1424. }
  1425. break;
  1426. case kEngineControlEventTypeMidiProgram:
  1427. if (pData->options & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  1428. {
  1429. if (event.channel < MAX_MIDI_CHANNELS)
  1430. {
  1431. const uint32_t nextProgramId(ctrlEvent.param);
  1432. for (uint32_t k=0; k < pData->midiprog.count; ++k)
  1433. {
  1434. if (pData->midiprog.data[k].bank == nextBankId && pData->midiprog.data[k].program == nextProgramId)
  1435. {
  1436. fDescriptor->set_midi_program(fHandle, event.channel, nextBankId, nextProgramId);
  1437. if (fHandle2 != nullptr)
  1438. fDescriptor->set_midi_program(fHandle2, event.channel, nextBankId, nextProgramId);
  1439. fCurMidiProgs[event.channel] = static_cast<int32_t>(k);
  1440. if (event.channel == pData->ctrlChannel)
  1441. pData->postponeRtEvent(kPluginPostRtEventMidiProgramChange, static_cast<int32_t>(k), 0, 0.0f);
  1442. break;
  1443. }
  1444. }
  1445. }
  1446. }
  1447. else if (pData->options & PLUGIN_OPTION_SEND_PROGRAM_CHANGES)
  1448. {
  1449. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1450. continue;
  1451. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1452. carla_zeroStruct(nativeEvent);
  1453. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1454. nativeEvent.data[0] = uint8_t(MIDI_STATUS_PROGRAM_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1455. nativeEvent.data[1] = uint8_t(ctrlEvent.param);
  1456. nativeEvent.size = 2;
  1457. }
  1458. break;
  1459. case kEngineControlEventTypeAllSoundOff:
  1460. if (pData->options & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1461. {
  1462. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1463. continue;
  1464. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1465. carla_zeroStruct(nativeEvent);
  1466. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1467. nativeEvent.data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1468. nativeEvent.data[1] = MIDI_CONTROL_ALL_SOUND_OFF;
  1469. nativeEvent.data[2] = 0;
  1470. nativeEvent.size = 3;
  1471. }
  1472. break;
  1473. case kEngineControlEventTypeAllNotesOff:
  1474. if (pData->options & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1475. {
  1476. #ifndef BUILD_BRIDGE
  1477. if (event.channel == pData->ctrlChannel && ! allNotesOffSent)
  1478. {
  1479. allNotesOffSent = true;
  1480. sendMidiAllNotesOffToCallback();
  1481. }
  1482. #endif
  1483. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1484. continue;
  1485. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1486. carla_zeroStruct(nativeEvent);
  1487. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1488. nativeEvent.data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1489. nativeEvent.data[1] = MIDI_CONTROL_ALL_NOTES_OFF;
  1490. nativeEvent.data[2] = 0;
  1491. nativeEvent.size = 3;
  1492. }
  1493. break;
  1494. }
  1495. break;
  1496. }
  1497. case kEngineEventTypeMidi: {
  1498. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1499. continue;
  1500. const EngineMidiEvent& midiEvent(event.midi);
  1501. if (midiEvent.size > 4)
  1502. continue;
  1503. #ifdef CARLA_PROPER_CPP11_SUPPORT
  1504. static_assert(4 <= EngineMidiEvent::kDataSize, "Incorrect data");
  1505. #endif
  1506. uint8_t status = uint8_t(MIDI_GET_STATUS_FROM_DATA(midiEvent.data));
  1507. if (status == MIDI_STATUS_CHANNEL_PRESSURE && (pData->options & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE) == 0)
  1508. continue;
  1509. if (status == MIDI_STATUS_CONTROL_CHANGE && (pData->options & PLUGIN_OPTION_SEND_CONTROL_CHANGES) == 0)
  1510. continue;
  1511. if (status == MIDI_STATUS_POLYPHONIC_AFTERTOUCH && (pData->options & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH) == 0)
  1512. continue;
  1513. if (status == MIDI_STATUS_PITCH_WHEEL_CONTROL && (pData->options & PLUGIN_OPTION_SEND_PITCHBEND) == 0)
  1514. continue;
  1515. // Fix bad note-off
  1516. if (status == MIDI_STATUS_NOTE_ON && midiEvent.data[2] == 0)
  1517. status = MIDI_STATUS_NOTE_OFF;
  1518. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1519. carla_zeroStruct(nativeEvent);
  1520. nativeEvent.port = midiEvent.port;
  1521. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1522. nativeEvent.size = midiEvent.size;
  1523. nativeEvent.data[0] = uint8_t(status | (event.channel & MIDI_CHANNEL_BIT));
  1524. nativeEvent.data[1] = midiEvent.size >= 2 ? midiEvent.data[1] : 0;
  1525. nativeEvent.data[2] = midiEvent.size >= 3 ? midiEvent.data[2] : 0;
  1526. nativeEvent.data[3] = midiEvent.size == 4 ? midiEvent.data[3] : 0;
  1527. if (status == MIDI_STATUS_NOTE_ON)
  1528. pData->postponeRtEvent(kPluginPostRtEventNoteOn, event.channel, midiEvent.data[1], midiEvent.data[2]);
  1529. else if (status == MIDI_STATUS_NOTE_OFF)
  1530. pData->postponeRtEvent(kPluginPostRtEventNoteOff, event.channel, midiEvent.data[1], 0.0f);
  1531. } break;
  1532. } // switch (event.type)
  1533. }
  1534. pData->postRtEvents.trySplice();
  1535. if (frames > timeOffset)
  1536. processSingle(audioIn, audioOut, frames - timeOffset, timeOffset);
  1537. } // End of Event Input and Processing
  1538. // --------------------------------------------------------------------------------------------------------
  1539. // Plugin processing (no events)
  1540. else
  1541. {
  1542. processSingle(audioIn, audioOut, frames, 0);
  1543. } // End of Plugin processing (no events)
  1544. #ifndef BUILD_BRIDGE
  1545. // --------------------------------------------------------------------------------------------------------
  1546. // Control Output
  1547. if (pData->event.portOut != nullptr)
  1548. {
  1549. float value, curValue;
  1550. for (uint32_t k=0; k < pData->param.count; ++k)
  1551. {
  1552. if (pData->param.data[k].type != PARAMETER_OUTPUT)
  1553. continue;
  1554. curValue = fDescriptor->get_parameter_value(fHandle, k);
  1555. pData->param.ranges[k].fixValue(curValue);
  1556. if (pData->param.data[k].midiCC > 0)
  1557. {
  1558. value = pData->param.ranges[k].getNormalizedValue(curValue);
  1559. pData->event.portOut->writeControlEvent(0, pData->param.data[k].midiChannel, kEngineControlEventTypeParameter, static_cast<uint16_t>(pData->param.data[k].midiCC), value);
  1560. }
  1561. }
  1562. } // End of Control Output
  1563. #endif
  1564. }
  1565. bool processSingle(const float** const audioIn, float** const audioOut, const uint32_t frames, const uint32_t timeOffset)
  1566. {
  1567. CARLA_SAFE_ASSERT_RETURN(frames > 0, false);
  1568. if (pData->audioIn.count > 0)
  1569. {
  1570. CARLA_SAFE_ASSERT_RETURN(audioIn != nullptr, false);
  1571. }
  1572. if (pData->audioOut.count > 0)
  1573. {
  1574. CARLA_SAFE_ASSERT_RETURN(audioOut != nullptr, false);
  1575. }
  1576. // --------------------------------------------------------------------------------------------------------
  1577. // Try lock, silence otherwise
  1578. if (fIsOffline)
  1579. {
  1580. pData->singleMutex.lock();
  1581. }
  1582. else if (! pData->singleMutex.tryLock())
  1583. {
  1584. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1585. {
  1586. for (uint32_t k=0; k < frames; ++k)
  1587. audioOut[i][k+timeOffset] = 0.0f;
  1588. }
  1589. return false;
  1590. }
  1591. // --------------------------------------------------------------------------------------------------------
  1592. // Set audio buffers
  1593. for (uint32_t i=0; i < pData->audioIn.count; ++i)
  1594. carla_copyFloats(fAudioInBuffers[i], audioIn[i]+timeOffset, frames);
  1595. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1596. carla_zeroFloats(fAudioOutBuffers[i], frames);
  1597. // --------------------------------------------------------------------------------------------------------
  1598. // Run plugin
  1599. fIsProcessing = true;
  1600. if (fHandle2 == nullptr)
  1601. {
  1602. fDescriptor->process(fHandle, fAudioInBuffers, fAudioOutBuffers, frames, fMidiInEvents, fMidiEventInCount);
  1603. }
  1604. else
  1605. {
  1606. fDescriptor->process(fHandle,
  1607. (pData->audioIn.count > 0) ? &fAudioInBuffers[0] : nullptr,
  1608. (pData->audioOut.count > 0) ? &fAudioOutBuffers[0] : nullptr,
  1609. frames, fMidiInEvents, fMidiEventInCount);
  1610. fDescriptor->process(fHandle2,
  1611. (pData->audioIn.count > 0) ? &fAudioInBuffers[1] : nullptr,
  1612. (pData->audioOut.count > 0) ? &fAudioOutBuffers[1] : nullptr,
  1613. frames, fMidiInEvents, fMidiEventInCount);
  1614. }
  1615. fIsProcessing = false;
  1616. fTimeInfo.frame += frames;
  1617. #ifndef BUILD_BRIDGE
  1618. // --------------------------------------------------------------------------------------------------------
  1619. // Post-processing (dry/wet, volume and balance)
  1620. {
  1621. const bool doDryWet = (pData->hints & PLUGIN_CAN_DRYWET) != 0 && carla_isNotEqual(pData->postProc.dryWet, 1.0f);
  1622. const bool doBalance = (pData->hints & PLUGIN_CAN_BALANCE) != 0 && ! (carla_isEqual(pData->postProc.balanceLeft, -1.0f) && carla_isEqual(pData->postProc.balanceRight, 1.0f));
  1623. bool isPair;
  1624. float bufValue, oldBufLeft[doBalance ? frames : 1];
  1625. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1626. {
  1627. // Dry/Wet
  1628. if (doDryWet)
  1629. {
  1630. for (uint32_t k=0; k < frames; ++k)
  1631. {
  1632. bufValue = fAudioInBuffers[(pData->audioIn.count == 1) ? 0 : i][k];
  1633. fAudioOutBuffers[i][k] = (fAudioOutBuffers[i][k] * pData->postProc.dryWet) + (bufValue * (1.0f - pData->postProc.dryWet));
  1634. }
  1635. }
  1636. // Balance
  1637. if (doBalance)
  1638. {
  1639. isPair = (i % 2 == 0);
  1640. if (isPair)
  1641. {
  1642. CARLA_ASSERT(i+1 < pData->audioOut.count);
  1643. carla_copyFloats(oldBufLeft, fAudioOutBuffers[i], frames);
  1644. }
  1645. float balRangeL = (pData->postProc.balanceLeft + 1.0f)/2.0f;
  1646. float balRangeR = (pData->postProc.balanceRight + 1.0f)/2.0f;
  1647. for (uint32_t k=0; k < frames; ++k)
  1648. {
  1649. if (isPair)
  1650. {
  1651. // left
  1652. fAudioOutBuffers[i][k] = oldBufLeft[k] * (1.0f - balRangeL);
  1653. fAudioOutBuffers[i][k] += fAudioOutBuffers[i+1][k] * (1.0f - balRangeR);
  1654. }
  1655. else
  1656. {
  1657. // right
  1658. fAudioOutBuffers[i][k] = fAudioOutBuffers[i][k] * balRangeR;
  1659. fAudioOutBuffers[i][k] += oldBufLeft[k] * balRangeL;
  1660. }
  1661. }
  1662. }
  1663. // Volume (and buffer copy)
  1664. {
  1665. for (uint32_t k=0; k < frames; ++k)
  1666. audioOut[i][k+timeOffset] = fAudioOutBuffers[i][k] * pData->postProc.volume;
  1667. }
  1668. }
  1669. } // End of Post-processing
  1670. #else
  1671. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1672. {
  1673. for (uint32_t k=0; k < frames; ++k)
  1674. audioOut[i][k+timeOffset] = fAudioOutBuffers[i][k];
  1675. }
  1676. #endif
  1677. // --------------------------------------------------------------------------------------------------------
  1678. // MIDI Output
  1679. if (pData->event.portOut != nullptr)
  1680. {
  1681. for (uint32_t k = 0; k < fMidiEventOutCount; ++k)
  1682. {
  1683. const uint8_t channel = uint8_t(MIDI_GET_CHANNEL_FROM_DATA(fMidiOutEvents[k].data));
  1684. const uint8_t port = fMidiOutEvents[k].port;
  1685. if (fMidiOut.count > 1 && port < fMidiOut.count)
  1686. fMidiOut.ports[port]->writeMidiEvent(fMidiOutEvents[k].time+timeOffset, channel, fMidiOutEvents[k].size, fMidiOutEvents[k].data);
  1687. else
  1688. pData->event.portOut->writeMidiEvent(fMidiOutEvents[k].time+timeOffset, channel, fMidiOutEvents[k].size, fMidiOutEvents[k].data);
  1689. }
  1690. }
  1691. // --------------------------------------------------------------------------------------------------------
  1692. pData->singleMutex.unlock();
  1693. return true;
  1694. }
  1695. void bufferSizeChanged(const uint32_t newBufferSize) override
  1696. {
  1697. CARLA_ASSERT_INT(newBufferSize > 0, newBufferSize);
  1698. carla_debug("CarlaPluginNative::bufferSizeChanged(%i)", newBufferSize);
  1699. for (uint32_t i=0; i < pData->audioIn.count; ++i)
  1700. {
  1701. if (fAudioInBuffers[i] != nullptr)
  1702. delete[] fAudioInBuffers[i];
  1703. fAudioInBuffers[i] = new float[newBufferSize];
  1704. }
  1705. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1706. {
  1707. if (fAudioOutBuffers[i] != nullptr)
  1708. delete[] fAudioOutBuffers[i];
  1709. fAudioOutBuffers[i] = new float[newBufferSize];
  1710. }
  1711. if (fCurBufferSize == newBufferSize)
  1712. return;
  1713. fCurBufferSize = newBufferSize;
  1714. if (fDescriptor != nullptr && fDescriptor->dispatcher != nullptr)
  1715. {
  1716. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_BUFFER_SIZE_CHANGED, 0, static_cast<intptr_t>(newBufferSize), nullptr, 0.0f);
  1717. if (fHandle2 != nullptr)
  1718. fDescriptor->dispatcher(fHandle2, NATIVE_PLUGIN_OPCODE_BUFFER_SIZE_CHANGED, 0, static_cast<intptr_t>(newBufferSize), nullptr, 0.0f);
  1719. }
  1720. }
  1721. void sampleRateChanged(const double newSampleRate) override
  1722. {
  1723. CARLA_ASSERT_INT(newSampleRate > 0.0, newSampleRate);
  1724. carla_debug("CarlaPluginNative::sampleRateChanged(%g)", newSampleRate);
  1725. if (carla_isEqual(fCurSampleRate, newSampleRate))
  1726. return;
  1727. fCurSampleRate = newSampleRate;
  1728. if (fDescriptor != nullptr && fDescriptor->dispatcher != nullptr)
  1729. {
  1730. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_SAMPLE_RATE_CHANGED, 0, 0, nullptr, float(newSampleRate));
  1731. if (fHandle2 != nullptr)
  1732. fDescriptor->dispatcher(fHandle2, NATIVE_PLUGIN_OPCODE_SAMPLE_RATE_CHANGED, 0, 0, nullptr, float(newSampleRate));
  1733. }
  1734. }
  1735. void offlineModeChanged(const bool isOffline) override
  1736. {
  1737. if (fIsOffline == isOffline)
  1738. return;
  1739. fIsOffline = isOffline;
  1740. if (fDescriptor != nullptr && fDescriptor->dispatcher != nullptr)
  1741. {
  1742. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_OFFLINE_CHANGED, 0, isOffline ? 1 : 0, nullptr, 0.0f);
  1743. if (fHandle2 != nullptr)
  1744. fDescriptor->dispatcher(fHandle2, NATIVE_PLUGIN_OPCODE_OFFLINE_CHANGED, 0, isOffline ? 1 : 0, nullptr, 0.0f);
  1745. }
  1746. }
  1747. // -------------------------------------------------------------------
  1748. // Plugin buffers
  1749. void initBuffers() const noexcept override
  1750. {
  1751. CarlaPlugin::initBuffers();
  1752. fMidiIn.initBuffers(pData->event.portIn);
  1753. fMidiOut.initBuffers();
  1754. }
  1755. void clearBuffers() noexcept override
  1756. {
  1757. carla_debug("CarlaPluginNative::clearBuffers() - start");
  1758. if (fAudioInBuffers != nullptr)
  1759. {
  1760. for (uint32_t i=0; i < pData->audioIn.count; ++i)
  1761. {
  1762. if (fAudioInBuffers[i] != nullptr)
  1763. {
  1764. delete[] fAudioInBuffers[i];
  1765. fAudioInBuffers[i] = nullptr;
  1766. }
  1767. }
  1768. delete[] fAudioInBuffers;
  1769. fAudioInBuffers = nullptr;
  1770. }
  1771. if (fAudioOutBuffers != nullptr)
  1772. {
  1773. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1774. {
  1775. if (fAudioOutBuffers[i] != nullptr)
  1776. {
  1777. delete[] fAudioOutBuffers[i];
  1778. fAudioOutBuffers[i] = nullptr;
  1779. }
  1780. }
  1781. delete[] fAudioOutBuffers;
  1782. fAudioOutBuffers = nullptr;
  1783. }
  1784. if (fMidiIn.count > 1)
  1785. pData->event.portIn = nullptr;
  1786. if (fMidiOut.count > 1)
  1787. pData->event.portOut = nullptr;
  1788. fMidiIn.clear();
  1789. fMidiOut.clear();
  1790. CarlaPlugin::clearBuffers();
  1791. carla_debug("CarlaPluginNative::clearBuffers() - end");
  1792. }
  1793. // -------------------------------------------------------------------
  1794. // Post-poned UI Stuff
  1795. void uiParameterChange(const uint32_t index, const float value) noexcept override
  1796. {
  1797. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1798. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1799. CARLA_SAFE_ASSERT_RETURN(index < pData->param.count,);
  1800. if (! fIsUiVisible)
  1801. return;
  1802. if (fDescriptor->ui_set_parameter_value != nullptr)
  1803. fDescriptor->ui_set_parameter_value(fHandle, index, value);
  1804. }
  1805. void uiMidiProgramChange(const uint32_t index) noexcept override
  1806. {
  1807. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1808. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1809. CARLA_SAFE_ASSERT_RETURN(index < pData->midiprog.count,);
  1810. if (! fIsUiVisible)
  1811. return;
  1812. if (index >= pData->midiprog.count)
  1813. return;
  1814. if (fDescriptor->ui_set_midi_program != nullptr)
  1815. fDescriptor->ui_set_midi_program(fHandle, 0, pData->midiprog.data[index].bank, pData->midiprog.data[index].program);
  1816. }
  1817. void uiNoteOn(const uint8_t channel, const uint8_t note, const uint8_t velo) noexcept override
  1818. {
  1819. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1820. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1821. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  1822. CARLA_SAFE_ASSERT_RETURN(note < MAX_MIDI_NOTE,);
  1823. CARLA_SAFE_ASSERT_RETURN(velo > 0 && velo < MAX_MIDI_VALUE,);
  1824. if (! fIsUiVisible)
  1825. return;
  1826. // TODO
  1827. }
  1828. void uiNoteOff(const uint8_t channel, const uint8_t note) noexcept override
  1829. {
  1830. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1831. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1832. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  1833. CARLA_SAFE_ASSERT_RETURN(note < MAX_MIDI_NOTE,);
  1834. if (! fIsUiVisible)
  1835. return;
  1836. if (fDescriptor == nullptr || fHandle == nullptr)
  1837. return;
  1838. // TODO
  1839. }
  1840. // -------------------------------------------------------------------
  1841. protected:
  1842. const NativeTimeInfo* handleGetTimeInfo() const noexcept
  1843. {
  1844. CARLA_SAFE_ASSERT_RETURN(fIsProcessing, nullptr);
  1845. return &fTimeInfo;
  1846. }
  1847. bool handleWriteMidiEvent(const NativeMidiEvent* const event)
  1848. {
  1849. CARLA_SAFE_ASSERT_RETURN(pData->enabled, false);
  1850. CARLA_SAFE_ASSERT_RETURN(fIsProcessing, false);
  1851. CARLA_SAFE_ASSERT_RETURN(fMidiOut.count > 0 || pData->event.portOut != nullptr, false);
  1852. CARLA_SAFE_ASSERT_RETURN(event != nullptr, false);
  1853. CARLA_SAFE_ASSERT_RETURN(event->data[0] != 0, false);
  1854. if (fMidiEventOutCount == kPluginMaxMidiEvents)
  1855. {
  1856. carla_stdout("CarlaPluginNative::handleWriteMidiEvent(%p) - buffer full", event);
  1857. return false;
  1858. }
  1859. std::memcpy(&fMidiOutEvents[fMidiEventOutCount++], event, sizeof(NativeMidiEvent));
  1860. return true;
  1861. }
  1862. void handleUiParameterChanged(const uint32_t index, const float value)
  1863. {
  1864. setParameterValue(index, value, false, true, true);
  1865. }
  1866. void handleUiCustomDataChanged(const char* const key, const char* const value)
  1867. {
  1868. setCustomData(CUSTOM_DATA_TYPE_STRING, key, value, false);
  1869. }
  1870. void handleUiClosed()
  1871. {
  1872. pData->engine->callback(ENGINE_CALLBACK_UI_STATE_CHANGED, pData->id, 0, 0, 0.0f, nullptr);
  1873. fIsUiVisible = false;
  1874. }
  1875. const char* handleUiOpenFile(const bool isDir, const char* const title, const char* const filter)
  1876. {
  1877. return pData->engine->runFileCallback(FILE_CALLBACK_OPEN, isDir, title, filter);
  1878. }
  1879. const char* handleUiSaveFile(const bool isDir, const char* const title, const char* const filter)
  1880. {
  1881. return pData->engine->runFileCallback(FILE_CALLBACK_SAVE, isDir, title, filter);
  1882. }
  1883. intptr_t handleDispatcher(const NativeHostDispatcherOpcode opcode, const int32_t index, const intptr_t value, void* const ptr, const float opt)
  1884. {
  1885. carla_debug("CarlaPluginNative::handleDispatcher(%i, %i, " P_INTPTR ", %p, %f)", opcode, index, value, ptr, opt);
  1886. intptr_t ret = 0;
  1887. switch (opcode)
  1888. {
  1889. case NATIVE_HOST_OPCODE_NULL:
  1890. break;
  1891. case NATIVE_HOST_OPCODE_UPDATE_PARAMETER:
  1892. // TODO
  1893. pData->engine->callback(ENGINE_CALLBACK_UPDATE, pData->id, -1, 0, 0.0f, nullptr);
  1894. break;
  1895. case NATIVE_HOST_OPCODE_UPDATE_MIDI_PROGRAM:
  1896. // TODO
  1897. pData->engine->callback(ENGINE_CALLBACK_UPDATE, pData->id, -1, 0, 0.0f, nullptr);
  1898. break;
  1899. case NATIVE_HOST_OPCODE_RELOAD_PARAMETERS:
  1900. reload(); // FIXME
  1901. pData->engine->callback(ENGINE_CALLBACK_RELOAD_PARAMETERS, pData->id, -1, 0, 0.0f, nullptr);
  1902. break;
  1903. case NATIVE_HOST_OPCODE_RELOAD_MIDI_PROGRAMS:
  1904. reloadPrograms(false);
  1905. pData->engine->callback(ENGINE_CALLBACK_RELOAD_PROGRAMS, pData->id, -1, 0, 0.0f, nullptr);
  1906. break;
  1907. case NATIVE_HOST_OPCODE_RELOAD_ALL:
  1908. reload();
  1909. pData->engine->callback(ENGINE_CALLBACK_RELOAD_ALL, pData->id, -1, 0, 0.0f, nullptr);
  1910. break;
  1911. case NATIVE_HOST_OPCODE_UI_UNAVAILABLE:
  1912. pData->engine->callback(ENGINE_CALLBACK_UI_STATE_CHANGED, pData->id, -1, 0, 0.0f, nullptr);
  1913. fIsUiAvailable = false;
  1914. break;
  1915. case NATIVE_HOST_OPCODE_HOST_IDLE:
  1916. pData->engine->callback(ENGINE_CALLBACK_IDLE, 0, 0, 0, 0.0f, nullptr);
  1917. break;
  1918. case NATIVE_HOST_OPCODE_INTERNAL_PLUGIN:
  1919. ret = 1;
  1920. break;
  1921. }
  1922. return ret;
  1923. // unused for now
  1924. (void)index;
  1925. (void)value;
  1926. (void)ptr;
  1927. (void)opt;
  1928. }
  1929. // -------------------------------------------------------------------
  1930. public:
  1931. void* getNativeHandle() const noexcept override
  1932. {
  1933. return fHandle;
  1934. }
  1935. const void* getNativeDescriptor() const noexcept override
  1936. {
  1937. return fDescriptor;
  1938. }
  1939. // -------------------------------------------------------------------
  1940. bool init(const char* const name, const char* const label, const uint options)
  1941. {
  1942. CARLA_SAFE_ASSERT_RETURN(pData->engine != nullptr, false);
  1943. // ---------------------------------------------------------------
  1944. // first checks
  1945. if (pData->client != nullptr)
  1946. {
  1947. pData->engine->setLastError("Plugin client is already registered");
  1948. return false;
  1949. }
  1950. if (label == nullptr && label[0] != '\0')
  1951. {
  1952. pData->engine->setLastError("null label");
  1953. return false;
  1954. }
  1955. // ---------------------------------------------------------------
  1956. // get descriptor that matches label
  1957. sPluginInitializer.initIfNeeded();
  1958. for (LinkedList<const NativePluginDescriptor*>::Itenerator it = gPluginDescriptors.begin2(); it.valid(); it.next())
  1959. {
  1960. fDescriptor = it.getValue(nullptr);
  1961. CARLA_SAFE_ASSERT_BREAK(fDescriptor != nullptr);
  1962. carla_debug("Check vs \"%s\"", fDescriptor->label);
  1963. if (fDescriptor->label != nullptr && std::strcmp(fDescriptor->label, label) == 0)
  1964. break;
  1965. fDescriptor = nullptr;
  1966. }
  1967. if (fDescriptor == nullptr)
  1968. {
  1969. pData->engine->setLastError("Invalid internal plugin");
  1970. return false;
  1971. }
  1972. // ---------------------------------------------------------------
  1973. // set icon
  1974. if (std::strcmp(fDescriptor->label, "audiofile") == 0)
  1975. pData->iconName = carla_strdup_safe("file");
  1976. else if (std::strcmp(fDescriptor->label, "midifile") == 0)
  1977. pData->iconName = carla_strdup_safe("file");
  1978. // ---------------------------------------------------------------
  1979. // get info
  1980. if (name != nullptr && name[0] != '\0')
  1981. pData->name = pData->engine->getUniquePluginName(name);
  1982. else if (fDescriptor->name != nullptr && fDescriptor->name[0] != '\0')
  1983. pData->name = pData->engine->getUniquePluginName(fDescriptor->name);
  1984. else
  1985. pData->name = pData->engine->getUniquePluginName(label);
  1986. {
  1987. CARLA_ASSERT(fHost.uiName == nullptr);
  1988. char uiName[std::strlen(pData->name)+6+1];
  1989. std::strcpy(uiName, pData->name);
  1990. std::strcat(uiName, " (GUI)");
  1991. fHost.uiName = carla_strdup(uiName);
  1992. }
  1993. // ---------------------------------------------------------------
  1994. // register client
  1995. pData->client = pData->engine->addClient(this);
  1996. if (pData->client == nullptr || ! pData->client->isOk())
  1997. {
  1998. pData->engine->setLastError("Failed to register plugin client");
  1999. return false;
  2000. }
  2001. // ---------------------------------------------------------------
  2002. // initialize plugin
  2003. fHandle = fDescriptor->instantiate(&fHost);
  2004. if (fHandle == nullptr)
  2005. {
  2006. pData->engine->setLastError("Plugin failed to initialize");
  2007. return false;
  2008. }
  2009. // ---------------------------------------------------------------
  2010. // set default options
  2011. bool hasMidiProgs = false;
  2012. if (fDescriptor->get_midi_program_count != nullptr)
  2013. {
  2014. try {
  2015. hasMidiProgs = fDescriptor->get_midi_program_count(fHandle) > 0;
  2016. } catch (...) {}
  2017. }
  2018. pData->options = 0x0;
  2019. if (fDescriptor->hints & NATIVE_PLUGIN_NEEDS_FIXED_BUFFERS)
  2020. pData->options |= PLUGIN_OPTION_FIXED_BUFFERS;
  2021. else if (options & PLUGIN_OPTION_FIXED_BUFFERS)
  2022. pData->options |= PLUGIN_OPTION_FIXED_BUFFERS;
  2023. if (pData->engine->getOptions().forceStereo)
  2024. pData->options |= PLUGIN_OPTION_FORCE_STEREO;
  2025. else if (options & PLUGIN_OPTION_FORCE_STEREO)
  2026. pData->options |= PLUGIN_OPTION_FORCE_STEREO;
  2027. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_CHANNEL_PRESSURE)
  2028. pData->options |= PLUGIN_OPTION_SEND_CHANNEL_PRESSURE;
  2029. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_NOTE_AFTERTOUCH)
  2030. pData->options |= PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH;
  2031. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_PITCHBEND)
  2032. pData->options |= PLUGIN_OPTION_SEND_PITCHBEND;
  2033. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_ALL_SOUND_OFF)
  2034. pData->options |= PLUGIN_OPTION_SEND_ALL_SOUND_OFF;
  2035. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_CONTROL_CHANGES)
  2036. {
  2037. if (options & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  2038. pData->options |= PLUGIN_OPTION_SEND_CONTROL_CHANGES;
  2039. }
  2040. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_PROGRAM_CHANGES)
  2041. {
  2042. CARLA_SAFE_ASSERT(! hasMidiProgs);
  2043. pData->options |= PLUGIN_OPTION_SEND_PROGRAM_CHANGES;
  2044. }
  2045. else if (hasMidiProgs)
  2046. pData->options |= PLUGIN_OPTION_MAP_PROGRAM_CHANGES;
  2047. return true;
  2048. }
  2049. private:
  2050. NativePluginHandle fHandle;
  2051. NativePluginHandle fHandle2;
  2052. NativeHostDescriptor fHost;
  2053. const NativePluginDescriptor* fDescriptor;
  2054. bool fIsProcessing;
  2055. bool fIsOffline;
  2056. bool fIsUiAvailable;
  2057. bool fIsUiVisible;
  2058. float** fAudioInBuffers;
  2059. float** fAudioOutBuffers;
  2060. uint32_t fMidiEventInCount;
  2061. uint32_t fMidiEventOutCount;
  2062. NativeMidiEvent fMidiInEvents[kPluginMaxMidiEvents];
  2063. NativeMidiEvent fMidiOutEvents[kPluginMaxMidiEvents];
  2064. int32_t fCurMidiProgs[MAX_MIDI_CHANNELS];
  2065. uint32_t fCurBufferSize;
  2066. double fCurSampleRate;
  2067. NativePluginMidiInData fMidiIn;
  2068. NativePluginMidiOutData fMidiOut;
  2069. NativeTimeInfo fTimeInfo;
  2070. // -------------------------------------------------------------------
  2071. #define handlePtr ((CarlaPluginNative*)handle)
  2072. static uint32_t carla_host_get_buffer_size(NativeHostHandle handle) noexcept
  2073. {
  2074. return handlePtr->fCurBufferSize;
  2075. }
  2076. static double carla_host_get_sample_rate(NativeHostHandle handle) noexcept
  2077. {
  2078. return handlePtr->fCurSampleRate;
  2079. }
  2080. static bool carla_host_is_offline(NativeHostHandle handle) noexcept
  2081. {
  2082. return handlePtr->fIsOffline;
  2083. }
  2084. static const NativeTimeInfo* carla_host_get_time_info(NativeHostHandle handle) noexcept
  2085. {
  2086. return handlePtr->handleGetTimeInfo();
  2087. }
  2088. static bool carla_host_write_midi_event(NativeHostHandle handle, const NativeMidiEvent* event)
  2089. {
  2090. return handlePtr->handleWriteMidiEvent(event);
  2091. }
  2092. static void carla_host_ui_parameter_changed(NativeHostHandle handle, uint32_t index, float value)
  2093. {
  2094. handlePtr->handleUiParameterChanged(index, value);
  2095. }
  2096. static void carla_host_ui_custom_data_changed(NativeHostHandle handle, const char* key, const char* value)
  2097. {
  2098. handlePtr->handleUiCustomDataChanged(key, value);
  2099. }
  2100. static void carla_host_ui_closed(NativeHostHandle handle)
  2101. {
  2102. handlePtr->handleUiClosed();
  2103. }
  2104. static const char* carla_host_ui_open_file(NativeHostHandle handle, bool isDir, const char* title, const char* filter)
  2105. {
  2106. return handlePtr->handleUiOpenFile(isDir, title, filter);
  2107. }
  2108. static const char* carla_host_ui_save_file(NativeHostHandle handle, bool isDir, const char* title, const char* filter)
  2109. {
  2110. return handlePtr->handleUiSaveFile(isDir, title, filter);
  2111. }
  2112. static intptr_t carla_host_dispatcher(NativeHostHandle handle, NativeHostDispatcherOpcode opcode, int32_t index, intptr_t value, void* ptr, float opt)
  2113. {
  2114. return handlePtr->handleDispatcher(opcode, index, value, ptr, opt);
  2115. }
  2116. #undef handlePtr
  2117. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaPluginNative)
  2118. };
  2119. // -----------------------------------------------------------------------
  2120. CarlaPlugin* CarlaPlugin::newNative(const Initializer& init)
  2121. {
  2122. carla_debug("CarlaPlugin::newNative({%p, \"%s\", \"%s\", \"%s\", " P_INT64 "})", init.engine, init.filename, init.name, init.label, init.uniqueId);
  2123. CarlaPluginNative* const plugin(new CarlaPluginNative(init.engine, init.id));
  2124. if (! plugin->init(init.name, init.label, init.options))
  2125. {
  2126. delete plugin;
  2127. return nullptr;
  2128. }
  2129. return plugin;
  2130. }
  2131. // -----------------------------------------------------------------------
  2132. CARLA_BACKEND_END_NAMESPACE