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.

2718 lines
95KB

  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 cvIn, float** const cvOut, 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. for (uint32_t i=0; i < pData->cvOut.count; ++i)
  1186. carla_zeroFloats(cvOut[i], frames);
  1187. return;
  1188. }
  1189. fMidiEventInCount = fMidiEventOutCount = 0;
  1190. carla_zeroStructs(fMidiInEvents, kPluginMaxMidiEvents);
  1191. carla_zeroStructs(fMidiOutEvents, kPluginMaxMidiEvents);
  1192. // --------------------------------------------------------------------------------------------------------
  1193. // Check if needs reset
  1194. if (pData->needsReset)
  1195. {
  1196. if (pData->options & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1197. {
  1198. fMidiEventInCount = MAX_MIDI_CHANNELS*2;
  1199. for (uint8_t k=0, i=MAX_MIDI_CHANNELS; k < MAX_MIDI_CHANNELS; ++k)
  1200. {
  1201. fMidiInEvents[k].data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (k & MIDI_CHANNEL_BIT));
  1202. fMidiInEvents[k].data[1] = MIDI_CONTROL_ALL_NOTES_OFF;
  1203. fMidiInEvents[k].data[2] = 0;
  1204. fMidiInEvents[k].size = 3;
  1205. fMidiInEvents[k+i].data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (k & MIDI_CHANNEL_BIT));
  1206. fMidiInEvents[k+i].data[1] = MIDI_CONTROL_ALL_SOUND_OFF;
  1207. fMidiInEvents[k+i].data[2] = 0;
  1208. fMidiInEvents[k+i].size = 3;
  1209. }
  1210. }
  1211. else if (pData->ctrlChannel >= 0 && pData->ctrlChannel < MAX_MIDI_CHANNELS)
  1212. {
  1213. fMidiEventInCount = MAX_MIDI_NOTE;
  1214. for (uint8_t k=0; k < MAX_MIDI_NOTE; ++k)
  1215. {
  1216. fMidiInEvents[k].data[0] = uint8_t(MIDI_STATUS_NOTE_OFF | (pData->ctrlChannel & MIDI_CHANNEL_BIT));
  1217. fMidiInEvents[k].data[1] = k;
  1218. fMidiInEvents[k].data[2] = 0;
  1219. fMidiInEvents[k].size = 3;
  1220. }
  1221. }
  1222. pData->needsReset = false;
  1223. }
  1224. // --------------------------------------------------------------------------------------------------------
  1225. // Set TimeInfo
  1226. const EngineTimeInfo& timeInfo(pData->engine->getTimeInfo());
  1227. fTimeInfo.playing = timeInfo.playing;
  1228. fTimeInfo.frame = timeInfo.frame;
  1229. fTimeInfo.usecs = timeInfo.usecs;
  1230. if (timeInfo.bbt.valid)
  1231. {
  1232. fTimeInfo.bbt.valid = true;
  1233. fTimeInfo.bbt.bar = timeInfo.bbt.bar;
  1234. fTimeInfo.bbt.beat = timeInfo.bbt.beat;
  1235. fTimeInfo.bbt.tick = timeInfo.bbt.tick;
  1236. fTimeInfo.bbt.barStartTick = timeInfo.bbt.barStartTick;
  1237. fTimeInfo.bbt.beatsPerBar = timeInfo.bbt.beatsPerBar;
  1238. fTimeInfo.bbt.beatType = timeInfo.bbt.beatType;
  1239. fTimeInfo.bbt.ticksPerBeat = timeInfo.bbt.ticksPerBeat;
  1240. fTimeInfo.bbt.beatsPerMinute = timeInfo.bbt.beatsPerMinute;
  1241. }
  1242. else
  1243. {
  1244. fTimeInfo.bbt.valid = false;
  1245. }
  1246. // --------------------------------------------------------------------------------------------------------
  1247. // Event Input and Processing
  1248. if (pData->event.portIn != nullptr)
  1249. {
  1250. // ----------------------------------------------------------------------------------------------------
  1251. // MIDI Input (External)
  1252. if (pData->extNotes.mutex.tryLock())
  1253. {
  1254. ExternalMidiNote note = { 0, 0, 0 };
  1255. for (; fMidiEventInCount < kPluginMaxMidiEvents && ! pData->extNotes.data.isEmpty();)
  1256. {
  1257. note = pData->extNotes.data.getFirst(note, true);
  1258. CARLA_SAFE_ASSERT_CONTINUE(note.channel >= 0 && note.channel < MAX_MIDI_CHANNELS);
  1259. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1260. nativeEvent.data[0] = uint8_t((note.velo > 0 ? MIDI_STATUS_NOTE_ON : MIDI_STATUS_NOTE_OFF) | (note.channel & MIDI_CHANNEL_BIT));
  1261. nativeEvent.data[1] = note.note;
  1262. nativeEvent.data[2] = note.velo;
  1263. nativeEvent.size = 3;
  1264. }
  1265. pData->extNotes.mutex.unlock();
  1266. } // End of MIDI Input (External)
  1267. // ----------------------------------------------------------------------------------------------------
  1268. // Event Input (System)
  1269. #ifndef BUILD_BRIDGE
  1270. bool allNotesOffSent = false;
  1271. #endif
  1272. bool sampleAccurate = (pData->options & PLUGIN_OPTION_FIXED_BUFFERS) == 0;
  1273. uint32_t startTime = 0;
  1274. uint32_t timeOffset = 0;
  1275. uint32_t nextBankId;
  1276. if (pData->midiprog.current >= 0 && pData->midiprog.count > 0)
  1277. nextBankId = pData->midiprog.data[pData->midiprog.current].bank;
  1278. else
  1279. nextBankId = 0;
  1280. for (uint32_t i=0;; ++i)
  1281. {
  1282. const EngineEvent& event(findNextEvent(i));
  1283. if (event.type == kEngineEventTypeNull)
  1284. break;
  1285. uint32_t eventTime = event.time;
  1286. CARLA_SAFE_ASSERT_CONTINUE(eventTime < frames);
  1287. if (eventTime < timeOffset)
  1288. {
  1289. carla_stderr2("Timing error, eventTime:%u < timeOffset:%u for '%s'",
  1290. eventTime, timeOffset, pData->name);
  1291. eventTime = timeOffset;
  1292. }
  1293. if (sampleAccurate && eventTime > timeOffset)
  1294. {
  1295. if (processSingle(audioIn, audioOut, cvIn, cvOut, eventTime - timeOffset, timeOffset))
  1296. {
  1297. startTime = 0;
  1298. timeOffset = eventTime;
  1299. if (pData->midiprog.current >= 0 && pData->midiprog.count > 0)
  1300. nextBankId = pData->midiprog.data[pData->midiprog.current].bank;
  1301. else
  1302. nextBankId = 0;
  1303. if (fMidiEventInCount > 0)
  1304. {
  1305. carla_zeroStructs(fMidiInEvents, fMidiEventInCount);
  1306. fMidiEventInCount = 0;
  1307. }
  1308. if (fMidiEventOutCount > 0)
  1309. {
  1310. carla_zeroStructs(fMidiOutEvents, fMidiEventOutCount);
  1311. fMidiEventOutCount = 0;
  1312. }
  1313. }
  1314. else
  1315. startTime += timeOffset;
  1316. }
  1317. // Control change
  1318. switch (event.type)
  1319. {
  1320. case kEngineEventTypeNull:
  1321. break;
  1322. case kEngineEventTypeControl: {
  1323. const EngineControlEvent& ctrlEvent = event.ctrl;
  1324. switch (ctrlEvent.type)
  1325. {
  1326. case kEngineControlEventTypeNull:
  1327. break;
  1328. case kEngineControlEventTypeParameter: {
  1329. #ifndef BUILD_BRIDGE
  1330. // Control backend stuff
  1331. if (event.channel == pData->ctrlChannel)
  1332. {
  1333. float value;
  1334. if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) > 0)
  1335. {
  1336. value = ctrlEvent.value;
  1337. setDryWetRT(value);
  1338. }
  1339. if (MIDI_IS_CONTROL_CHANNEL_VOLUME(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_VOLUME) > 0)
  1340. {
  1341. value = ctrlEvent.value*127.0f/100.0f;
  1342. setVolumeRT(value);
  1343. }
  1344. if (MIDI_IS_CONTROL_BALANCE(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_BALANCE) > 0)
  1345. {
  1346. float left, right;
  1347. value = ctrlEvent.value/0.5f - 1.0f;
  1348. if (value < 0.0f)
  1349. {
  1350. left = -1.0f;
  1351. right = (value*2.0f)+1.0f;
  1352. }
  1353. else if (value > 0.0f)
  1354. {
  1355. left = (value*2.0f)-1.0f;
  1356. right = 1.0f;
  1357. }
  1358. else
  1359. {
  1360. left = -1.0f;
  1361. right = 1.0f;
  1362. }
  1363. setBalanceLeftRT(left);
  1364. setBalanceRightRT(right);
  1365. }
  1366. }
  1367. #endif
  1368. // Control plugin parameters
  1369. for (uint32_t k=0; k < pData->param.count; ++k)
  1370. {
  1371. if (pData->param.data[k].midiChannel != event.channel)
  1372. continue;
  1373. if (pData->param.data[k].midiCC != ctrlEvent.param)
  1374. continue;
  1375. if (pData->param.data[k].type != PARAMETER_INPUT)
  1376. continue;
  1377. if ((pData->param.data[k].hints & PARAMETER_IS_AUTOMABLE) == 0)
  1378. continue;
  1379. float value;
  1380. if (pData->param.data[k].hints & PARAMETER_IS_BOOLEAN)
  1381. {
  1382. value = (ctrlEvent.value < 0.5f) ? pData->param.ranges[k].min : pData->param.ranges[k].max;
  1383. }
  1384. else
  1385. {
  1386. if (pData->param.data[k].hints & PARAMETER_IS_LOGARITHMIC)
  1387. value = pData->param.ranges[k].getUnnormalizedLogValue(ctrlEvent.value);
  1388. else
  1389. value = pData->param.ranges[k].getUnnormalizedValue(ctrlEvent.value);
  1390. if (pData->param.data[k].hints & PARAMETER_IS_INTEGER)
  1391. value = std::rint(value);
  1392. }
  1393. setParameterValueRT(k, value);
  1394. }
  1395. if ((pData->options & PLUGIN_OPTION_SEND_CONTROL_CHANGES) != 0 && ctrlEvent.param < MAX_MIDI_CONTROL)
  1396. {
  1397. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1398. continue;
  1399. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1400. carla_zeroStruct(nativeEvent);
  1401. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1402. nativeEvent.data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1403. nativeEvent.data[1] = uint8_t(ctrlEvent.param);
  1404. nativeEvent.data[2] = uint8_t(ctrlEvent.value*127.0f);
  1405. nativeEvent.size = 3;
  1406. }
  1407. break;
  1408. } // case kEngineControlEventTypeParameter
  1409. case kEngineControlEventTypeMidiBank:
  1410. if (pData->options & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  1411. {
  1412. if (event.channel == pData->ctrlChannel)
  1413. nextBankId = ctrlEvent.param;
  1414. }
  1415. else if (pData->options & PLUGIN_OPTION_SEND_PROGRAM_CHANGES)
  1416. {
  1417. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1418. continue;
  1419. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1420. carla_zeroStruct(nativeEvent);
  1421. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1422. nativeEvent.data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1423. nativeEvent.data[1] = MIDI_CONTROL_BANK_SELECT;
  1424. nativeEvent.data[2] = uint8_t(ctrlEvent.param);
  1425. nativeEvent.size = 3;
  1426. }
  1427. break;
  1428. case kEngineControlEventTypeMidiProgram:
  1429. if (pData->options & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  1430. {
  1431. if (event.channel < MAX_MIDI_CHANNELS)
  1432. {
  1433. const uint32_t nextProgramId(ctrlEvent.param);
  1434. for (uint32_t k=0; k < pData->midiprog.count; ++k)
  1435. {
  1436. if (pData->midiprog.data[k].bank == nextBankId && pData->midiprog.data[k].program == nextProgramId)
  1437. {
  1438. fDescriptor->set_midi_program(fHandle, event.channel, nextBankId, nextProgramId);
  1439. if (fHandle2 != nullptr)
  1440. fDescriptor->set_midi_program(fHandle2, event.channel, nextBankId, nextProgramId);
  1441. fCurMidiProgs[event.channel] = static_cast<int32_t>(k);
  1442. if (event.channel == pData->ctrlChannel)
  1443. pData->postponeRtEvent(kPluginPostRtEventMidiProgramChange, static_cast<int32_t>(k), 0, 0.0f);
  1444. break;
  1445. }
  1446. }
  1447. }
  1448. }
  1449. else if (pData->options & PLUGIN_OPTION_SEND_PROGRAM_CHANGES)
  1450. {
  1451. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1452. continue;
  1453. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1454. carla_zeroStruct(nativeEvent);
  1455. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1456. nativeEvent.data[0] = uint8_t(MIDI_STATUS_PROGRAM_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1457. nativeEvent.data[1] = uint8_t(ctrlEvent.param);
  1458. nativeEvent.size = 2;
  1459. }
  1460. break;
  1461. case kEngineControlEventTypeAllSoundOff:
  1462. if (pData->options & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1463. {
  1464. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1465. continue;
  1466. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1467. carla_zeroStruct(nativeEvent);
  1468. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1469. nativeEvent.data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1470. nativeEvent.data[1] = MIDI_CONTROL_ALL_SOUND_OFF;
  1471. nativeEvent.data[2] = 0;
  1472. nativeEvent.size = 3;
  1473. }
  1474. break;
  1475. case kEngineControlEventTypeAllNotesOff:
  1476. if (pData->options & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  1477. {
  1478. #ifndef BUILD_BRIDGE
  1479. if (event.channel == pData->ctrlChannel && ! allNotesOffSent)
  1480. {
  1481. allNotesOffSent = true;
  1482. sendMidiAllNotesOffToCallback();
  1483. }
  1484. #endif
  1485. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1486. continue;
  1487. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1488. carla_zeroStruct(nativeEvent);
  1489. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1490. nativeEvent.data[0] = uint8_t(MIDI_STATUS_CONTROL_CHANGE | (event.channel & MIDI_CHANNEL_BIT));
  1491. nativeEvent.data[1] = MIDI_CONTROL_ALL_NOTES_OFF;
  1492. nativeEvent.data[2] = 0;
  1493. nativeEvent.size = 3;
  1494. }
  1495. break;
  1496. }
  1497. break;
  1498. }
  1499. case kEngineEventTypeMidi: {
  1500. if (fMidiEventInCount >= kPluginMaxMidiEvents)
  1501. continue;
  1502. const EngineMidiEvent& midiEvent(event.midi);
  1503. if (midiEvent.size > 4)
  1504. continue;
  1505. #ifdef CARLA_PROPER_CPP11_SUPPORT
  1506. static_assert(4 <= EngineMidiEvent::kDataSize, "Incorrect data");
  1507. #endif
  1508. uint8_t status = uint8_t(MIDI_GET_STATUS_FROM_DATA(midiEvent.data));
  1509. if (status == MIDI_STATUS_CHANNEL_PRESSURE && (pData->options & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE) == 0)
  1510. continue;
  1511. if (status == MIDI_STATUS_CONTROL_CHANGE && (pData->options & PLUGIN_OPTION_SEND_CONTROL_CHANGES) == 0)
  1512. continue;
  1513. if (status == MIDI_STATUS_POLYPHONIC_AFTERTOUCH && (pData->options & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH) == 0)
  1514. continue;
  1515. if (status == MIDI_STATUS_PITCH_WHEEL_CONTROL && (pData->options & PLUGIN_OPTION_SEND_PITCHBEND) == 0)
  1516. continue;
  1517. // Fix bad note-off
  1518. if (status == MIDI_STATUS_NOTE_ON && midiEvent.data[2] == 0)
  1519. status = MIDI_STATUS_NOTE_OFF;
  1520. NativeMidiEvent& nativeEvent(fMidiInEvents[fMidiEventInCount++]);
  1521. carla_zeroStruct(nativeEvent);
  1522. nativeEvent.port = midiEvent.port;
  1523. nativeEvent.time = sampleAccurate ? startTime : eventTime;
  1524. nativeEvent.size = midiEvent.size;
  1525. nativeEvent.data[0] = uint8_t(status | (event.channel & MIDI_CHANNEL_BIT));
  1526. nativeEvent.data[1] = midiEvent.size >= 2 ? midiEvent.data[1] : 0;
  1527. nativeEvent.data[2] = midiEvent.size >= 3 ? midiEvent.data[2] : 0;
  1528. nativeEvent.data[3] = midiEvent.size == 4 ? midiEvent.data[3] : 0;
  1529. if (status == MIDI_STATUS_NOTE_ON)
  1530. pData->postponeRtEvent(kPluginPostRtEventNoteOn, event.channel, midiEvent.data[1], midiEvent.data[2]);
  1531. else if (status == MIDI_STATUS_NOTE_OFF)
  1532. pData->postponeRtEvent(kPluginPostRtEventNoteOff, event.channel, midiEvent.data[1], 0.0f);
  1533. } break;
  1534. } // switch (event.type)
  1535. }
  1536. pData->postRtEvents.trySplice();
  1537. if (frames > timeOffset)
  1538. processSingle(audioIn, audioOut, cvIn, cvOut, frames - timeOffset, timeOffset);
  1539. } // End of Event Input and Processing
  1540. // --------------------------------------------------------------------------------------------------------
  1541. // Plugin processing (no events)
  1542. else
  1543. {
  1544. processSingle(audioIn, audioOut, cvIn, cvOut, frames, 0);
  1545. } // End of Plugin processing (no events)
  1546. #ifndef BUILD_BRIDGE
  1547. // --------------------------------------------------------------------------------------------------------
  1548. // Control Output
  1549. if (pData->event.portOut != nullptr)
  1550. {
  1551. float value, curValue;
  1552. for (uint32_t k=0; k < pData->param.count; ++k)
  1553. {
  1554. if (pData->param.data[k].type != PARAMETER_OUTPUT)
  1555. continue;
  1556. curValue = fDescriptor->get_parameter_value(fHandle, k);
  1557. pData->param.ranges[k].fixValue(curValue);
  1558. if (pData->param.data[k].midiCC > 0)
  1559. {
  1560. value = pData->param.ranges[k].getNormalizedValue(curValue);
  1561. pData->event.portOut->writeControlEvent(0, pData->param.data[k].midiChannel, kEngineControlEventTypeParameter, static_cast<uint16_t>(pData->param.data[k].midiCC), value);
  1562. }
  1563. }
  1564. } // End of Control Output
  1565. #endif
  1566. }
  1567. bool processSingle(const float** const audioIn, float** const audioOut, const float** const cvIn, float** const cvOut, const uint32_t frames, const uint32_t timeOffset)
  1568. {
  1569. CARLA_SAFE_ASSERT_RETURN(frames > 0, false);
  1570. if (pData->audioIn.count > 0)
  1571. {
  1572. CARLA_SAFE_ASSERT_RETURN(audioIn != nullptr, false);
  1573. }
  1574. if (pData->audioOut.count > 0)
  1575. {
  1576. CARLA_SAFE_ASSERT_RETURN(audioOut != nullptr, false);
  1577. }
  1578. if (pData->cvIn.count > 0)
  1579. {
  1580. CARLA_SAFE_ASSERT_RETURN(cvIn != nullptr, false);
  1581. }
  1582. if (pData->cvOut.count > 0)
  1583. {
  1584. CARLA_SAFE_ASSERT_RETURN(cvOut != nullptr, false);
  1585. }
  1586. // --------------------------------------------------------------------------------------------------------
  1587. // Try lock, silence otherwise
  1588. if (fIsOffline)
  1589. {
  1590. pData->singleMutex.lock();
  1591. }
  1592. else if (! pData->singleMutex.tryLock())
  1593. {
  1594. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1595. {
  1596. for (uint32_t k=0; k < frames; ++k)
  1597. audioOut[i][k+timeOffset] = 0.0f;
  1598. }
  1599. for (uint32_t i=0; i < pData->cvOut.count; ++i)
  1600. {
  1601. for (uint32_t k=0; k < frames; ++k)
  1602. cvOut[i][k+timeOffset] = 0.0f;
  1603. }
  1604. return false;
  1605. }
  1606. // --------------------------------------------------------------------------------------------------------
  1607. // Set audio buffers
  1608. for (uint32_t i=0; i < pData->audioIn.count; ++i)
  1609. carla_copyFloats(fAudioInBuffers[i], audioIn[i]+timeOffset, frames);
  1610. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1611. carla_zeroFloats(fAudioOutBuffers[i], frames);
  1612. #if 0
  1613. // --------------------------------------------------------------------------------------------------------
  1614. // Set CV buffers
  1615. for (uint32_t i=0; i < pData->cvIn.count; ++i)
  1616. carla_copyFloats(fCvInBuffers[i], cvIn[i]+timeOffset, frames);
  1617. for (uint32_t i=0; i < pData->cvOut.count; ++i)
  1618. carla_zeroFloats(fCvOutBuffers[i], frames);
  1619. #endif
  1620. // --------------------------------------------------------------------------------------------------------
  1621. // Run plugin
  1622. fIsProcessing = true;
  1623. if (fHandle2 == nullptr)
  1624. {
  1625. fDescriptor->process(fHandle, fAudioInBuffers, fAudioOutBuffers, frames, fMidiInEvents, fMidiEventInCount);
  1626. }
  1627. else
  1628. {
  1629. fDescriptor->process(fHandle,
  1630. (pData->audioIn.count > 0) ? &fAudioInBuffers[0] : nullptr,
  1631. (pData->audioOut.count > 0) ? &fAudioOutBuffers[0] : nullptr,
  1632. frames, fMidiInEvents, fMidiEventInCount);
  1633. fDescriptor->process(fHandle2,
  1634. (pData->audioIn.count > 0) ? &fAudioInBuffers[1] : nullptr,
  1635. (pData->audioOut.count > 0) ? &fAudioOutBuffers[1] : nullptr,
  1636. frames, fMidiInEvents, fMidiEventInCount);
  1637. }
  1638. fIsProcessing = false;
  1639. fTimeInfo.frame += frames;
  1640. #ifndef BUILD_BRIDGE
  1641. // --------------------------------------------------------------------------------------------------------
  1642. // Post-processing (dry/wet, volume and balance)
  1643. {
  1644. const bool doDryWet = (pData->hints & PLUGIN_CAN_DRYWET) != 0 && carla_isNotEqual(pData->postProc.dryWet, 1.0f);
  1645. const bool doBalance = (pData->hints & PLUGIN_CAN_BALANCE) != 0 && ! (carla_isEqual(pData->postProc.balanceLeft, -1.0f) && carla_isEqual(pData->postProc.balanceRight, 1.0f));
  1646. bool isPair;
  1647. float bufValue, oldBufLeft[doBalance ? frames : 1];
  1648. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1649. {
  1650. // Dry/Wet
  1651. if (doDryWet)
  1652. {
  1653. for (uint32_t k=0; k < frames; ++k)
  1654. {
  1655. bufValue = fAudioInBuffers[(pData->audioIn.count == 1) ? 0 : i][k];
  1656. fAudioOutBuffers[i][k] = (fAudioOutBuffers[i][k] * pData->postProc.dryWet) + (bufValue * (1.0f - pData->postProc.dryWet));
  1657. }
  1658. }
  1659. // Balance
  1660. if (doBalance)
  1661. {
  1662. isPair = (i % 2 == 0);
  1663. if (isPair)
  1664. {
  1665. CARLA_ASSERT(i+1 < pData->audioOut.count);
  1666. carla_copyFloats(oldBufLeft, fAudioOutBuffers[i], frames);
  1667. }
  1668. float balRangeL = (pData->postProc.balanceLeft + 1.0f)/2.0f;
  1669. float balRangeR = (pData->postProc.balanceRight + 1.0f)/2.0f;
  1670. for (uint32_t k=0; k < frames; ++k)
  1671. {
  1672. if (isPair)
  1673. {
  1674. // left
  1675. fAudioOutBuffers[i][k] = oldBufLeft[k] * (1.0f - balRangeL);
  1676. fAudioOutBuffers[i][k] += fAudioOutBuffers[i+1][k] * (1.0f - balRangeR);
  1677. }
  1678. else
  1679. {
  1680. // right
  1681. fAudioOutBuffers[i][k] = fAudioOutBuffers[i][k] * balRangeR;
  1682. fAudioOutBuffers[i][k] += oldBufLeft[k] * balRangeL;
  1683. }
  1684. }
  1685. }
  1686. // Volume (and buffer copy)
  1687. {
  1688. for (uint32_t k=0; k < frames; ++k)
  1689. audioOut[i][k+timeOffset] = fAudioOutBuffers[i][k] * pData->postProc.volume;
  1690. }
  1691. }
  1692. } // End of Post-processing
  1693. #else
  1694. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1695. {
  1696. for (uint32_t k=0; k < frames; ++k)
  1697. audioOut[i][k+timeOffset] = fAudioOutBuffers[i][k];
  1698. }
  1699. #endif
  1700. #if 0
  1701. for (uint32_t i=0; i < pData->cvOut.count; ++i)
  1702. {
  1703. for (uint32_t k=0; k < frames; ++k)
  1704. cvOut[i][k+timeOffset] = fCvOutBuffers[i][k];
  1705. }
  1706. #endif
  1707. // --------------------------------------------------------------------------------------------------------
  1708. // MIDI Output
  1709. if (pData->event.portOut != nullptr)
  1710. {
  1711. for (uint32_t k = 0; k < fMidiEventOutCount; --k)
  1712. {
  1713. const uint8_t channel = uint8_t(MIDI_GET_CHANNEL_FROM_DATA(fMidiOutEvents[k].data));
  1714. const uint8_t port = fMidiOutEvents[k].port;
  1715. if (fMidiOut.count > 1 && port < fMidiOut.count)
  1716. fMidiOut.ports[port]->writeMidiEvent(fMidiOutEvents[k].time+timeOffset, channel, fMidiOutEvents[k].size, fMidiOutEvents[k].data);
  1717. else
  1718. pData->event.portOut->writeMidiEvent(fMidiOutEvents[k].time+timeOffset, channel, fMidiOutEvents[k].size, fMidiOutEvents[k].data);
  1719. }
  1720. }
  1721. // --------------------------------------------------------------------------------------------------------
  1722. pData->singleMutex.unlock();
  1723. return true;
  1724. }
  1725. void bufferSizeChanged(const uint32_t newBufferSize) override
  1726. {
  1727. CARLA_ASSERT_INT(newBufferSize > 0, newBufferSize);
  1728. carla_debug("CarlaPluginNative::bufferSizeChanged(%i)", newBufferSize);
  1729. for (uint32_t i=0; i < pData->audioIn.count; ++i)
  1730. {
  1731. if (fAudioInBuffers[i] != nullptr)
  1732. delete[] fAudioInBuffers[i];
  1733. fAudioInBuffers[i] = new float[newBufferSize];
  1734. }
  1735. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1736. {
  1737. if (fAudioOutBuffers[i] != nullptr)
  1738. delete[] fAudioOutBuffers[i];
  1739. fAudioOutBuffers[i] = new float[newBufferSize];
  1740. }
  1741. if (fCurBufferSize == newBufferSize)
  1742. return;
  1743. fCurBufferSize = newBufferSize;
  1744. if (fDescriptor != nullptr && fDescriptor->dispatcher != nullptr)
  1745. {
  1746. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_BUFFER_SIZE_CHANGED, 0, static_cast<intptr_t>(newBufferSize), nullptr, 0.0f);
  1747. if (fHandle2 != nullptr)
  1748. fDescriptor->dispatcher(fHandle2, NATIVE_PLUGIN_OPCODE_BUFFER_SIZE_CHANGED, 0, static_cast<intptr_t>(newBufferSize), nullptr, 0.0f);
  1749. }
  1750. }
  1751. void sampleRateChanged(const double newSampleRate) override
  1752. {
  1753. CARLA_ASSERT_INT(newSampleRate > 0.0, newSampleRate);
  1754. carla_debug("CarlaPluginNative::sampleRateChanged(%g)", newSampleRate);
  1755. if (carla_isEqual(fCurSampleRate, newSampleRate))
  1756. return;
  1757. fCurSampleRate = newSampleRate;
  1758. if (fDescriptor != nullptr && fDescriptor->dispatcher != nullptr)
  1759. {
  1760. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_SAMPLE_RATE_CHANGED, 0, 0, nullptr, float(newSampleRate));
  1761. if (fHandle2 != nullptr)
  1762. fDescriptor->dispatcher(fHandle2, NATIVE_PLUGIN_OPCODE_SAMPLE_RATE_CHANGED, 0, 0, nullptr, float(newSampleRate));
  1763. }
  1764. }
  1765. void offlineModeChanged(const bool isOffline) override
  1766. {
  1767. if (fIsOffline == isOffline)
  1768. return;
  1769. fIsOffline = isOffline;
  1770. if (fDescriptor != nullptr && fDescriptor->dispatcher != nullptr)
  1771. {
  1772. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_OFFLINE_CHANGED, 0, isOffline ? 1 : 0, nullptr, 0.0f);
  1773. if (fHandle2 != nullptr)
  1774. fDescriptor->dispatcher(fHandle2, NATIVE_PLUGIN_OPCODE_OFFLINE_CHANGED, 0, isOffline ? 1 : 0, nullptr, 0.0f);
  1775. }
  1776. }
  1777. // -------------------------------------------------------------------
  1778. // Plugin buffers
  1779. void initBuffers() const noexcept override
  1780. {
  1781. CarlaPlugin::initBuffers();
  1782. fMidiIn.initBuffers(pData->event.portIn);
  1783. fMidiOut.initBuffers();
  1784. }
  1785. void clearBuffers() noexcept override
  1786. {
  1787. carla_debug("CarlaPluginNative::clearBuffers() - start");
  1788. if (fAudioInBuffers != nullptr)
  1789. {
  1790. for (uint32_t i=0; i < pData->audioIn.count; ++i)
  1791. {
  1792. if (fAudioInBuffers[i] != nullptr)
  1793. {
  1794. delete[] fAudioInBuffers[i];
  1795. fAudioInBuffers[i] = nullptr;
  1796. }
  1797. }
  1798. delete[] fAudioInBuffers;
  1799. fAudioInBuffers = nullptr;
  1800. }
  1801. if (fAudioOutBuffers != nullptr)
  1802. {
  1803. for (uint32_t i=0; i < pData->audioOut.count; ++i)
  1804. {
  1805. if (fAudioOutBuffers[i] != nullptr)
  1806. {
  1807. delete[] fAudioOutBuffers[i];
  1808. fAudioOutBuffers[i] = nullptr;
  1809. }
  1810. }
  1811. delete[] fAudioOutBuffers;
  1812. fAudioOutBuffers = nullptr;
  1813. }
  1814. if (fMidiIn.count > 1)
  1815. pData->event.portIn = nullptr;
  1816. if (fMidiOut.count > 1)
  1817. pData->event.portOut = nullptr;
  1818. fMidiIn.clear();
  1819. fMidiOut.clear();
  1820. CarlaPlugin::clearBuffers();
  1821. carla_debug("CarlaPluginNative::clearBuffers() - end");
  1822. }
  1823. // -------------------------------------------------------------------
  1824. // Post-poned UI Stuff
  1825. void uiParameterChange(const uint32_t index, const float value) noexcept override
  1826. {
  1827. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1828. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1829. CARLA_SAFE_ASSERT_RETURN(index < pData->param.count,);
  1830. if (! fIsUiVisible)
  1831. return;
  1832. if (fDescriptor->ui_set_parameter_value != nullptr)
  1833. fDescriptor->ui_set_parameter_value(fHandle, index, value);
  1834. }
  1835. void uiMidiProgramChange(const uint32_t index) noexcept override
  1836. {
  1837. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1838. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1839. CARLA_SAFE_ASSERT_RETURN(index < pData->midiprog.count,);
  1840. if (! fIsUiVisible)
  1841. return;
  1842. if (index >= pData->midiprog.count)
  1843. return;
  1844. if (fDescriptor->ui_set_midi_program != nullptr)
  1845. fDescriptor->ui_set_midi_program(fHandle, 0, pData->midiprog.data[index].bank, pData->midiprog.data[index].program);
  1846. }
  1847. void uiNoteOn(const uint8_t channel, const uint8_t note, const uint8_t velo) noexcept override
  1848. {
  1849. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1850. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1851. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  1852. CARLA_SAFE_ASSERT_RETURN(note < MAX_MIDI_NOTE,);
  1853. CARLA_SAFE_ASSERT_RETURN(velo > 0 && velo < MAX_MIDI_VALUE,);
  1854. if (! fIsUiVisible)
  1855. return;
  1856. // TODO
  1857. }
  1858. void uiNoteOff(const uint8_t channel, const uint8_t note) noexcept override
  1859. {
  1860. CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
  1861. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr,);
  1862. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  1863. CARLA_SAFE_ASSERT_RETURN(note < MAX_MIDI_NOTE,);
  1864. if (! fIsUiVisible)
  1865. return;
  1866. if (fDescriptor == nullptr || fHandle == nullptr)
  1867. return;
  1868. // TODO
  1869. }
  1870. // -------------------------------------------------------------------
  1871. protected:
  1872. const NativeTimeInfo* handleGetTimeInfo() const noexcept
  1873. {
  1874. CARLA_SAFE_ASSERT_RETURN(fIsProcessing, nullptr);
  1875. return &fTimeInfo;
  1876. }
  1877. bool handleWriteMidiEvent(const NativeMidiEvent* const event)
  1878. {
  1879. CARLA_SAFE_ASSERT_RETURN(pData->enabled, false);
  1880. CARLA_SAFE_ASSERT_RETURN(fIsProcessing, false);
  1881. CARLA_SAFE_ASSERT_RETURN(fMidiOut.count > 0 || pData->event.portOut != nullptr, false);
  1882. CARLA_SAFE_ASSERT_RETURN(event != nullptr, false);
  1883. CARLA_SAFE_ASSERT_RETURN(event->data[0] != 0, false);
  1884. if (fMidiEventOutCount == kPluginMaxMidiEvents)
  1885. {
  1886. carla_stdout("CarlaPluginNative::handleWriteMidiEvent(%p) - buffer full", event);
  1887. return false;
  1888. }
  1889. std::memcpy(&fMidiOutEvents[fMidiEventOutCount++], event, sizeof(NativeMidiEvent));
  1890. return true;
  1891. }
  1892. void handleUiParameterChanged(const uint32_t index, const float value)
  1893. {
  1894. setParameterValue(index, value, false, true, true);
  1895. }
  1896. void handleUiCustomDataChanged(const char* const key, const char* const value)
  1897. {
  1898. setCustomData(CUSTOM_DATA_TYPE_STRING, key, value, false);
  1899. }
  1900. void handleUiClosed()
  1901. {
  1902. pData->engine->callback(ENGINE_CALLBACK_UI_STATE_CHANGED, pData->id, 0, 0, 0.0f, nullptr);
  1903. fIsUiVisible = false;
  1904. }
  1905. const char* handleUiOpenFile(const bool isDir, const char* const title, const char* const filter)
  1906. {
  1907. return pData->engine->runFileCallback(FILE_CALLBACK_OPEN, isDir, title, filter);
  1908. }
  1909. const char* handleUiSaveFile(const bool isDir, const char* const title, const char* const filter)
  1910. {
  1911. return pData->engine->runFileCallback(FILE_CALLBACK_SAVE, isDir, title, filter);
  1912. }
  1913. intptr_t handleDispatcher(const NativeHostDispatcherOpcode opcode, const int32_t index, const intptr_t value, void* const ptr, const float opt)
  1914. {
  1915. carla_debug("CarlaPluginNative::handleDispatcher(%i, %i, " P_INTPTR ", %p, %f)", opcode, index, value, ptr, opt);
  1916. intptr_t ret = 0;
  1917. switch (opcode)
  1918. {
  1919. case NATIVE_HOST_OPCODE_NULL:
  1920. break;
  1921. case NATIVE_HOST_OPCODE_UPDATE_PARAMETER:
  1922. // TODO
  1923. pData->engine->callback(ENGINE_CALLBACK_UPDATE, pData->id, -1, 0, 0.0f, nullptr);
  1924. break;
  1925. case NATIVE_HOST_OPCODE_UPDATE_MIDI_PROGRAM:
  1926. // TODO
  1927. pData->engine->callback(ENGINE_CALLBACK_UPDATE, pData->id, -1, 0, 0.0f, nullptr);
  1928. break;
  1929. case NATIVE_HOST_OPCODE_RELOAD_PARAMETERS:
  1930. reload(); // FIXME
  1931. pData->engine->callback(ENGINE_CALLBACK_RELOAD_PARAMETERS, pData->id, -1, 0, 0.0f, nullptr);
  1932. break;
  1933. case NATIVE_HOST_OPCODE_RELOAD_MIDI_PROGRAMS:
  1934. reloadPrograms(false);
  1935. pData->engine->callback(ENGINE_CALLBACK_RELOAD_PROGRAMS, pData->id, -1, 0, 0.0f, nullptr);
  1936. break;
  1937. case NATIVE_HOST_OPCODE_RELOAD_ALL:
  1938. reload();
  1939. pData->engine->callback(ENGINE_CALLBACK_RELOAD_ALL, pData->id, -1, 0, 0.0f, nullptr);
  1940. break;
  1941. case NATIVE_HOST_OPCODE_UI_UNAVAILABLE:
  1942. pData->engine->callback(ENGINE_CALLBACK_UI_STATE_CHANGED, pData->id, -1, 0, 0.0f, nullptr);
  1943. fIsUiAvailable = false;
  1944. break;
  1945. case NATIVE_HOST_OPCODE_HOST_IDLE:
  1946. pData->engine->callback(ENGINE_CALLBACK_IDLE, 0, 0, 0, 0.0f, nullptr);
  1947. break;
  1948. case NATIVE_HOST_OPCODE_INTERNAL_PLUGIN:
  1949. ret = 1;
  1950. break;
  1951. }
  1952. return ret;
  1953. // unused for now
  1954. (void)index;
  1955. (void)value;
  1956. (void)ptr;
  1957. (void)opt;
  1958. }
  1959. // -------------------------------------------------------------------
  1960. public:
  1961. void* getNativeHandle() const noexcept override
  1962. {
  1963. return fHandle;
  1964. }
  1965. const void* getNativeDescriptor() const noexcept override
  1966. {
  1967. return fDescriptor;
  1968. }
  1969. // -------------------------------------------------------------------
  1970. bool init(const char* const name, const char* const label, const uint options)
  1971. {
  1972. CARLA_SAFE_ASSERT_RETURN(pData->engine != nullptr, false);
  1973. // ---------------------------------------------------------------
  1974. // first checks
  1975. if (pData->client != nullptr)
  1976. {
  1977. pData->engine->setLastError("Plugin client is already registered");
  1978. return false;
  1979. }
  1980. if (label == nullptr && label[0] != '\0')
  1981. {
  1982. pData->engine->setLastError("null label");
  1983. return false;
  1984. }
  1985. // ---------------------------------------------------------------
  1986. // get descriptor that matches label
  1987. sPluginInitializer.initIfNeeded();
  1988. for (LinkedList<const NativePluginDescriptor*>::Itenerator it = gPluginDescriptors.begin2(); it.valid(); it.next())
  1989. {
  1990. fDescriptor = it.getValue(nullptr);
  1991. CARLA_SAFE_ASSERT_BREAK(fDescriptor != nullptr);
  1992. carla_debug("Check vs \"%s\"", fDescriptor->label);
  1993. if (fDescriptor->label != nullptr && std::strcmp(fDescriptor->label, label) == 0)
  1994. break;
  1995. fDescriptor = nullptr;
  1996. }
  1997. if (fDescriptor == nullptr)
  1998. {
  1999. pData->engine->setLastError("Invalid internal plugin");
  2000. return false;
  2001. }
  2002. // ---------------------------------------------------------------
  2003. // set icon
  2004. if (std::strcmp(fDescriptor->label, "audiofile") == 0)
  2005. pData->iconName = carla_strdup_safe("file");
  2006. else if (std::strcmp(fDescriptor->label, "midifile") == 0)
  2007. pData->iconName = carla_strdup_safe("file");
  2008. // ---------------------------------------------------------------
  2009. // get info
  2010. if (name != nullptr && name[0] != '\0')
  2011. pData->name = pData->engine->getUniquePluginName(name);
  2012. else if (fDescriptor->name != nullptr && fDescriptor->name[0] != '\0')
  2013. pData->name = pData->engine->getUniquePluginName(fDescriptor->name);
  2014. else
  2015. pData->name = pData->engine->getUniquePluginName(label);
  2016. {
  2017. CARLA_ASSERT(fHost.uiName == nullptr);
  2018. char uiName[std::strlen(pData->name)+6+1];
  2019. std::strcpy(uiName, pData->name);
  2020. std::strcat(uiName, " (GUI)");
  2021. fHost.uiName = carla_strdup(uiName);
  2022. }
  2023. // ---------------------------------------------------------------
  2024. // register client
  2025. pData->client = pData->engine->addClient(this);
  2026. if (pData->client == nullptr || ! pData->client->isOk())
  2027. {
  2028. pData->engine->setLastError("Failed to register plugin client");
  2029. return false;
  2030. }
  2031. // ---------------------------------------------------------------
  2032. // initialize plugin
  2033. fHandle = fDescriptor->instantiate(&fHost);
  2034. if (fHandle == nullptr)
  2035. {
  2036. pData->engine->setLastError("Plugin failed to initialize");
  2037. return false;
  2038. }
  2039. // ---------------------------------------------------------------
  2040. // set default options
  2041. bool hasMidiProgs = false;
  2042. if (fDescriptor->get_midi_program_count != nullptr)
  2043. {
  2044. try {
  2045. hasMidiProgs = fDescriptor->get_midi_program_count(fHandle) > 0;
  2046. } catch (...) {}
  2047. }
  2048. pData->options = 0x0;
  2049. if (fDescriptor->hints & NATIVE_PLUGIN_NEEDS_FIXED_BUFFERS)
  2050. pData->options |= PLUGIN_OPTION_FIXED_BUFFERS;
  2051. else if (options & PLUGIN_OPTION_FIXED_BUFFERS)
  2052. pData->options |= PLUGIN_OPTION_FIXED_BUFFERS;
  2053. if (pData->engine->getOptions().forceStereo)
  2054. pData->options |= PLUGIN_OPTION_FORCE_STEREO;
  2055. else if (options & PLUGIN_OPTION_FORCE_STEREO)
  2056. pData->options |= PLUGIN_OPTION_FORCE_STEREO;
  2057. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_CHANNEL_PRESSURE)
  2058. pData->options |= PLUGIN_OPTION_SEND_CHANNEL_PRESSURE;
  2059. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_NOTE_AFTERTOUCH)
  2060. pData->options |= PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH;
  2061. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_PITCHBEND)
  2062. pData->options |= PLUGIN_OPTION_SEND_PITCHBEND;
  2063. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_ALL_SOUND_OFF)
  2064. pData->options |= PLUGIN_OPTION_SEND_ALL_SOUND_OFF;
  2065. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_CONTROL_CHANGES)
  2066. {
  2067. if (options & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  2068. pData->options |= PLUGIN_OPTION_SEND_CONTROL_CHANGES;
  2069. }
  2070. if (fDescriptor->supports & NATIVE_PLUGIN_SUPPORTS_PROGRAM_CHANGES)
  2071. {
  2072. CARLA_SAFE_ASSERT(! hasMidiProgs);
  2073. pData->options |= PLUGIN_OPTION_SEND_PROGRAM_CHANGES;
  2074. }
  2075. else if (hasMidiProgs)
  2076. pData->options |= PLUGIN_OPTION_MAP_PROGRAM_CHANGES;
  2077. return true;
  2078. }
  2079. private:
  2080. NativePluginHandle fHandle;
  2081. NativePluginHandle fHandle2;
  2082. NativeHostDescriptor fHost;
  2083. const NativePluginDescriptor* fDescriptor;
  2084. bool fIsProcessing;
  2085. bool fIsOffline;
  2086. bool fIsUiAvailable;
  2087. bool fIsUiVisible;
  2088. float** fAudioInBuffers;
  2089. float** fAudioOutBuffers;
  2090. uint32_t fMidiEventInCount;
  2091. uint32_t fMidiEventOutCount;
  2092. NativeMidiEvent fMidiInEvents[kPluginMaxMidiEvents];
  2093. NativeMidiEvent fMidiOutEvents[kPluginMaxMidiEvents];
  2094. int32_t fCurMidiProgs[MAX_MIDI_CHANNELS];
  2095. uint32_t fCurBufferSize;
  2096. double fCurSampleRate;
  2097. NativePluginMidiInData fMidiIn;
  2098. NativePluginMidiOutData fMidiOut;
  2099. NativeTimeInfo fTimeInfo;
  2100. // -------------------------------------------------------------------
  2101. #define handlePtr ((CarlaPluginNative*)handle)
  2102. static uint32_t carla_host_get_buffer_size(NativeHostHandle handle) noexcept
  2103. {
  2104. return handlePtr->fCurBufferSize;
  2105. }
  2106. static double carla_host_get_sample_rate(NativeHostHandle handle) noexcept
  2107. {
  2108. return handlePtr->fCurSampleRate;
  2109. }
  2110. static bool carla_host_is_offline(NativeHostHandle handle) noexcept
  2111. {
  2112. return handlePtr->fIsOffline;
  2113. }
  2114. static const NativeTimeInfo* carla_host_get_time_info(NativeHostHandle handle) noexcept
  2115. {
  2116. return handlePtr->handleGetTimeInfo();
  2117. }
  2118. static bool carla_host_write_midi_event(NativeHostHandle handle, const NativeMidiEvent* event)
  2119. {
  2120. return handlePtr->handleWriteMidiEvent(event);
  2121. }
  2122. static void carla_host_ui_parameter_changed(NativeHostHandle handle, uint32_t index, float value)
  2123. {
  2124. handlePtr->handleUiParameterChanged(index, value);
  2125. }
  2126. static void carla_host_ui_custom_data_changed(NativeHostHandle handle, const char* key, const char* value)
  2127. {
  2128. handlePtr->handleUiCustomDataChanged(key, value);
  2129. }
  2130. static void carla_host_ui_closed(NativeHostHandle handle)
  2131. {
  2132. handlePtr->handleUiClosed();
  2133. }
  2134. static const char* carla_host_ui_open_file(NativeHostHandle handle, bool isDir, const char* title, const char* filter)
  2135. {
  2136. return handlePtr->handleUiOpenFile(isDir, title, filter);
  2137. }
  2138. static const char* carla_host_ui_save_file(NativeHostHandle handle, bool isDir, const char* title, const char* filter)
  2139. {
  2140. return handlePtr->handleUiSaveFile(isDir, title, filter);
  2141. }
  2142. static intptr_t carla_host_dispatcher(NativeHostHandle handle, NativeHostDispatcherOpcode opcode, int32_t index, intptr_t value, void* ptr, float opt)
  2143. {
  2144. return handlePtr->handleDispatcher(opcode, index, value, ptr, opt);
  2145. }
  2146. #undef handlePtr
  2147. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaPluginNative)
  2148. };
  2149. // -----------------------------------------------------------------------
  2150. CarlaPlugin* CarlaPlugin::newNative(const Initializer& init)
  2151. {
  2152. carla_debug("CarlaPlugin::newNative({%p, \"%s\", \"%s\", \"%s\", " P_INT64 "})", init.engine, init.filename, init.name, init.label, init.uniqueId);
  2153. CarlaPluginNative* const plugin(new CarlaPluginNative(init.engine, init.id));
  2154. if (! plugin->init(init.name, init.label, init.options))
  2155. {
  2156. delete plugin;
  2157. return nullptr;
  2158. }
  2159. return plugin;
  2160. }
  2161. // -----------------------------------------------------------------------
  2162. CARLA_BACKEND_END_NAMESPACE